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

        :root {
            --bg: #0a0a14;
            --surface: #12121f;
            --surface-2: #1a1a2e;
            --border: rgba(255,255,255,0.06);
            --text: #ffffff;
            --text-muted: #8b92a7;
            --accent: #59C72D;              /* brand green */
            --accent-glow: rgba(89,199,45,0.15);
            --brand-black: #0A0A0A;
            --accent-on-light: #3b831e;     /* brand green fails on white (2.2:1) */
            --purple: #8b5cf6;
            --blue: #3b82f6;
            --orange: #f59e0b;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 16px 0;
            background: rgba(10,10,20,0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }
        .nav-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between;
        }
        /* Real logo, delivered as the horizontal lockup (1400x320). The anchor
           keeps its "theFLIP" text for screen readers and SEO; the text is
           pushed out of view rather than removed. */
        .logo {
            display: inline-block;
            width: 172px; height: 45px;
            background: url('/images/brand/horizontal-notagline-white.svg') left center / contain no-repeat;
            text-indent: -9999px;
            white-space: nowrap;
            overflow: hidden;
            text-decoration: none;
        }
        .nav-links { display: flex; align-items: center; gap: 32px; }
        .nav-links a {
            color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-cta {
            padding: 10px 24px !important;
            background: var(--accent) !important;
            color: #fff !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s !important;
        }
        .nav-cta:hover { background: #419d1c !important; transform: translateY(-1px); }

        .mobile-toggle {
            display: none; background: none; border: none; cursor: pointer;
            flex-direction: column; gap: 5px; padding: 4px;
        }
        .mobile-toggle span {
            width: 24px; height: 2px; background: #fff; border-radius: 2px;
            transition: all 0.3s;
        }

        /* HERO */
        .hero {
            padding: 160px 24px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; top: -50%; left: -50%; right: -50%; bottom: -50%;
            background: radial-gradient(ellipse at 50% 0%, rgba(89,199,45,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 50%, rgba(59,130,246,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
        .hero-badge {
            display: inline-block; padding: 8px 20px; margin-bottom: 24px;
            background: var(--accent-glow); border: 1px solid rgba(89,199,45,0.3);
            border-radius: 100px; font-size: 13px; color: var(--accent); font-weight: 600;
        }
        .hero h1 {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 900; line-height: 1.1; margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #59C72D, #419d1c);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 18px; color: var(--text-muted); max-width: 600px;
            margin: 0 auto 40px; line-height: 1.7;
        }
        .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-primary {
            padding: 16px 36px; background: var(--accent); color: #fff;
            border: none; border-radius: 10px; font-size: 16px; font-weight: 700;
            cursor: pointer; transition: all 0.2s; text-decoration: none;
        }
        .btn-primary:hover { background: #419d1c; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(89,199,45,0.3); }
        .btn-secondary {
            padding: 16px 36px; background: transparent; color: #fff;
            border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; font-size: 16px; font-weight: 600;
            cursor: pointer; transition: all 0.2s; text-decoration: none;
        }
        .btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }

        /* PRODUCT SCREENSHOTS */
        .shot-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        .shot {
            border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
            overflow: hidden; background: var(--surface);
            box-shadow: 0 30px 80px rgba(0,0,0,0.55);
        }
        .shot img { display: block; width: 100%; height: auto; }
        .shot-caption {
            text-align: center; color: var(--text-muted);
            font-size: 13px; margin-top: 16px;
        }
        .hero-shot { margin-top: -40px; padding-bottom: 40px; position: relative; z-index: 1; }

        /* SOCIAL PROOF */
        .social-proof {
            padding: 40px 24px 80px;
            text-align: center;
        }
        .social-proof p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
        .proof-stats {
            display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
        }
        .proof-stat .number { font-size: 32px; font-weight: 800; color: var(--accent); }
        .proof-stat .label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

        /* SECTIONS */
        section { padding: 100px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-header {
            text-align: center; max-width: 700px; margin: 0 auto 64px;
        }
        .section-header .tag {
            display: inline-block; padding: 6px 16px; margin-bottom: 16px;
            background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
            border-radius: 100px; font-size: 12px; color: var(--purple); font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .section-header h2 {
            font-size: clamp(28px, 4vw, 44px); font-weight: 800;
            line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
        }
        .section-header p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

        /* PROBLEM */
        .problem { background: var(--surface); }
        .problem-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
        }
        .problem-list { display: flex; flex-direction: column; gap: 20px; }
        .problem-item {
            display: flex; gap: 16px; align-items: flex-start;
            padding: 20px; background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.1);
            border-radius: 12px;
        }
        .problem-item .icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
        .problem-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
        .problem-item p { font-size: 14px; color: var(--text-muted); }
        .solution-box {
            padding: 40px; background: linear-gradient(135deg, rgba(89,199,45,0.12), rgba(89,199,45,0.04));
            border: 2px solid rgba(89,199,45,0.2); border-radius: 20px;
        }
        .solution-box h3 {
            font-size: 28px; font-weight: 800; margin-bottom: 16px;
        }
        .solution-box h3 span {
            background: linear-gradient(135deg, #59C72D, #419d1c);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .solution-box p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
        .solution-checks { display: flex; flex-direction: column; gap: 10px; }
        .solution-checks div {
            display: flex; align-items: center; gap: 10px;
            font-size: 15px; font-weight: 500;
        }
        .check { color: var(--accent); font-weight: 700; }

        /* FEATURES */
        .features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
        }
        .feature-card {
            padding: 32px; background: var(--surface);
            border: 1px solid var(--border); border-radius: 16px;
            transition: all 0.3s;
        }
        .feature-card:hover {
            border-color: rgba(89,199,45,0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }
        .feature-icon {
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 20px;
        }
        .feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        /* HOW IT WORKS */
        .how-it-works { background: var(--surface); }
        .steps {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
            position: relative;
        }
        .steps::before {
            content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
            height: 2px; background: linear-gradient(90deg, var(--accent), rgba(89,199,45,0.35), transparent);
            opacity: 0.3;
        }
        .step { text-align: center; position: relative; }
        .step-number {
            width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; font-weight: 900;
            background: linear-gradient(135deg, rgba(89,199,45,0.22), rgba(89,199,45,0.08));
            border: 2px solid rgba(89,199,45,0.3);
            position: relative; z-index: 1;
        }
        .step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
        .step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin: 0 auto; }

        /* FEATURE HIGHLIGHT */
        .highlight-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
        }
        .highlight-grid.reverse { direction: rtl; }
        .highlight-grid.reverse > * { direction: ltr; }
        .highlight-text .tag-small {
            display: inline-block; padding: 4px 12px; margin-bottom: 12px;
            background: var(--accent-glow); border-radius: 6px;
            font-size: 11px; color: var(--accent); font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .highlight-text h3 { font-size: 32px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
        .highlight-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
        .highlight-features { display: flex; flex-direction: column; gap: 12px; }
        .highlight-features li {
            display: flex; align-items: center; gap: 10px;
            font-size: 14px; font-weight: 500; list-style: none;
        }
        .highlight-visual {
            background: var(--surface-2); border: 1px solid var(--border);
            border-radius: 16px; padding: 32px; min-height: 350px;
            display: flex; align-items: center; justify-content: center;
        }
        .mock-table { width: 100%; }
        .mock-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 12px 16px; border-bottom: 1px solid var(--border);
        }
        .mock-row:last-child { border-bottom: none; }
        .mock-trade { font-size: 14px; font-weight: 600; }
        .mock-amount { font-size: 14px; color: var(--accent); font-weight: 700; }
        .mock-status {
            padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
        }

        /* ROADMAP */
        /* Follows another transparent section, so it needs its own edge */
        #roadmap { border-top: 1px solid var(--border); }
        .soon-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
        }
        .soon-card {
            padding: 28px 24px; background: var(--surface);
            border: 1px dashed rgba(255,255,255,0.12); border-radius: 16px;
        }
        .soon-badge {
            display: inline-block; padding: 4px 12px; margin-bottom: 14px;
            background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
            border-radius: 100px; font-size: 11px; color: var(--purple);
            font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .soon-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
        .soon-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        /* PRICING */
        .pricing { background: var(--surface); }
        .pricing-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
            max-width: 1200px; margin: 0 auto; align-items: start;
        }
        .price-card {
            padding: 36px 24px; background: var(--bg);
            border: 1px solid var(--border); border-radius: 20px;
            text-align: center; position: relative; transition: all 0.3s;
        }
        .price-card.featured {
            border-color: rgba(89,199,45,0.4);
            background: linear-gradient(180deg, rgba(89,199,45,0.05) 0%, var(--bg) 100%);
            transform: scale(1.05);
        }
        .price-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            padding: 6px 20px; background: var(--accent); color: #fff;
            font-size: 11px; font-weight: 700; border-radius: 100px;
            letter-spacing: 0.5px;
        }
        .price-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
        .price-card .price {
            font-size: 40px; font-weight: 900; margin: 18px 0;
            letter-spacing: -0.02em;
        }
        .price-card .price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
        .price-card .desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
        .price-note {
            font-size: 12px; font-weight: 600; color: var(--accent);
            margin: -12px 0 12px; min-height: 18px;
        }
        .billing-toggle {
            display: flex; justify-content: center; gap: 4px;
            width: fit-content; margin: -40px auto 44px;
            background: var(--bg); border: 1px solid var(--border);
            border-radius: 100px; padding: 4px;
        }
        .billing-toggle button {
            padding: 10px 22px; border: none; background: none; cursor: pointer;
            font-family: inherit; font-size: 14px; font-weight: 600;
            color: var(--text-muted); border-radius: 100px; transition: all 0.2s;
        }
        .billing-toggle button:hover { color: #fff; }
        .billing-toggle button.active { background: var(--accent); color: #fff; }
        .billing-toggle .save-badge {
            font-size: 11px; font-weight: 700; color: var(--accent); margin-left: 6px;
        }
        .billing-toggle button.active .save-badge { color: rgba(255,255,255,0.9); }
        .price-features { text-align: left; margin-bottom: 32px; }
        .price-features li {
            display: flex; align-items: center; gap: 10px;
            padding: 8px 0; font-size: 14px; list-style: none;
            border-bottom: 1px solid var(--border);
        }
        .price-features li:last-child { border-bottom: none; }
        .price-btn {
            width: 100%; padding: 14px; border-radius: 10px;
            font-size: 15px; font-weight: 700; cursor: pointer;
            transition: all 0.2s; text-decoration: none; display: block; text-align: center;
        }
        .price-btn-primary { background: var(--accent); color: #fff; border: none; }
        .price-btn-primary:hover { background: #419d1c; }
        .price-btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
        .price-btn-secondary:hover { background: rgba(255,255,255,0.05); }

        /* FINAL CTA */
        .final-cta {
            text-align: center; padding: 120px 24px;
            position: relative;
        }
        .final-cta::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(89,199,45,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .final-cta h2 {
            font-size: clamp(32px, 5vw, 52px); font-weight: 900;
            margin-bottom: 20px; position: relative;
        }
        .final-cta p {
            font-size: 18px; color: var(--text-muted); margin-bottom: 40px;
            max-width: 500px; margin-left: auto; margin-right: auto; position: relative;
        }
        .final-cta .btn-primary { position: relative; }

        /* FOOTER */
        footer {
            padding: 40px 24px; border-top: 1px solid var(--border);
            text-align: center;
        }
        footer p { color: var(--text-muted); font-size: 13px; }
        footer a { color: var(--accent); text-decoration: none; }

        /* TABLET — four price cards need two rows before they get cramped.
           Must precede the mobile block so the 1-column rule still wins. */
        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
            .price-card.featured { transform: none; }
            .soon-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--surface); padding: 24px;
                border-bottom: 1px solid var(--border);
                gap: 16px;
            }
            .mobile-toggle { display: flex; }
            .hero { padding: 120px 24px 60px; }
            .problem-grid, .highlight-grid, .highlight-grid.reverse { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .steps { grid-template-columns: 1fr; gap: 48px; }
            .steps::before { display: none; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
            .soon-grid { grid-template-columns: 1fr; }
            .price-card.featured { transform: none; }
            .proof-stats { gap: 32px; }
        }

/* ============================================================
   MULTI-PAGE SITE ADDITIONS
   ============================================================ */

/* Page header (Features / Pricing / Contact land here, not on a hero) */
.page-head { padding: 150px 24px 60px; text-align: center; position: relative; }
.page-head::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(89,199,45,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.page-head-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-head h1 {
    font-size: clamp(32px, 5vw, 52px); font-weight: 900;
    line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px;
}
.page-head p { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

/* Alternating feature blocks with a screenshot beside the copy */
.feat-block { padding: 80px 24px; border-top: 1px solid var(--border); }
.feat-block:nth-child(even) { background: var(--surface); }
.feat-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center;
}
.feat-block.reverse .feat-inner { grid-template-columns: 1.25fr 1fr; }
.feat-block.reverse .feat-copy { order: 2; }
.feat-block.reverse .feat-shot { order: 1; }
.feat-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.feat-copy h2 {
    font-size: clamp(24px, 3vw, 34px); font-weight: 800;
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.feat-copy > p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.feat-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feat-list li { font-size: 15px; color: var(--text-muted); padding-left: 26px; position: relative; line-height: 1.6; }
.feat-list li::before {
    content: '+'; position: absolute; left: 0; top: -1px;
    color: var(--accent); font-weight: 800; font-size: 16px;
}
.feat-list li strong { color: var(--text); font-weight: 600; }
.tier-tag {
    display: inline-block; margin-top: 18px; padding: 5px 12px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    border-radius: 100px; font-size: 12px; color: var(--text-muted);
}
.tier-tag strong { color: var(--accent); font-weight: 700; }
.feat-shot img {
    display: block; width: 100%; height: auto;
    border: 1px solid rgba(255,255,255,0.10); border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feat-shot.phone { max-width: 300px; margin: 0 auto; }
.feat-shot.phone img { border-radius: 22px; }

/* Comparison table */
.cmp-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.cmp th, .cmp td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.cmp thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.cmp td:not(:first-child), .cmp th:not(:first-child) { text-align: center; width: 110px; }
.cmp tr.grp td {
    background: rgba(255,255,255,0.03); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.5px; color: var(--text);
}
.cmp .yes { color: var(--accent); font-weight: 700; }
.cmp .no { color: #4b5563; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 22px 24px; }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq-item p + p { margin-top: 10px; }

/* Contact */
.contact-grid {
    max-width: 1060px; margin: 0 auto;
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start;
}
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15px;
    background: var(--bg); color: var(--text);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 9px;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(89,199,45,0.15);
}
.field-hint { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #f87171; }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.side-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.side-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.side-card a { color: var(--accent); text-decoration: none; }
.side-card a:hover { text-decoration: underline; }

/* Section padding helper */
.sec-tight { padding: 80px 24px; }

@media (max-width: 900px) {
    .feat-inner, .feat-block.reverse .feat-inner { grid-template-columns: 1fr; gap: 32px; }
    .feat-block.reverse .feat-copy, .feat-block.reverse .feat-shot { order: unset; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-head { padding: 120px 24px 48px; }
    .feat-block { padding: 56px 24px; }
}

/* Not-yet-purchasable plan: reads as a state, not a dead button */
.price-btn-soon {
    display: block; width: 100%; padding: 14px 24px; border-radius: 10px;
    background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.15);
    color: var(--text-muted); font-size: 15px; font-weight: 600;
    text-align: center; cursor: default; user-select: none;
}

/* ===== BRAND PRESENCE =====
   The mark previously only ever appeared at 32px in the nav. These are the
   places it gets to be seen at its real size. */

/* Dedicated brand band. Brand black so the mark sits on its own ground
   rather than the page's near-black, which reads as a deliberate panel. */
.brand-band {
    background: var(--brand-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.brand-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(89,199,45,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.brand-band-inner { position: relative; max-width: 720px; margin: 0 auto; }
.brand-band img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 34px;
}
.brand-band-line {
    font-size: clamp(19px, 2.6vw, 26px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.brand-band-line span { color: var(--accent); }
.brand-band-sub {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Closing CTA gets the mark as its anchor */
.cta-mark {
    width: 66px; height: 66px;
    display: block; margin: 0 auto 26px;
    position: relative;
}

/* Footer: a real lockup instead of a 32px strip */
.footer-brand {
    display: inline-block;
    width: 172px; height: 102px;
    background: url('/images/brand/stacked-notagline-white.svg') center / contain no-repeat;
    text-indent: -9999px; white-space: nowrap; overflow: hidden;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-brand:hover { opacity: 1; }

@media (max-width: 768px) {
    .brand-band { padding: 68px 20px; }
    .brand-band img { max-width: 280px; margin-bottom: 26px; }
    .footer-brand { width: 140px; height: 83px; }
    .cta-mark { width: 54px; height: 54px; }
}

/* Hero lockup. Horizontal (4.4:1) rather than stacked so it stays short and
   doesn't push the headline down the page. */
.hero-brand {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}
@media (max-width: 768px) {
    .hero-brand { max-width: 260px; margin-bottom: 22px; }
}


/* Tagline as real type. Baked into the artwork it is 16.7px against a 105px
   wordmark at 0.67 opacity — fine on a business card, an illegible smudge at
   any size this site uses. Set here it stays sharp and is actually readable. */
.brand-tagline {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
}
.hero-tagline { margin: -18px auto 30px; }
.brand-band .brand-tagline { margin: -20px auto 34px; font-size: 12px; }
@media (max-width: 768px) {
  .brand-tagline { font-size: 9.5px; letter-spacing: 0.2em; }
  .hero-tagline { margin: -14px auto 22px; }
}

/* Legal documents — long-form reading, narrower measure than marketing copy */
.legal-doc {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal-doc h2 {
    font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
    margin: 44px 0 14px; padding-top: 8px;
    border-top: 1px solid var(--border);
}
.legal-doc h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-doc h3 { font-size: 16.5px; font-weight: 700; margin: 26px 0 8px; }
.legal-doc p { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-doc ul { margin: 0 0 16px 22px; }
.legal-doc li { color: var(--text-muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 9px; }
.legal-doc strong { color: var(--text); font-weight: 650; }
.legal-doc a { color: var(--accent); text-decoration: none; }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 14.5px; }
.legal-doc th, .legal-doc td {
    text-align: left; padding: 10px 12px;
    border-bottom: 1px solid var(--border); color: var(--text-muted);
}
.legal-doc th { color: var(--text); font-weight: 700; }
@media (max-width: 768px) {
    .legal-doc { padding: 0 4px; }
    .legal-doc h2 { font-size: 19px; margin-top: 34px; }
    .legal-doc p, .legal-doc li { font-size: 15px; }
    .legal-doc table { display: block; overflow-x: auto; }
}
