﻿
:root {
    --ink: #0a0d12;
    --panel: #12151d;
    --panel2: #171b25;
    --line: rgba(255,255,255,.09);
    --amber: #f5a623;
    --flame: #e4572e;
    --cyan: #4dd8f2;
    --text: #f5f3ee;
    --muted: #98a0ad;
    --grad: linear-gradient(95deg,var(--amber),var(--flame));
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img, svg {
    display: block;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
}

.icon {
    flex-shrink: 0;
}


/* -------------------- HERO -------------------- */
.hero {
    position: relative;
    padding: 88px 0 70px;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -160px;
        width: 560px;
        height: 560px;
        background: radial-gradient(circle, rgba(228,87,46,.18), transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 54px);
    margin: 18px 0 20px;
}

    .hero h1 .accent {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero p.lead {
    color: var(--muted);
    font-size: 17px;
    max-width: 46ch;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--grad);
    color: #14100a;
    font-weight: 700;
    font-size: 14.5px;
    padding: 14px 24px;
    border-radius: 999px;
}

    .btn-primary svg {
        width: 17px;
        height: 17px;
        stroke: #14100a;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
    font-size: 14.5px;
    padding: 14px 22px;
    border-radius: 999px;
}

    .btn-ghost svg {
        width: 17px;
        height: 17px;
        stroke: var(--amber);
    }

.hero-stats {
    display: flex;
    gap: 30px;
}

    .hero-stats div strong {
        display: block;
        font-family: 'Fraunces', serif;
        font-size: 26px;
        color: var(--amber);
    }

    .hero-stats div span {
        font-size: 12.5px;
        color: var(--muted);
    }

/* signature scan-burst visual */
.scan-stage {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed var(--line);
    animation: spin 40s linear infinite;
}

    .scan-ring.r2 {
        inset: 40px;
        animation-duration: 30s;
        animation-direction: reverse;
        border-color: rgba(245,166,35,.18);
    }

    .scan-ring.r3 {
        inset: 80px;
        animation-duration: 22s;
        border-color: rgba(77,216,242,.18);
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scan-ring {
        animation: none;
    }
}

.scan-core {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(245,166,35,.35), rgba(228,87,46,.12) 60%, transparent 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(228,87,46,.15);
}

    .scan-core svg {
        width: 92px;
        height: 92px;
        stroke: var(--amber);
    }

.scan-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

    .scan-badge svg {
        width: 15px;
        height: 15px;
    }

.badge-1 {
    top: 6%;
    left: -4%;
    color: var(--amber);
}

    .badge-1 svg {
        stroke: var(--amber);
    }

.badge-2 {
    bottom: 10%;
    right: -6%;
    color: var(--amber);
}

    .badge-2 svg {
        stroke: var(--amber);
    }

/* -------------------- SECTION SHELL -------------------- */
section {
    padding: 74px 0;
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 640px;
    margin-bottom: 42px;
}

    .section-head h2 {
        font-size: clamp(26px, 3.4vw, 36px);
        margin-top: 14px;
    }

    .section-head p {
        color: var(--muted);
        margin-top: 12px;
        font-size: 15.5px;
    }

/* -------------------- TRUST STRIP -------------------- */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.trust-item {
    background: var(--panel);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .trust-item svg {
        width: 26px;
        height: 26px;
        stroke: var(--amber);
        flex-shrink: 0;
    }

    .trust-item strong {
        display: block;
        font-size: 14px;
    }

    .trust-item span {
        font-size: 12.5px;
        color: var(--muted);
    }

/* -------------------- CARD GRID -------------------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: border-color .2s ease, transform .2s ease;
}

    .card:hover {
        border-color: rgba(245,166,35,.4);
        transform: translateY(-3px);
    }

    .card .icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

        .card .icon-wrap svg {
            width: 24px;
            height: 24px;
            stroke: #14100a;
        }

    .card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .card p {
        font-size: 14px;
        color: var(--muted);
    }

/* condition / audience chips grid */
.chip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.chip {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
}

    .chip svg {
        width: 22px;
        height: 22px;
        stroke: var(--amber);
        flex-shrink: 0;
    }

/* -------------------- FAQ ACCORDION -------------------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 22px;
        font-family: 'Fraunces', serif;
        font-size: 16.5px;
        font-weight: 600;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .q-icon {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--panel2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

            .faq-item summary .q-icon svg {
                width: 18px;
                height: 18px;
                stroke: var(--amber);
            }

        .faq-item summary .chevron {
            margin-left: auto;
        }

            .faq-item summary .chevron svg {
                width: 18px;
                height: 18px;
                stroke: var(--muted);
                transition: transform .25s ease;
            }

    .faq-item[open] summary .chevron svg {
        transform: rotate(180deg);
    }

    .faq-item .faq-body {
        padding: 0 22px 22px 70px;
        color: var(--muted);
        font-size: 14.5px;
    }

/* -------------------- WHY CHOOSE -------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

    .why-item svg {
        width: 22px;
        height: 22px;
        stroke: var(--amber);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .why-item h4 {
        font-size: 14.5px;
        margin-bottom: 4px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }

    .why-item p {
        font-size: 13px;
        color: var(--muted);
    }

.doctor-card {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.doctor-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .doctor-avatar svg {
        width: 30px;
        height: 30px;
        stroke: #14100a;
    }

.doctor-card strong {
    font-size: 16px;
    font-family: 'Fraunces', serif;
}

.doctor-card span {
    font-size: 13px;
    color: var(--muted);
}

/* -------------------- CTA -------------------- */
.cta-band {
    border-top: 1px solid var(--line);
    padding: 70px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(245,166,35,.08), transparent 60%);
}

    .cta-band h2 {
        font-size: clamp(26px,3.6vw,38px);
        margin-bottom: 14px;
    }

    .cta-band p {
        color: var(--muted);
        max-width: 50ch;
        margin: 0 auto 28px;
    }

.cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .scan-stage {
        order: -1;
        max-width: 300px;
    }

    .grid-3, .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    nav.links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-cta span {
        display: none;
    }

    .grid-3, .trust-strip, .chip-grid, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .faq-item .faq-body {
        padding-left: 22px;
    }

    .hero {
        padding: 56px 0 46px;
    }
}


