:root {
            --cream: #F5F1E8;
            --black: #0D0D0D;
            --electric-blue: #2E4CFF;
            --warm-brown: #7A6149;
            --gray: #505050;
            --light-gray: #D4D0C8;
            --worn-red: #8B4749;
        }

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

        body {
            font-family: 'Crimson Pro', serif;
            background: var(--cream);
            color: var(--black);
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(139, 71, 73, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(46, 76, 255, 0.06) 0%, transparent 50%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, 0.05) 2px,
                    rgba(0, 0, 0, 0.05) 4px
                ),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: multiply;
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Sticky path nav — always find waitlist / ventures */
        .path-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(245, 241, 232, 0.94);
            border-bottom: 2px solid var(--black);
            backdrop-filter: blur(8px);
        }

        .path-nav-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 20px;
            padding: 12px 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .path-nav-brand {
            font-family: 'Darker Grotesque', sans-serif;
            font-weight: 900;
            font-size: 15px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            margin-right: auto;
        }

        .path-nav a:not(.path-nav-brand) {
            font-family: 'Darker Grotesque', sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--gray);
            text-decoration: none;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
        }

        .path-nav a:not(.path-nav-brand):hover,
        .path-nav a:not(.path-nav-brand):focus-visible {
            color: var(--electric-blue);
            border-bottom-color: var(--electric-blue);
            outline: none;
        }

        /* Hero Section — not full-screen so doors show without guessing */
        .hero {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 72px 0 48px;
        }

        .hero-content {
            position: relative;
        }

        .hero-title {
            font-family: 'Fraunces', serif;
            font-size: clamp(56px, 11vw, 140px);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }

        .hero-title .line {
            display: block;
            opacity: 0;
            transform: translateY(60px) rotate(-2deg);
            animation: slideUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-title .line:nth-child(1) {
            animation-delay: 0.2s;
        }

        .hero-title .line:nth-child(2) {
            animation-delay: 0.4s;
            color: var(--electric-blue);
            text-indent: 80px;
        }

        .hero-title .line:nth-child(3) {
            animation-delay: 0.6s;
            font-size: 0.6em;
            font-family: 'Darker Grotesque', sans-serif;
            letter-spacing: 0.05em;
            text-indent: 40px;
            margin-top: 20px;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0) rotate(0deg);
            }
        }

        .hero-tagline {
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.6;
            max-width: 600px;
            margin-top: 60px;
            padding: 40px;
            background: white;
            position: relative;
            border: 3px solid var(--black);
            box-shadow: 12px 12px 0 var(--warm-brown), 14px 14px 0 var(--black);
            opacity: 1;
            clip-path: polygon(
                0% 5px,
                5px 0%,
                calc(100% - 10px) 0%,
                100% 8px,
                100% calc(100% - 5px),
                calc(100% - 8px) 100%,
                10px 100%,
                0% calc(100% - 8px)
            );
        }

        .hero-tagline::before {
            content: '';
            position: absolute;
            top: -3px;
            right: -3px;
            width: 80px;
            height: 80px;
            background: var(--electric-blue);
            clip-path: polygon(100% 0, 100% 100%, 0 0);
        }

        .hero-tagline::after {
            content: '';
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            background: var(--worn-red);
            border-radius: 50%;
            opacity: 0.7;
            mix-blend-mode: multiply;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Flow ribbon */
        .flow-ribbon {
            position: relative;
            z-index: 2;
            padding: 8px 0 28px;
            text-align: center;
        }

        .flow-ribbon p {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: clamp(14px, 2vw, 17px);
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--warm-brown);
            max-width: 58ch;
            margin: 0 auto;
            line-height: 1.55;
        }

        .flow-ribbon span {
            color: var(--electric-blue);
        }

        .hero-tagline .soul-line {
            margin-top: 20px;
            font-size: clamp(19px, 2.3vw, 25px);
            font-style: italic;
            color: var(--warm-brown);
            max-width: 38ch;
            line-height: 1.4;
        }

        .essence-triad {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 52px;
            max-width: 1000px;
        }

        .essence-cell {
            border-top: 3px solid var(--electric-blue);
            padding-top: 16px;
        }

        .essence-cell h3 {
            font-family: 'Fraunces', serif;
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .essence-cell p {
            font-size: 18px;
            line-height: 1.55;
            color: var(--gray);
        }

        .coming-soon {
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        .coming-soon-intro {
            font-size: 22px;
            line-height: 1.7;
            color: var(--gray);
            max-width: 58ch;
            margin: 28px 0 48px;
        }

        .venture-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .venture-card {
            border: 2px solid var(--black);
            background: rgba(255, 255, 255, 0.55);
            padding: 28px 24px 32px;
            box-shadow: 6px 6px 0 rgba(46, 76, 255, 0.12);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .venture-card:hover {
            transform: translate(-2px, -2px);
        }

        .venture-card .venture-kicker {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 10px;
        }

        .venture-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .venture-card p {
            font-size: 18px;
            line-height: 1.55;
            color: var(--gray);
        }

        /* Dual door (Sidewalk) */
        .dual-door {
            padding: 0 0 80px;
            position: relative;
            z-index: 2;
        }

        .dual-door-inner {
            max-width: 920px;
            opacity: 1;
        }

        .dual-door-label {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--warm-brown);
            margin-bottom: 20px;
        }

        .dual-door-intro {
            font-size: clamp(18px, 2.2vw, 22px);
            line-height: 1.55;
            color: var(--black);
            margin-bottom: 32px;
            max-width: 36em;
        }

        .dual-door-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .door-link {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-decoration: none;
            color: var(--black);
            background: white;
            border: 3px solid var(--black);
            padding: 16px 28px;
            box-shadow: 4px 4px 0 var(--black);
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
            display: inline-flex;
            flex-direction: column;
            gap: 4px;
            min-width: min(100%, 280px);
        }

        .door-link:hover,
        .door-link:focus-visible {
            transform: translateY(-3px);
            box-shadow: 6px 6px 0 var(--electric-blue), 8px 8px 0 var(--black);
            outline: none;
        }

        .door-link:focus-visible {
            outline: 3px solid var(--electric-blue);
            outline-offset: 3px;
        }

        .door-link .door-title {
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .door-link .door-desc {
            font-family: 'Crimson Pro', serif;
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
            letter-spacing: 0;
            text-transform: none;
        }

        .door-link--guest {
            border-color: var(--black);
        }

        .door-link--guest .door-title {
            color: var(--electric-blue);
        }

        /* Philosophy Section */
        .philosophy {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 900;
            letter-spacing: 0.02em;
            margin-bottom: 80px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--electric-blue);
            transform: skewY(-1deg);
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .philosophy-card {
            background: white;
            padding: 40px 35px;
            position: relative;
            border: 4px solid var(--black);
            transform: rotate(-1deg);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow:
                8px 8px 0 rgba(0,0,0,0.3),
                inset -2px -2px 8px rgba(0,0,0,0.05);
            clip-path: polygon(
                0% 3px,
                3px 0%,
                calc(100% - 8px) 0%,
                100% 5px,
                100% calc(100% - 3px),
                calc(100% - 5px) 100%,
                8px 100%,
                0% calc(100% - 5px)
            );
        }

        .philosophy-card:nth-child(even) {
            transform: rotate(1deg);
            margin-top: 40px;
        }

        .philosophy-card:hover {
            transform: rotate(0deg) translateY(-8px);
            box-shadow:
                16px 16px 0 var(--electric-blue),
                18px 18px 0 var(--black),
                inset -2px -2px 8px rgba(0,0,0,0.05);
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 20px;
            width: 60%;
            height: 8px;
            background: var(--worn-red);
            opacity: 0.6;
            transform: skewX(-5deg);
        }

        .philosophy-card::after {
            content: '';
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: var(--electric-blue);
            opacity: 0.3;
            border-radius: 50%;
            filter: blur(8px);
        }

        .philosophy-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--black);
            line-height: 1.2;
        }

        .philosophy-card p {
            font-size: 17px;
            line-height: 1.65;
            color: var(--gray);
        }

        /* Manifesto Section */
        .manifesto {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .manifesto-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .manifesto-quote {
            font-family: 'Fraunces', serif;
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 900;
            line-height: 1.1;
            color: var(--black);
            position: relative;
            padding: 60px;
            background: white;
            border: 6px solid var(--black);
            transform: rotate(-1deg);
            box-shadow:
                15px 15px 0 var(--electric-blue),
                17px 17px 0 var(--black),
                inset -5px -5px 15px rgba(0,0,0,0.08);
            clip-path: polygon(
                0% 10px,
                10px 0%,
                calc(100% - 15px) 0%,
                100% 12px,
                100% calc(100% - 10px),
                calc(100% - 12px) 100%,
                15px 100%,
                0% calc(100% - 12px)
            );
        }

        .manifesto-quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 180px;
            color: var(--worn-red);
            opacity: 0.3;
            font-family: 'Fraunces', serif;
            line-height: 1;
        }

        .manifesto-quote::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -15px;
            width: 120px;
            height: 120px;
            background: var(--worn-red);
            opacity: 0.2;
            border-radius: 50%;
            filter: blur(30px);
        }

        .manifesto-quote .highlight {
            color: var(--electric-blue);
            position: relative;
            display: inline-block;
        }

        .manifesto-quote .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 20px;
            background: var(--electric-blue);
            opacity: 0.2;
            transform: skewY(-1deg);
            z-index: -1;
        }

        .manifesto-signature {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 32px;
            font-weight: 900;
            text-align: right;
            margin-top: 40px;
            padding-right: 40px;
            color: var(--black);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
        }

        .manifesto-signature::before {
            content: '';
            position: absolute;
            right: 40px;
            top: -15px;
            width: 200px;
            height: 3px;
            background: var(--black);
            transform: rotate(-2deg);
        }

        /* Waitlist Section */
        .waitlist {
            padding: 100px 0 120px;
            position: relative;
        }

        .waitlist-card {
            background: white;
            border: 5px solid var(--black);
            max-width: 720px;
            margin: 0 auto;
            padding: 56px 48px;
            position: relative;
            box-shadow:
                16px 16px 0 var(--electric-blue),
                18px 18px 0 var(--black);
            clip-path: polygon(
                0% 8px,
                8px 0%,
                calc(100% - 12px) 0%,
                100% 10px,
                100% calc(100% - 8px),
                calc(100% - 10px) 100%,
                12px 100%,
                0% calc(100% - 10px)
            );
        }

        .waitlist-kicker {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 16px;
        }

        .waitlist-card h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 28px;
            color: var(--black);
        }

        .waitlist-prose {
            font-size: 19px;
            line-height: 1.7;
            color: var(--gray);
            margin-bottom: 20px;
            max-width: 38em;
        }

        .waitlist-prose + .waitlist-prose {
            margin-bottom: 36px;
        }

        .waitlist-form-lead {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 22px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
            color: var(--black);
        }

        .waitlist-form-sub {
            font-size: 17px;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 32px;
        }

        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-field label {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--black);
        }

        .form-field .optional {
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            color: var(--gray);
            font-family: 'Crimson Pro', serif;
            font-size: 15px;
        }

        .form-field input,
        .form-field textarea {
            font-family: 'Crimson Pro', serif;
            font-size: 18px;
            padding: 14px 16px;
            border: 3px solid var(--black);
            background: var(--cream);
            color: var(--black);
            width: 100%;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 3px rgba(46, 76, 255, 0.25);
        }

        .form-field textarea {
            min-height: 96px;
            resize: vertical;
        }

        .interest-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .interest-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .interest-option {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            color: var(--black);
            cursor: pointer;
            padding: 12px 14px;
            border: 2px solid var(--light-gray);
            background: var(--cream);
            transition: border-color 0.2s ease;
        }

        .interest-option:hover,
        .interest-option:focus-within {
            border-color: var(--black);
        }

        .interest-option input {
            width: 18px;
            height: 18px;
            accent-color: var(--electric-blue);
            flex-shrink: 0;
        }

        .form-error {
            font-size: 16px;
            color: var(--worn-red);
            margin: 0;
            display: none;
        }

        .form-error.is-visible {
            display: block;
        }

        .form-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-top: 8px;
        }

        .waitlist-submit {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 22px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 18px 36px;
            background: var(--electric-blue);
            color: white;
            border: 4px solid var(--black);
            box-shadow: 5px 5px 0 var(--black);
            cursor: pointer;
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .waitlist-submit:hover,
        .waitlist-submit:focus-visible {
            transform: translateY(-3px);
            box-shadow: 7px 7px 0 var(--worn-red), 9px 9px 0 var(--black);
            outline: none;
        }

        .waitlist-submit:focus-visible {
            outline: 3px solid var(--electric-blue);
            outline-offset: 3px;
        }

        .waitlist-note {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.5;
        }

        .waitlist-secondary {
            margin-top: 28px;
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }

        .waitlist-secondary a {
            color: var(--black);
            font-weight: 600;
            text-underline-offset: 3px;
        }

        .waitlist-secondary a:focus-visible {
            outline: 2px solid var(--electric-blue);
            outline-offset: 2px;
        }

        .waitlist-confirm {
            display: none;
        }

        .waitlist-confirm.is-visible {
            display: block;
        }

        .waitlist-form.is-hidden {
            display: none;
        }

        .waitlist-confirm h3 {
            font-family: 'Fraunces', serif;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 900;
            margin-bottom: 16px;
            color: var(--black);
        }

        .waitlist-confirm p {
            font-size: 19px;
            line-height: 1.7;
            color: var(--gray);
            margin-bottom: 16px;
        }

        .waitlist-already {
            display: none;
            font-size: 17px;
            line-height: 1.6;
            color: var(--warm-brown);
            padding: 14px 16px;
            border: 2px solid var(--light-gray);
            background: var(--cream);
            margin-bottom: 20px;
        }

        .waitlist-already.is-visible {
            display: block;
        }

        /* Journey Section */
        .journey {
            padding: 120px 0;
            background: var(--black);
            color: var(--cream);
            margin: 120px 0;
            position: relative;
            box-shadow:
                inset 0 20px 40px rgba(46, 76, 255, 0.1),
                inset 0 -20px 40px rgba(139, 71, 73, 0.1);
        }

        .journey::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--black);
            clip-path: polygon(
                0 100%,
                5% 95%,
                10% 100%,
                15% 90%,
                25% 100%,
                35% 95%,
                45% 100%,
                55% 92%,
                65% 100%,
                75% 95%,
                85% 100%,
                95% 93%,
                100% 0,
                100% 100%
            );
        }

        .journey::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--black);
            clip-path: polygon(
                0 0,
                0 100%,
                5% 8%,
                15% 0,
                25% 5%,
                35% 0,
                45% 10%,
                55% 0,
                65% 7%,
                75% 0,
                85% 5%,
                95% 0,
                100% 100%
            );
        }

        .journey .section-title {
            color: var(--cream);
        }

        .journey .section-title::after {
            background: var(--electric-blue);
        }

        .journey-timeline {
            margin-top: 80px;
            position: relative;
            padding-left: 80px;
        }

        .journey-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--electric-blue);
        }

        .journey-item {
            margin-bottom: 80px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .journey-item:nth-child(1) { animation-delay: 0.1s; }
        .journey-item:nth-child(2) { animation-delay: 0.2s; }
        .journey-item:nth-child(3) { animation-delay: 0.3s; }
        .journey-item:nth-child(4) { animation-delay: 0.4s; }
        .journey-item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .journey-item::before {
            content: '';
            position: absolute;
            left: -67px;
            top: 8px;
            width: 20px;
            height: 20px;
            background: var(--electric-blue);
            border: 4px solid var(--black);
            border-radius: 50%;
        }

        .journey-item h3 {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--electric-blue);
            margin-bottom: 15px;
        }

        .journey-item p {
            font-size: 20px;
            line-height: 1.7;
            color: var(--cream);
            max-width: 700px;
        }

        /* Results Section */
        .results {
            padding: 120px 0;
            background: var(--cream);
            position: relative;
        }

        .results-lede {
            font-size: 22px;
            line-height: 1.7;
            max-width: 900px;
            margin: 40px 0 24px 0;
            color: var(--gray);
        }

        .results-disclaimer {
            font-size: 15px;
            line-height: 1.6;
            max-width: 720px;
            margin: 0 0 48px 0;
            color: var(--warm-brown);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 20px;
        }

        .result-stat {
            text-align: center;
            padding: 50px 30px;
            background: white;
            border: 4px solid var(--black);
            position: relative;
            transform: rotate(1deg);
            box-shadow: 8px 8px 0 var(--electric-blue), 10px 10px 0 var(--black);
            clip-path: polygon(
                0% 4px,
                4px 0%,
                calc(100% - 6px) 0%,
                100% 5px,
                100% calc(100% - 4px),
                calc(100% - 5px) 100%,
                6px 100%,
                0% calc(100% - 5px)
            );
        }

        .result-stat:nth-child(even) {
            transform: rotate(-1deg);
        }

        .result-stat .number {
            font-family: 'Fraunces', serif;
            font-size: 72px;
            font-weight: 900;
            color: var(--electric-blue);
            line-height: 1;
            margin-bottom: 15px;
            display: block;
        }

        .result-stat .label {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--black);
        }

        .result-stat::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            width: 25px;
            height: 25px;
            background: var(--worn-red);
            opacity: 0.4;
            border-radius: 50%;
            filter: blur(8px);
        }

        .results-quote {
            font-size: 19px;
            line-height: 1.7;
            max-width: 800px;
            margin: 80px auto 0;
            text-align: center;
            color: var(--gray);
            font-style: italic;
        }

        /* Expertise Section */
        .expertise {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, #E8E4DC 100%);
        }

        .expertise-lede {
            font-size: 22px;
            line-height: 1.7;
            max-width: 900px;
            margin: 40px 0 60px 0;
            color: var(--gray);
        }

        .expertise-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 60px;
        }

        .tag {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 20px;
            font-weight: 700;
            padding: 15px 30px;
            background: white;
            border: 3px solid var(--black);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: default;
            box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
            clip-path: polygon(
                0% 2px,
                2px 0%,
                calc(100% - 5px) 0%,
                100% 3px,
                100% calc(100% - 2px),
                calc(100% - 3px) 100%,
                5px 100%,
                0% calc(100% - 3px)
            );
        }

        .tag:hover {
            background: var(--electric-blue);
            color: white;
            transform: translateY(-4px) rotate(-2deg);
            box-shadow: 8px 8px 0 var(--warm-brown), 10px 10px 0 var(--black);
        }

        .tag::before {
            content: '';
            position: absolute;
            top: 5px;
            right: 5px;
            width: 8px;
            height: 8px;
            background: var(--worn-red);
            border-radius: 50%;
            opacity: 0.5;
        }

        .tag::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: -6px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--black);
            z-index: -1;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            clip-path: polygon(
                0% 2px,
                2px 0%,
                calc(100% - 5px) 0%,
                100% 3px,
                100% calc(100% - 2px),
                calc(100% - 3px) 100%,
                5px 100%,
                0% calc(100% - 3px)
            );
        }

        .tag:hover::after {
            bottom: -10px;
            right: -10px;
        }

        /* CTA Section (tea) */
        .cta {
            padding: 120px 0 100px;
            text-align: center;
            position: relative;
        }

        .cta-content {
            background: white;
            padding: 80px 60px;
            border: 5px solid var(--black);
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            transform: rotate(-0.5deg);
            box-shadow:
                20px 20px 0 var(--worn-red),
                22px 22px 0 var(--black),
                inset -4px -4px 12px rgba(0,0,0,0.08);
            clip-path: polygon(
                0% 8px,
                8px 0%,
                calc(100% - 12px) 0%,
                100% 10px,
                100% calc(100% - 8px),
                calc(100% - 10px) 100%,
                12px 100%,
                0% calc(100% - 10px)
            );
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -25px;
            left: -25px;
            right: -25px;
            bottom: -25px;
            border: 5px solid var(--electric-blue);
            pointer-events: none;
            clip-path: polygon(
                0% 10px,
                10px 0%,
                calc(100% - 15px) 0%,
                100% 12px,
                100% calc(100% - 10px),
                calc(100% - 12px) 100%,
                15px 100%,
                0% calc(100% - 12px)
            );
        }

        .cta-content::after {
            content: '';
            position: absolute;
            top: 30px;
            right: 30px;
            width: 80px;
            height: 80px;
            background: var(--electric-blue);
            opacity: 0.15;
            border-radius: 50%;
            filter: blur(20px);
        }

        .cta h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 30px;
            color: var(--black);
        }

        .cta p {
            font-size: 24px;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 40px;
        }

        .cta-subtext {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray);
            margin: -20px 0 50px;
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 25px 60px;
            background: var(--electric-blue);
            color: white;
            text-decoration: none;
            border: 5px solid var(--black);
            position: relative;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            box-shadow:
                6px 6px 0 var(--worn-red),
                8px 8px 0 var(--black);
            clip-path: polygon(
                0% 4px,
                4px 0%,
                calc(100% - 6px) 0%,
                100% 5px,
                100% calc(100% - 4px),
                calc(100% - 5px) 100%,
                6px 100%,
                0% calc(100% - 5px)
            );
        }

        .cta-button:hover,
        .cta-button:focus-visible {
            transform: translateY(-8px) rotate(-1deg);
            box-shadow:
                10px 10px 0 var(--worn-red),
                14px 14px 0 var(--black);
            outline: none;
        }

        .cta-button:focus-visible {
            outline: 3px solid var(--electric-blue);
            outline-offset: 4px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            width: 15px;
            height: 15px;
            background: white;
            opacity: 0.3;
            border-radius: 50%;
        }

        .cta-button::after {
            content: '→';
            margin-left: 15px;
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .cta-button:hover::after {
            transform: translateX(8px);
        }

        .cta-guest-link {
            display: block;
            margin-top: 36px;
            font-size: 17px;
            color: var(--gray);
        }

        .cta-guest-link a {
            color: var(--black);
            font-weight: 600;
            text-underline-offset: 3px;
        }

        .cta-guest-link a:focus-visible {
            outline: 2px solid var(--electric-blue);
            outline-offset: 2px;
        }

        /* Footer */
        .site-footer {
            padding: 40px 0 60px;
            border-top: 2px solid var(--light-gray);
            position: relative;
            z-index: 2;
        }

        .site-footer p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray);
            max-width: 520px;
        }

        .site-footer a {
            color: var(--black);
            text-underline-offset: 2px;
        }

        .site-footer a:focus-visible {
            outline: 2px solid var(--electric-blue);
            outline-offset: 2px;
        }

        /* Decorative Elements */
        .deco-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 3px solid var(--light-gray);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .deco-circle-1 {
            top: 10%;
            right: -100px;
            opacity: 0.5;
        }

        .deco-circle-2 {
            bottom: 20%;
            left: -150px;
            opacity: 0.3;
        }

        .ink-splatter {
            position: absolute;
            pointer-events: none;
            opacity: 0.15;
            z-index: 0;
        }

        .ink-splatter-1 {
            top: 15%;
            left: 5%;
            width: 80px;
            height: 80px;
            background: var(--electric-blue);
            border-radius: 43% 57% 63% 37% / 47% 39% 61% 53%;
            filter: blur(2px);
            transform: rotate(25deg);
        }

        .ink-splatter-2 {
            top: 45%;
            right: 8%;
            width: 60px;
            height: 60px;
            background: var(--worn-red);
            border-radius: 63% 37% 43% 57% / 39% 61% 47% 53%;
            filter: blur(3px);
            transform: rotate(-15deg);
        }

        .ink-splatter-3 {
            bottom: 25%;
            left: 12%;
            width: 100px;
            height: 100px;
            background: var(--warm-brown);
            border-radius: 37% 63% 57% 43% / 61% 47% 53% 39%;
            filter: blur(4px);
            transform: rotate(45deg);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero {
                padding: 80px 0 40px;
                min-height: auto;
            }

            .hero-title .line:nth-child(2) {
                text-indent: 24px;
            }

            .hero-title .line:nth-child(3) {
                text-indent: 0;
            }

            .hero-tagline {
                padding: 30px;
                margin-top: 40px;
            }

            .dual-door {
                padding-bottom: 64px;
            }

            .dual-door-links {
                flex-direction: column;
            }

            .door-link {
                min-width: 100%;
            }

            .essence-triad,
            .venture-grid {
                grid-template-columns: 1fr;
            }

            .coming-soon {
                padding: 80px 0;
            }

            .philosophy,
            .expertise,
            .cta,
            .waitlist {
                padding: 80px 0;
            }

            .journey {
                padding: 80px 0;
                margin: 80px 0;
            }

            .philosophy-grid {
                gap: 40px;
            }

            .philosophy-card {
                padding: 40px 30px;
            }

            .philosophy-card:nth-child(even) {
                margin-top: 0;
            }

            .journey-timeline {
                padding-left: 60px;
            }

            .journey-timeline::before {
                left: 20px;
            }

            .journey-item::before {
                left: -57px;
            }

            .cta-content,
            .waitlist-card {
                padding: 40px 24px;
            }

            .cta-content::before {
                top: -10px;
                left: -10px;
                right: -10px;
                bottom: -10px;
            }

            .cta-button {
                font-size: 20px;
                padding: 18px 28px;
                width: 100%;
                text-align: center;
            }

            .waitlist-submit {
                width: 100%;
            }
        }

        /* Visible by default (was opacity:0 and easy to miss if JS/scroll failed) */
        .reveal {
            opacity: 1;
            transform: none;
        }

        @media (prefers-reduced-motion: no-preference) {
            .reveal.js-anim {
                opacity: 0;
                transform: translateY(28px);
                transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            }

            .reveal.js-anim.active {
                opacity: 1;
                transform: translateY(0);
            }
        }

        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--black);
            border: 2px solid var(--cream);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--electric-blue);
        }

        body {
            cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%231A1A1A' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%233A5FFF'/%3E%3C/svg%3E") 12 12, auto;
        }

        a, button, .tag, .door-link, .waitlist-submit {
            cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%233A5FFF' stroke='%231A1A1A' stroke-width='2'/%3E%3C/svg%3E") 12 12, pointer;
        }
