
/* Basic Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'figmaSans', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-bottom: 1px solid #e6e6e6;
}

header h1 {
    font-size: 26px;
    font-weight: 540;
}

header nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 320;
}

/* Main Content */
main {
    padding: 48px;
}

.hero {
    text-align: center;
    padding: 96px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.display-lg {
    font-size: 64px;
    font-weight: 340;
    line-height: 1.1;
    letter-spacing: -0.96px;
    margin-bottom: 24px;
}

.subhead {
    font-size: 26px;
    font-weight: 340;
    line-height: 1.35;
    letter-spacing: -0.26px;
    margin-bottom: 48px;
    color: #5a5a5a;
}

.button-primary {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-size: 20px;
    font-weight: 480;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #333333;
}

/* Features Section */
.features {
    padding: 96px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 540;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #f7f7f5;
    padding: 32px;
    border-radius: 24px;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 18px;
    font-weight: 320;
    line-height: 1.45;
    color: #5a5a5a;
}

/* Pricing Section */
.pricing {
    padding: 96px 0;
    background-color: #f7f7f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
}

.pricing-card.primary {
    border: 2px solid #000000;
}

.pricing-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 540;
    margin-bottom: 8px;
}

.price span {
    font-size: 64px;
}

.price-description {
    color: #5a5a5a;
    margin-bottom: 32px;
    min-height: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 48px;
}

.features-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1ea64a;
}

.button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    font-weight: 480;
    text-decoration: none;
    padding: 8px 18px 10px;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
    text-align: center;
    margin-top: auto;
    transition: background-color 0.3s, color 0.3s;
}

.button-secondary:hover {
    background-color: #f7f7f5;
}

.pricing-card .button-primary {
    margin-top: auto;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
    color: #808080;
}

