/* ==========================================================================
           NOBLES COOPERATIVE — Design System
           Display: Fraunces (warm, dignified serif)
           Body/UI: Plus Jakarta Sans
           Ledger/Data: Space Mono
           ========================================================================== */

        :root {
            /* --- Brand palette (kept from source brand + supporting tones) --- */
            --purple: #5C008C;
            --purple-deep: #2A0044;
            --purple-mid: #7E23B4;
            --purple-tint: #F4EBFA;
            --orange: #F49C00;
            --orange-deep: #D98200;
            --gold: #FFD873;
            --cream: #FFF7E9;
            --paper: #FFFDF8;
            --ink: #0D0D14;
            --muted: #675E70;
            --line: #E9E0F0;
            --white: #FFFFFF;
            --green-wa: #25D366;

            /* --- Gradients --- */
            --grad-brand: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
            --grad-accent: linear-gradient(120deg, var(--orange) 0%, var(--gold) 100%);
            --grad-text: linear-gradient(100deg, var(--purple) 0%, var(--purple-mid) 45%, var(--orange) 100%);

            /* --- Type --- */
            --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-mono: 'Space Mono', 'SFMono-Regular', Menlo, monospace;

            /* --- Motion --- */
            --ease: cubic-bezier(.22, 1, .36, 1);
            --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
            --dur-fast: .25s;
            --dur-med: .5s;
            --dur-slow: .9s;

            /* --- Radii & shadow --- */
            --r-sm: 10px;
            --r-md: 18px;
            --r-lg: 26px;
            --r-xl: 34px;
            --shadow-sm: 0 2px 10px rgba(42, 0, 68, .07);
            --shadow-md: 0 14px 34px rgba(42, 0, 68, .12);
            --shadow-lg: 0 30px 70px rgba(42, 0, 68, .20);
            --shadow-orange: 0 14px 30px rgba(244, 156, 0, .28);
            --shadow-purple: 0 14px 30px rgba(92, 0, 140, .28);
        }

        /* ---------- Reset ---------- */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        body {
            font-family: var(--font-body);
            background: var(--cream);
            color: var(--ink);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 78px;
        }
        @media (min-width: 900px) {
            body {
                padding-bottom: 0;
            }
        }

        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
        }
        ul {
            list-style: none;
        }

        ::selection {
            background: var(--orange);
            color: var(--ink);
        }

        ::-webkit-scrollbar {
            width: 11px;
            height: 11px;
        }
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--purple);
            border-radius: 20px;
            border: 3px solid var(--cream);
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--purple-deep);
        }

        :focus-visible {
            outline: 2.5px solid var(--orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .skip-link {
            position: fixed;
            top: -60px;
            left: 16px;
            z-index: 10000;
            background: var(--ink);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: top .25s var(--ease);
        }
        .skip-link:focus {
            top: 16px;
        }

        /* ---------- Layout utilities ---------- */
        .container {
            width: 100%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-pad {
            padding: 96px 0;
        }
        @media (max-width: 768px) {
            .section-pad {
                padding: 64px 0;
            }
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--purple-tint);
            color: var(--purple);
            font-family: var(--font-mono);
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .09em;
            padding: 8px 16px 8px 12px;
            border-radius: 50px;
            margin-bottom: 18px;
            border: 1px solid rgba(92, 0, 140, .16);
        }
        .eyebrow .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange);
            box-shadow: 0 0 0 0 rgba(244, 156, 0, .6);
            animation: pulseDot 2.2s ease-out infinite;
        }
        @keyframes pulseDot {
            0% {
                box-shadow: 0 0 0 0 rgba(244, 156, 0, .55);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(244, 156, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(244, 156, 0, 0);
            }
        }

        .accent-text {
            background: var(--grad-text);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmerText 6s ease-in-out infinite;
        }
        @keyframes shimmerText {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .section-head {
            max-width: 680px;
            margin: 0 auto 52px;
            text-align: center;
        }
        .section-head h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(1.9rem, 4vw, 2.5rem);
            color: var(--purple);
            margin-bottom: 14px;
            letter-spacing: -.01em;
        }
        .section-head p {
            color: var(--muted);
            font-size: 1.06rem;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
            padding: 0;
            margin: -1px;
        }

        /* ---------- Scroll reveal ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity .85s var(--ease), transform .85s var(--ease);
            transition-delay: var(--d, 0s);
        }
        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-stagger.is-visible>* {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .reveal-stagger>* {
            opacity: 0;
            transform: translateY(26px) scale(.98);
            transition: opacity .7s var(--ease), transform .7s var(--ease);
        }
        .reveal-stagger>*:nth-child(1) {
            transition-delay: .03s;
        }
        .reveal-stagger>*:nth-child(2) {
            transition-delay: .11s;
        }
        .reveal-stagger>*:nth-child(3) {
            transition-delay: .19s;
        }
        .reveal-stagger>*:nth-child(4) {
            transition-delay: .27s;
        }
        .reveal-stagger>*:nth-child(5) {
            transition-delay: .35s;
        }
        .reveal-stagger>*:nth-child(6) {
            transition-delay: .43s;
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .reveal-stagger>* {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        /* ---------- Buttons ---------- */
        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 700;
            font-size: .95rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            white-space: nowrap;
            transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease);
            isolation: isolate;
        }
        .btn span {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform .3s var(--ease);
        }

        .btn-primary {
            background: var(--grad-accent);
            color: var(--ink);
            box-shadow: var(--shadow-orange);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(244, 156, 0, .38);
        }
        .btn-primary:active {
            transform: translateY(-1px) scale(.98);
        }

        .btn-secondary {
            background: var(--grad-brand);
            color: var(--white);
            box-shadow: var(--shadow-purple);
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(92, 0, 140, .36);
        }
        .btn-secondary:active {
            transform: translateY(-1px) scale(.98);
        }

        .btn-outline {
            background: transparent;
            color: var(--purple);
            border: 1.5px solid var(--purple);
        }
        .btn-outline:hover {
            background: rgba(92, 0, 140, .06);
            transform: translateY(-3px);
        }

        .btn-outline-invert {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, .5);
        }
        .btn-outline-invert:hover {
            background: rgba(255, 255, 255, .1);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .btn-white {
            background: var(--white);
            color: var(--purple);
            box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
        }
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .24);
        }

        .btn-sm {
            padding: 10px 20px;
            font-size: .85rem;
            border-radius: 9px;
        }
        .btn-block {
            width: 100%;
        }

        /* ---------- NAV with DROPDOWNS ---------- */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            padding: 18px 0;
            background: white;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            border-bottom: 1px solid transparent;
            transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
        }
        .nav.is-scrolled {
            background: rgba(255, 253, 248, .86);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 6px 28px rgba(42, 0, 68, .08);
            border-bottom-color: var(--line);
            padding: 12px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-logo-mark {
            height: 38px;
            width: auto;
            transition: transform .4s var(--ease-spring);
        }
        .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.05;
        }
        .nav-logo-name {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.32rem;
            color: var(--purple);
            letter-spacing: -.01em;
        }
        .nav-logo-sub {
            font-family: var(--font-mono);
            font-size: .58rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--orange-deep);
            font-weight: 700;
        }

        /* -------- Desktop nav links with dropdowns -------- */
        .nav-links {
            display: none;
            align-items: center;
            gap: 4px;
        }
        @media (min-width: 900px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links>li {
            position: relative;
            list-style: none;
        }

        .nav-links>li>a,
        .nav-links>li>.nav-link-label {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: var(--ink);
            font-weight: 600;
            font-size: .94rem;
            padding: 8px 14px;
            border-radius: 8px;
            transition: background .2s, color .2s;
            cursor: pointer;
            background: transparent;
            border: none;
            font-family: var(--font-body);
            line-height: 1.4;
        }
        .nav-links>li>a:hover,
        .nav-links>li>.nav-link-label:hover {
            background: var(--purple-tint);
            color: var(--purple);
        }
        .nav-links>li>a .dropdown-arrow,
        .nav-links>li>.nav-link-label .dropdown-arrow {
            font-size: .6rem;
            transition: transform .25s var(--ease);
            opacity: .6;
        }
        .nav-links>li:hover>.nav-link-label .dropdown-arrow,
        .nav-links>li:hover>a .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* -------- Dropdown menu -------- */
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(6px) scale(.97);
            min-width: 220px;
            background: var(--white);
            border-radius: var(--r-md);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--line);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
            z-index: 100;
        }
        .nav-links>li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0) scale(1);
            transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
        }

        .nav-dropdown li {
            position: relative;
    
        }
        .nav-dropdown a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-size: .88rem;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            transition: background .2s, color .2s;
            gap: 20px;
            border-left: 3px solid transparent;
        }
        .nav-dropdown a:hover {
            background: var(--purple-tint);
            color: var(--purple);
            border-left-color: var(--purple);
        }
        .nav-dropdown a .sub-arrow {
            font-size: .55rem;
            opacity: .5;
        }

        /* -------- Nested dropdown (second level) -------- */
        .nav-dropdown .nav-dropdown-nested {
            position: absolute;
            top: -8px;
            left: calc(100% + 4px);
            min-width: 200px;
            background: var(--white);
            border-radius: var(--r-md);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--line);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
            transform: translateX(-6px) scale(.97);
        }
        .nav-dropdown li:hover .nav-dropdown-nested {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(0) scale(1);
            transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
        }
        .nav-dropdown-nested a {
            padding: 9px 20px;
            font-size: .85rem;
        }

        /* -------- Nav CTA -------- */
        .nav-cta {
            display: none;
        }
        @media (min-width: 900px) {
            .nav-cta {
                display: flex;
                align-items: center;
                gap: 8px;
            }
        }

        /* -------- Mobile toggle -------- */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            border: 1.5px solid var(--line);
            background: var(--white);
            cursor: pointer;
            flex-shrink: 0;
            z-index: 1100;
            position: relative;
        }
        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--purple);
            border-radius: 2px;
            transition: transform .35s var(--ease), opacity .25s var(--ease), width .3s var(--ease);
        }
                /* ---------- Gallery grid & lightbox ---------- */
.gallery-item {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-item-info {
  padding: 16px 18px 18px;
}
.gallery-item-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 4px;
}
.gallery-item-info p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.gallery-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#lightbox {
  display: none;
}
#lightbox img,
#lightbox video {
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        @media (min-width: 900px) {
            .nav-toggle {
                display: none;
            }
        }

        /* ---------- Mobile fullscreen menu ---------- */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 1050;
            background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: scale(1.04);
            transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
            overflow-y: auto;
            padding: 40px 20px;
        }
        .mobile-menu.is-open {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
            transition: opacity .45s var(--ease), transform .45s var(--ease);
        }
        .mobile-menu::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(92, 0, 140, .10), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(244, 156, 0, .14), transparent 45%);
            pointer-events: none;
        }

        .mobile-menu-back {
            position: absolute;
            top: 22px;
            left: 22px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--purple-tint);
            color: var(--purple);
            border: 1px solid rgba(92, 0, 140, .16);
            padding: 10px 18px 10px 14px;
            border-radius: 50px;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: .85rem;
            opacity: 0;
            transform: translateX(-14px);
            transition: opacity .5s var(--ease) .08s, transform .5s var(--ease) .08s, background .25s var(--ease), color .25s var(--ease);
        }
        .mobile-menu.is-open .mobile-menu-back {
            opacity: 1;
            transform: translateX(0);
        }
        .mobile-menu-back:hover {
            background: var(--purple);
            color: var(--white);
        }
        .mobile-menu-back svg {
            flex-shrink: 0;
        }

        .mobile-menu-inner {
            position: relative;
            width: 100%;
            max-width: 480px;
            padding: 20px 0 40px;
            text-align: center;
        }

        /* Mobile nav links with accordion */
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin: 20px 0 30px;
            text-align: left;
        }

        .mobile-menu-links .mm-item {
            border-bottom: 1px solid rgba(92, 0, 140, .08);
        }

        .mobile-menu-links .mm-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink);
            text-decoration: none;
            padding: 14px 0;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink);
        }
        .mobile-menu.is-open .mobile-menu-links .mm-link {
            opacity: 1;
            transform: translateY(0);
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(1) .mm-link {
            transition-delay: .08s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(2) .mm-link {
            transition-delay: .14s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(3) .mm-link {
            transition-delay: .20s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(4) .mm-link {
            transition-delay: .26s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(5) .mm-link {
            transition-delay: .32s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(6) .mm-link {
            transition-delay: .38s;
        }
        .mobile-menu.is-open .mobile-menu-links .mm-item:nth-child(7) .mm-link {
            transition-delay: .44s;
        }

        .mobile-menu-links .mm-link .mm-arrow {
            font-size: .7rem;
            opacity: .5;
            transition: transform .3s var(--ease);
        }
        .mobile-menu-links .mm-link.open .mm-arrow {
            transform: rotate(180deg);
        }

        .mobile-menu-links .mm-sublinks {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s var(--ease), padding .3s var(--ease);
            padding-left: 8px;
        }
        .mobile-menu-links .mm-sublinks.open {
            max-height: 600px;
            padding-bottom: 12px;
        }
        .mobile-menu-links .mm-sublinks a {
            display: block;
            padding: 10px 0 10px 12px;
            font-size: .95rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            border-left: 2px solid transparent;
            transition: color .2s, border-color .2s;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity .3s var(--ease), transform .3s var(--ease), color .2s, border-color .2s;
        }
        .mobile-menu-links .mm-sublinks.open a {
            opacity: 1;
            transform: translateX(0);
        }
        .mobile-menu-links .mm-sublinks a:hover {
            color: var(--purple);
            border-left-color: var(--purple);
        }
        .mobile-menu-links .mm-sublinks .mm-nested {
            padding-left: 16px;
        }
        .mobile-menu-links .mm-sublinks .mm-nested a {
            font-size: .88rem;
            padding: 7px 0 7px 16px;
            border-left: 2px solid var(--line);
        }
        .mobile-menu-links .mm-sublinks .mm-nested a:hover {
            border-left-color: var(--orange);
            color: var(--orange-deep);
        }

        .mobile-menu-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 26px;
        }
        .mobile-menu-wa {
            color: var(--muted);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 600;
        }
        .mobile-menu-wa:hover {
            color: var(--purple);
        }
        body.menu-open {
            overflow: hidden;
        }

        /* ---------- Hero ---------- */
        .hero {
            position: relative;
            padding: 150px 0 90px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 126px 0 60px;
            }
        }

        .hero-aurora {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: .55;
            animation: blobDrift 18s ease-in-out infinite;
        }
        .blob-a {
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(92, 0, 140, .35), transparent 70%);
            top: -160px;
            left: -120px;
            animation-duration: 22s;
        }
        .blob-b {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(244, 156, 0, .30), transparent 70%);
            top: 120px;
            right: -140px;
            animation-duration: 26s;
            animation-delay: -6s;
        }
        .blob-c {
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(255, 216, 115, .35), transparent 70%);
            bottom: -140px;
            left: 38%;
            animation-duration: 20s;
            animation-delay: -3s;
        }
        @keyframes blobDrift {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(40px, -30px) scale(1.08);
            }
            66% {
                transform: translate(-30px, 25px) scale(.95);
            }
        }
        .hero-spotlight {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .55), transparent 65%);
            transition: opacity .4s;
        }
        .hero:hover .hero-spotlight {
            opacity: 1;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 56px;
            align-items: center;
        }
        @media (min-width: 1000px) {
            .hero-grid {
                grid-template-columns: 1.05fr .95fr;
                gap: 40px;
            }
        }

        .hero .eyebrow {
            background: rgba(255, 255, 255, .14);
            color: var(--gold);
            border-color: rgba(255, 255, 255, .28);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hero-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(2.3rem, 5.4vw, 3.7rem);
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 22px;
            letter-spacing: -.015em;
        }
        .hero-lede {
            font-size: 1.13rem;
            color: rgba(255, 255, 255, .86);
            margin-bottom: 34px;
            max-width: 540px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 44px;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .stat-value {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.7rem;
            color: var(--gold);
            display: flex;
            align-items: baseline;
            gap: 2px;
        }
        .stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .72);
            margin-top: 2px;
        }
        .stat-divider {
            width: 1px;
            height: 38px;
            background: rgba(255, 255, 255, .25);
        }

        /* Phone mockup */
        .hero-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }
        .phone-float {
            position: relative;
            animation: phoneFloat 6s ease-in-out infinite;
        }
        @keyframes phoneFloat {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-16px) rotate(-1deg);
            }
        }

        .phone {
            width: 290px;
            background: var(--ink);
            border-radius: 44px;
            padding: 14px;
            box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .05) inset;
            position: relative;
        }
        .phone-notch {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 22px;
            background: var(--ink);
            border-radius: 0 0 16px 16px;
            z-index: 3;
        }
        .phone-screen {
            background: var(--cream);
            border-radius: 32px;
            padding: 20px 18px 26px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-height: 490px;
            position: relative;
            overflow: hidden;
        }
        .phone-status {
            display: flex;
            justify-content: space-between;
            font-family: var(--font-mono);
            font-size: .68rem;
            color: var(--ink);
            font-weight: 700;
            padding-top: 6px;
        }
        .phone-app-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--purple);
            font-size: 1rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(92, 0, 140, .12);
        }
        .phone-app-icon {
            width: 22px;
            height: auto;
        }

        .phone-greeting {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--grad-brand);
            border-radius: 18px;
            padding: 16px;
            color: var(--white);
            box-shadow: var(--shadow-purple);
        }
        .phone-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--grad-accent);
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, .5);
        }
        .phone-greeting-name {
            font-size: .72rem;
            opacity: .85;
            margin-bottom: 3px;
        }
        .phone-balance {
            font-family: var(--font-mono);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gold);
        }
        .phone-growth {
            font-size: .68rem;
            color: #B8F5C9;
            font-weight: 700;
            margin-top: 2px;
        }

        .phone-vault-card {
            background: var(--white);
            border-radius: 14px;
            padding: 13px 15px;
            box-shadow: 0 4px 14px rgba(42, 0, 68, .05);
            border-left: 4px solid var(--orange);
        }
        .phone-vault-top {
            display: flex;
            justify-content: space-between;
            font-size: .78rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }
        .phone-progress {
            height: 6px;
            background: var(--purple-tint);
            border-radius: 20px;
            overflow: hidden;
        }
        .phone-progress-fill {
            height: 100%;
            width: 0;
            background: var(--grad-accent);
            border-radius: 20px;
            transition: width 1.4s var(--ease);
            animation-fill-mode: forwards;
        }
        .phone-nav {
            margin-top: auto;
            display: flex;
            justify-content: space-around;
            padding-top: 14px;
        }
        .phone-nav span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--line);
        }
        .phone-nav span.active {
            background: var(--purple);
            width: 22px;
            border-radius: 6px;
        }

        .float-chip {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 11px 16px;
            font-size: .78rem;
            font-weight: 700;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: chipFloat 5s ease-in-out infinite;
        }
        .chip-a {
            top: 8%;
            left: -13%;
            animation-delay: -1s;
        }
        .chip-b {
            bottom: 10%;
            right: -15%;
            animation-delay: -3s;
        }
        @keyframes chipFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        @media (max-width: 1140px) {
            .float-chip {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .blob,
            .phone-float,
            .float-chip,
            .badge-dot,
            .eyebrow .dot {
                animation: none !important;
            }
        }

        /* Hero full-bleed background carousel */
        .hero-bg-slideshow {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: var(--purple-deep);
        }
        .hero-bg-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.3s var(--ease);
        }
        .hero-bg-slide.is-active {
            opacity: 1;
            z-index: 1;
        }
        .hero-bg-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(100deg, rgba(20, 0, 32, .88) 0%, rgba(42, 0, 68, .78) 38%, rgba(66, 0, 102, .42) 62%, rgba(92, 0, 140, .28) 100%),
                linear-gradient(0deg, rgba(13, 0, 20, .55) 0%, rgba(13, 0, 20, 0) 32%);
        }

        .hero-bg-dock {
            position: relative;
            z-index: 1;
            margin-top: 52px;
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: rgba(13, 0, 20, .38);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .18);
            padding: 9px 10px 9px 20px;
            border-radius: 50px;
            box-shadow: 0 14px 30px rgba(20, 0, 32, .25);
        }
        @media (max-width: 640px) {
            .hero-bg-dock {
                display: flex;
                width: 100%;
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 14px 18px;
                border-radius: 20px;
            }
        }
        .hero-bg-caption {
            position: relative;
            height: 20px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg-caption-item {
            position: absolute;
            left: 0;
            top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity .5s var(--ease), transform .5s var(--ease);
        }
        .hero-bg-caption-item.is-active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
        }
        .hero-bg-caption-badge {
            font-family: var(--font-mono);
            font-size: .68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gold);
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .22);
            padding: 4px 10px;
            border-radius: 50px;
        }
        .hero-bg-caption-text {
            font-size: .86rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .92);
        }
        .hero-bg-caption-text strong {
            color: var(--gold);
        }
        .hero-bg-dots {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .hero-bg-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, .35);
            cursor: pointer;
            padding: 0;
            transition: background .3s var(--ease), width .3s var(--ease);
        }
        .hero-bg-dot.is-active {
            background: var(--gold);
            width: 18px;
            border-radius: 6px;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-bg-slide,
            .hero-bg-caption-item {
                transition: none;
            }
        }

        /* ---------- Ledger Tape ---------- */
        .ledger-tape {
            position: relative;
            background: var(--paper);
            padding: 20px 0;
            border-top: 1.5px dashed rgba(92, 0, 140, .28);
            border-bottom: 1.5px dashed rgba(92, 0, 140, .28);
            overflow: hidden;
        }
        .ledger-tape::before,
        .ledger-tape::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 15px;
            background-image: radial-gradient(circle at 10px 8px, var(--cream) 8px, transparent 8.5px);
            background-size: 22px 16px;
            background-repeat: repeat-x;
        }
        .ledger-tape::before {
            top: -8px;
        }
        .ledger-tape::after {
            bottom: -8px;
            transform: scaleY(-1);
        }

        .ledger-track {
            display: flex;
            width: max-content;
            animation: ledgerScroll 32s linear infinite;
        }
        .ledger-tape:hover .ledger-track {
            animation-play-state: paused;
        }
        .ledger-set {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .ledger-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: .85rem;
            font-weight: 700;
            color: var(--purple);
            white-space: nowrap;
            padding: 0 26px;
        }
        .ledger-item .ledger-diamond {
            color: var(--orange);
            font-size: .7rem;
        }
        @keyframes ledgerScroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .ledger-track {
                width: 100%;
                animation: none;
            }
            .ledger-set:first-child {
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
                row-gap: 12px;
            }
            .ledger-set[aria-hidden="true"] {
                display: none;
            }
        }

        /* ---------- Goal selector ---------- */
        .goal-section {
            background: var(--white);
        }
        .goal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }

        .goal-card {
            background: var(--cream);
            border: 1.5px solid var(--line);
            border-radius: var(--r-md);
            padding: 22px;
            text-align: left;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s, background .3s;
            transform-style: preserve-3d;
            perspective: 600px;
            position: relative;
            overflow: hidden;
        }
        .goal-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            background: var(--grad-brand);
            transition: opacity .35s var(--ease);
            z-index: 0;
        }
        .goal-card:hover {
            border-color: var(--purple);
            box-shadow: var(--shadow-md);
        }
        .goal-card.active {
            border-color: var(--purple);
            box-shadow: var(--shadow-purple);
        }
        .goal-card.active::before {
            opacity: 1;
        }
        .goal-card>* {
            position: relative;
            z-index: 1;
        }
        .goal-card h4 {
            font-family: var(--font-display);
            font-size: 1.12rem;
            color: var(--purple);
            font-weight: 700;
            transition: color .3s;
        }
        .goal-card p {
            font-size: .85rem;
            color: var(--muted);
            transition: color .3s;
        }
        .goal-card.active h4 {
            color: var(--gold);
        }
        .goal-card.active p {
            color: rgba(255, 255, 255, .85);
        }

        .goal-result {
            background: linear-gradient(180deg, var(--paper), var(--cream));
            border-radius: var(--r-lg);
            padding: 38px;
            border: 1.5px solid var(--line);
            position: relative;
        }
        .goal-result::before {
            content: '';
            position: absolute;
            top: 0;
            left: 32px;
            right: 32px;
            height: 3px;
            background: var(--grad-accent);
            border-radius: 0 0 8px 8px;
        }
        .goal-result-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            align-items: center;
            opacity: 1;
            transform: translateY(0);
            transition: opacity .3s var(--ease), transform .3s var(--ease);
        }
        .goal-result-inner.is-swapping {
            opacity: 0;
            transform: translateY(12px);
        }
        @media (min-width: 800px) {
            .goal-result-inner {
                grid-template-columns: 1.2fr .8fr;
            }
        }
        .goal-result-text h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            color: var(--purple);
            margin-bottom: 12px;
        }
        .goal-result-text p {
            color: var(--muted);
            margin-bottom: 24px;
        }
        .goal-result-side {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 26px;
            text-align: center;
        }
        .goal-result-side h5 {
            font-size: .82rem;
            color: var(--purple);
            font-weight: 800;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: .03em;
        }
        .goal-result-product {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--orange-deep);
            margin-bottom: 12px;
        }
        .goal-result-note {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: 14px;
        }
        .goal-result-tag {
            font-family: var(--font-mono);
            font-size: .7rem;
            font-weight: 700;
            color: var(--purple);
            text-transform: uppercase;
            letter-spacing: .05em;
        }

        /* ---------- Steps timeline ---------- */
        .vault-section {
            background: var(--purple-tint);
            position: relative;
        }
        .step-track {
            position: relative;
            margin-top: 50px;
        }
        .step-line {
            position: absolute;
            top: 26px;
            left: 0;
            right: 0;
            height: 2px;
            background: repeating-linear-gradient(90deg, rgba(92, 0, 140, .3) 0 10px, transparent 10px 20px);
            display: none;
        }
        .steps-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            position: relative;
        }
        @media (min-width: 700px) {
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1100px) {
            .steps-container {
                grid-template-columns: repeat(4, 1fr);
            }
            .step-line {
                display: block;
            }
        }

        .step-card {
            background: var(--white);
            padding: 30px 26px;
            border-radius: var(--r-md);
            border: 1px solid var(--line);
            position: relative;
            transition: transform .4s var(--ease), box-shadow .4s var(--ease);
        }
        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }
        .step-num {
            background: var(--grad-accent);
            color: var(--ink);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
            box-shadow: var(--shadow-orange);
            position: relative;
            z-index: 1;
        }
        .step-card h3 {
            font-family: var(--font-display);
            font-size: 1.18rem;
            color: var(--purple);
            margin-bottom: 10px;
            font-weight: 700;
        }
        .step-card p {
            font-size: .9rem;
            color: var(--muted);
        }

        /* ---------- Products ---------- */
        .products-section {
            background: var(--white);
        }
        .star-heading-block {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 44px;
        }
        @media (min-width: 768px) {
            .star-heading-block {
                flex-direction: row;
                align-items: flex-end;
                justify-content: space-between;
            }
        }
        .star-heading-block h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 4vw, 2.4rem);
            color: var(--purple);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .star-heading-block p {
            color: var(--muted);
            max-width: 520px;
        }

        .prod-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 700px) {
            .prod-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1150px) {
            .prod-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .prod-card {
            background: var(--cream);
            border: 1px solid var(--line);
            border-radius: var(--r-md);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
            overflow: hidden;
        }
        .prod-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 4px;
            width: 100%;
            background: var(--grad-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s var(--ease);
        }
        .prod-card:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-md);
            border-color: var(--purple);
            background: var(--white);
        }
        .prod-card:hover::before {
            transform: scaleX(1);
        }

        .prod-stamp {
            align-self: flex-start;
            font-family: var(--font-mono);
            font-size: .66rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            padding: 5px 11px;
            margin-bottom: 16px;
            border: 1.5px dashed var(--purple);
            border-radius: 6px;
            color: var(--purple);
            transform: rotate(-2deg);
        }
        .prod-stamp.locked {
            border-color: var(--orange-deep);
            color: var(--orange-deep);
        }
        .prod-card h3 {
            font-family: var(--font-display);
            font-size: 1.34rem;
            color: var(--purple);
            margin-bottom: 10px;
            font-weight: 700;
        }
        .prod-card p {
            font-size: .93rem;
            color: var(--muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }
        .prod-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--line);
        }
        .prod-meta-label {
            font-size: .7rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .04em;
        }
        .prod-meta-val {
            font-family: var(--font-mono);
            font-size: .88rem;
            font-weight: 700;
            color: var(--ink);
        }

        /* ---------- Stories ---------- */
        .stories-section {
            background: var(--purple-tint);
        }
        .stories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
        }
        @media (min-width: 1000px) {
            .stories-grid {
                grid-template-columns: 1.15fr .85fr;
                gap: 50px;
            }
        }

        .featured-story {
            background: var(--white);
            border-radius: var(--r-lg);
            padding: 40px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .quote-mark {
            position: absolute;
            top: -6px;
            right: 20px;
            font-family: var(--font-display);
            font-size: 9rem;
            color: var(--purple-tint);
            font-weight: 700;
            line-height: 1;
            z-index: 0;
            user-select: none;
        }
        .story-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .story-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--grad-brand);
            border: 2px solid var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .story-header-text h3 {
            font-family: var(--font-display);
            font-size: 1.22rem;
            color: var(--purple);
            font-weight: 700;
        }
        .story-header-text p {
            font-size: .83rem;
            color: var(--orange-deep);
            font-weight: 700;
        }
        .quote-text {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.16rem;
            line-height: 1.65;
            color: var(--ink);
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        .story-sig {
            font-weight: 700;
            color: var(--purple);
            font-size: .95rem;
            position: relative;
            z-index: 1;
        }

        .testimonials-stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .testimonials-stack>h3 {
            font-family: var(--font-display);
            color: var(--purple);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .testi-card {
            background: var(--white);
            padding: 24px;
            border-radius: 14px;
            border-left: 4px solid var(--orange);
            box-shadow: var(--shadow-sm);
            animation: testiFloat 6s ease-in-out infinite;
        }
        .testi-card:nth-child(3) {
            animation-delay: -2s;
        }
        .testi-card:nth-child(4) {
            animation-delay: -4s;
        }
        @keyframes testiFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-7px);
            }
        }
        .testi-card p {
            font-size: .9rem;
            font-style: italic;
            margin-bottom: 12px;
            color: var(--ink);
        }
        .testi-author {
            font-size: .83rem;
            font-weight: 700;
            color: var(--purple);
        }
        @media (prefers-reduced-motion: reduce) {
            .testi-card {
                animation: none;
            }
        }

        /* ---------- Calculators ---------- */
        .calculator-section {
            background: var(--white);
        }
        .calc-wrapper {
            background:
                repeating-linear-gradient(var(--paper) 0 34px, rgba(92, 0, 140, .06) 34px 35px),
                var(--paper);
            border-radius: var(--r-lg);
            padding: 32px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 1000px) {
            .calc-wrapper {
                grid-template-columns: 270px 1fr;
                gap: 44px;
                padding: 38px;
            }
        }

        .calc-tabs {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            gap: 8px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 14px;
        }
        @media (min-width: 1000px) {
            .calc-tabs {
                flex-direction: column;
                border-bottom: none;
                border-right: 1px solid var(--line);
                padding: 0 20px 0 0;
            }
        }
        .calc-tab {
            background: none;
            border: none;
            padding: 13px 16px;
            border-radius: 10px;
            cursor: pointer;
            text-align: left;
            font-weight: 700;
            color: var(--muted);
            font-size: .9rem;
            white-space: nowrap;
            transition: background .3s, color .3s;
            position: relative;
        }
        .calc-tab.active {
            background: var(--grad-brand);
            color: var(--white);
            box-shadow: var(--shadow-purple);
        }
        .calc-tab:not(.active):hover {
            background: var(--purple-tint);
            color: var(--purple);
        }

        .calc-panel {
            display: none;
        }
        .calc-panel.active {
            display: block;
            animation: panelIn .5s var(--ease);
        }
        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateX(14px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .calc-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 26px;
        }
        @media (min-width: 640px) {
            .calc-form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-size: .83rem;
            font-weight: 700;
            color: var(--purple);
        }
        .form-group input,
        .form-group select {
            padding: 13px 16px;
            border-radius: 10px;
            border: 1.5px solid var(--line);
            background: var(--white);
            font-family: var(--font-mono);
            font-size: .95rem;
            color: var(--ink);
            outline: none;
            transition: border-color .25s, box-shadow .25s;
        }
        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--purple);
            box-shadow: 0 0 0 4px rgba(92, 0, 140, .12);
        }

        .calc-output {
            background: var(--grad-brand);
            color: var(--white);
            border-radius: 14px;
            padding: 26px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            box-shadow: var(--shadow-purple);
            position: relative;
            overflow: hidden;
        }
        .calc-output::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .14), transparent 60%);
        }
        .calc-output-col {
            position: relative;
            z-index: 1;
        }
        .calc-output-col h4 {
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: rgba(255, 255, 255, .72);
            margin-bottom: 6px;
        }
        .calc-output-val {
            font-family: var(--font-mono);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gold);
            transition: transform .25s var(--ease-spring);
        }
        .calc-output-val.pulse {
            transform: scale(1.12);
        }
        .calc-output-note {
            font-size: .83rem;
            color: rgba(255, 255, 255, .85);
            max-width: 220px;
        }
        .calc-output-badge {
            font-size: .68rem;
            text-transform: uppercase;
            letter-spacing: .05em;
            background: rgba(255, 255, 255, .16);
            padding: 5px 10px;
            border-radius: 6px;
            display: inline-block;
        }

        /* ---------- Final CTA ---------- */
        .final-cta {
            position: relative;
            background: linear-gradient(150deg, var(--purple-deep) 0%, var(--purple) 55%, #3d0060 100%);
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }
        .final-cta .hero-aurora .blob {
            opacity: .5;
            mix-blend-mode: screen;
        }
        .final-cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2.1rem, 5vw, 2.9rem);
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .final-cta p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 36px;
            color: rgba(255, 255, 255, .85);
            position: relative;
            z-index: 1;
        }
        .final-cta-btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        /* ---------- Footer ---------- */
        footer {
            background: linear-gradient(180deg, var(--ink) 0%, #17071F 100%);
            color: var(--white);
            padding: 70px 0 0;
            font-size: .92rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 44px;
            margin-bottom: 50px;
        }
        @media (min-width: 700px) {
            .footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr;
                gap: 36px;
            }
        }

        .footer-logo-chip {
            display: inline-flex;
            align-items: center;
            border-radius: 14px;
            padding: 10px 18px 10px 12px;
            gap: 10px;
            margin-bottom: 18px;
        }
        .footer-logo-chip img {
            height: 32px;
            width: auto;
        }
        .footer-reg {
            margin-top: 16px;
            font-family: var(--font-mono);
            font-size: .74rem;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .03em;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: .88rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, .62);
            text-decoration: none;
            transition: color .25s, padding-left .25s;
            display: inline-block;
        }
        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 26px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            color: rgba(255, 255, 255, .42);
            font-size: .8rem;
        }
        .footer-bottom strong {
            color: rgba(255, 255, 255, .65);
        }

        /* ---------- Back to top ---------- */
        .back-to-top {
            position: fixed;
            right: 22px;
            bottom: 96px;
            z-index: 800;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--grad-brand);
            color: var(--white);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(16px) scale(.85);
            pointer-events: none;
            transition: opacity .35s var(--ease), transform .35s var(--ease-spring);
        }
        .back-to-top.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .back-to-top:hover {
            transform: translateY(-4px) scale(1.05);
        }
        @media (min-width: 900px) {
            .back-to-top {
                bottom: 32px;
            }
        }

        /* ---------- Mobile sticky action bar ---------- */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 850;
            display: flex;
            background: var(--white);
            box-shadow: 0 -8px 24px rgba(42, 0, 68, .14);
            border-top: 1px solid var(--line);
            transform: translateY(0);
            animation: stickyIn .6s var(--ease) .3s both;
        }
        @keyframes stickyIn {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }
        .mobile-sticky-bar a {
            flex: 1;
            text-align: center;
            padding: 16px 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: .86rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
        }
        .sticky-staff {
            background: var(--cream);
            color: var(--purple);
        }
        .sticky-app {
            background: var(--grad-accent);
            color: var(--ink);
        }
        .sticky-wa {
            background: var(--green-wa);
            color: var(--white);
        }
        @media (min-width: 900px) {
            .mobile-sticky-bar {
                display: none;
            }
        }

        .wa-icon,
        .app-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }