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

:root {
    --primary: #0e1428;
    --secondary: #f6f1e8;
    --accent: #c3fbcb;
    --neutral: #818783;
    --primary-96: rgba(14, 20, 40, 0.96);
    --primary-88: rgba(14, 20, 40, 0.88);
    --primary-12: rgba(14, 20, 40, 0.12);
    --primary-08: rgba(14, 20, 40, 0.08);
    --secondary-92: rgba(246, 241, 232, 0.92);
    --secondary-62: rgba(246, 241, 232, 0.62);
    --secondary-18: rgba(246, 241, 232, 0.18);
    --secondary-10: rgba(246, 241, 232, 0.1);
    --secondary-06: rgba(246, 241, 232, 0.06);
    --accent-56: rgba(195, 251, 203, 0.56);
    --accent-34: rgba(195, 251, 203, 0.34);
    --accent-20: rgba(195, 251, 203, 0.2);
    --accent-12: rgba(195, 251, 203, 0.12);
    --accent-08: rgba(195, 251, 203, 0.08);
    --accent-05: rgba(195, 251, 203, 0.05);
    --display: "Anton", sans-serif;
    --serif: "Times New Roman", Times, serif;
    --container: 1320px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--serif);
    overflow-x: hidden;
    cursor: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(rgba(14, 20, 40, 0.8) 0.6px, transparent 0.6px),
        linear-gradient(rgba(14, 20, 40, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 20, 40, 0.08) 1px, transparent 1px);
    background-size:
        6px 6px,
        88px 88px,
        88px 88px;
}

::selection {
    background: var(--neutral) !important;
    color: var(--primary) !important;
}

/* ── CURSOR ── */
.cur-dot,
.cur-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cur-dot {
    width: 8px;
    height: 8px;
    background: var(--neutral) !important;
    box-shadow: 0 0 22px var(--accent-12) !important;
}

.cur-ring {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--neutral) !important;
    background: var(--accent-12) !important;
    transition:
        width 0.26s,
        height 0.26s,
        border-color 0.26s,
        background 0.26s;
}

body:has(a:hover) .cur-ring,
body:has(button:hover) .cur-ring {
    width: 70px;
    height: 70px;
    border-color: var(--accent-12) !important;
    background: var(--accent-12) !important;
}

/* ── PROGRESS ── */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 9999;
    background: linear-gradient(90deg, var(--accent), #9ef0ac);
    box-shadow: 0 0 30px var(--accent-56);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 76px;
}

.nav-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-96), var(--primary-88));
    border-bottom: 1px solid var(--secondary-10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-logo,
.foot-logo {
    font-family: var(--display);
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.18em;
    font-size: 18px;
}

.nav-logo span,
.foot-logo span {
    color: var(--accent);
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 76px 0 0 0;
    z-index: 800;
    background: var(--primary-96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--display);
    font-size: 32px;
    letter-spacing: 0.12em;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu .mobile-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 48px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: 0.14em;
}

/* ── BUTTONS ── */
.nav-cta,
.btn-fill,
.btn-ghost {
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.nav-cta,
.btn-fill {
    background: var(--accent);
    color: var(--primary);
    font-family: var(--display);
    letter-spacing: 0.12em;
}

.nav-cta {
    padding: 12px 22px;
    font-size: 12px;
}

.btn-fill {
    padding: 16px 32px;
    font-size: 13px;
}

.nav-cta:hover,
.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 44px var(--accent-34),
        0 0 0 1px rgba(195, 251, 203, 0.78) inset;
}

.btn-ghost {
    padding: 15px 30px;
    font-size: 13px;
    font-family: var(--display);
    letter-spacing: 0.12em;
    color: var(--secondary);
    border: 1px solid var(--secondary-18);
    background: rgba(246, 241, 232, 0.02);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-62);
    background: rgba(246, 241, 232, 0.06);
}

/* ── SECTIONS ── */
.section,
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 28px;
}

.inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
}

.section-dark,
.section-mid,
.cta-section {
    background:
        radial-gradient(circle at 78% 18%, var(--accent-08), transparent 24%),
        radial-gradient(circle at 16% 82%, var(--accent-05), transparent 18%),
        linear-gradient(180deg, #0b1224 0%, var(--primary) 100%);
}

.section-light {
    background:
        radial-gradient(
            circle at 84% 10%,
            rgba(14, 20, 40, 0.04),
            transparent 18%
        ),
        linear-gradient(180deg, var(--secondary) 0%, #eee8dc 100%);
}

#problem.section-light {
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(14, 20, 40, 0.04),
            transparent 22%
        ),
        linear-gradient(180deg, #f6f1e8 0%, #efe8dc 100%);
}

#how.section-light {
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(195, 251, 203, 0.12),
            transparent 24%
        ),
        linear-gradient(180deg, #f3eee5 0%, #ece4d7 100%);
}

#safe.section-light {
    background:
        radial-gradient(
            circle at 20% 82%,
            rgba(14, 20, 40, 0.035),
            transparent 20%
        ),
        linear-gradient(180deg, #f7f2ea 0%, #ebe3d6 100%);
}

/* ── EYEBROW ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.section-light .eyebrow {
    color: var(--primary);
}

/* ── DISPLAY / HEADINGS ── */
.display-xl,
.section-h,
.who-display,
.cta-heading {
    font-family: var(--display);
}

.display-xl {
    font-size: clamp(44px, 8vw, 124px);
    line-height: 0.92;
    color: var(--secondary);
}

.display-xl .accent-word {
    color: var(--accent);
}

.display-xl .outline-word {
    -webkit-text-stroke: 1.6px var(--secondary);
    -webkit-text-fill-color: transparent;
}

.section-h {
    font-size: clamp(32px, 5.2vw, 82px);
    line-height: 0.98;
}

.section-dark .section-h,
.section-mid .section-h,
.cta-heading,
.who-display {
    color: var(--secondary);
}

.section-light .section-h {
    color: var(--primary);
}

.body-text {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.84;
    color: var(--neutral);
}

.section-dark .body-text,
.section-mid .body-text,
.cta-section .body-text {
    color: var(--secondary-62);
}

/* ── GHOST WORD ── */
.ghost-word {
    position: absolute;
    pointer-events: none;
    user-select: none;
    font-family: var(--display);
    font-size: clamp(80px, 20vw, 320px);
    line-height: 1;
    color: rgba(246, 241, 232, 0.03);
    white-space: nowrap;
    z-index: 1;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 76% 34%,
            rgba(195, 251, 203, 0.14),
            transparent 18%
        ),
        radial-gradient(
            circle at 24% 74%,
            rgba(195, 251, 203, 0.08),
            transparent 18%
        ),
        linear-gradient(180deg, #091123 0%, var(--primary) 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(246, 241, 232, 0.1) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
    opacity: 0.26;
}

.hero-gridlines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(246, 241, 232, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 241, 232, 0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.14;
    mask-image: radial-gradient(circle at center, black 32%, transparent 88%);
}

.hero-orb,
.hero-orb2,
.hero-bg-text,
.hero-beam {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

.hero-orb {
    width: min(78vw, 980px);
    height: min(78vw, 980px);
    border-radius: 50%;
    right: -18vw;
    top: -18vw;
    background: radial-gradient(
        circle,
        rgba(195, 251, 203, 0.18) 0%,
        rgba(195, 251, 203, 0.07) 30%,
        transparent 68%
    );
    filter: blur(14px);
}

.hero-orb2 {
    width: min(40vw, 520px);
    height: min(40vw, 520px);
    border-radius: 50%;
    left: -10vw;
    bottom: -10vw;
    background: radial-gradient(
        circle,
        rgba(195, 251, 203, 0.1) 0%,
        transparent 70%
    );
    filter: blur(10px);
}

.hero-beam {
    inset: auto auto 8% -8%;
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-56),
        transparent
    );
    transform: rotate(-10deg);
    opacity: 0.55;
}

.hero-bg-text {
    right: -2vw;
    bottom: -4vh;
    font-family: var(--display);
    font-size: clamp(100px, 23vw, 360px);
    color: rgba(246, 241, 232, 0.03);
    white-space: nowrap;
    line-height: 1;
}

/* ── HERO LAYOUT ── */
.hero-content {
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-grid {
    display: grid;
    /* grid-template-columns: minmax(0, 1.02fr) minmax(460px, 560px); */
    gap: 72px;
    align-items: start;
}

.hero-copy {
    max-width: 940px;
    padding-top: 26px;
}

.hero-desc {
    max-width: 630px;
    margin-top: 26px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.78;
    color: var(--secondary-62);
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-side {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 130px;
    margin-top: -10px;
}

.hero-stack {
    width: 100%;
    max-width: 560px;
    display: grid;
    gap: 18px;
}

/* ── HERO PANEL / STATS ── */
.hero-panel,
.stat-block {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--secondary-10);
    background: linear-gradient(
        180deg,
        rgba(246, 241, 232, 0.08),
        rgba(246, 241, 232, 0.03)
    );
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.hero-panel {
    min-height: 320px;
    padding: 34px !important;
}

.hero-panel::before,
.stat-block::before,
.cmp-card::before,
.feat-card::before,
.handle-card::before,
.safe-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        transparent 35%,
        transparent 70%,
        rgba(195, 251, 203, 0.05)
    );
    pointer-events: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-block {
    min-height: 150px;
    padding: 24px !important;
}

/* optional: make right panel content slightly bigger */
.hero-panel .font-display.text-\[12px\] {
    font-size: 13px !important;
}

.hero-panel .font-serif.text-\[13px\] {
    font-size: 15px !important;
}

.stat-block strong {
    font-size: 42px !important;
    line-height: 1;
}

.stat-block span {
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* ── SCROLL CUE ── */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-cue-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ── MARQUEE ── */
.marquee-band {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 15px 0;
    background: var(--accent);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 24s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--primary);
}

.marquee-track span::after {
    content: "✦";
    font-size: 9px;
    opacity: 0.42;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── COMPARE CARDS ── */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cmp-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 34px 30px;
    background: rgba(246, 241, 232, 0.92);
    border: 1px solid var(--primary-08);
    box-shadow: 0 16px 40px rgba(14, 20, 40, 0.06);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.cmp-card:hover,
.feat-card:hover,
.handle-card:hover,
.safe-card:hover,
.quote-card:hover,
.horizontal-card:hover {
    transform: translateY(-8px);
}

.cmp-card.featured {
    background: linear-gradient(180deg, #101833 0%, var(--primary) 100%);
    border: 1.5px solid var(--accent-56);
    box-shadow:
        0 20px 60px rgba(14, 20, 40, 0.24),
        0 0 0 1px rgba(195, 251, 203, 0.12) inset;
}

/* ── FEAT CARDS ── */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.feat-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 34px 30px;
    background: linear-gradient(
        180deg,
        rgba(246, 241, 232, 0.07),
        rgba(246, 241, 232, 0.03)
    );
    border: 1px solid var(--secondary-10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feat-card h3 {
    color: var(--secondary) !important;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ── HORIZONTAL SCROLL CARDS ── */
.horizontal-wrap {
    margin-top: 56px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.horizontal-wrap::-webkit-scrollbar {
    display: none;
}

.horizontal-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 18px;
}

.horizontal-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--secondary-10);
    background: linear-gradient(
        180deg,
        rgba(246, 241, 232, 0.08),
        rgba(246, 241, 232, 0.03)
    );
}

.horizontal-card h4 {
    font-family: var(--display);
    font-size: 28px;
    color: var(--secondary) !important;
    margin-bottom: 12px;
}

.horizontal-card p {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.82;
    color: var(--secondary-62);
}

/* ── STEPS ── */
.steps-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--primary-08);
    background: rgba(246, 241, 232, 0.84);
    box-shadow: 0 20px 60px rgba(14, 20, 40, 0.08);
    margin-top: 56px;
}

.step-row {
    min-height: 350px;
    padding: 38px 28px 34px;
    background: rgba(246, 241, 232, 0.46);
    border-right: 1px solid var(--primary-08);
    transition: background 0.24s ease;
}

.step-row:last-child {
    border-right: none;
}

.step-row:hover {
    background: rgba(246, 241, 232, 0.64);
}

/* ── HANDLE CARDS ── */
.handle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.handle-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 170px;
    padding: 26px 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(14, 20, 40, 0.1);
    box-shadow: 0 6px 24px rgba(14, 20, 40, 0.06);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.handle-card h4 {
    color: #0e1428;
    font-family: var(--display);
    font-size: 16px;
    margin-bottom: 6px;
}

.handle-card p {
    font-size: 13px;
    color: rgba(14, 20, 40, 0.62);
    font-family: var(--serif);
    line-height: 1.82;
}

.handle-icon {
    background: rgba(14, 20, 40, 0.07);
    margin-bottom: 14px;
}

/* ── SAFE CARDS ── */
.safe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.safe-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 270px;
    padding: 40px 34px;
    background: rgba(246, 241, 232, 0.05);
    border: 1px solid rgba(246, 241, 232, 0.14);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease;
}

.safe-card h3 {
    font-family: var(--display);
    font-size: 24px;
    margin-bottom: 12px;
    color: #f6f1e8 !important;
}

.safe-card p {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.82;
    color: rgba(246, 241, 232, 0.6);
}

/* ── WHO DISPLAY ── */
.who-layout {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 78px;
    align-items: center;
}

.who-display {
    font-size: clamp(42px, 6.6vw, 98px);
    line-height: 0.94;
    color: #0e1428;
    margin-bottom: 26px;
}

.who-display .hollow {
    display: inline;
    -webkit-text-stroke: 1.6px #0e1428;
    -webkit-text-fill-color: transparent;
}

/* ── QUOTE CARDS ── */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.quote-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(14, 20, 40, 0.1);
    box-shadow: 0 8px 28px rgba(14, 20, 40, 0.06);
}

.quote-card h4 {
    font-family: var(--display);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.quote-card p {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.82;
    color: rgba(14, 20, 40, 0.65);
}

/* ── TABS ── */
.services-tabs-section {
    padding: 120px 20px;
    background-color: #efebdf;
    position: relative;
    overflow: hidden;
}

.services-tabs-section::before,
.services-tabs-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(14, 20, 40, 0.08);
}

.services-tabs-section::before {
    top: 0;
}

.services-tabs-section::after {
    bottom: 0;
}

.tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.tabs-header h2 {
    font-family: "Anton";
    font-size: clamp(42px, 7vw, 90px);
    line-height: 0.9;
    color: #0e1428;
}

.tabs-header p {
    max-width: 400px;
    font-family: "Times New Roman";
    color: rgba(14, 20, 40, 0.65);
    font-size: 18px;
}

.tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    border: 1px solid rgba(14, 20, 40, 0.25);
    padding: 14px 30px;
    border-radius: 40px;
    font-family: "Anton";
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #0e1428;
    color: #ebe3d6;
}

.tab-btn.active {
    background: #c3fbcb;
    color: #0e1428;
    border-color: #c3fbcb;
    box-shadow: 0 8px 20px rgba(195, 251, 203, 0.28);
    transform: translateY(-2px);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    background:
        radial-gradient(
            circle at 24% 15%,
            rgba(195, 251, 203, 0.14),
            transparent 22%
        ),
        radial-gradient(
            circle at 74% 22%,
            rgba(195, 251, 203, 0.08),
            transparent 18%
        ),
        linear-gradient(180deg, #091123 0%, var(--primary) 100%);
}

.cta-ghost {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%) !important;
    font-family: var(--display);
    font-size: clamp(80px, 19vw, 300px);
    white-space: nowrap;
    color: rgba(246, 241, 232, 0.03);
    pointer-events: none;
}

.cta-heading {
    font-size: clamp(46px, 7vw, 106px);
    line-height: 0.94;
    margin-bottom: 24px;
}

.cta-heading em {
    font-style: normal;
    color: var(--accent);
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

/* ── ICON BOXES ── */
.bg-blue {
    background: var(--primary-12);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-icon,
.feat-icon,
.handle-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-icon,
.feat-icon {
    background: var(--accent-20);
}

/* ── LAYOUT HELPERS ── */
.wwd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 58px;
}

.how-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: end;
    margin-bottom: 58px;
}

.problem-header,
.handle-header,
.safe-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 68px;
}

/* ── CHECKLIST ── */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}

.check-box {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.check-item span {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.82;
    color: rgba(14, 20, 40, 0.72);
    max-width: 440px;
}

/* ── REVEAL ── */
.reveal-up {
    opacity: 0;
    transform: translateY(46px);
}

.reveal-fade {
    opacity: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 5 BREAKPOINTS
══════════════════════════════════════════ */

/* ── ≤ 1280px ── */
@media (max-width: 1280px) {
    .who-layout {
        gap: 48px;
    }

    .handle-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── ≤ 1120px ── */
@media (max-width: 1120px) {
    .hero-grid {
        /* grid-template-columns: 1fr; */
        gap: 42px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-side {
        justify-content: flex-start;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-stack {
        width: min(100%, 560px);
        max-width: 100%;
    }

    .wwd-layout {
        grid-template-columns: 1fr;
    }

    .how-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .handle-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .safe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .step-row {
        border-right: 0;
        border-radius: 24px;
        border: 1px solid var(--primary-08);
        background: rgba(246, 241, 232, 0.72);
        min-height: auto;
    }
}

/* ── ≤ 1024px ── */
@media (max-width: 1024px) {
    .section,
    .cta-section {
        padding: 96px 24px;
    }

    .services-tabs-section {
        padding: 96px 24px;
    }

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

    .handle-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
}

/* ── ≤ 860px ── */
@media (max-width: 860px) {
    body {
        cursor: auto;
    }

    .cur-dot,
    .cur-ring {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none;
    }

    .section,
    .cta-section {
        padding: 80px 20px;
    }

    .services-tabs-section {
        padding: 80px 20px;
    }

    .hero-content {
        padding: 38px 20px 84px;
    }

    .hero-grid {
        /* grid-template-columns: 1fr; */
        gap: 28px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-side {
        justify-content: flex-start;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-stack {
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-fill,
    .btn-ghost {
        width: 100%;
    }

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

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

    .handle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .steps-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .step-row {
        border-right: 0;
        border-radius: 24px;
        border: 1px solid var(--primary-08);
        background: rgba(246, 241, 232, 0.72);
        min-height: auto;
        padding: 28px 22px;
    }

    .who-layout {
        grid-template-columns: 1fr;
    }

    .wwd-layout {
        grid-template-columns: 1fr;
    }

    .how-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .tabs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tabs-header h2 {
        font-size: clamp(36px, 10vw, 58px);
    }

    .tabs-header p {
        font-size: 16px;
    }

    .tab-btn {
        min-width: calc(50% - 6px);
        text-align: center;
    }

    .horizontal-track {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .body-text {
        font-size: 16px;
    }

    .feat-card,
    .cmp-card {
        padding: 26px 22px;
    }

    .safe-card {
        padding: 30px 26px;
        min-height: auto;
    }
}

/* ── ≤ 640px ── */
@media (max-width: 640px) {
    .section,
    .cta-section {
        padding: 70px 18px;
    }

    .services-tabs-section {
        padding: 70px 18px;
    }

    .hero-content {
        padding: 28px 18px 72px;
    }

    .handle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

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

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

    .hero-panel {
        padding: 20px !important;
        min-height: auto;
    }

    .hero-panel-label {
        font-size: 11px;
    }

    .scroll-cue {
        display: none;
    }

    .problem-header,
    .handle-header,
    .safe-header {
        margin-bottom: 44px;
    }

    .tabs-nav {
        gap: 8px;
    }

    .tab-btn {
        padding: 11px 18px;
        min-width: calc(50% - 4px);
        font-size: 11px;
    }

    .feat-card,
    .cmp-card {
        padding: 22px 18px;
    }

    .feat-card h3 {
        font-size: 18px;
    }

    .handle-card {
        padding: 20px 18px;
        min-height: auto;
    }

    .quote-card {
        padding: 22px 18px;
    }

    .wwd-layout {
        margin-bottom: 40px;
    }

    .cta-buttons {
        max-width: 100%;
    }

    .stat-block {
        min-height: auto;
        padding: 20px !important;
    }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
    nav {
        height: 64px;
    }

    .hero {
        padding-top: 64px;
    }

    .section,
    .cta-section {
        padding: 60px 16px;
    }

    .services-tabs-section {
        padding: 60px 16px;
    }

    .hero-content {
        padding: 24px 16px 64px;
    }

    .nav-logo,
    .foot-logo {
        font-size: 16px;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

    .hero-stack {
        width: 100%;
    }

    .marquee-track span {
        font-size: 11px;
        gap: 18px;
        padding: 0 18px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .eyebrow::before {
        width: 24px;
    }

    .body-text {
        font-size: 15px;
        line-height: 1.72;
    }

    .hero-panel {
        padding: 18px !important;
    }

    .step-row {
        padding: 22px 18px;
    }

    .safe-card {
        padding: 26px 20px;
    }

    .feat-card,
    .cmp-card {
        padding: 20px 16px;
    }

    .handle-card {
        padding: 18px 16px;
    }

    .quote-card {
        padding: 18px 16px;
    }

    .horizontal-card {
        padding: 22px 18px;
    }

    .feat-card h3 {
        font-size: 17px;
    }

    .safe-card h3 {
        font-size: 20px;
    }

    .handle-card h4 {
        font-size: 15px;
    }

    .who-display {
        font-size: clamp(38px, 12vw, 64px);
    }

    .cta-fine {
        font-size: 12px;
    }

    .tabs-header h2 {
        font-size: clamp(32px, 12vw, 48px);
    }

    .tabs-header p {
        font-size: 14px;
    }

    .tab-btn {
        min-width: calc(50% - 4px);
        padding: 10px 12px;
        font-size: 10px;
    }

    .ghost-word {
        opacity: 0.015;
    }

    footer {
        padding: 20px 16px;
    }

    .foot-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-panel .font-display.text-\[12px\] {
        font-size: 12px !important;
    }

    .hero-panel .font-serif.text-\[13px\] {
        font-size: 13px !important;
    }

    .stat-block strong {
        font-size: 34px !important;
    }

    .stat-block span {
        font-size: 13px !important;
    }
}

/* ── ≤ 360px ── */
@media (max-width: 360px) {
    .section,
    .cta-section {
        padding: 52px 14px;
    }

    .hero-content {
        padding: 20px 14px 56px;
    }

    .tab-btn {
        min-width: 100%;
    }

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

/* ── Large desktop ≥ 1440px ── */
@media (min-width: 1440px) {
    .section,
    .cta-section {
        padding: 140px 40px;
    }

    .services-tabs-section {
        padding: 140px 40px;
    }

    .body-text {
        font-size: 18px;
    }

    .hero-stack {
        max-width: 620px;
    }

    .hero-side {
        padding-top: 140px;
    }

    .hero-panel {
        min-height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.text-accent {
    color: #9ef0ac;
}

.text-neutral {
    color: #818783;
}

.text-secondary {
    color: #f6f1e8;
}
