:root {
            --bg0: #0e0e11;
            --bg1: #141418;
            --surface: #1a1a21;
            --surface2: #22222b;
            --border: rgba(255, 255, 255, 0.065);
            --border-strong: rgba(255, 255, 255, 0.11);
            --text: #f0f0f5;
            --muted: #9898a8;
            --accent: #4493f2;
            --accent-deep: #2a6fc4;
            --accent2: #7ac0ff;
            --accent-dim: rgba(68, 147, 242, 0.16);
            --accent-glow: rgba(68, 147, 242, 0.38);
            --warn: #ffc24a;
            --radius: 16px;
            --radius-lg: 24px;
            --font-display: 'Outfit', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, sans-serif;
            --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
            --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.35);
            --shadow-lift: 0 16px 48px rgba(0, 0, 0, 0.42);
            --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
            --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 88px;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: var(--font-body);
            background: var(--bg0);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: rgba(68, 147, 242, 0.38);
            color: #fff;
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 20000;
            padding: 0.65rem 1rem;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
        }
        .skip-link:focus {
            left: 1rem;
            top: 1rem;
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        /* Background */
        .page-bg {
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                radial-gradient(ellipse 90% 65% at 50% -20%, rgba(68, 147, 242, 0.18), transparent 58%),
                radial-gradient(ellipse 50% 40% at 95% 25%, rgba(68, 147, 242, 0.07), transparent 52%),
                radial-gradient(ellipse 45% 35% at 5% 75%, rgba(122, 192, 255, 0.05), transparent 50%),
                radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0, 0, 0, 0.5), transparent 55%),
                var(--bg0);
        }
        .page-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 40% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
            pointer-events: none;
        }
        .page-grid {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, black 0%, transparent 72%);
            pointer-events: none;
            opacity: 0.85;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            background: rgba(14, 14, 17, 0.78);
            backdrop-filter: blur(20px) saturate(1.35);
            -webkit-backdrop-filter: blur(20px) saturate(1.35);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.85rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
            line-height: 0;
        }
        .brand-logo {
            height: 60px;
            width: auto;
            max-width: min(380px, 58vw);
            object-fit: contain;
            object-position: left center;
        }
        @media (max-width: 900px) {
            .brand-logo {
                height: 54px;
                max-width: min(300px, 68vw);
            }
        }

        .nav-toggle {
            display: none;
            margin-left: auto;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border-strong);
            background: linear-gradient(180deg, rgba(36, 36, 44, 0.95) 0%, rgba(26, 26, 32, 0.98) 100%);
            color: var(--text);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .nav-toggle:hover {
            border-color: rgba(68, 147, 242, 0.35);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 20px rgba(68, 147, 242, 0.12);
        }
        .nav-toggle:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            flex: 1;
            justify-content: center;
            flex-wrap: wrap;
        }
        .site-nav a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            transition: color 0.22s var(--ease), background 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.2s var(--ease-spring);
        }
        .site-nav a:hover {
            color: var(--text);
            background: rgba(255,255,255,0.07);
            transform: translateY(-1px);
        }
        .site-nav a.is-active {
            color: var(--text);
            background: var(--accent-dim);
            box-shadow: inset 0 0 0 1px rgba(68, 147, 242, 0.45), 0 4px 20px rgba(68, 147, 242, 0.12);
        }
        .site-nav a:focus-visible {
            outline: 2px solid var(--accent2);
            outline-offset: 2px;
        }

        .header-cta {
            flex-shrink: 0;
            margin-left: auto;
        }

        @media (max-width: 900px) {
            body.nav-open {
                overflow: hidden;
            }
            .nav-toggle { display: flex; }
            .header-cta { display: none; }
            .site-nav {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                height: calc(100dvh - 72px);
                background: rgba(17, 17, 19, 0.97);
                backdrop-filter: blur(12px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 1.5rem;
                gap: 0.35rem;
                display: none;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                z-index: 1201;
            }
            .site-nav.is-open {
                display: flex;
            }
            .site-nav a {
                width: 100%;
                text-align: center;
                padding: 0.85rem;
                font-size: 1rem;
                border-radius: var(--radius);
                color: var(--text);
            }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.65rem 1.25rem;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }
        .btn:focus-visible {
            outline: 2px solid var(--accent2);
            outline-offset: 3px;
        }
        .btn-primary {
            position: relative;
            background: linear-gradient(145deg, var(--accent2) 0%, var(--accent) 42%, var(--accent-deep) 100%);
            color: #fff;
            box-shadow: 0 6px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(68, 147, 242, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.22);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text);
            border: 1px solid var(--border-strong);
            backdrop-filter: blur(8px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(255,255,255,0.22);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 28px rgba(0, 0, 0, 0.2);
        }
        .btn-block { width: 100%; }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem 4rem;
        }

        /* Hero */
        .hero {
            position: relative;
            isolation: isolate;
            padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem);
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: clamp(2rem, 5vw, 3.5rem);
            align-items: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            width: min(100%, 520px);
            height: min(70%, 420px);
            top: -5%;
            right: -8%;
            background: radial-gradient(ellipse at center, rgba(68, 147, 242, 0.12) 0%, transparent 68%);
            pointer-events: none;
            z-index: -1;
        }
        .hero > * {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent2);
            margin-bottom: 1rem;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 5.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.045em;
            margin-bottom: 1.1rem;
            text-wrap: balance;
        }
        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, #fff 0%, #b8c5d9 40%, var(--accent2) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-lead {
            color: #a8a8b8;
            font-size: 1.06rem;
            max-width: 36rem;
            margin-bottom: 1.75rem;
            line-height: 1.65;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
        }
        .metric {
            min-width: 7rem;
            padding: 0.65rem 0.85rem;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
        }
        .metric strong {
            display: block;
            font-family: var(--font-display);
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.03em;
            background: linear-gradient(180deg, #fff 30%, var(--accent2) 160%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .metric span {
            display: block;
            margin-top: 0.2rem;
            font-size: 0.72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            line-height: 1.35;
        }

        .hero-bento {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .bento-card {
            background: linear-gradient(165deg, rgba(36, 36, 46, 0.9) 0%, rgba(26, 26, 33, 0.95) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.2rem 1.25rem;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            transition: border-color 0.28s var(--ease), transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease);
        }
        .bento-card:hover {
            border-color: rgba(68, 147, 242, 0.25);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255, 255, 255, 0.07);
        }
        .bento-card.wide {
            grid-column: 1 / -1;
            background: linear-gradient(145deg, rgba(34, 34, 44, 0.95) 0%, rgba(22, 22, 30, 0.98) 100%);
            border-color: rgba(68, 147, 242, 0.32);
            box-shadow: var(--shadow-soft), 0 0 0 1px rgba(68, 147, 242, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .bento-card h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
        }
        .bento-card p {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
        }
        .bento-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(68, 147, 242, 0.22), rgba(68, 147, 242, 0.08));
            color: var(--accent2);
            margin-bottom: 0.7rem;
            font-size: 1rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }
        .bento-card.wide .bento-icon {
            background: linear-gradient(145deg, rgba(122, 192, 255, 0.2), rgba(68, 147, 242, 0.12));
            color: #b8dcff;
        }

        /* Section shell */
        .section-block {
            padding: clamp(3rem, 6vw, 4.5rem) 0;
            scroll-margin-top: 88px;
        }
        .section-head {
            max-width: 40rem;
            margin-bottom: 2rem;
        }
        .section-head .eyebrow {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        .section-head h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3.5vw, 2.35rem);
            font-weight: 800;
            letter-spacing: -0.035em;
            margin-bottom: 0.5rem;
            text-wrap: balance;
        }
        .section-head p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* Services bento */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        @media (max-width: 900px) {
            .services-grid { grid-template-columns: 1fr; }
        }
        .plan {
            background: linear-gradient(180deg, rgba(30, 30, 38, 0.95) 0%, rgba(22, 22, 28, 0.98) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.55rem 1.4rem;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.28s var(--ease), transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease);
        }
        .plan:hover {
            border-color: rgba(68, 147, 242, 0.45);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lift), 0 0 40px rgba(68, 147, 242, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .plan.featured {
            border-color: rgba(68, 147, 242, 0.5);
            background: linear-gradient(175deg, rgba(68, 147, 242, 0.14) 0%, rgba(26, 26, 33, 0.98) 48%);
            box-shadow: var(--shadow-soft), 0 0 0 1px rgba(68, 147, 242, 0.1), 0 24px 64px rgba(68, 147, 242, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .plan-badge {
            position: absolute;
            top: -11px;
            right: 1rem;
            background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 50%, var(--accent-deep) 100%);
            color: #fff;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            padding: 0.32rem 0.7rem;
            border-radius: 999px;
            box-shadow: 0 6px 20px rgba(68, 147, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }
        .plan h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .plan-price {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.15rem;
        }
        .plan-price small {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--muted);
        }
        .plan-note {
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 1rem;
        }
        .plan-desc {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--border);
        }
        .plan ul {
            list-style: none;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        .plan li {
            display: flex;
            gap: 0.55rem;
            align-items: flex-start;
            font-size: 0.86rem;
            margin-bottom: 0.65rem;
            color: #d8d8e4;
        }
        .plan li i {
            color: var(--accent2);
            margin-top: 0.15rem;
            font-size: 0.75rem;
        }

        /* About */
        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }
        @media (max-width: 800px) {
            .about-layout { grid-template-columns: 1fr; }
        }
        .tldr {
            grid-column: 1 / -1;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.15rem 1.25rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(68, 147, 242, 0.32);
            background: rgba(68, 147, 242, 0.06);
        }
        .tldr-tag {
            flex-shrink: 0;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--accent2);
            padding: 0.35rem 0.5rem;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.35);
        }
        .tldr p {
            font-size: 0.95rem;
            line-height: 1.55;
            color: #e4e4ee;
        }
        .about-card {
            background: linear-gradient(165deg, rgba(32, 32, 40, 0.9) 0%, rgba(24, 24, 30, 0.95) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1.3rem;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
        }
        .about-card:hover {
            border-color: rgba(68, 147, 242, 0.22);
            transform: translateY(-2px);
        }
        .about-card h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }
        .about-card h3 i { color: var(--accent); font-size: 0.9rem; }
        .about-card p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.55;
        }
        .about-prose {
            grid-column: 1 / -1;
            font-size: 0.95rem;
            color: #c8c8d4;
            line-height: 1.65;
            max-width: 48rem;
        }
        .about-prose p + p { margin-top: 0.85rem; }

        /* Team */
        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .person {
            width: 168px;
            text-align: center;
            padding: 1.35rem 1rem;
            background: linear-gradient(180deg, rgba(30, 30, 38, 0.95) 0%, rgba(20, 20, 26, 0.98) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.25s var(--ease), transform 0.28s var(--ease-spring), box-shadow 0.25s var(--ease);
        }
        .person:hover {
            border-color: rgba(68, 147, 242, 0.45);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lift), 0 0 32px rgba(68, 147, 242, 0.1);
        }
        .person-avatar {
            width: 88px;
            height: 88px;
            margin: 0 auto 0.85rem;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(68, 147, 242, 0.45);
            box-shadow: 0 0 0 3px rgba(68, 147, 242, 0.1), 0 8px 24px rgba(0, 0, 0, 0.35);
        }
        .person-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .person h3 {
            font-family: var(--font-display);
            font-size: 0.98rem;
            font-weight: 700;
        }
        .person .role {
            display: inline-block;
            margin-top: 0.35rem;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent2);
            background: rgba(68, 147, 242, 0.12);
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
        }

        /* Reference — Google facts */
        .google-facts {
            margin: 1.75rem 0 2rem;
            padding: 1.25rem 1.35rem;
            border-radius: var(--radius);
            background: linear-gradient(165deg, rgba(28, 28, 36, 0.88) 0%, rgba(22, 22, 28, 0.94) 100%);
            border: 1px solid rgba(68, 147, 242, 0.28);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 36px rgba(0, 0, 0, 0.22);
        }
        .google-facts-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: var(--text);
        }
        .google-facts-list {
            margin: 0;
            display: grid;
            gap: 0.65rem 1.25rem;
        }
        @media (min-width: 520px) {
            .google-facts-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        .google-facts-list > div {
            margin: 0;
        }
        .google-facts-list dt {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 0.2rem;
        }
        .google-facts-list dd {
            margin: 0;
            font-size: 0.9rem;
            color: #d4d4e0;
            line-height: 1.45;
        }
        .google-facts-list a {
            color: var(--accent2);
            text-decoration: none;
            font-weight: 600;
        }
        .google-facts-list a:hover {
            text-decoration: underline;
        }

        /* Reviews */
        .rating-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars { color: var(--warn); font-size: 1.15rem; letter-spacing: 0.05em; }
        .rating-pill {
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            background: var(--accent-dim);
            border: 1px solid rgba(68, 147, 242, 0.35);
            color: #d8e8fc;
        }
        .rating-explainer {
            margin: -0.35rem 0 1.35rem;
            max-width: 52rem;
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--muted);
        }
        .reviews-list {
            display: grid;
            gap: 0.85rem;
        }
        .review {
            padding: 1.2rem 1.25rem;
            border-radius: var(--radius);
            background: linear-gradient(165deg, rgba(28, 28, 36, 0.92) 0%, rgba(22, 22, 28, 0.96) 100%);
            border: 1px solid var(--border);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
        }
        .review:hover {
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-soft);
        }
        .review-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.45rem;
        }
        .review-name { font-weight: 700; font-size: 0.92rem; }
        .review-meta { font-size: 0.72rem; color: var(--muted); }
        .review-note {
            font-weight: 500;
            color: var(--muted);
            opacity: 0.92;
        }
        .review-stars-small { color: var(--warn); font-size: 0.8rem; }
        .review q {
            display: block;
            font-size: 0.9rem;
            color: #c8c8d8;
            line-height: 1.55;
            font-style: normal;
        }
        .maps-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-top: 1.25rem;
            color: var(--accent2);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
        }
        .maps-link:hover { text-decoration: underline; }

        /* FAQ */
        .faq-wrap {
            max-width: 720px;
        }
        details.faq {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: linear-gradient(180deg, rgba(28, 28, 36, 0.9) 0%, rgba(22, 22, 28, 0.95) 100%);
            margin-bottom: 0.65rem;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
            transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
        }
        details.faq[open] {
            border-color: rgba(68, 147, 242, 0.42);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.2);
        }
        summary.faq-q {
            list-style: none;
            cursor: pointer;
            padding: 1.05rem 1.2rem;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: background 0.2s var(--ease);
        }
        summary.faq-q:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        summary.faq-q::-webkit-details-marker { display: none; }
        summary.faq-q::after {
            content: '+';
            font-weight: 300;
            font-size: 1.35rem;
            color: var(--accent);
            line-height: 1;
        }
        details.faq[open] summary.faq-q::after { transform: rotate(45deg); display: inline-block; }
        .faq-a {
            padding: 0 1.15rem 1.05rem;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
            border-top: 1px solid var(--border);
            padding-top: 0.85rem;
        }
        summary.faq-q:focus-visible {
            outline: 2px solid var(--accent2);
            outline-offset: -2px;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            align-items: stretch;
        }
        @media (max-width: 800px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
        .contact-card {
            background: linear-gradient(165deg, rgba(32, 32, 40, 0.92) 0%, rgba(24, 24, 30, 0.97) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.85rem 1.55rem;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }
        .contact-card h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .contact-card > p {
            color: var(--muted);
            font-size: 0.92rem;
            margin-bottom: 1.25rem;
        }
        .gmail-big {
            width: 100%;
            justify-content: center;
            padding: 0.9rem 1.25rem;
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }
        .contact-lines p {
            font-size: 0.92rem;
            margin-bottom: 0.5rem;
            color: #d0d0dc;
        }
        .contact-lines strong { color: var(--text); }
        .click-line {
            cursor: pointer;
            padding: 0.35rem 0;
            border-radius: 8px;
        }
        .click-line:hover { color: var(--accent2); }

        .social-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .social-btn {
            flex: 1 1 45%;
            min-width: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background: var(--surface2);
            color: var(--text);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: border-color 0.2s, background 0.2s;
        }
        .social-btn:hover {
            border-color: rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.04);
        }
        .social-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .social-btn.discord i { color: #5865F2; }
        .social-btn.insta i { color: #E4405F; }
        .social-btn.mail i { color: var(--accent); }
        .social-btn.phone i { color: var(--accent2); }

        /* Footer */
        footer {
            position: relative;
            border-top: 1px solid var(--border);
            padding: 2.25rem 1.25rem;
            text-align: center;
            color: var(--muted);
            font-size: 0.8rem;
            line-height: 1.65;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
        }
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(320px, 60%);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(68, 147, 242, 0.35), transparent);
        }
        footer p + p { margin-top: 0.35rem; }

        /* Back to top */
        .back-to-top {
            position: fixed;
            right: max(1.25rem, env(safe-area-inset-right, 0px));
            bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
            z-index: 1500;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--border-strong);
            background: var(--surface);
            color: var(--accent2);
            cursor: pointer;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            transition: opacity 0.28s var(--ease), visibility 0.28s, transform 0.28s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
        }
        .back-to-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: linear-gradient(145deg, rgba(68, 147, 242, 0.35), rgba(42, 111, 196, 0.25));
            border-color: rgba(122, 192, 255, 0.45);
            color: #fff;
            box-shadow: 0 12px 36px rgba(68, 147, 242, 0.25);
        }
        .back-to-top:focus-visible {
            outline: 2px solid var(--accent2);
            outline-offset: 3px;
        }
        @media (prefers-reduced-motion: reduce) {
            .back-to-top {
                transition: none;
            }
        }

        /* Inner pages & layout */
        .page-hero {
            padding: clamp(2rem, 5vw, 3rem) 0 2rem;
            margin-bottom: 2.25rem;
            border-bottom: 1px solid var(--border);
            max-width: 44rem;
            position: relative;
        }
        .page-hero::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 4rem;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent2), var(--accent-deep));
            opacity: 0.85;
        }
        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.65rem);
            font-weight: 800;
            letter-spacing: -0.035em;
            margin-bottom: 0.65rem;
            line-height: 1.12;
            text-wrap: balance;
        }
        .page-hero .lead {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.55;
        }
        .prose-block {
            max-width: 42rem;
            color: #c4c4d0;
            font-size: 0.98rem;
            line-height: 1.72;
            margin-bottom: 2rem;
        }
        .prose-block p + p { margin-top: 1rem; }
        .prose-block strong { color: var(--text); font-weight: 600; }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 2rem 0 2.5rem;
            counter-reset: step;
        }
        @media (max-width: 900px) {
            .steps { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 520px) {
            .steps { grid-template-columns: 1fr; }
        }
        .step {
            background: linear-gradient(165deg, rgba(30, 30, 38, 0.92) 0%, rgba(22, 22, 28, 0.96) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1.2rem 1.2rem;
            position: relative;
            padding-top: 2.45rem;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
        }
        .step:hover {
            border-color: rgba(68, 147, 242, 0.22);
            transform: translateY(-2px);
        }
        .step::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            position: absolute;
            top: 1rem;
            left: 1.2rem;
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: var(--accent2);
        }
        .step h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .step p {
            font-size: 0.84rem;
            color: var(--muted);
            line-height: 1.52;
        }

        .cta-band {
            margin-top: 3rem;
            padding: 2.5rem 1.75rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(68, 147, 242, 0.32);
            background:
                radial-gradient(ellipse 80% 120% at 50% -20%, rgba(68, 147, 242, 0.12), transparent 55%),
                linear-gradient(165deg, rgba(28, 32, 44, 0.95) 0%, rgba(20, 22, 30, 0.98) 100%);
            text-align: center;
            box-shadow: var(--shadow-soft), 0 0 0 1px rgba(68, 147, 242, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .cta-band h2 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .cta-band p {
            color: var(--muted);
            font-size: 0.92rem;
            margin-bottom: 1.25rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        footer .legal a {
            color: inherit;
            text-decoration: none;
        }
        footer .legal a:hover { color: var(--accent2); }

        .section-head.center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .teaser-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }
        @media (max-width: 800px) {
            .teaser-grid { grid-template-columns: 1fr; }
        }
        .teaser-card {
            background: linear-gradient(165deg, rgba(30, 30, 38, 0.92) 0%, rgba(22, 22, 28, 0.97) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.4rem 1.25rem;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: border-color 0.25s var(--ease), transform 0.28s var(--ease-spring), box-shadow 0.25s var(--ease);
        }
        .teaser-card:hover {
            border-color: rgba(68, 147, 242, 0.38);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lift), 0 0 36px rgba(68, 147, 242, 0.08);
        }
        .teaser-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            margin-bottom: 0.45rem;
        }
        .teaser-card p {
            font-size: 0.86rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .teaser-card .more {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--accent2);
            text-decoration: none;
        }
        .teaser-card .more:hover { text-decoration: underline; }

        .inclusion-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .inclusion-grid { grid-template-columns: 1fr; }
        }
        .inclusion-panel {
            background: linear-gradient(180deg, rgba(28, 28, 36, 0.94) 0%, rgba(22, 22, 28, 0.98) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.4rem 1.3rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .inclusion-panel h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        .inclusion-panel ul {
            list-style: none;
            font-size: 0.86rem;
            color: var(--muted);
            line-height: 1.55;
        }
        .inclusion-panel li {
            padding: 0.3rem 0;
            padding-left: 1.1rem;
            position: relative;
        }
        .inclusion-panel li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent2);
            font-weight: 700;
            font-size: 0.75rem;
        }

        .legal-box {
            margin-top: 2.5rem;
            margin-left: auto;
            margin-right: auto;
            padding: 1.35rem 1.45rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(26, 26, 34, 0.95) 0%, rgba(18, 18, 24, 0.98) 100%);
            font-size: 0.85rem;
            color: var(--muted);
            max-width: 36rem;
            text-align: center;
            box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .legal-box strong { color: var(--text); }

        /* Mobile hardening */
        @media (max-width: 700px) {
            html { scroll-padding-top: 74px; }

            .header-inner {
                padding: 0.55rem 0.9rem;
                gap: 0.6rem;
            }
            .brand-logo {
                height: 42px;
                max-width: min(230px, 62vw);
            }
            .nav-toggle {
                width: 40px;
                height: 40px;
            }
            .site-nav {
                top: 62px;
                height: calc(100dvh - 62px);
                padding: 1rem 0.9rem 1.25rem;
            }
            .site-nav a {
                padding: 0.78rem;
                font-size: 0.96rem;
            }

            main {
                padding: 0 0.9rem 3.25rem;
            }

            .hero {
                padding: 2.25rem 0 2rem;
                gap: 1.3rem;
            }
            .hero h1 {
                font-size: clamp(1.65rem, 9vw, 2.25rem);
                letter-spacing: -0.03em;
                line-height: 1.1;
            }
            .hero-lead {
                font-size: 0.97rem;
                margin-bottom: 1.1rem;
            }
            .hero-actions {
                margin-bottom: 1.2rem;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
                padding: 0.82rem 1rem;
            }
            .hero-metrics {
                width: 100%;
                gap: 0.6rem;
            }
            .metric {
                min-width: 0;
                width: 100%;
            }
            .hero-bento {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
            .bento-card {
                padding: 1rem 1rem;
            }

            .section-block {
                padding: 2.2rem 0;
            }
            .section-head {
                margin-bottom: 1.25rem;
            }
            .section-head h2 {
                font-size: clamp(1.45rem, 7vw, 1.9rem);
            }
            .section-head p {
                font-size: 0.9rem;
            }

            .plan {
                padding: 1.25rem 1rem;
            }
            .plan-price {
                font-size: 1.7rem;
            }

            .tldr {
                flex-direction: column;
                gap: 0.55rem;
                padding: 0.95rem;
            }
            .tldr p {
                font-size: 0.9rem;
            }
            .about-card {
                padding: 1rem 1rem;
            }
            .about-card p {
                font-size: 0.84rem;
            }

            .team-grid {
                justify-content: stretch;
                gap: 0.7rem;
            }
            .person {
                width: calc(50% - 0.35rem);
                min-width: 0;
                padding: 1rem 0.75rem;
            }
            .person h3 {
                font-size: 0.9rem;
            }
            .person .role {
                font-size: 0.58rem;
                letter-spacing: 0.06em;
            }

            .google-facts,
            .review,
            .contact-card,
            .teaser-card,
            .inclusion-panel,
            .step,
            .cta-band,
            .legal-box {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .google-facts-list dd,
            .review q,
            .faq-a,
            .prose-block,
            .page-hero .lead {
                font-size: 0.9rem;
            }
            summary.faq-q {
                padding: 0.9rem 0.95rem;
                font-size: 0.9rem;
            }
            .faq-a {
                padding: 0 0.95rem 0.95rem;
            }

            .social-row {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
            .social-btn {
                min-width: 0;
                width: 100%;
            }

            .cta-band {
                margin-top: 2rem;
                padding-top: 1.5rem;
                padding-bottom: 1.5rem;
            }
            .cta-band h2 {
                font-size: 1.15rem;
            }
            .cta-band p {
                font-size: 0.88rem;
            }
            .cta-actions .btn {
                width: 100%;
            }

            footer {
                padding: 1.6rem 0.9rem;
            }
            footer .legal {
                line-height: 1.75;
                word-break: break-word;
            }

            .back-to-top {
                width: 44px;
                height: 44px;
                right: max(0.75rem, env(safe-area-inset-right, 0px));
                bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
            }
        }

        @media (max-width: 430px) {
            .person {
                width: 100%;
            }
            .page-hero {
                margin-bottom: 1.4rem;
            }
            .page-hero h1 {
                font-size: clamp(1.5rem, 8.5vw, 1.9rem);
            }
            .gmail-big {
                font-size: 0.95rem;
                padding: 0.82rem 1rem;
            }
        }