
        :root {
            --font-heading: 'EB Garamond', Georgia, serif;
            --font-body: 'Inter', system-ui, sans-serif;
            --peacock: #0B6B5B;
            --peacock-dark: #085C50;
            --off-white: #F8F6F1;
            --panel: rgba(0, 0, 0, 0.025);
            --border: rgba(0, 0, 0, 0.08);
            --text: #1a1a1a;
            --muted: rgba(0, 0, 0, 0.55);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { 
            background: var(--off-white); 
            scroll-behavior: smooth;
            overscroll-behavior: none;
        }
        body {
            font-family: var(--font-body);
            background: transparent;
            color: var(--text);
            min-height: 100vh;
            line-height: 1.6;
            overscroll-behavior-y: contain;
        }

        /* ── Ocean gradient background ───────────────────────────────── */
        .ocean-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        .ocean-bg::before,
        .ocean-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
        }
        .ocean-bg::before {
            width: 75vw;
            height: 70vh;
            top: 0;
            right: -5%;
            background: rgba(11, 107, 91, 0.07);
            animation: oceanDrift 22s ease-in-out infinite alternate;
        }
        .ocean-bg::after {
            width: 65vw;
            height: 75vh;
            bottom: 0;
            left: -5%;
            background: rgba(11, 107, 91, 0.05);
            animation: oceanDrift 28s ease-in-out infinite alternate-reverse;
        }
        @keyframes oceanDrift {
            0%   { transform: translate(0, 0); }
            30%  { transform: translate(-5vw, 10vh); }
            60%  { transform: translate(7vw, -8vh); }
            100% { transform: translate(-3vw, 6vh); }
        }
        
        /* Scroll-triggered fade-in animations */
        .fade-in-section {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fade-in-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Staggered children animations */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
        }
        a { color: inherit; text-decoration: none; }
        .container { width: min(1080px, 90vw); margin: 0 auto; }

        /* Nav */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            padding: 14px 0;
            z-index: 100;
            backdrop-filter: blur(16px);
            background: rgba(248, 246, 241, 0.9);
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }
        nav.scrolled { border-bottom-color: var(--border); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }
        
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .brand img {
            height: 44px;
            width: auto;
        }
        .brand-text {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--peacock-dark);
            text-transform: uppercase;
        }

        .nav-links { display: flex; align-items: center; gap: 6px; }
        .nav-links a:not(.btn) {
            padding: 8px 12px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--muted);
            border-radius: 6px;
            transition: color 0.2s;
        }
        .nav-links a:not(.btn):hover { color: var(--peacock); }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 18px;
            border-radius: 999px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid transparent;
            transition: all 0.2s;
            cursor: pointer;
        }
        .btn-primary { background: var(--peacock); color: #fff; }
        .btn-primary:hover { background: var(--peacock-dark); }
        .btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
        .btn-outline:hover { border-color: var(--peacock); color: var(--peacock); }

        .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
        .mobile-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

        /* Sections */
        section { padding: 100px 0; }
        .eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--peacock); margin-bottom: 12px; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.02em; }
        .section-title { font-size: clamp(2.2rem, 4.5vw, 3rem); line-height: 1.15; margin-bottom: 14px; }

        /* Hero */

 /* HERO VISUAL */
 .hero-visual{
    grid-column: 2;
    grid-row: 1;
    height: 460px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
  }

  .hero-visual .hero-scene{
    transform: translateX(40px) translateY(-20px) scale(1.05);
    position: relative;
  }

  .hero-visual::before{
    content:'';
    position:absolute;
    right: 20px;
    top: 40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11,107,91,0.10), transparent 65%);
    filter: blur(8px);
    pointer-events:none;
  }

  .hero{
    background:
      radial-gradient(
        700px 700px at 78% 52%,
        rgba(11,107,91,0.16),
        rgba(11,107,91,0.08) 40%,
        transparent 70%
      ),
      linear-gradient(
        to bottom,
        rgba(248,246,241,1),
        rgba(248,246,241,1)
      );
  }
  
  /* main dashboard card */
  .hero-dashboard{
    width: 420px;
    border-radius: 18px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 34px 60px rgba(0,0,0,0.14);
    backdrop-filter: blur(10px);
    padding: 16px 16px 14px;
    transform: translateX(200px);
  }

  .hero-inner{ 
    display: grid; 
    grid-template-columns: 1fr 1.35fr; 
    align-items: start; 
    gap: 56px; 
  }
  
  /* header row */
  .dash-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .dash-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--peacock);
    box-shadow: 0 0 0 6px rgba(11,107,91,0.12);
  }
  
  .dash-title{
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.58);
    font-weight: 700;
  }
  
  .dash-tag{
    margin-left: auto;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11,107,91,0.10);
    border: 1px solid rgba(11,107,91,0.16);
    color: var(--peacock-dark);
  }
  
  /* metric grid */
  .dash-metrics{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .metric{
    background: rgba(248,246,241,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 10px 12px;
  }
  
  .m-label{
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    font-weight: 700;
  }
  
  .m-value{
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--peacock-dark);
    letter-spacing: -0.02em;
  }
  
  .m-value span{
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  /* chart area */
  .dash-chart{
    background: rgba(248,246,241,0.55);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 14px 14px;
    margin-bottom: 12px;
    height: 86px;
    display: flex;
    align-items: center;
  }
  
  .spark{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.9;
    background:
      linear-gradient(180deg, rgba(11,107,91,0.12), transparent 60%),
      repeating-linear-gradient(
        90deg,
        rgba(0,0,0,0.04) 0px,
        rgba(0,0,0,0.04) 1px,
        transparent 1px,
        transparent 18px
      );
    position: relative;
    overflow: hidden;
  }
  .spark::after{
    content:'';
    position:absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 70%, rgba(11,107,91,0.35), transparent 35%),
      radial-gradient(circle at 42% 45%, rgba(11,107,91,0.55), transparent 35%),
      radial-gradient(circle at 72% 60%, rgba(11,107,91,0.40), transparent 35%),
      radial-gradient(circle at 90% 30%, rgba(11,107,91,0.25), transparent 35%);
    opacity: 0.9;
    filter: blur(10px);
  }
  
  
  /* footer pills */
  .dash-footer{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .pill{
    font-size: 0.95rem;
    color: rgba(0,0,0,0.58);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(248,246,241,0.78);
    border: 1px solid rgba(0,0,0,0.06);
  }
  
  .pill strong{
    color: var(--peacock-dark);
    margin-left: 6px;
  }
  
        
  
        .hero {
            padding: 120px 0 10vh;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            column-gap: 80px;
            align-items: start;
            will-change: transform, opacity;
            transition: opacity 0.1s ease-out;
        }
        .hero-text {
            grid-column: 1;
            grid-row: 1;
        }
        .hero h1 {
            font-size: clamp(2.6rem, 5.5vw, 3.8rem); 
            line-height: 1.1; 
            margin-bottom: 20px;
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        }
        .hero-sub {
            font-size: 1.2rem; 
            color: var(--muted); 
            line-height: 1.6; 
            margin-bottom: 24px;
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
        }
        .hero-ctas { 
            display: flex; 
            gap: 10px; 
            flex-wrap: wrap;
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
        }
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
            transition: opacity 0.15s ease-out;
        }
        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--peacock), transparent);
            position: relative;
            overflow: hidden;
        }
        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15px;
            background: var(--peacock);
            animation: scrollPulse 1.5s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0% { transform: translateY(-15px); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(50px); opacity: 0; }
        }

        /* Problem */
        .problem-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
        .problem-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; transition: box-shadow 0.25s, border-color 0.25s; }
        .problem-item:hover { border-color: rgba(11, 107, 91, 0.3); box-shadow: 0 0 20px rgba(11, 107, 91, 0.1); }
        .problem-item .dot { width: 5px; height: 5px; background: var(--peacock); border-radius: 50%; flex-shrink: 0; }
        .problem-item p { font-size: 1.05rem; color: var(--text); }


        /* Tech */
        .tech-dashboard{
            transform: none; /* remove hero offset */
            width: min(520px, 92vw);
          }
          
        .tech-section { 
            padding: 100px 0; 
            position: relative;
            min-height: auto;
        }
        .tech-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 60px; 
            align-items: center;
        }
        .tech-content {
            position: relative;
        }
        .tech-content h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); margin-bottom: 12px; }
        .tech-content p { color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
        .tech-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
        .tech-tag { padding: 6px 12px; background: rgba(11, 107, 91, 0.08); border: 1px solid rgba(11, 107, 91, 0.15); border-radius: 999px; color: var(--peacock-dark); font-size: 0.9rem; font-weight: 500; transition: box-shadow 0.25s, background 0.25s; }
        .tech-tag:hover { background: rgba(11, 107, 91, 0.12); box-shadow: 0 0 12px rgba(11, 107, 91, 0.15); }

        /* Tech Visual */
        .tech-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 500px;
        }
        .tech-scene {
            position: relative;
            width: 400px;
            height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.95);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }
        .tech-insole {
            max-width: 320px;
            width: 100%;
            height: auto;
            filter: brightness(1.18) contrast(0.95);
            mix-blend-mode: multiply;
            mask-image: radial-gradient(ellipse 55% 48% at 50% 50%, black 80%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 55% 48% at 50% 50%, black 80%, transparent 100%);
            position: relative;
            z-index: 2;
        }
        /* HUD Rings */
        .hud-ring {
            position: absolute;
            border: 1px solid rgba(11, 107, 91, 0.3);
            border-radius: 50%;
            pointer-events: none;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, border-width 0.3s ease;
            z-index: 3;
        }
        /* Invisible hover area */
        .hud-ring::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border-radius: 60%;
            pointer-events: auto;
            cursor: pointer;
        }
        .hud-ring:hover {
            border-color: var(--peacock);
            border-width: 2px;
            box-shadow: 0 0 20px rgba(11, 107, 91, 0.4), 0 0 40px rgba(11, 107, 91, 0.2), inset 0 0 20px rgba(11, 107, 91, 0.1);
        }
        .hud-ring-1 {
            width: 280px;
            height: 280px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: ring-pulse 4s ease-in-out infinite;
        }
        .hud-ring-1:hover {
            animation: none;
            transform: translate(-50%, -50%) scale(1.03);
        }
        .hud-ring-2 {
            width: 340px;
            height: 340px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-style: dashed;
            animation: ring-rotate 20s linear infinite;
        }
        .hud-ring-2:hover {
            animation: ring-rotate 8s linear infinite;
            border-style: solid;
        }
        .hud-ring-3 {
            width: 380px;
            height: 380px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-width: 2px;
            border-color: rgba(11, 107, 91, 0.15);
            animation: ring-pulse 4s ease-in-out infinite 1s;
        }
        .hud-ring-3:hover {
            animation: none;
            transform: translate(-50%, -50%) scale(1.02);
            border-color: var(--peacock);
        }
        @keyframes ring-pulse {
            0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.02); }
        }
        @keyframes ring-rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        /* Scan Line */
        .hud-scan {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 80%;
            background: linear-gradient(to bottom, transparent, rgba(11, 107, 91, 0.6), transparent);
            animation: scan-sweep 3s ease-in-out infinite;
            opacity: 0.6;
            z-index: 3;
        }
        @keyframes scan-sweep {
            0%, 100% { left: 30%; opacity: 0; }
            10% { opacity: 0.6; }
            50% { left: 70%; opacity: 0.6; }
            90% { opacity: 0.6; }
        }
        /* Data Points */
        .hud-data {
            position: absolute;
            font-family: var(--font-body);
            font-size: 0.75rem;
            color: var(--peacock);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 1;
            transition: opacity 0.5s ease-out, transform 0.5s ease-out, color 0.3s ease, text-shadow 0.3s ease;
            cursor: pointer;
            z-index: 3;
        }
        .hud-data:hover {
            color: var(--peacock-dark);
            text-shadow: 0 0 10px rgba(11, 107, 91, 0.5);
            transform: scale(1.1) !important;
        }
        .hud-data::before {
            content: '';
            position: absolute;
            width: 30px;
            height: 1px;
            background: rgba(11, 107, 91, 0.5);
            transition: width 0.3s ease, background 0.3s ease;
        }
        .hud-data:hover::before {
            width: 50px;
            background: var(--peacock);
        }
        .hud-data-1 { top: 15%; right: -10px; }
        .hud-data-1::before { left: -35px; top: 50%; }
        .hud-data-2 { top: 40%; right: -20px; }
        .hud-data-2::before { left: -35px; top: 50%; }
        .hud-data-3 { top: 65%; right: -10px; }
        .hud-data-3::before { left: -35px; top: 50%; }
        .hud-data-4 { top: 30%; left: -30px; }
        .hud-data-4::before { right: -35px; top: 50%; left: auto; }
        .hud-data-5 { top: 55%; left: -20px; }
        .hud-data-5::before { right: -35px; top: 50%; left: auto; }
        .hud-data span {
            display: block;
            font-size: 1.05rem;
            font-weight: 600;
            margin-top: 2px;
        }
        /* Corner Brackets */
        .hud-bracket {
            position: absolute;
            width: 40px;
            height: 40px;
            border-color: rgba(11, 107, 91, 0.4);
            border-style: solid;
            border-width: 0;
            z-index: 3;
        }
        .hud-bracket-tl { top: 40px; left: 40px; border-top-width: 2px; border-left-width: 2px; }
        .hud-bracket-tr { top: 40px; right: 40px; border-top-width: 2px; border-right-width: 2px; }
        .hud-bracket-bl { bottom: 40px; left: 40px; border-bottom-width: 2px; border-left-width: 2px; }
        .hud-bracket-br { bottom: 40px; right: 40px; border-bottom-width: 2px; border-right-width: 2px; }
        /* Dot Markers */
        .hud-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--peacock);
            border-radius: 50%;
            opacity: 1;
            transition: opacity 0.5s ease-out, transform 0.5s ease-out, width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            z-index: 3;
        }
        .hud-dot:hover {
            width: 12px;
            height: 12px;
            margin-left: -3px;
            margin-top: -3px;
            box-shadow: 0 0 15px rgba(11, 107, 91, 0.8), 0 0 30px rgba(11, 107, 91, 0.4);
        }
        .hud-dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border: 1px solid rgba(11, 107, 91, 0.4);
            border-radius: 50%;
            animation: dot-ring 2s ease-in-out infinite;
            transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }
        .hud-dot:hover::after {
            width: 30px;
            height: 30px;
            border-color: var(--peacock);
            animation: none;
        }
        .hud-dot-1 { top: 25%; left: 25%; }
        .hud-dot-2 { top: 50%; right: 20%; }
        .hud-dot-3 { bottom: 30%; left: 30%; }
        @keyframes dot-ring {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
        }

        /* Sports */
        .sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-top: 28px; }
        .sport-card { padding: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; }
        .sport-card:hover { border-color: rgba(11, 107, 91, 0.3); box-shadow: 0 4px 20px rgba(11, 107, 91, 0.1); transform: translateY(-2px); }
        .sport-card h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 2px; }
        .sport-card .metrics { font-size: 0.88rem; font-weight: 500; color: var(--peacock); }

        /* Teams */
        .teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
        .team-card { padding: 22px; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; }
        .team-card:hover { border-color: rgba(11, 107, 91, 0.3); box-shadow: 0 4px 24px rgba(11, 107, 91, 0.12); transform: translateY(-2px); }
        .team-card h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--peacock-dark); }
        .team-card p { font-size: 1rem; color: var(--muted); line-height: 1.5; }

        /* Pricing */
        .pricing-sub { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; margin-top: 8px; }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
        .pricing-card { padding: 24px 20px; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; }
        .pricing-card:hover { border-color: rgba(11, 107, 91, 0.3); box-shadow: 0 4px 24px rgba(11, 107, 91, 0.12); transform: translateY(-2px); }
        .pricing-card.featured { border-color: var(--peacock); background: rgba(11, 107, 91, 0.03); }
        .pricing-card.featured:hover { box-shadow: 0 4px 28px rgba(11, 107, 91, 0.18); }
        .pricing-card .tier-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; margin-bottom: 4px; }
        .pricing-card .tier-price { font-size: 1.2rem; font-weight: 600; color: var(--peacock); margin-bottom: 4px; }
        .pricing-card .tier-target { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; font-style: italic; }
        .pricing-card ul { list-style: none; margin-bottom: 16px; }
        .pricing-card li { font-size: 1rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
        .pricing-card li:last-child { border-bottom: none; }
        .individual-plan { max-width: 360px; }
        .individual-plan .pricing-card { background: rgba(11, 107, 91, 0.04); border-color: rgba(11, 107, 91, 0.15); }
        .individual-plan .tagline { font-size: 0.95rem; color: var(--muted); font-style: italic; margin-top: 10px; }

        /* Window / Advantage section */
        .window-section { padding: 80px 0 60px; }
        .window-desc { color: var(--muted); font-size: 1.1rem; line-height: 1.65; max-width: 520px; margin-top: 8px; margin-bottom: 48px; }
        .window-track { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: center; }
        .window-card { padding: 28px 24px; border-radius: 12px; border: 1px solid var(--border); background: var(--off-white); }
        .window-card.card-bound { background: rgba(11,107,91,0.04); border-color: rgba(11,107,91,0.2); }
        .window-card.card-risk  { background: rgba(192,57,43,0.03); border-color: rgba(192,57,43,0.14); }
        .window-card-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; color: rgba(0,0,0,0.07); }
        .window-card h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; line-height: 1.2; }
        .window-card.card-bound h4 { color: var(--peacock-dark); }
        .window-card.card-risk  h4 { color: #c0392b; }
        .window-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
        .window-arrow { display: flex; align-items: center; justify-content: center; }
        .window-arrow svg { width: 20px; height: 20px; stroke: var(--muted); }

        /* Contact */
        .contact-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
        .contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; margin-top: 8px; }
        .contact-info > p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; max-width: 360px; margin-bottom: 28px; }
        .contact-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
        .contact-email { color: var(--peacock); font-weight: 500; font-size: 1.05rem; transition: opacity 0.2s; }
        .contact-email:hover { opacity: 0.75; }
        .contact-form-wrap { background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

        /* Footer */
        footer { padding: 36px 0; border-top: 1px solid var(--border); text-align: center; }
        footer .brand { justify-content: center; margin-bottom: 14px; }
        footer .brand img { height: 40px; }
        footer .brand-text { font-size: 1.4rem; }
        footer p { font-size: 0.95rem; color: var(--muted); margin-bottom: 4px; }
        footer a { color: var(--peacock); font-weight: 500; }
        .social-links { display: flex; justify-content: center; gap: 10px; margin: 14px 0; }
        .social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); transition: all 0.2s; }
        .social-link:hover { border-color: var(--peacock); }
        .social-link svg { width: 15px; height: 15px; fill: var(--text); }

        /* Modal */
        .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
        .modal-overlay.active { display: flex; }
        .modal { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; max-width: 440px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
        .modal-close { position: absolute; top: 12px; right: 12px; background: var(--panel); border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--muted); }
        .modal h2 { font-size: 1.5rem; margin-bottom: 4px; }
        .modal .modal-sub { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }
        .form-group { margin-bottom: 12px; }
        .form-group label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.95rem; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; background: var(--panel); border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 1rem; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--peacock); }
        .form-group textarea { min-height: 70px; resize: vertical; }
        .form-success { display: none; text-align: center; padding: 20px 10px; }
        .form-success.active { display: block; }
        .form-success svg { width: 44px; height: 44px; color: var(--peacock); margin-bottom: 10px; }
        .form-success h3 { font-size: 1.25rem; margin-bottom: 4px; }
        .form-success p { color: var(--muted); font-size: 1rem; }

        /* Utility */
        .btn-full { width: 100%; }
        .btn:disabled { opacity: 0.6; cursor: not-allowed; }
        .form-group select { cursor: pointer; }
        .form-error { margin-top: 10px; font-size: 0.95rem; color: #c0392b; text-align: center; }
        .copyright { margin-top: 10px; font-size: 0.88rem; }

        /* Modal entrance animation */
        .modal-overlay.active .modal { animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.97) translateY(8px); }
            to   { opacity: 1; transform: scale(1)    translateY(0);   }
        }


        /* Injury / Evidence section */
#injury {
    position: relative;
  }
  
  .injury-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
  }
  
  .injury-card {
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  }
  
  .injury-card:hover {
    border-color: rgba(11, 107, 91, 0.35);
    box-shadow: 0 4px 24px rgba(11, 107, 91, 0.12);
    transform: translateY(-2px);
  }
  
  .injury-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--peacock-dark);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  
  .injury-card p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.55;
  }
  
  .injury-card::after {
    content: '';
    display: block;
    margin-top: 14px;
    height: 1px;
    width: 40px;
    background: linear-gradient(
      to right,
      var(--peacock),
      transparent
    );
    opacity: 0.6;
  }
  
  .injury-bridge{
    margin-top: 16px;
    max-width: 720px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }


        /* Founders section */
        .founders-section {
            padding: 80px 0 64px;
            text-align: center;
        }
        .founders-section .section-title {
            margin-left: auto;
            margin-right: auto;
        }
        .founders-grid {
            display: flex;
            justify-content: center;
            gap: 56px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .founder-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            transition: transform 0.3s ease;
        }
        .founder-card:hover {
            transform: translateY(-4px);
        }
        .founder-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .founder-card:hover .founder-photo {
            box-shadow: 0 0 0 4px rgba(11, 107, 91, 0.15), 0 0 32px rgba(11, 107, 91, 0.25);
            border-color: var(--peacock);
        }
        .founder-meta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .founder-name {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
            line-height: 1.2;
        }
        .founder-role {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.4;
        }
        .founder-social-links {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .founder-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: 1px solid var(--border);
            color: var(--muted);
            transition: color 0.2s, border-color 0.2s;
        }
        .founder-social-link:hover {
            color: var(--peacock);
            border-color: var(--peacock);
        }
        .founder-social-link svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
        }

        /* Mobile */
        @media (max-width: 768px) {
            /* Nav */
            .mobile-toggle { display: flex; }
            .nav-links { display: none; position: fixed; top: 52px; left: 0; right: 0; height: calc(100vh - 52px); background: var(--off-white); flex-direction: column; padding: 20px; gap: 6px; overflow-y: auto; }
            .nav-links.active { display: flex; }
            .nav-links a:not(.btn) { width: 100%; padding: 14px 12px; font-size: 1rem; }
            .nav-links .btn { width: 100%; margin-top: 6px; min-height: 48px; }
            .brand-text { font-size: 1.3rem; }
            .brand img { height: 36px; }

            /* Hero — hide the HUD visual, keep text clean */
            .hero {
                padding: 100px 0 60px;
                min-height: auto;
                background:
                    radial-gradient(
                        520px 520px at 50% 72%,
                        rgba(11,107,91,0.16),
                        rgba(11,107,91,0.08) 40%,
                        transparent 72%
                    ),
                    var(--off-white);
            }
            .hero-visual { display: none; }
            .hero-content { grid-template-columns: 1fr; grid-template-rows: auto auto; }
            .hero-text { grid-column: 1; grid-row: 1; padding-right: 0; }
            .hero h1 { font-size: 2.3rem; }
            .hero-sub { font-size: 1.1rem; }
            .hero-ctas .btn { min-height: 48px; padding: 13px 28px; font-size: 0.95rem; }
            .scroll-indicator { bottom: 20px; }

            /* Sections */
            section { padding: 60px 0; }
            .section-title { font-size: 1.8rem; }

            /* Advantage / Window */
            .window-section { padding: 60px 0 40px; }
            .window-track { grid-template-columns: 1fr; }
            .window-arrow { transform: rotate(90deg); padding: 2px 0; }

            /* Stats */
            .injury-stats { grid-template-columns: 1fr; }
            .injury-card h3 { font-size: 1.4rem; }

            /* Tech */
            .tech-grid { grid-template-columns: 1fr; gap: 32px; }
            .tech-visual { order: -1; height: 420px; }
            .tech-scene { transform: scale(0.85); }
            .hud-data { font-size: 0.55rem; }
            .hud-data span { font-size: 0.75rem; }
            .tech-dashboard { width: min(92vw, 460px); transform: none; }

            /* Grids */
            .product-grid, .teams-grid, .pricing-grid { grid-template-columns: 1fr; }
            .sports-grid { grid-template-columns: 1fr 1fr; }
            .individual-plan { max-width: 100%; }

            /* Founders */
            .founders-section { padding: 60px 0 48px; }
            .founders-grid { gap: 36px; }
            .founder-photo { width: 160px; height: 160px; }

            /* Contact */
            .contact-split { grid-template-columns: 1fr; gap: 32px; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form-wrap { padding: 20px; }

            /* Modals */
            .modal-overlay { padding: 12px; align-items: flex-end; }
            .modal { border-radius: 16px 16px 12px 12px; padding: 24px 20px; max-height: 92vh; }
            .form-group input,
            .form-group select,
            .form-group textarea { font-size: 1rem; padding: 12px; }
            .btn-full { min-height: 48px; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .scroll-indicator { display: none; }
            .tech-visual { height: 360px; }
            .tech-scene { transform: scale(0.7); }
            .hud-data { display: none; }
            .sports-grid { grid-template-columns: 1fr; }
            .brand img { height: 32px; }
            .brand-text { font-size: 1.2rem; }
            .hero-ctas .btn { width: 100%; justify-content: center; }
            .founder-photo { width: 140px; height: 140px; }
            .modal-overlay { padding: 0; }
            .modal { border-radius: 16px 16px 0 0; }
        }
