/* ============================================================
   akitaki landing page
   Scoped under .landing-page. Only loaded on the landing page.
   ============================================================ */

/* ---- Global: smooth scroll ---- */
html {
    scroll-behavior: smooth;
}

/* ---- Custom properties ---- */
.landing-page {
    --l-card-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
    --l-card-shadow-hover: 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 1px 2px -1px rgba(0, 0, 0, 0.08), 0px 3px 6px 0px rgba(0, 0, 0, 0.06);
    --l-bg-alt: #F1F5F9;
    --l-bg-dark-alt: #E2E8F0;
    --l-max-width: 880px;
}

.landing-page main {
    max-width: var(--l-max-width);
}

/* ---- Section spacing ---- */
.landing-section {
    margin-top: 96px;
}

.landing-section--alt {
    background: var(--l-bg-alt);
    padding: 64px 32px;
    margin-left: -32px;
    margin-right: -32px;
    border-radius: 20px;
}

/* ============================================================
   1. HERO
   ============================================================ */

.landing-page .hero {
    margin-top: 32px;
}

/* Eyebrow pill */
.landing-page .label.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

/* Heading */
.landing-page h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    text-wrap: balance;
}

.landing-page h1 .second {
    display: block;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: -0.03em;
    font-size: 34px;
}

/* Hero grid */
.landing-page .hero-grid {
    grid-template-columns: 1fr 312px;
    gap: 72px;
    margin-top: 0;
}

/* Subhead */
.landing-page .subhead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 38rem;
    margin-bottom: 28px;
    text-wrap: pretty;
}

/* Hero feature cards — 2×2 grid inside .hero-text */
.landing-page .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.landing-page .hero-features .feature-card {
    padding: 16px 18px;
    background: var(--bg-pure);
    border-radius: 12px;
    box-shadow: var(--l-card-shadow);
    cursor: default;
}
.landing-page .hero-features .feature-card:hover {
    box-shadow: var(--l-card-shadow-hover);
}
.landing-page .hero-features .heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.landing-page .hero-features .body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Trust line */
.landing-page .trust {
    font-size: 13px;
    color: var(--muted);
    margin-top: 0;
    letter-spacing: 0.01em;
}

/* ---- Dial pad preview ---- */
.landing-page .pad {
    background: var(--bg-pure);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 4px 16px -4px rgba(0, 0, 0, 0.08), 0px 2px 6px 0px rgba(0, 0, 0, 0.04);
}

.landing-page .pad-display {
    background: var(--bg-pure);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.landing-page .pad-display .number {
    font-family: "SF Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.landing-page .pad-display .rate {
    margin-top: 4px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.01em;
}

/* Display row — number + backspace side by side */
.landing-page .pad-display .display-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-page .pad-display .display-row .number {
    flex: 1;
}

.landing-page .pad-backspace {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: color 100ms ease, background 100ms ease;
}
.landing-page .pad-backspace:hover {
    color: var(--text);
    background: var(--border);
}

.landing-page .pad-error {
    margin-top: 6px;
    font-size: 11px;
    color: #DC2626;
    letter-spacing: 0.01em;
}

/* Static signup form and inline auth — both live inside .pad */
#pad-signup,
#inline-auth {
    margin-top: 14px;
}
#pad-signup .auth-form,
#inline-auth .auth-form {
    margin: 0;
    border: 0;
    padding: 0;
}

/* Landing call view — replaces inline-auth */
.landing-page .call-view {
    margin-top: 12px;
}
.landing-page .call-view p {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--text);
}
.landing-page .call-view .dtmf-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 10px 0;
}
.landing-page .call-view .dtmf-pad button {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-pure);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--text);
    transition: background 100ms ease;
}
.landing-page .call-view .dtmf-pad button:hover {
    background: #F1F5F9;
}
.landing-page .call-view .dtmf-pad button:active {
    background: #E2E8F0;
}
.landing-page .call-view .call-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.landing-page .call-view .call-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-pure);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--text);
    transition: background 100ms ease;
}
.landing-page .call-view .call-actions button:hover {
    background: #F1F5F9;
}
#landing-hangup-btn {
    color: #DC2626 !important;
    border-color: #DC2626 !important;
}

/* Call now button disabled state */
.landing-page .pad-call:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.landing-page .pad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.landing-page .pad-grid button {
    aspect-ratio: 1;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    font-family: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform 100ms ease, box-shadow 100ms ease, background 120ms ease;
}

.landing-page .pad-grid button small {
    font-size: 8px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.07em;
    margin-top: 3px;
}

.landing-page .pad-grid button:hover {
    background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.landing-page .pad-grid button:active {
    transform: scale(0.96);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #E2E8F0 0%, #CBD5E1 100%);
}

.landing-page .pad-call {
    margin-top: 14px;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: white;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 3px 12px rgba(217, 119, 6, 0.3);
    transition: box-shadow 120ms ease, transform 120ms ease, background 120ms ease;
}

.landing-page .pad-call:hover {
    background: linear-gradient(135deg, #B45309 0%, #92400E 100%);
    box-shadow: 0 5px 16px rgba(217, 119, 6, 0.38);
    transform: translateY(-1px);
}

.landing-page .pad-call:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

/* ---- Fact strip ---- */
.landing-page .fact-strip {
    display: flex;
    background: var(--bg-pure);
    border-radius: 14px;
    padding: 22px 8px;
    margin-top: 52px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.landing-page .fact-strip > div {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 0 12px;
}

.landing-page .fact-strip > div:last-child {
    border-right: none;
}

.landing-page .fact-strip strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

/* ============================================================
   2. WHAT IT IS (features)
   ============================================================ */

.landing-page .what-grid {
    gap: 20px;
    margin-top: 28px;
}

.landing-page .feature-card {
    padding: 30px 28px 32px;
    background: var(--bg-pure);
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-page .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--l-card-shadow-hover);
}

.landing-page .feature-card .heading {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-page .feature-card .heading::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.55;
}

.landing-page .feature-card .body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 18px;
    text-wrap: pretty;
}

/* ============================================================
   3. WHO IT'S FOR (audience)
   ============================================================ */

.landing-page .who {
    /* Standard white bg, no alt treatment needed */
}

.landing-page .who h2 {
    margin-bottom: 20px;
}

.landing-page .who > p {
    max-width: 42rem;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 0;
    text-wrap: pretty;
}

.landing-page .callout {
    background: linear-gradient(135deg, #FEF3C7 0%, #F8FAFC 100%);
    border-left: 5px solid var(--accent);
    border-radius: 0 14px 14px 0;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--text);
    padding: 28px 32px;
    margin: 36px 0;
    position: relative;
}

.landing-page .callout::before {
    content: "\201C";
    position: absolute;
    top: -14px;
    left: 20px;
    font-size: 88px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    font-family: Georgia, "Times New Roman", serif;
    pointer-events: none;
}

.landing-page .who > p:last-of-type {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   4. PRICING
   ============================================================ */

.landing-page .pricing .lede {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 36rem;
    text-wrap: pretty;
}

.landing-page .price-grid {
    gap: 16px;
    margin: 28px 0 24px;
}

.landing-page .price-card {
    padding: 28px 22px 26px;
    background: var(--bg-pure);
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    text-align: center;
}

.landing-page .price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--l-card-shadow-hover);
}

.landing-page .price-card.popular {
    background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
    box-shadow: 0 0 0 1px var(--accent), 0 4px 16px rgba(217, 119, 6, 0.12);
}

.landing-page .price-card .amount {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.landing-page .price-card .price-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

.landing-page .price-card .ribbon {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

.landing-page .pricing > p {
    font-size: 16px;
    color: var(--muted);
    max-width: 38rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.landing-page .pricing > p:last-of-type {
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--accent-soft);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
}

/* ============================================================
   5. WHAT IT ISN'T (anti-features)
   ============================================================ */

.landing-page .isnt .lede {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 36rem;
    text-wrap: pretty;
}

.landing-page .isnt-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    border-top: 1px solid var(--border-strong);
}

.landing-page .isnt-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    gap: 6px;
    align-items: baseline;
    margin: 0;
}

.landing-page .isnt-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    font-family: "SF Mono", ui-monospace, Consolas, monospace;
}

.landing-page .isnt-what {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.landing-page .isnt-why {
    color: var(--muted);
    font-size: 14.5px;
    display: block;
    margin-top: 3px;
    text-wrap: pretty;
}

.landing-page .isnt-postscript {
    margin-top: 28px;
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
}

/* ============================================================
   6. FAQ
   ============================================================ */

.landing-page .faq-list {
    margin-top: 24px;
}

.landing-page .faq-item {
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.landing-page .faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.landing-page .faq-q {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.landing-page .faq-q::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.4;
}

.landing-page .faq-a {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 16px;
    margin: 0;
    text-wrap: pretty;
}

.landing-page .faq-a em {
    font-style: italic;
    color: #999;
}

/* ============================================================
   7. FINAL CTA
   ============================================================ */

.landing-page .final-cta {
    margin-top: 96px;
    padding: 44px 40px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #F8FAFC 35%, transparent 65%);
    border-radius: 20px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.landing-page .final-cta h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.landing-page .final-cta > p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 38rem;
    line-height: 1.6;
    text-wrap: pretty;
}

/* Refined auth form in the landing CTA */
.landing-page .auth-form {
    max-width: 34rem;
    gap: 12px;
}

.landing-page .auth-field input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
}

.landing-page .auth-form button[type="submit"] {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(217, 119, 6, 0.28);
    transition: box-shadow 120ms ease, transform 120ms ease, background 120ms ease;
}

.landing-page .auth-form button[type="submit"]:hover {
    box-shadow: 0 5px 18px rgba(217, 119, 6, 0.35);
    transform: translateY(-1px);
}

.landing-page .auth-form button[type="submit"]:active {
    transform: translateY(0) scale(0.96);
}

.landing-page .auth-form button .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

.landing-page .auth-form.htmx-request button .btn-text {
    display: none;
}

.landing-page .auth-form.htmx-request button .spinner {
    display: inline-block;
}

.landing-page .auth-form.htmx-request button[type="submit"] {
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

/* ---- Final CTA button ---- */
.landing-page .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(217, 119, 6, 0.25);
    transition: box-shadow 120ms ease, transform 120ms ease;
}
.landing-page .cta-button:hover {
    box-shadow: 0 5px 18px rgba(217, 119, 6, 0.35);
    transform: translateY(-1px);
}
.landing-page .cta-button:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

/* ============================================================
   8. FOOTER
   ============================================================ */

.landing-page footer {
    margin-top: 100px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
    position: relative;
}

/* Amber accent line — the one crafted detail */
.landing-page footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 52px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Three-zone grid: brand left, two nav groups right */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 72px;
    margin-bottom: 28px;
}

/* Brand column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin: 0 0 2px;
    color: var(--ink);
}

.footer-tagline {
    font-size: 13px;
    color: var(--ink-secondary);
    margin: 0;
}

.footer-email {
    font-size: 13px;
    color: var(--ink-secondary);
    text-decoration: none;
    margin-top: 6px;
    transition: color 150ms ease;
}

.footer-email:hover {
    color: var(--amber);
}

/* Nav groups */
.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-tertiary);
    margin: 0;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-nav-group a {
    font-size: 13px;
    color: var(--ink-secondary);
    text-decoration: none;
    transition: color 150ms ease;
}

.footer-nav-group a:hover {
    color: var(--ink);
}

/* Bottom bar */
.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 12px;
    color: var(--ink-tertiary);
    margin: 0;
}

/* ============================================================
   9. ANIMATIONS
   ============================================================ */

@keyframes l-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page .landing-animate {
    animation: l-fade-up 0.65s ease both;
}

.landing-page .landing-animate--d1  { animation-delay: 0s; }
.landing-page .landing-animate--d2  { animation-delay: 0.15s; }
.landing-page .landing-animate--d3  { animation-delay: 0.3s; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .landing-page .landing-animate {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .landing-page .feature-card,
    .landing-page .price-card {
        transition: none;
    }

    .landing-page .feature-card:hover,
    .landing-page .price-card:hover {
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---- Focus states ---- */
.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.landing-page .feature-card:focus-visible,
.landing-page .price-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 16px;
}

/* ---- Anchor link offset for fixed header ---- */
.landing-page [id] {
    scroll-margin-top: 24px;
}

/* ============================================================
   10. RESPONSIVE
   ============================================================ */

@media (max-width: 720px) {
    .landing-page main {
        padding: 12px 20px 56px;
    }

    .landing-page h1 {
        font-size: 38px;
        letter-spacing: -0.025em;
    }

    .landing-page h1 .second {
        font-size: 24px;
    }

    .landing-page .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-page .hero-aside .pad {
        max-width: 320px;
        margin: 0 auto;
    }

    .landing-page .subhead {
        font-size: 17px;
    }

    .landing-page .fact-strip {
        flex-wrap: wrap;
        padding: 8px 4px;
    }

    .landing-page .fact-strip > div {
        flex: 1 1 50%;
        padding: 12px 8px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .landing-page .fact-strip > div:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .landing-page .fact-strip > div:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .landing-page .fact-strip strong {
        font-size: 15px;
    }

    /* Features */
    .landing-page .what-grid {
        grid-template-columns: 1fr;
    }

    .landing-section--alt {
        padding: 48px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 14px;
    }

    /* Audience */
    .landing-page .callout {
        font-size: 20px;
        padding: 22px 22px;
    }

    .landing-page .callout::before {
        font-size: 60px;
        top: -8px;
        left: 12px;
    }

    /* Pricing */
    .landing-page .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .landing-page .price-card .amount {
        font-size: 28px;
    }

    /* Final CTA */
    .landing-page .final-cta {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .landing-page .final-cta h2 {
        font-size: 28px;
    }

    .landing-page .auth-form {
        flex-direction: column;
    }

    .landing-page .auth-form button[type="submit"] {
        width: 100%;
    }

    .landing-page .auth-switch {
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }

    /* Disable animations on mobile */
    .landing-page .landing-animate {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   11. DASHBOARD (authenticated home — under .landing-page)
   ============================================================ */

/* Welcome block — match landing h1 rhythm */
.landing-page .dash-welcome {
    margin-bottom: 40px;
    margin-top: 8px;
}

.landing-page .dash-title {
    font-size: 44px;
    letter-spacing: -0.035em;
}

.landing-page .dash-email {
    font-size: 17px;
    color: var(--muted);
    margin-top: 8px;
}

/* Stat cards — landing card treatment */
.landing-page .stat-card {
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    padding: 24px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
    .landing-page .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--l-card-shadow-hover);
    }
}

.landing-page .stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.landing-page .stat-value {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Top-up card — landing card treatment */
.landing-page .topup-card {
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    padding: 26px 24px;
}

.landing-page .topup-desc {
    font-size: 14px;
    margin-bottom: 16px;
}

/* Voucher buttons — accent hover */
.landing-page .topup-card .voucher-btn {
    border-radius: 10px;
}

.landing-page .topup-card .voucher-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

/* Section headers — match landing h2 */
.landing-page .dash-section {
    margin-bottom: 48px;
}

.landing-page .dash-section-header {
    margin-bottom: 20px;
}

.landing-page .dash-section-title {
    font-size: 26px;
    letter-spacing: -0.025em;
}

.landing-page .dash-section-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

.landing-page .dash-section-link:hover {
    text-decoration: underline;
}

/* Recent calls table */
.landing-page .dash-table {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--l-card-shadow);
}

.landing-page .dash-table th {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 14px 16px 10px;
    background: var(--bg-pure);
    border-bottom: 1px solid var(--border);
}

.landing-page .dash-table td {
    padding: 14px 16px;
    background: var(--bg-pure);
    border-bottom: 1px solid var(--border);
}

.landing-page .dash-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-page .dash-table tbody tr:hover td {
    background: var(--accent-soft);
}

/* Empty state */
.landing-page .dash-empty {
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    padding: 32px 24px;
}

/* Settings card */
.landing-page .setting-card {
    border-radius: 16px;
    box-shadow: var(--l-card-shadow);
    padding: 26px 28px;
    gap: 8px;
}

.landing-page .setting-label {
    font-size: 16px;
}

.landing-page .setting-hint {
    font-size: 14px;
}

.landing-page .setting-manage {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

.landing-page .setting-manage:hover {
    text-decoration: underline;
}

/* Sign out */
.landing-page .dash-footer {
    padding-top: 12px;
}

.landing-page .logout-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-strong);
    color: var(--muted);
    background: var(--bg-pure);
    cursor: pointer;
    transition: border-color 120ms ease, color 120ms ease;
}

.landing-page .logout-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Dashboard responsive — match landing breakpoints */
@media (max-width: 860px) {
    .landing-page .dash-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .landing-page .dash-pad-col .pad {
        max-width: 340px;
    }

    .landing-page .dash-side-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .landing-page .dash-title {
        font-size: 32px;
    }

    .landing-page .dash-hero {
        gap: 20px;
    }

    .landing-page .dash-pad-col .pad {
        max-width: none;
    }

    .landing-page .dash-side-col {
        grid-template-columns: 1fr;
    }

    .landing-page .dash-section-title {
        font-size: 22px;
    }

    .landing-page .dash-section {
        margin-bottom: 36px;
    }

    .landing-page .dash-table th:nth-child(5),
    .landing-page .dash-table td:nth-child(5) {
        display: none;
    }

    /* Disable hover lifts on mobile */
    .landing-page .stat-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .landing-page .dash-table th:nth-child(3),
    .landing-page .dash-table td:nth-child(3) {
        display: none;
    }
}

/* Trust line below fact strip */
.trust-line {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--ink-secondary);
}
.trust-line a {
    color: var(--ink-secondary);
    text-decoration: underline;
}
.trust-line a:hover {
    color: var(--ink);
}

/* Hero tagline below h1 */
.hero-tagline {
    text-align: center;
    color: var(--ink-secondary);
    font-size: 0.95rem;
    margin: 0 0 28px;
}
