/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Hero ── */
.hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 88px 48px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

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

.hero-h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 5.5vw, 84px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 430px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 13px 28px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s;
}
.btn-ghost:hover { color: var(--ink); }

/* ── Hero Widget ── */
.widget {
    background: #fff;
    border: 1px solid var(--rule);
    box-shadow: 0 2px 24px rgba(26,21,16,0.07), 0 1px 3px rgba(26,21,16,0.04);
}

.widget-bar {
    padding: 14px 20px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-bar-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
}

.widget-status {
    font-size: 11px;
    background: #ECFDF5;
    color: #059669;
    padding: 3px 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #059669;
    display: block;
}

.widget-section {
    padding: 18px 20px;
    border-bottom: 1px solid var(--rule);
}
.widget-section:last-child { border-bottom: none; }

.widget-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 12px;
}

/* Budget bar */
.budget-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.budget-used {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
}

.budget-of {
    font-size: 13px;
    color: var(--ink-muted);
    padding-bottom: 3px;
}

.progress-track {
    height: 5px;
    background: var(--surface);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 11px;
    color: var(--ink-muted);
}

/* Providers */
.provider-rows { display: flex; flex-direction: column; gap: 9px; }

.provider-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.provider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.provider-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    width: 72px;
}

.provider-track {
    flex: 1;
    height: 3px;
    background: var(--surface);
    overflow: hidden;
}

.provider-fill {
    height: 100%;
    background: currentColor;
    opacity: 0.45;
}

.provider-amt {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-soft);
    width: 46px;
    text-align: right;
}

/* Employees */
.employee-rows { display: flex; flex-direction: column; gap: 10px; }

.employee-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.employee-meta { flex: 1; min-width: 0; }
.employee-name { font-size: 12px; font-weight: 500; color: var(--ink); }
.employee-dept { font-size: 11px; color: var(--ink-muted); }
.employee-spend { font-size: 12px; color: var(--ink-soft); }

/* ── Trust bar ── */
.trust-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.trust-inner {
    border-top: 1px solid var(--rule);
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 36px;
}

.trust-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 32px;
    align-items: center;
}

.trust-logo {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: -0.01em;
    opacity: 0.55;
}

/* ── Problem section ── */
.problem-section {
    background: var(--dark);
    padding: 100px 48px;
}

.problem-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.problem-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 44px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 96px;
    align-items: start;
}

.problem-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.8vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 28px;
}

.problem-body {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
}

.problem-quote {
    border-left: 2px solid var(--accent);
    padding-left: 28px;
}

.problem-quote-text {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
}

.problem-quote-attr strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}

.problem-quote-attr span {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ── How it works ── */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 48px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.section-eyebrow { margin-bottom: 12px; }

.section-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-headline em {
    font-style: italic;
    color: var(--accent);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hiw-step {
    padding: 36px 40px 36px 0;
    border-right: 1px solid var(--rule);
}
.hiw-step:last-child { border-right: none; padding-right: 0; }
.hiw-step:not(:first-child) { padding-left: 40px; }

.step-num {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 200;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.step-body {
    font-size: 13px;
    line-height: 1.75;
    color: var(--ink-soft);
}

/* ── Features ── */
.features-outer {
    background: var(--surface);
    padding: 96px 48px;
}

.features-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 2px;
    background: var(--rule);
    margin-top: 56px;
}

.feat-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--rule);
}

.feat-card {
    background: var(--bg);
    padding: 48px;
}

.feat-card.is-accent {
    background: var(--accent);
}

.feat-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 14px;
}
.feat-card.is-accent .feat-eyebrow { color: rgba(255,255,255,0.55); }

.feat-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
}
.feat-card.is-accent .feat-title { font-size: 34px; color: #fff; }

.feat-body {
    font-size: 13px;
    line-height: 1.75;
    color: var(--ink-soft);
}
.feat-card.is-accent .feat-body { font-size: 14px; color: rgba(255,255,255,0.72); }

.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 22px;
    color: var(--accent);
    letter-spacing: 0.02em;
    transition: gap 0.15s;
}
.feat-link:hover { gap: 9px; }
.feat-card.is-accent .feat-link { color: #fff; }

/* ── Stats ── */
.stats-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin: 64px 0;
}

.stat-item {
    padding: 48px 0;
    border-right: 1px solid var(--rule);
}
.stat-item:last-child { border-right: none; }
.stat-item:not(:first-child) { padding-left: 40px; }

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 200;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ── Capabilities ── */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
    margin-top: 56px;
}

.cap-item {
    padding: 28px 36px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 28px;
    align-items: start;
}

.cap-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.cap-desc {
    font-size: 12px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ── CTA ── */
.cta-section {
    background: var(--dark);
    padding: 112px 48px;
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
}

.cta-headline em {
    font-style: italic;
    color: var(--accent);
}

.cta-body {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 13px 28px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.15s;
}
.btn-accent:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
    padding: 13px 28px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.42);
    color: #fff;
}

/* ── Product Interstitial ── */
.interstitial {
    background: var(--dark);
    padding: 80px 48px;
    text-align: center;
}

.interstitial-inner {
    max-width: 720px;
    margin: 0 auto;
}

.interstitial-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.interstitial-headline em {
    font-style: italic;
    color: var(--accent);
}

.interstitial-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.38);
    margin-top: 16px;
    line-height: 1.6;
}

/* ── Product Preview Sections ── */
.preview-section {
    padding: 0 48px 96px;
}

.preview-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.preview-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 28px;
    text-align: center;
}

/* Admin Dashboard Mockup */
.app-mockup {
    background: #FDFCFB;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: 0 20px 60px rgba(26,21,16,0.10);
    display: flex;
    min-height: 560px;
}

.app-sidebar {
    width: 220px;
    background: var(--surface);
    border-right: 1px solid var(--rule);
    padding: 20px 0;
    flex-shrink: 0;
}

.app-sidebar-logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 12px;
}

.app-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: var(--ink-soft);
}

.app-nav-item.active {
    color: var(--ink);
    background: #FDFCFB;
    font-weight: 500;
    border-right: 2px solid var(--accent);
}

.app-nav-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: currentColor;
    opacity: 0.3;
    flex-shrink: 0;
}

.app-nav-item.active .app-nav-icon { opacity: 0.7; background: var(--accent); }

.app-main { flex: 1; overflow: hidden; }

.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-bottom: 1px solid var(--rule);
}

.app-page-title {
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.app-page-sub {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 2px;
}

.app-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: default;
    border: none;
}

.mock-btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--rule);
}

.mock-btn-primary {
    background: var(--accent);
    color: #FAF7F2;
}

.app-content { padding: 24px 28px; }

.mock-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.mock-stat-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 16px;
}

.mock-stat-card-label {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 8px;
}

.mock-stat-card-value {
    font-family: 'Geist Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}

.mock-stat-card-delta {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    color: #16A34A;
    font-weight: 500;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
}

.app-table thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 8px 12px;
    border-bottom: 1px solid var(--rule);
}

.app-table tbody td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
    vertical-align: middle;
}

.app-table tbody tr:hover td { background: var(--surface); }
.app-table tbody tr:last-child td { border-bottom: none; }

.mock-employee-name { font-weight: 500; color: var(--ink); }
.mock-employee-role { font-size: 11px; color: var(--ink-muted); margin-top: 1px; }

.cost-cell { font-family: 'Geist Mono', monospace; font-weight: 500; }

.budget-mini { display: flex; align-items: center; gap: 8px; }
.budget-mini-bar { width: 64px; height: 4px; background: var(--rule); border-radius: 2px; overflow: hidden; }
.budget-mini-fill { height: 100%; border-radius: 2px; }
.budget-pct { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--ink-soft); }

.mock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.mock-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-badge-active { background: #DCFCE7; color: #15803D; }
.mock-badge-active::before { background: #16A34A; }
.mock-badge-exhausted { background: #EDD8C8; color: #9A4520; }
.mock-badge-exhausted::before { background: #C4622D; }
.mock-badge-suspended { background: #FEF3C7; color: #92400E; }
.mock-badge-suspended::before { background: #D97706; }

/* Employee Portal Mockup */
.portal-mockup {
    background: #FDFCFB;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: 0 20px 60px rgba(26,21,16,0.10);
    display: flex;
    min-height: 480px;
}

.portal-sidebar {
    width: 220px;
    background: var(--surface);
    border-right: 1px solid var(--rule);
    padding: 20px 0;
    flex-shrink: 0;
}

.portal-main { flex: 1; overflow: hidden; }

.balance-card {
    background: #1A1510;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    color: #FAF7F2;
}

.balance-label {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B5E52;
    margin-bottom: 8px;
}

.balance-amount {
    font-family: 'Geist Mono', monospace;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

.balance-of {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    color: #A89888;
    margin-bottom: 20px;
}

.balance-bar {
    height: 6px;
    background: #2D2218;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.balance-fill {
    height: 100%;
    background: #16A34A;
    border-radius: 3px;
}

.balance-sub {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    color: #6B5E52;
    display: flex;
    justify-content: space-between;
}

.key-list { display: flex; flex-direction: column; gap: 8px; }

.key-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 8px;
}

.key-name {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
}

.key-meta {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--ink-muted);
}

.key-actions { display: flex; gap: 6px; align-items: center; }

/* ── Waitlist Form ── */
/* ── Waitlist Modal ── */
.waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.waitlist-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    animation: modal-fade-in 0.2s ease;
    cursor: pointer;
}

.waitlist-modal-card {
    position: relative;
    z-index: 1;
    background: var(--surface);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    margin: 16px;
    animation: modal-slide-in 0.22s ease;
}

.waitlist-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    padding: 6px;
    line-height: 0;
    transition: color 0.15s;
}

.waitlist-modal-close:hover {
    color: var(--ink);
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modal-slide-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.waitlist-header {
    text-align: center;
    margin-bottom: 40px;
}

.waitlist-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
}

.waitlist-sub {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: opacity 0.32s ease, transform 0.32s ease;
}
.waitlist-form.is-fading {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--rule);
    outline: none;
    transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
}

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

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B5E52' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.waitlist-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.15s, background 0.4s ease;
    width: 100%;
}
.waitlist-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.waitlist-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.waitlist-submit.btn-confirmed {
    background: #4A7C59;
    opacity: 1 !important;
}

.waitlist-success {
    text-align: center;
    padding: 32px 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.waitlist-success.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.waitlist-success-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease 0.1s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.waitlist-success.is-visible .waitlist-success-icon {
    opacity: 1;
    transform: scale(1);
}

.waitlist-success h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}
.waitlist-success.is-visible h3 {
    opacity: 1;
    transform: translateY(0);
}

.waitlist-success p {
    font-size: 14px;
    color: var(--ink-soft);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}
.waitlist-success.is-visible p {
    opacity: 1;
    transform: translateY(0);
}

.waitlist-error {
    font-size: 13px;
    color: #DC2626;
    margin-top: 8px;
}

.btn-start-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 13px 28px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.15s;
}
.btn-start-now:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-links { gap: 20px; }

    .hero-wrap {
        grid-template-columns: 1fr;
        padding: 64px 24px 56px;
        gap: 48px;
    }

    .problem-grid,
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }

    .features-grid { grid-template-columns: 1fr; }

    .hiw-grid { grid-template-columns: 1fr; }
    .hiw-step { border-right: none; border-bottom: 1px solid var(--rule); padding: 28px 0 !important; }
    .hiw-step:last-child { border-bottom: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--rule); }

    .cap-grid { grid-template-columns: 1fr; border-left: none; }
    .cap-item { grid-template-columns: 1fr; gap: 6px; border-left: 1px solid var(--rule); }

    .interstitial { padding: 56px 24px; }
    .preview-section { padding-left: 24px; padding-right: 24px; }

    .app-mockup, .portal-mockup { flex-direction: column; min-height: auto; }
    .app-sidebar, .portal-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--rule); padding: 16px 0; }
    .app-sidebar-logo { padding: 0 16px 12px; }
    .app-nav-item { padding: 6px 16px; }
    .app-topbar { padding: 14px 16px; flex-wrap: wrap; gap: 8px; }
    .app-content { padding: 16px; }
    .mock-stat-cards { grid-template-columns: repeat(2, 1fr); }
    .app-table { font-size: 12px; }
    .app-table thead th, .app-table tbody td { padding: 8px 6px; }
    .budget-mini-bar { width: 40px; }

    .section-wrap,
    .features-outer,
    .problem-section,
    .cta-section { padding-left: 24px; padding-right: 24px; }

    .trust-wrap,
    .stats-wrap { padding: 0 24px; }

    .waitlist-section { padding: 64px 24px; }
}
