*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-weight: 400; color: #1a1a2e; line-height: 1.65; }

:root {
    --ember: #f05c23;
    --ember-hover: #d94d18;
    --ember-glow: rgba(240, 92, 35, 0.32);
    --ember-dim: rgba(240, 92, 35, 0.12);
    --base: #080f1a;
    --surface: #0d1724;
    --surface-hi: #13203a;
    --canvas: #f0ebe1;
    --canvas-mid: #e8e2d6;
    --white: #ffffff;
    --ink: #0d1117;
    --ink-mid: #374151;
    --muted-dark: rgba(240, 240, 255, 0.58);
    --radius: 12px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.18);
}

.arch-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-ember {
    background: var(--ember);
    color: var(--white);
    box-shadow: 0 4px 20px var(--ember-glow);
}
.btn-ember:hover {
    background: var(--ember-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--ember-glow);
    color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--base);
    color: var(--white);
    border-color: var(--ember);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.btn-dark:hover {
    background: var(--ember);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── BRAND LOGO ── */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px var(--ember-glow));
}
.site-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    white-space: nowrap;
}
.site-logo-text em {
    font-style: normal;
    color: var(--ember);
}
.site-logo--sm .site-logo-mark { width: 30px; height: 30px; }
.site-logo--sm .site-logo-text { font-size: 1rem; }

/* ── TOPSTRIP ── */
#topstrip {
    background: var(--base);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 0;
}
#topstrip .arch-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.topstrip-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topstrip-contact {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    color: var(--muted-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.topstrip-contact svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--ember); }
.topstrip-contact:hover { color: var(--white); }
.topstrip-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.topstrip-phone svg { width: 16px; height: 16px; color: var(--ember); }
.topstrip-phone:hover { color: var(--ember); }

/* ── PRIMARY NAV ── */
#prime-nav {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.prime-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.prime-links li { position: relative; }
.prime-links li a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.prime-links li a:hover,
.prime-links li a:focus { color: var(--white); background: rgba(255,255,255,0.08); outline: none; }
.nav-cta-phone {
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.nav-cta-phone:hover { color: var(--ember); }
.nav-cta-phone svg { width: 14px; height: 14px; color: var(--ember); flex-shrink: 0; }

/* Hamburger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mob-menu { display: none; background: #0a1525; border-top: 1px solid rgba(255,255,255,0.07); }
#mob-menu.open { display: block; }
#mob-menu .mob-inner { padding: 12px 20px 24px; max-height: 72vh; overflow-y: auto; }
#mob-menu ul { list-style: none; }
#mob-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}
#mob-menu ul li a:hover { color: var(--ember); }

/* ── HERO (LAUNCH) ── */
#launch {
    background: linear-gradient(150deg, #060c17 0%, #0a1528 50%, #0e1f38 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
#launch::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(240,92,35,0.14) 0%, transparent 65%);
    pointer-events: none;
}
#launch::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240,92,35,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.launch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.launch-copy { color: var(--white); }
.launch-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ember);
    background: var(--ember-dim);
    border: 1px solid rgba(240,92,35,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 22px;
    font-family: 'Sora', sans-serif;
}
.launch-tag svg { width: 13px; height: 13px; flex-shrink: 0; }
#launch h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
#launch h1 span { color: var(--ember); }
.launch-strapline {
    font-size: clamp(0.92rem, 1.6vw, 1.06rem);
    color: var(--muted-dark);
    margin-bottom: 28px;
    line-height: 1.75;
    max-width: 500px;
}
.launch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.launch-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px 14px;
}
.launch-chip svg { width: 14px; height: 14px; flex-shrink: 0; color: #4ade80; }
.launch-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Ranking widget */
.rank-widget {
    background: var(--surface-hi);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,92,35,0.1);
    position: relative;
    overflow: hidden;
}
.rank-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ember), #ff8c5a);
}
.rank-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rank-head-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
}
.rank-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.rank-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.rank-cols {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rank-col-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}
.rank-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rank-row:last-child { border-bottom: none; }
.rank-kw {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
}
.rank-pos {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-end;
}
.rank-pos-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    min-width: 34px;
    text-align: right;
    transition: color 0.3s;
}
.rank-pos-num.rank-final { color: var(--ember); }
.rank-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.15);
    flex-shrink: 0;
}
.rank-arrow svg { width: 11px; height: 11px; color: #4ade80; }
.rank-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}
.rank-footer svg { width: 13px; height: 13px; flex-shrink: 0; color: #4ade80; }
.rank-area-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    margin-top: 4px;
    font-style: italic;
}

/* ── PROOF STRIP (light canvas) ── */
#proof {
    background: var(--canvas);
    padding: 40px 0;
    border-top: 1px solid var(--canvas-mid);
    border-bottom: 1px solid var(--canvas-mid);
}
.proof-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.proof-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--canvas-mid);
    border-left: 4px solid var(--ember);
    border-radius: 8px;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.proof-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.proof-pill strong { color: var(--ember); }

/* ── OFFER (dark services) ── */
#offer {
    background: var(--base);
    padding: 90px 0;
    position: relative;
}
#offer .section-label {
    text-align: center;
    margin-bottom: 56px;
}
.section-label h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.section-label h2 span { color: var(--ember); }
.section-label p {
    font-size: 1rem;
    color: var(--muted-dark);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
.section-label--dark h2 { color: var(--ink); }
.section-label--dark p { color: var(--ink-mid); }

.offer-strip {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 36px;
    align-items: start;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 36px 36px;
    margin-bottom: 20px;
    transition: border-color 0.22s, box-shadow 0.22s;
    position: relative;
    overflow: hidden;
}
.offer-strip::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--ember);
    border-radius: 16px 0 0 16px;
}
.offer-strip:hover {
    border-color: rgba(240,92,35,0.25);
    box-shadow: 0 8px 40px rgba(240,92,35,0.1);
}
.offer-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--ember-dim);
    border: 1px solid rgba(240,92,35,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ember);
    transition: background 0.22s;
}
.offer-strip:hover .offer-icon-wrap { background: rgba(240,92,35,0.2); }
.offer-icon-wrap svg { width: 30px; height: 30px; }
.offer-body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.offer-body p {
    font-size: 0.95rem;
    color: var(--muted-dark);
    line-height: 1.75;
    margin-bottom: 18px;
}
.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.offer-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 4px 12px;
}
.offer-feat svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--ember); }
.offer-body .btn { font-size: 0.88rem; padding: 10px 22px; }

/* ── WAVE DIVIDERS ── */
.wave-sep { display: block; line-height: 0; overflow: hidden; }
.wave-sep svg { width: 100%; display: block; }
.wave-to-canvas { background: var(--base); }
.wave-to-dark { background: var(--canvas); }
.wave-to-base { background: var(--canvas); }

/* ── METHOD (light — process 2×2 grid) ── */
#method {
    background: var(--canvas);
    padding: 90px 0;
}
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--canvas-mid);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    margin-top: 52px;
}
.method-cell {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.22s;
}
.method-cell:hover { background: #faf9f7; }
.method-num {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--ember);
    opacity: 0.12;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
}
.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ember-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ember);
    border: 1px solid rgba(240,92,35,0.2);
    transition: background 0.22s;
}
.method-cell:hover .method-icon { background: rgba(240,92,35,0.2); }
.method-icon svg { width: 22px; height: 22px; }
.method-cell h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.method-cell p {
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.7;
}

/* ── MIDPOINT (dark CTA with stats) ── */
#midpoint {
    background: linear-gradient(135deg, #07101f 0%, #0d1a30 50%, #121e3a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#midpoint::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(240,92,35,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.midpoint-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ember);
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
    position: relative;
}
#midpoint h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}
#midpoint > .arch-wrap > p {
    color: var(--muted-dark);
    font-size: 1rem;
    margin-bottom: 44px;
    position: relative;
}
.stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    position: relative;
}
.stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.14);
    flex-shrink: 0;
}
.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-num em {
    font-style: normal;
    color: var(--ember);
    font-size: 1.2rem;
    vertical-align: super;
}
.stat-caption { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.04em; }
.midpoint-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

/* ── EDGE (light — why us) ── */
#edge {
    background: var(--canvas);
    padding: 90px 0;
}
.edge-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 52px;
}
.edge-item {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 18px 24px;
    text-align: center;
    border: 1px solid var(--canvas-mid);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.edge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(240,92,35,0.12);
    border-color: rgba(240,92,35,0.3);
}
.edge-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ember-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--ember);
    border: 2px solid rgba(240,92,35,0.2);
    transition: background 0.22s, border-color 0.22s;
}
.edge-item:hover .edge-icon { background: var(--ember); color: var(--white); border-color: var(--ember); }
.edge-icon svg { width: 22px; height: 22px; }
.edge-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.edge-item p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.65; }

/* ── VOICES (dark testimonials) ── */
#voices {
    background: var(--base);
    padding: 90px 0;
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.voice-card {
    background: var(--surface);
    border-radius: 14px;
    padding: 30px 26px 26px;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--ember);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.3); }
.voice-card::after {
    content: '\201C';
    position: absolute;
    bottom: -10px;
    right: 18px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(240,92,35,0.1);
    line-height: 1;
    pointer-events: none;
}
.voice-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember), #ff8c5a);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px var(--ember-glow);
    font-family: 'Sora', sans-serif;
}
.voice-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.voice-quote {
    font-size: 0.9rem;
    color: var(--muted-dark);
    margin-bottom: 18px;
    font-style: italic;
    line-height: 1.75;
    position: relative;
}
.voice-name { font-weight: 700; font-size: 0.88rem; color: var(--white); font-family: 'Sora', sans-serif; }
.voice-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ── DEEP (light — SEO content accordion) ── */
#deep {
    background: var(--canvas);
    padding: 90px 0;
}
.deep-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
    margin-top: 52px;
}
.deep-intro {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Accordion */
.accord-item {
    border-bottom: 1px solid var(--canvas-mid);
}
.accord-item:first-child { border-top: 1px solid var(--canvas-mid); }
.accord-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.2s;
}
.accord-trigger:hover { color: var(--ember); }
.accord-trigger[aria-expanded="true"] { color: var(--ember); }
.accord-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--canvas-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
}
.accord-trigger[aria-expanded="true"] .accord-icon {
    background: var(--ember);
    transform: rotate(45deg);
}
.accord-icon svg { width: 12px; height: 12px; color: var(--ink); transition: color 0.2s; }
.accord-trigger[aria-expanded="true"] .accord-icon svg { color: var(--white); }
.accord-body {
    display: none;
    padding: 0 0 22px;
}
.accord-body.open { display: block; }
.accord-body p {
    font-size: 0.92rem;
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 12px;
}
.accord-body p:last-child { margin-bottom: 0; }
.accord-body strong { color: var(--ink); }

/* Sticky sidebar nav */
.deep-nav {
    position: sticky;
    top: 80px;
    background: var(--white);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--canvas-mid);
}
.deep-nav-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.4);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--canvas-mid);
}
.deep-nav-links { list-style: none; }
.deep-nav-links li { margin-bottom: 2px; }
.deep-nav-link {
    display: block;
    padding: 7px 10px;
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    font-weight: 500;
}
.deep-nav-link:hover,
.deep-nav-link.active {
    color: var(--ember);
    background: var(--ember-dim);
    border-left-color: var(--ember);
}
.deep-nav-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--canvas-mid);
}
.deep-nav-cta .btn { width: 100%; text-align: center; font-size: 0.88rem; padding: 10px 16px; }

/* ── CLOSE (dark bottom CTA) ── */
#close {
    background: linear-gradient(145deg, #070e1c 0%, #0c1628 55%, #11203e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#close::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(240,92,35,0.16) 0%, transparent 65%);
    pointer-events: none;
}
.close-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.close-copy h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.close-copy > p {
    color: var(--muted-dark);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
}
.close-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.close-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
}
.close-checklist li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--ember); }
.close-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    backdrop-filter: blur(6px);
}
.close-phone-wrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    margin-bottom: 22px;
}
.close-phone-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember), #ff8c5a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px var(--ember-glow);
}
.close-phone-icon svg { width: 20px; height: 20px; color: var(--white); }
.close-phone-label { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.close-phone-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}
.close-phone-num:hover { color: var(--ember); }
.close-phone-sub { font-size: 0.74rem; color: rgba(255,255,255,0.38); margin-top: 3px; }
.close-or {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.28);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 18px 0;
}
.close-or::before, .close-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.close-card .btn { width: 100%; text-align: center; }
.close-card-note { font-size: 0.76rem; color: rgba(255,255,255,0.36); margin-top: 10px; }

/* ── BACK TO TOP ── */
#back-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ember);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--ember-glow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    transform: translateY(10px);
}
#back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--ember-glow); }
#back-top svg { width: 20px; height: 20px; }

/* ── FOOTER ── */
#site-footer {
    background: #050c17;
    color: rgba(255,255,255,0.72);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.foot-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ember);
    display: inline-block;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.foot-col p { font-size: 0.85rem; margin-bottom: 8px; line-height: 1.65; }
.foot-col > a:not(.site-logo):not(.btn),
.foot-col a.foot-link {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    font-size: 0.84rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.18s, padding-left 0.18s;
}
.foot-col > a:not(.site-logo):not(.btn):hover,
.foot-col a.foot-link:hover { color: var(--white); padding-left: 4px; }
.foot-logo-wrap { margin-bottom: 14px; }
.foot-phone { font-size: 1.1rem; font-weight: 700; margin-top: 12px; margin-bottom: 4px; }
.foot-phone a { color: var(--white) !important; font-size: 1.1rem !important; font-weight: 700 !important; text-decoration: none; }
.foot-email { font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-bottom: 0; }
.foot-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}
.foot-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--ember); }
.foot-contact-line a { color: var(--white); text-decoration: none; font-weight: 600; }
.foot-contact-line a:hover { color: var(--ember); }
.foot-cta-btn { margin-top: 8px; padding: 10px 20px; font-size: 0.86rem; width: 100%; text-align: center; }

/* Social icons */
.foot-social { display: flex; gap: 9px; margin-top: 14px; margin-bottom: 14px; }
.soc-icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.soc-icon svg { width: 15px; height: 15px; display: block; }
.soc-icon:hover { background: var(--ember); border-color: var(--ember); color: var(--white); transform: translateY(-2px); }
.foot-address { font-style: normal; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 10px; margin-top: 10px; }
.foot-address p { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin-bottom: 2px; }

.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.34);
}
.foot-bottom .arch-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { color: rgba(255,255,255,0.34); text-decoration: none; }
.foot-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── FORM FIELDS ── */
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 5px; color: #374151; }
input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 0.93rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--ember);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,92,35,0.1);
}
textarea { resize: vertical; min-height: 96px; }
.field-honey { display: none !important; visibility: hidden; }
.field-submit { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
.field-submit .btn { width: 100%; padding: 14px; font-size: 1rem; }
#form-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 11px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}
#form-msg.success { background: #d1fae5; color: #065f46; display: block; }
#form-msg.error { background: #fee2e2; color: #991b1b; display: block; }
.btn-spinner {
    width: 17px; height: 17px;
    display: inline-block; vertical-align: middle; margin-right: 6px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FADE IN ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-wrap { padding: 60px 0 80px; background: var(--base); min-height: 60vh; }
.legal-body { color: rgba(255,255,255,0.8); }
.legal-body h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.legal-body > p:first-of-type { color: rgba(255,255,255,0.4); margin-bottom: 28px; font-size: 0.86rem; }
.legal-body h2 {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ember);
    margin: 38px 0 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.legal-body p { font-size: 0.93rem; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body ul li { font-size: 0.93rem; color: rgba(255,255,255,0.68); line-height: 1.8; }
.legal-body a { color: var(--ember); text-decoration: underline; }
.legal-body strong { color: rgba(255,255,255,0.88); }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
    .edge-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .launch-grid { grid-template-columns: 1fr; gap: 40px; }
    .launch-copy { text-align: center; }
    .launch-chips { justify-content: center; }
    .launch-btns { justify-content: center; }
    .rank-widget { max-width: 520px; margin: 0 auto; }
    .close-inner { grid-template-columns: 1fr; gap: 36px; }
    .stat-row { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .stat-cell { padding: 0 20px; }
    .voice-grid { grid-template-columns: 1fr 1fr; }
    .method-grid { grid-template-columns: 1fr; }
    .deep-inner { grid-template-columns: 1fr; }
    .deep-nav { position: static; }
}
@media (max-width: 860px) {
    .prime-links, .nav-cta-phone { display: none; }
    .nav-burger { display: flex; }
    .offer-strip { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 680px) {
    .foot-grid { grid-template-columns: 1fr; gap: 30px; }
    .foot-legal-links { width: 100%; }
    #topstrip .arch-wrap { flex-direction: column; text-align: center; }
    .topstrip-left { flex-direction: column; gap: 8px; }
    .edge-grid { grid-template-columns: repeat(2, 1fr); }
    .voice-grid { grid-template-columns: 1fr; }
    .proof-pills { flex-direction: column; align-items: stretch; }
    .proof-pill { justify-content: center; }
    .field-group { grid-template-columns: 1fr; }
    .field-full { grid-column: 1; }
    .field-submit { grid-column: 1; }
    #form-msg { grid-column: 1; }
}
@media (max-width: 480px) {
    .edge-grid { grid-template-columns: 1fr; }
    .launch-btns { flex-direction: column; align-items: stretch; }
    .launch-btns .btn { text-align: center; }
    .midpoint-btns { flex-direction: column; align-items: stretch; }
    .midpoint-btns .btn { text-align: center; }
}
