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

        :root {
            --cream:        #F8F5EF;
            --cream-dark:   #EDE8DE;
            --ink:          #1A1714;
            --ink-mid:      #4A4540;
            --ink-faint:    #9C958D;

            --blue:         #2347D9;
            --blue-light:   #EEF2FF;
            --blue-mid:     #7B95F0;
            --blue-dark:    #1535B0;

            --terra:        #C4614A;
            --terra-light:  #F9EDE9;
            --terra-mid:    #E0967F;
            --terra-dark:   #A04A36;

            --green-pop:    #0DBF7A;

            --font-display: 'Fraunces', Georgia, serif;
            --font-body:    'DM Sans', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            background: var(--cream);
            color: var(--ink);
            font-family: var(--font-body);
            overflow-x: hidden;
        }

        /* Grain texture overlay on body */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 1000;
            pointer-events: none;
            opacity: 0.028;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 200px 200px;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 200;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            background: rgba(248, 245, 239, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1.5px solid var(--cream-dark);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 9px;
            text-decoration: none;
        }

        .logo img { width: 34px; height: 34px; object-fit: contain; }

        .logo-word {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -0.03em;
        }

        .logo-word em { font-style: italic; font-weight: 300; color: var(--ink-mid); }

        nav { display: flex; align-items: center; gap: 6px; }

        .nav-btn {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 7px 16px;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            letter-spacing: 0.01em;
        }

        .nav-btn.blue { color: var(--blue); background: var(--blue-light); }
        .nav-btn.blue:hover { background: #D9E0FF; }
        .nav-btn.terra { color: var(--terra); background: var(--terra-light); }
        .nav-btn.terra:hover { background: #F5DDD7; }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            padding: 128px 2.5rem 80px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 40px;
            position: relative;
        }

        /* SVG doodle decorations */
        .doodle {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        .doodle-squiggle { top: 200px; left: -20px; width: 80px; opacity: 0.18; }
        .doodle-circle { bottom: 120px; right: 20px; width: 110px; opacity: 0.12; }
        .doodle-dots { top: 320px; right: 180px; width: 48px; opacity: 0.2; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-8px); }
        }

        .hero-left {
            position: relative;
            z-index: 1;
        }

        .hero-h1 {
            font-family: var(--font-display);
            font-weight: 900;
            line-height: 0.97;
            letter-spacing: -0.035em;
            color: var(--ink);
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeUp 0.6s 0.2s ease forwards;
        }

        .h1-line-sm {
            font-size: clamp(2.8rem, 4.2vw, 4.4rem);
            display: block;
        }

        .h1-line-lg {
            font-size: clamp(1.5rem, 4vw, 4.5rem); /*clamp(5rem, 8vw, 8.5rem);*/
            display: block;
            color: var(--blue);
            font-style: italic;
            font-weight: 300;
            line-height: 0.95;
        }

        .h1-line-md {
            font-size: clamp(3rem, 4.8vw, 5rem);
            display: block;
            position: relative;
            width: fit-content;
        }

        /* Wobbly hand-drawn underline via SVG */
        .h1-line-md::after {
            content: '';
            display: block;
            width: 100%;
            height: 10px;
            margin-top: -2px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C20 3, 40 11, 60 7 S100 2, 120 7 S160 12, 180 7 S220 1, 240 7 S280 11, 298 6' stroke='%23C4614A' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
            opacity: 0.7;
        }

        .hero-sub {
            font-size: 1.05rem;
            font-weight: 400;
            color: var(--ink-mid);
            line-height: 1.75;
            max-width: 420px;
            margin-bottom: 44px;
            opacity: 0;
            animation: fadeUp 0.6s 0.3s ease forwards;
        }

        .hero-ctas {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.6s 0.4s ease forwards;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 14px 26px;
            border-radius: 14px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.22s;
            position: relative;
        }

        .cta-btn.blue {
            background: var(--blue);
            color: white;
            box-shadow: 0 4px 20px rgba(35, 71, 217, 0.3), 4px 4px 0 var(--blue-dark);
        }
        .cta-btn.blue:hover {
            transform: translate(-2px, -2px);
            box-shadow: 0 4px 20px rgba(35, 71, 217, 0.3), 6px 6px 0 var(--blue-dark);
        }

        .cta-btn.terra {
            background: var(--terra);
            color: white;
            box-shadow: 0 4px 20px rgba(196, 97, 74, 0.3), 4px 4px 0 var(--terra-dark);
        }
        .cta-btn.terra:hover {
            transform: translate(-2px, -2px);
            box-shadow: 0 4px 20px rgba(196, 97, 74, 0.3), 6px 6px 0 var(--terra-dark);
        }

        /* ─── HERO RIGHT: tilted cards ─── */
        .hero-right {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            padding-top: 40px;
            opacity: 0;
            animation: fadeUp 0.7s 0.55s ease forwards;
        }

        .mode-card-hero {
            width: 100%;
            max-width: 340px;
            border-radius: 22px;
            overflow: hidden;
            text-decoration: none;
            display: block;
            position: relative;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        }

        .mode-card-hero.blue-card {
            background: var(--blue);
            transform: rotate(-2.5deg);
            box-shadow: 6px 6px 0 var(--blue-dark), 0 12px 40px rgba(35,71,217,0.2);
        }

        .mode-card-hero.terra-card {
            background: var(--terra);
            transform: rotate(1.8deg);
            box-shadow: 6px 6px 0 var(--terra-dark), 0 12px 40px rgba(196,97,74,0.2);
        }

        .mode-card-hero.blue-card:hover {
            transform: rotate(-1deg) translateY(-8px) scale(1.02);
            box-shadow: 8px 8px 0 var(--blue-dark), 0 24px 60px rgba(35,71,217,0.28);
        }

        .mode-card-hero.terra-card:hover {
            transform: rotate(0.5deg) translateY(-8px) scale(1.02);
            box-shadow: 8px 8px 0 var(--terra-dark), 0 24px 60px rgba(196,97,74,0.28);
        }

        .card-inner {
            padding: 28px 26px 24px;
            position: relative;
            overflow: hidden;
        }

        .card-bg-icon {
            position: absolute;
            right: -18px; bottom: -18px;
            font-size: 7.5rem;
            color: white;
            opacity: 0.1;
            line-height: 1;
            pointer-events: none;
        }

        .card-num {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 14px;
        }

        .card-title-hero {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 900;
            color: white;
            letter-spacing: -0.025em;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .card-title-hero em { font-style: italic; font-weight: 300; }

        .card-blurb {
            font-size: 0.83rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .card-go {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.8rem;
            font-weight: 700;
            color: white;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 14px;
            border-radius: 100px;
            transition: background 0.2s;
        }

        .mode-card-hero:hover .card-go { background: rgba(255,255,255,0.32); }

        /* ─── SECTION SHARED ─── */
        .section-tag {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.73rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 18px;
        }

        .section-tag::before {
            content: '';
            width: 18px; height: 1.5px;
            background: var(--ink-faint);
            display: block;
        }

        /* ─── HOW IT WORKS ─── */
        .how {
            padding: 100px 2.5rem 120px;
            position: relative;
            overflow: hidden;
        }

        /* Large faint background numeral */
        .how::before {
            content: '?';
            position: absolute;
            font-family: var(--font-display);
            font-size: 40vw;
            font-weight: 900;
            font-style: italic;
            color: var(--cream-dark);
            top: -5vw;
            right: -8vw;
            line-height: 1;
            pointer-events: none;
            z-index: 0;
            opacity: 0.6;
        }

        .how-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .how-title {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.0;
            color: var(--ink);
            margin-bottom: 72px;
            max-width: 560px;
        }

        .how-title em { font-style: italic; font-weight: 300; color: var(--ink-mid); }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .how-step {
            background: white;
            border-radius: 20px;
            padding: 40px 32px;
            border: 1.5px solid var(--cream-dark);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        }

        .how-step:hover {
            transform: translateY(-6px) rotate(0.4deg);
            box-shadow: 0 16px 48px rgba(26, 23, 20, 0.1);
        }

        .how-step:nth-child(2) { margin-top: 24px; }
        .how-step:nth-child(3) { margin-top: 8px; }

        .step-big-num {
            font-family: var(--font-display);
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.05em;
            color: var(--cream-dark);
            margin-bottom: 20px;
        }

        .step-icon-badge {
            width: 46px; height: 46px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: white;
            margin-bottom: 18px;
        }

        .how-step:nth-child(1) .step-icon-badge { background: var(--blue); }
        .how-step:nth-child(2) .step-icon-badge { background: var(--terra); }
        .how-step:nth-child(3) .step-icon-badge { background: var(--green-pop); }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--ink);
            margin-bottom: 10px;
        }

        .step-body {
            font-size: 0.88rem;
            color: var(--ink-mid);
            line-height: 1.72;
        }

        /* ─── PICK YOUR MODE ─── */
        .modes-section {
            background: var(--ink);
            padding: 120px 2.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Faint hand-drawn circle in background */
        .modes-section::before {
            content: '';
            position: absolute;
            width: 700px; height: 700px;
            border-radius: 50%;
            border: 2px dashed rgba(255,255,255,0.06);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .modes-section::after {
            content: '';
            position: absolute;
            width: 400px; height: 400px;
            border-radius: 50%;
            border: 1.5px dashed rgba(255,255,255,0.04);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .modes-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .modes-section .section-tag { color: rgba(248,245,239,0.35); }
        .modes-section .section-tag::before { background: rgba(248,245,239,0.35); }

        .modes-title {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.0;
            color: var(--cream);
            margin-bottom: 72px;
        }

        .modes-title em { font-style: italic; font-weight: 300; color: rgba(248,245,239,0.45); }

        .modes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .mode-full-card {
            border-radius: 24px;
            padding: 48px 42px;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mode-full-card:hover { transform: translateY(-6px) rotate(-0.3deg); }
        .mode-full-card.blue-card { background: var(--blue); box-shadow: 0 0 0 1.5px var(--blue-dark); }
        .mode-full-card.terra-card { background: var(--terra); box-shadow: 0 0 0 1.5px var(--terra-dark); }

        .mode-full-card .bg-icon {
            position: absolute;
            right: -24px; bottom: -24px;
            font-size: 10rem;
            color: white;
            opacity: 0.08;
            line-height: 1;
            pointer-events: none;
        }

        .mode-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }

        .mode-full-title {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 900;
            color: white;
            letter-spacing: -0.025em;
            line-height: 1.05;
            margin-bottom: 16px;
        }

        .mode-full-title em { font-style: italic; font-weight: 300; }

        .mode-full-desc {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.72;
            margin-bottom: 30px;
            max-width: 340px;
        }

        .mode-features {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-bottom: 38px;
        }

        .mode-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.82);
        }

        .mode-feature i { font-size: 0.7rem; opacity: 0.65; }

        .mode-cta {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 700;
            background: rgba(255,255,255,0.16);
            color: white;
            text-decoration: none;
            border: 1.5px solid rgba(255,255,255,0.22);
            transition: background 0.2s, transform 0.2s;
        }

        .mode-cta:hover {
            background: rgba(255,255,255,0.26);
            transform: translateX(3px);
        }

        /* ─── FOOTER ─── */
        footer {
            padding: 44px 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1.5px solid var(--cream-dark);
        }

        .footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
        .footer-logo img { width: 26px; height: 26px; object-fit: contain; }
        .footer-logo-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -0.02em;
        }
        .footer-logo-text em { font-style: italic; font-weight: 300; color: var(--ink-mid); }

        .footer-mid { font-size: 0.82rem; color: var(--ink-faint); }

        .footer-links { display: flex; gap: 20px; }
        .footer-links a {
            font-size: 0.82rem; font-weight: 500;
            color: var(--ink-faint); text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--ink); }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .rd1 { transition-delay: 0.1s; }
        .rd2 { transition-delay: 0.2s; }
        .rd3 { transition-delay: 0.3s; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 960px) {
            .hero {
                grid-template-columns: 1fr;
                padding-top: 110px;
            }
            .hero-right {
                flex-direction: row;
                justify-content: center;
                padding-top: 10px;
            }
            .mode-card-hero { max-width: 260px; }
            .modes-grid { grid-template-columns: 1fr; }
            .how-steps {
                grid-template-columns: 1fr;
                max-width: 420px;
            }
            .how-step:nth-child(2),
            .how-step:nth-child(3) { margin-top: 0; }
        }

        @media (max-width: 600px) {
            header { padding: 0 1.2rem; }
            .hero { padding: 96px 1.2rem 60px; gap: 30px; }
            .hero-right { flex-direction: column; align-items: center; }
            .mode-card-hero { max-width: 100%; }
            .how { padding: 72px 1.2rem; }
            .modes-section { padding: 72px 1.2rem; }
            .hero-ctas { flex-direction: column; align-items: flex-start; }
            footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 1.2rem; }
        }