/* ===========================================================
    DESIGN SYSTEM — sourced from Replink brand
=========================================================== */
:root {
    --navy-950: #0B1638;
    --navy-900: #0F1E47;
    --navy-800: #15296b;
    --navy-700: #1E3A8A;
    --navy-600: #2952b3;
    --teal-600: #059669;
    --teal-500: #10B981;
    --teal-400: #34d399;
    --teal-100: #d1fae5;
    --orange-600: #ea580c;
    --orange-500: #F97316;
    --orange-400: #fb923c;
    --orange-100: #ffedd5;
    --sky-500: #3B82F6;

    --ink: #0F172A;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #ffffff;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max: 1200px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.06), 0 10px 30px -10px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.25), 0 10px 20px -8px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 0 0 1px rgba(16, 185, 129, 0.15), 0 10px 40px -10px rgba(16, 185, 129, 0.35);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--teal-500);
    color: white;
}

/* ===========================================================
    SHARED
=========================================================== */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-500);
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange-500);
}

.eyebrow.on-dark {
    color: var(--teal-400);
}

.eyebrow.on-dark::before {
    background: var(--teal-400);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange-500);
    color: white;
    box-shadow: 0 10px 25px -8px rgba(249, 115, 22, 0.45);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -8px rgba(249, 115, 22, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--navy-700);
    border: 1.5px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--navy-700);
    background: var(--slate-50);
}

.btn-ghost.on-dark {
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost.on-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===========================================================
    NAV
=========================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}

.brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand img {
    height: 74px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--slate-700);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--navy-700);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.nav-cta .btn {
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }
}

/* ===========================================================
    HERO
=========================================================== */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background:
        radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.08), transparent 50%),
        radial-gradient(ellipse at top right, rgba(249, 115, 22, 0.06), transparent 50%),
        var(--white);
    overflow: hidden;
}

.hero::before {
    /* subtle grid pattern */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 30, 71, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 30, 71, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.hero-copy .eyebrow {
    margin-bottom: 22px;
}

.hero-copy h1 {
    margin-bottom: 24px;
}

.hero-copy h1 em {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--orange-500);
}

.hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--slate-500);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.55;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 560px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}

.hero-stat .num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--navy-700);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .num .teal {
    color: var(--teal-500);
}

.hero-stat .label {
    font-size: 12px;
    color: var(--slate-500);
    letter-spacing: 0.02em;
}

/* ===========================================================
    FORM CARD (hero right side)
=========================================================== */
.form-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 36px 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-card::before {
    /* subtle top accent gradient */
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-700), var(--teal-500), var(--orange-500));
    border-radius: 3px;
}

.form-card-head {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--slate-100);
}

.form-card-head h2 {
    font-size: 1.55rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-card-head p {
    font-size: 14px;
    color: var(--slate-500);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

@media (max-width: 520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    position: relative;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 6px;
    letter-spacing: 0.005em;
}

.field label .req {
    color: var(--orange-500);
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 14.5px;
    padding: 12px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #cbd5e1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.field textarea {
    resize: vertical;
    min-height: 82px;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-submit {
    width: 100%;
    height: 54px;
    margin-top: 18px;
    font-size: 15px;
}

.form-fineprint {
    font-size: 12px;
    color: var(--slate-500);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

.form-fineprint a {
    color: var(--navy-700);
    font-weight: 500;
    border-bottom: 1px dashed var(--slate-400);
}

/* Success state */
.form-success {
    display: none;
    padding: 28px 8px;
    text-align: center;
}

.form-success.shown {
    display: block;
}

.form-success .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-600);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}

.form-success h3 {
    margin-bottom: 8px;
}

.form-success p {
    color: var(--slate-500);
    font-size: 15px;
}

/* Errors */
.error-msg {
    display: none;
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #dc2626;
    background: #fef2f2;
}

.field.has-error .error-msg {
    display: block;
}

/* ===========================================================
    SECTIONS (shared)
=========================================================== */
.section {
    padding: 110px 0;
    position: relative;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 18px;
}

.section-head h2 {
    margin-bottom: 18px;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--slate-500);
    line-height: 1.55;
}

@media (max-width: 640px) {
    .section {
        padding: 80px 0;
    }
}

/* ===========================================================
    PROBLEM
=========================================================== */
.problem {
    background: var(--slate-50);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1000px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 22px;
    border: 1px solid var(--slate-200);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--slate-200);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy-700);
    color: white;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.problem-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}

.problem-card p {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.55;
}

/* ===========================================================
    SOLUTION — three modules
=========================================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.module {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.module:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.module-stripe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
}

.module-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.module-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    margin-bottom: 22px;
}

.module h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.module .subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 18px;
}

.module p {
    color: var(--slate-500);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module ul {
    list-style: none;
    padding-top: 18px;
    border-top: 1px dashed var(--slate-200);
}

.module ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--slate-700);
    padding: 5px 0;
}

.module ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.module.navy .module-stripe {
    background: var(--navy-700);
}

.module.navy .module-num {
    color: var(--navy-700);
}

.module.navy .module-icon {
    background: var(--navy-700);
}

.module.navy .subtitle {
    color: var(--navy-700);
}

.module.teal .module-stripe {
    background: var(--teal-500);
}

.module.teal .module-num {
    color: var(--teal-500);
}

.module.teal .module-icon {
    background: var(--teal-500);
}

.module.teal .subtitle {
    color: var(--teal-500);
}

.module.orange .module-stripe {
    background: var(--orange-500);
}

.module.orange .module-num {
    color: var(--orange-500);
}

.module.orange .module-icon {
    background: var(--orange-500);
}

.module.orange .subtitle {
    color: var(--orange-500);
}

/* ===========================================================
    OUTCOMES (dark section)
=========================================================== */
.outcomes {
    background: var(--navy-950);
    color: white;
    position: relative;
    overflow: hidden;
}

.outcomes::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
}

.outcomes::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
}

.outcomes .container {
    position: relative;
    z-index: 1;
}

.outcomes .section-head h2 {
    color: white;
}

.outcomes .section-head p {
    color: #cbd5e1;
}

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

@media (max-width: 720px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.outcome {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.outcome-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal-500);
    color: white;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.outcome h3 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.outcome p {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.55;
}

/* ===========================================================
    FINAL CTA
=========================================================== */
.final-cta {
    padding: 130px 0;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(249, 115, 22, 0.08), transparent 60%),
        var(--white);
    position: relative;
}

.final-cta h2 {
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    line-height: 1.05;
    max-width: 900px;
    margin: 0 auto 24px;
}

.final-cta h2 span {
    font-style: italic;
    color: var(--orange-500);
    font-weight: 400;
}

.final-cta p {
    max-width: 580px;
    margin: 0 auto 40px;
    color: var(--slate-500);
    font-size: 1.1rem;
}

.final-cta .btn {
    height: 58px;
    padding: 0 36px;
    font-size: 16px;
}

/* ===========================================================
    FOOTER
=========================================================== */
footer {
    background: var(--navy-950);
    color: #94a3b8;
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 800px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-card {
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
}

.footer-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: #e2e8f0;
}

/* ===========================================================
    PRICING
=========================================================== */
.pricing {
    background: var(--slate-50);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--slate-500);
    margin-top: -36px;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.plan {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* clip the topline to card's rounded corners */
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}

.plan:hover .plan-topline {
    opacity: 1;
    transform: scaleX(1);
}

/* Pro card keeps topline visible since it's the highlighted plan */
.plan.pro .plan-topline {
    opacity: 1;
    transform: scaleX(1);
}

.plan.starter .plan-topline {
    background: var(--sky-500);
}

.plan.pro .plan-topline {
    background: var(--teal-500);
}

.plan.ent .plan-topline {
    background: var(--orange-500);
}

.plan.pro {
    border-color: var(--teal-500);
    box-shadow: 0 20px 50px -20px rgba(16, 185, 129, 0.35);
    transform: translateY(-8px);
    padding-top: 52px;
}

@media (max-width: 960px) {
    .plan.pro {
        transform: none;
        padding-top: 52px;
    }
}

.plan.pro:hover {
    transform: translateY(-12px);
}

@media (max-width: 960px) {
    .plan.pro:hover {
        transform: translateY(-4px);
    }
}

.plan-badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-500);
    color: white;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 14px -3px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 4px;
}

.plan-audience {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 26px;
}

.plan-price {
    padding: 20px 0 8px;
    border-top: 1px dashed var(--slate-200);
    margin-bottom: 20px;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price .from {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    display: block;
    margin-bottom: 4px;
}

.plan-price .amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}

.plan.starter .plan-price .amount {
    color: var(--sky-500);
}

.plan.pro .plan-price .amount {
    color: var(--teal-500);
}

.plan.ent .plan-price .amount {
    color: var(--orange-500);
}

.plan-price .unit {
    font-size: 13px;
    color: var(--slate-500);
    flex: 1;
    line-height: 1.3;
}

.plan-billing {
    font-size: 12px;
    color: var(--slate-400);
    font-style: italic;
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--slate-200);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--slate-700);
    line-height: 1.5;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.plan-features .heading {
    font-weight: 600;
    color: var(--navy-700);
    padding-top: 4px;
    padding-bottom: 2px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all 0.3s var(--ease);
}

.plan.pro .plan-cta {
    background: var(--orange-500);
    color: white;
    box-shadow: 0 8px 20px -6px rgba(249, 115, 22, 0.45);
}

.plan.pro .plan-cta:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
}

.plan.starter .plan-cta,
.plan.ent .plan-cta {
    background: var(--white);
    color: var(--navy-700);
    border: 1.5px solid var(--slate-200);
}

.plan.starter .plan-cta:hover,
.plan.ent .plan-cta:hover {
    border-color: var(--navy-700);
    background: var(--slate-50);
}

/* ===========================================================
    FAQ
=========================================================== */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--slate-200);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--slate-200);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
    transition: color 0.25s;
}

.faq-item summary:hover {
    color: var(--navy-700);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-100);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E3A8A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M12 5v14M5 12h14'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.25s, transform 0.4s var(--ease);
}

.faq-item[open] summary::after {
    background-color: var(--teal-500);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M5 12h14'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 64px 28px 0;
    color: var(--slate-500);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p+p {
    margin-top: 12px;
}

.faq-answer strong {
    color: var(--ink);
    font-weight: 600;
}

/* ===========================================================
    ENTRY ANIMATIONS
=========================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
}

.reveal.in {
    animation: fadeUp 0.9s var(--ease) forwards;
}

.reveal.d-1 {
    animation-delay: 0.1s;
}

.reveal.d-2 {
    animation-delay: 0.2s;
}

.reveal.d-3 {
    animation-delay: 0.3s;
}

.reveal.d-4 {
    animation-delay: 0.4s;
}

.hero-copy .eyebrow {
    animation: fadeUp 0.7s var(--ease) 0.05s both;
}

.hero-copy h1 {
    animation: fadeUp 0.7s var(--ease) 0.15s both;
}

.hero-lede {
    animation: fadeUp 0.7s var(--ease) 0.3s both;
}

.hero-ctas {
    animation: fadeUp 0.7s var(--ease) 0.4s both;
}

.hero-stats {
    animation: fadeUp 0.7s var(--ease) 0.5s both;
}

.form-card {
    animation: fadeUp 0.9s var(--ease) 0.3s both;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1 !important;
    }
}