:root{
    --bg:#0A0F14;
    --bg-raised:#0F161D;
    --bg-raised-2:#141D25;
    --bg-inset:#0C1218;
    --line:rgba(0,216,227,0.16);
    --line-soft:rgba(242,251,252,0.09);
    --cyan:#00D8E3;
    --cyan-deep:#00AEB8;
    --cyan-dim:rgba(0,216,227,0.12);
    --text:#F2FBFC;
    --text-dim:rgba(242,251,252,0.66);
    --text-faint:rgba(242,251,252,0.42);
    --wicket:#FF5470;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{display:block;max-width:100%;}
  a{color:inherit;}
  p{margin:0;}
  h1,h2,h3{
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    margin:0;
    line-height:1.05;
    letter-spacing:0.2px;
  }
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  section{position:relative;}
  :focus-visible{outline:2px solid var(--cyan); outline-offset:3px;}

  /* scroll reveal */
  [data-reveal]{
    opacity:0;
    transform:translateY(18px);
    transition:opacity 0.7s ease, transform 0.7s ease;
  }
  [data-reveal].is-visible{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    [data-reveal]{opacity:1; transform:none; transition:none;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important;}
  }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    border-radius:2px;
    border:1px solid transparent;
    cursor:pointer;
    transition:background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{background:var(--cyan); color:#03181A;}
  .btn-primary:hover{background:#22E4EC;}
  .btn-outline{background:transparent; color:var(--text); border-color:var(--line-soft);}
  .btn-outline:hover{border-color:var(--cyan); color:var(--cyan);}
  .btn-ghost{background:transparent; color:var(--text-dim); border-color:transparent; padding:14px 16px;}
  .btn-ghost:hover{color:var(--text);}
  .btn-sm{padding:9px 16px; font-size:13.5px;}

  /* ---------- navbar ---------- */
  .site-header{
    position:sticky; top:0; z-index:100;
    background:rgba(10,15,20,0.82);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line-soft);
  }
  .site-header .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:76px;
    gap:24px;
  }
  .logo-mark{height:26px; width:auto;}
  .site-nav{display:flex; gap:32px;}
  .site-nav a{
    color:var(--text-dim);
    text-decoration:none;
    font-size:14.5px;
    font-weight:500;
    transition:color 0.15s ease;
  }
  .site-nav a:hover{color:var(--text);}
  .header-actions{display:flex; align-items:center; gap:10px;}
  .nav-toggle{display:none; background:none; border:none; color:var(--text); cursor:pointer; padding:6px;}
  @media (max-width:900px){
    .site-nav{display:none;}
    .nav-toggle{display:block;}
  }

  /* ---------- hero ---------- */
  .hero{
    padding:88px 0 0;
    background:
      radial-gradient(ellipse 900px 500px at 82% -10%, rgba(0,216,227,0.14), transparent 60%),
      var(--bg);
    overflow:hidden;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:48px;
    align-items:center;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-size:13px;
    font-weight:600;
    color:var(--cyan);
    margin-bottom:24px;
    padding:6px 12px 6px 10px;
    border:1px solid var(--line);
    background:var(--cyan-dim);
  }
  .hero-eyebrow .dot{
    width:7px;height:7px;border-radius:50%;
    background:var(--cyan);
    animation:blink 1.6s ease-in-out infinite;
  }
  @keyframes blink{0%,100%{opacity:1;}50%{opacity:0.3;}}
  .hero h1{
    font-size:clamp(40px, 5.6vw, 72px);
    color:var(--text);
  }
  .hero h1 span{display:block;}
  .hero-sub{
    margin-top:24px;
    font-size:18px;
    line-height:1.65;
    color:var(--text-dim);
    max-width:44ch;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    margin-top:34px;
    flex-wrap:wrap;
  }
  .hero-ctas .btn{padding:15px 28px;}

  /* phone mockup */
  .phone-stage{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .phone{
    width:288px;
    background:#050A0D;
    border:1px solid rgba(0,216,227,0.22);
    border-radius:34px;
    padding:12px;
    box-shadow:0 40px 90px -30px rgba(0,216,227,0.18), 0 30px 70px -20px rgba(0,0,0,0.6);
  }
  .phone-notch{
    width:90px; height:18px;
    background:#050A0D;
    border-radius:0 0 12px 12px;
    margin:0 auto 8px;
    position:relative;
    z-index:2;
  }
  .phone-screen{
    background:var(--bg-inset);
    border-radius:22px;
    overflow:hidden;
    padding-bottom:6px;
  }
  .phone-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px 10px;
    font-size:11px;
    color:var(--text-faint);
  }
  .live-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:var(--wicket);
    color:#fff;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.3px;
    padding:4px 8px;
  }
  .live-chip .dot{width:5px;height:5px;border-radius:50%;background:#fff;animation:blink 1.4s ease-in-out infinite;}
  .phone-match{
    padding:2px 16px 14px;
    border-bottom:1px solid var(--line-soft);
  }
  .phone-teams{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    font-family:'Rajdhani',sans-serif;
  }
  .phone-team{font-size:15px; font-weight:600; color:var(--text);}
  .phone-score{font-size:30px; font-weight:700; color:var(--cyan);}
  .phone-score small{font-size:14px; color:var(--text-faint); font-weight:600;}
  .phone-meta{
    display:flex; gap:16px;
    margin-top:8px;
    font-size:11px;
    color:var(--text-faint);
  }
  .phone-meta strong{color:var(--text-dim);}
  .phone-balls{
    display:flex; gap:6px;
    padding:12px 16px;
  }
  .pip{
    width:22px;height:22px;
    display:flex; align-items:center; justify-content:center;
    font-size:10.5px; font-weight:700;
    background:var(--bg-raised-2);
    color:var(--text-dim);
    border-radius:50%;
  }
  .pip.six{background:var(--cyan); color:#03181A;}
  .pip.wicket{background:var(--wicket); color:#fff;}
  .phone-list{padding:2px 16px 16px;}
  .phone-row{
    display:flex; justify-content:space-between;
    font-size:12px;
    padding:6px 0;
    color:var(--text-dim);
    border-bottom:1px solid var(--line-soft);
  }
  .phone-row:last-child{border-bottom:none;}
  .phone-row .name{color:var(--text);}
  .phone-row .name.striker::after{content:" *"; color:var(--cyan);}

  /* live ticker */
  .ticker-strip{
    margin-top:64px;
    border-top:1px solid var(--line-soft);
    border-bottom:1px solid var(--line-soft);
    background:var(--bg-raised);
    overflow:hidden;
    white-space:nowrap;
  }
  .ticker-track{
    display:inline-flex;
    gap:0;
    animation:ticker 26s linear infinite;
    padding:13px 0;
  }
  @keyframes ticker{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  .ticker-item{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13.5px;
    color:var(--text-dim);
    padding:0 28px;
    border-right:1px solid var(--line-soft);
    font-family:'Rajdhani',sans-serif;
    font-weight:600;
  }
  .ticker-item b{color:var(--cyan); font-weight:700;}
  .ticker-item.wk b{color:var(--wicket);}

  /* trust bar */
  .trust-bar{
    padding:26px 0;
    text-align:center;
    font-size:14px;
    color:var(--text-faint);
  }

  /* ---------- transition / problem-fix ---------- */
  .transition-section{
    padding:100px 0;
    border-top:1px solid var(--line-soft);
  }
  .transition-section .wrap{max-width:820px;}
  .transition-section h2{
    font-size:clamp(28px,3.8vw,42px);
    color:var(--text);
  }
  .transition-section p{
    margin-top:24px;
    font-size:17.5px;
    line-height:1.7;
    color:var(--text-dim);
    max-width:62ch;
  }

  /* ---------- feature sections ---------- */
  .feature-section{padding:110px 0; border-top:1px solid var(--line-soft);}
  .feature-section .wrap{
    display:grid;
    grid-template-columns:1fr 0.86fr;
    gap:64px;
    align-items:flex-start;
  }
  .feature-main{min-width:0;}
  .feature-tag{
    font-size:13.5px;
    font-weight:600;
    color:var(--cyan);
    margin-bottom:16px;
  }
  .feature-main h2{
    font-size:clamp(28px,3.6vw,42px);
    max-width:14ch;
    margin-bottom:44px;
  }
  .feature-list{display:flex; flex-direction:column;}
  .feature-item{
    display:flex;
    gap:18px;
    padding:22px 0;
    border-top:1px solid var(--line-soft);
  }
  .feature-item:last-child{border-bottom:1px solid var(--line-soft);}
  .feature-icon{
    flex:none;
    width:38px;height:38px;
    display:flex;align-items:center;justify-content:center;
    color:var(--cyan);
    border:1px solid var(--line);
    background:var(--cyan-dim);
  }
  .feature-icon svg{width:19px;height:19px;}
  .feature-item h3{
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:16.5px;
    margin-bottom:5px;
    color:var(--text);
  }
  .feature-item p{
    font-size:14.5px;
    line-height:1.6;
    color:var(--text-dim);
  }
  .feature-cta{margin-top:36px;}

  /* fan device panel */
  .device-panel{
    position:sticky;
    top:110px;
  }

  /* organizer dashboard mockup */
  .dash-frame{
    background:var(--bg-inset);
    border:1px solid var(--line-soft);
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 40px 90px -40px rgba(0,216,227,0.14);
  }
  .dash-bar{
    display:flex; align-items:center; gap:7px;
    padding:12px 14px;
    border-bottom:1px solid var(--line-soft);
    background:var(--bg-raised);
  }
  .dash-bar span{width:8px;height:8px;border-radius:50%; background:var(--line-soft);}
  .dash-bar .title{
    margin-left:8px;
    font-size:12px;
    color:var(--text-faint);
    font-family:'Rajdhani',sans-serif;
    font-weight:600;
    letter-spacing:0.3px;
  }
  .dash-body{display:flex;}
  .dash-side{
    width:56px;
    padding:16px 0;
    display:flex; flex-direction:column; align-items:center; gap:20px;
    border-right:1px solid var(--line-soft);
    background:var(--bg-raised);
  }
  .dash-side span{
    width:20px;height:20px;
    border-radius:4px;
    background:var(--line-soft);
  }
  .dash-side span.active{background:var(--cyan);}
  .dash-main{flex:1; padding:18px 20px;}
  .dash-title{
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:16px;
    color:var(--text);
    margin-bottom:14px;
  }
  .dash-row{
    display:flex; justify-content:space-between; align-items:center;
    padding:10px 0;
    border-top:1px solid var(--line-soft);
    font-size:12.5px;
    color:var(--text-dim);
  }
  .dash-row:last-child{border-bottom:1px solid var(--line-soft);}
  .dash-row .who{color:var(--text); font-weight:500;}
  .dash-tag{
    font-size:10.5px;
    font-weight:700;
    padding:3px 8px;
    background:var(--cyan-dim);
    color:var(--cyan);
    border-radius:2px;
  }
  .dash-tag.sold{background:rgba(255,84,112,0.14); color:var(--wicket);}

  @media (max-width:980px){
    .feature-section .wrap{grid-template-columns:1fr;}
    .device-panel{position:static; margin-top:36px; display:flex; justify-content:center;}
  }

  /* ---------- how it works ---------- */
  .how-section{padding:110px 0; border-top:1px solid var(--line-soft);}
  .how-section h2{font-size:clamp(28px,3.6vw,42px); max-width:18ch;}
  .how-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:56px;
  }
  .how-item{
    padding:0 24px 0 0;
    position:relative;
  }
  .how-item + .how-item{
    padding-left:24px;
    border-left:1px solid var(--line-soft);
  }
  .how-num{
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:15px;
    color:var(--cyan);
    letter-spacing:0.5px;
  }
  .how-item h3{
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:16.5px;
    margin-top:14px;
    color:var(--text);
  }
  .how-item p{
    margin-top:10px;
    font-size:14px;
    line-height:1.6;
    color:var(--text-dim);
  }
  @media (max-width:880px){
    .how-list{grid-template-columns:1fr 1fr; row-gap:36px;}
    .how-item:nth-child(2n+1){padding-left:0; border-left:none;}
    .how-item:nth-child(2){padding-left:24px; border-left:1px solid var(--line-soft);}
    .how-item:nth-child(4){padding-left:24px; border-left:1px solid var(--line-soft);}
    .how-item:nth-child(3){padding-left:0; border-left:none;}
  }
  @media (max-width:560px){
    .how-list{grid-template-columns:1fr;}
    .how-item{padding-left:0 !important; border-left:none !important;}
  }

  /* ---------- credibility ---------- */
  .story-section{
    padding:110px 0;
    border-top:1px solid var(--line-soft);
    background:var(--bg-raised);
  }
  .story-section .wrap{max-width:800px;}
  .story-tag{font-size:13.5px; font-weight:600; color:var(--cyan); margin-bottom:18px;}
  .story-section h2{font-size:clamp(30px,4vw,44px); color:var(--text); margin-bottom:26px;}
  .story-section p{font-size:18px; line-height:1.75; color:var(--text-dim); max-width:62ch;}

  /* ---------- dual cta ---------- */
  .dual-cta{padding:110px 0; border-top:1px solid var(--line-soft);}
  .dual-cta-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  .cta-card{
    padding:44px 38px;
    border:1px solid var(--line-soft);
    background:var(--bg-raised);
  }
  .cta-card.accent{border-color:var(--line); background:var(--cyan-dim);}
  .cta-card h3{
    font-size:clamp(24px,2.8vw,30px);
    max-width:16ch;
    margin-bottom:26px;
    color:var(--text);
  }
  @media (max-width:760px){.dual-cta-grid{grid-template-columns:1fr;}}

  /* store badges */
  .store-badges{display:flex; gap:12px; flex-wrap:wrap; margin-top:6px;}
  .store-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:9px 16px;
    border:1px solid var(--line-soft);
    color:var(--text);
    text-decoration:none;
    font-family:'Inter',sans-serif;
    transition:border-color 0.15s ease;
  }
  .store-badge:hover{border-color:var(--cyan);}
  .store-badge svg{width:20px;height:20px; color:var(--cyan);}
  .store-badge .lines{display:flex; flex-direction:column; line-height:1.2;}
  .store-badge .small{font-size:10px; color:var(--text-faint);}
  .store-badge .big{font-size:14px; font-weight:600;}

  /* ---------- footer ---------- */
  .site-footer{padding:64px 0 32px; border-top:1px solid var(--line-soft);}
  .footer-top{
    display:grid;
    grid-template-columns:1.3fr repeat(3, 1fr);
    gap:32px;
    padding-bottom:44px;
  }
  .footer-brand{max-width:280px;}
  .footer-brand-tag{
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:19px;
    color:var(--text);
    margin-top:18px;
  }
  .footer-contact{
    font-style:normal;
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:20px;
    font-size:13.5px;
    color:var(--text-dim);
    line-height:1.6;
  }
  .footer-contact a{
    color:var(--text-dim);
    text-decoration:none;
  }
  .footer-contact a:hover{color:var(--cyan);}
  .footer-col h4{
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:600;
    color:var(--text-faint);
    letter-spacing:0.3px;
    margin-bottom:16px;
  }
  .footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px;}
  .footer-col a{
    font-size:14px;
    color:var(--text-dim);
    text-decoration:none;
  }
  .footer-col a:hover{color:var(--cyan);}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    flex-wrap:wrap; gap:14px;
    padding-top:26px;
    border-top:1px solid var(--line-soft);
    font-size:13px;
    color:var(--text-faint);
  }
  .social-row{display:flex; gap:18px;}
  .social-row a{color:var(--text-dim); text-decoration:none;}
  .social-row a:hover{color:var(--cyan);}

  @media (max-width:820px){
    .footer-top{grid-template-columns:1fr 1fr; row-gap:32px;}
  }
  @media (max-width:560px){
    .footer-top{grid-template-columns:1fr;}
  }

  @media (max-width:600px){
    .hero .wrap{grid-template-columns:1fr;}
    .hero{padding:56px 0 0;}
    .wrap{padding:0 20px;}
    .feature-section, .how-section, .transition-section, .story-section, .dual-cta{padding:64px 0;}
  }

  /* ---------- simple page header (about, legal pages) ---------- */
  .page-header{
    padding:64px 0 48px;
    border-bottom:1px solid var(--line-soft);
    background:radial-gradient(ellipse 700px 400px at 85% -20%, rgba(0,216,227,0.12), transparent 60%);
  }
  .page-header .wrap{max-width:820px;}
  .page-eyebrow{
    font-size:13.5px;
    font-weight:600;
    color:var(--cyan);
    margin-bottom:14px;
  }
  .page-header h1{
    font-size:clamp(32px,4.4vw,50px);
    color:var(--text);
  }
  .page-updated{
    margin-top:16px;
    font-size:13.5px;
    color:var(--text-faint);
  }

  /* ---------- legal / long form content ---------- */
  .legal-content{
    padding:64px 0 100px;
  }
  .legal-content .wrap{max-width:760px;}
  .legal-content h2{
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:20px;
    color:var(--text);
    margin-top:44px;
    margin-bottom:14px;
  }
  .legal-content h2:first-child{margin-top:0;}
  .legal-content p{
    font-size:15px;
    line-height:1.75;
    color:var(--text-dim);
    margin-bottom:16px;
  }
  .legal-content ul{
    margin:0 0 16px;
    padding-left:20px;
    color:var(--text-dim);
    font-size:15px;
    line-height:1.75;
  }
  .legal-content li{margin-bottom:8px;}
  .legal-content a{color:var(--cyan); text-decoration:none;}
  .legal-content a:hover{text-decoration:underline;}
  .legal-content strong{color:var(--text); font-weight:600;}

  /* ---------- about page extras ---------- */
  .about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line-soft);
    border:1px solid var(--line-soft);
    margin:48px 0;
  }
  .about-stat{
    background:var(--bg);
    padding:28px 24px;
  }
  .about-stat .num{
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:34px;
    color:var(--cyan);
  }
  .about-stat .label{
    font-size:13px;
    color:var(--text-dim);
    margin-top:6px;
  }
  @media (max-width:600px){
    .about-stats{grid-template-columns:1fr;}
  }
