:root{
  --bg0:#071325;
  --bg1:#081a2f;
  --bg2:#0b213a;
  --panel:#0d2744;
  --card:#0e2a49;
  --card2:#0f2e52;
  --line:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.70);
  --muted2:rgba(234,240,255,.55);

  --brand:#2f5fae;
  --brand2:#3b78d7;
  --chip:#0c223d;

  --good:#2ecc71;
  --blue:#3a86ff;
  --purple:#8c5bff;
  --gray:#a7b3c7;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);

  --radius:8px;
  --radius2:8px;

  --max:1120px;
}

/* --- Base Normalization --- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  line-height: 1.25em;
}

p {
    color: rgba(234, 240, 255, .62);
    line-height: 1.3em;
    font-size: 14px;
    margin-bottom: 20px
}

.bold {
    font-weight: 700;
}



.page-title, h2 {
    margin-bottom: 20px;
}

*{box-sizing:border-box}
html, body {
    height: auto;
    min-height: 100%;
}
body{
    margin:0;
    font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color:var(--text);
    line-height: 1.5em;
    overflow-x:hidden;
    background: #071325;
  }

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:40px 0}
.section.tight{padding:40px 0}
.section-title{
  font-size:40px;
  line-height:1.05;
  letter-spacing:-.02em;
  margin:10px 0 18px;
  font-weight: 700;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
  font-size:12px;
  color:rgba(234,240,255,.62);
}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  max-width:720px;
}

img {
    max-width: 100%;

}

/* NAV */
#site-header {
    position:sticky; top:0; z-index:50;
}
.nav{
      background: #071325;
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brandmark{display:flex; align-items:center; gap:12px}
.logo {
    max-width: 193px;
    display: grid;
    place-items: center;
}
.brandname{
  font-weight:800;
  letter-spacing:.02em;
  font-size:18px;
}

.navlinks{
  display:flex; align-items:center; gap:28px;
  color:rgba(234,240,255,.70);
  font-weight:600;
  font-size:14px;
}
.navlinks a:hover{color:rgba(234,240,255,.95)}
.nav-cta{display:flex; gap:12px; align-items:center}

.logo, .nav-inner, .btn-primary {
 transition: all 250ms ease-out;;
}

.is-sticky .logo {
    max-width: 136px;
}

.is-sticky .nav-inner {
    height: 45px;
}

.is-sticky .btn-primary {
    padding: 3px 16px;
}



.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background: linear-gradient(180deg, rgba(59,120,215,.95), rgba(47,95,174,.95));
  border-color: rgba(59,120,215,.60);
  box-shadow: 0 16px 40px rgba(47,95,174,.25);
}
.btn-primary:hover, .hero-actions .btn-waitlist:hover{background: linear-gradient(180deg, rgba(76,141,255,.98), rgba(47,95,174,.98))}
.btn-ghost{
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.92);
}
.btn-ghost:hover{background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.16)}
.btn-light{
  background:#ffffff;
  color:#0a1a30;
  border-color: rgba(255,255,255,.75);
}
.btn-light:hover{background:#f5f7ff}
.hamburger{display:none}

/* HERO */
.hero{
  padding:56px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.hero-chip{
  display:inline-flex;
  align-items:center; gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  color:rgba(234,240,255,.76);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  width:max-content;
}
.dot{
  width:8px;height:8px;border-radius:99px;
  background:rgba(76,141,255,.95);
  box-shadow:0 0 0 6px rgba(76,141,255,.12);
}
.hero h1{
  font-size:76px;
  line-height:.96;
  letter-spacing:-.03em;
  margin:18px 0 14px;
}
.hero p{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
  max-width:560px;
  margin:0 0 22px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 18px 0 18px;
}
.hero-actions a {
    flex: 1;
    display: inline-flex;
    max-width: 148px;
    background: transparent;
}
.hero-actions a img {
    max-width: 100%;
    width: auto;
    border: 2px solid #ffffff1c;
    border-radius: 9px;
}
.micro{
  margin-top:16px;
  display:flex; align-items:center; gap:10px;
  color:rgba(234,240,255,.55);
  font-size:13px;
}
.shield{
  width:16px;height:16px; opacity:.8;
}

/* Phone panel */
.phone-panel {
    position: relative;
    overflow: hidden;
}
.phone-panel::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 240px at 70% 30%, rgba(59,120,215,.26), transparent 60%),
    radial-gradient(420px 240px at 30% 70%, rgba(140,91,255,.18), transparent 60%);
  pointer-events:none;
  filter: blur(12px);
  opacity:.9;
}
.phone-inner {
    position: relative;
    padding: 28px;
    display: grid;
    place-items: center;
    min-height: 460px;
}
.phone-img{
    width: min(330px, 90%);
  aspect-ratio: 9/18;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    radial-gradient(220px 160px at 55% 30%, rgba(76,141,255,.55), transparent 60%),
    radial-gradient(220px 160px at 40% 55%, rgba(46,204,113,.35), transparent 60%);
  border: 10px solid rgba(20,20,24,.95);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.phone-img::before{
  content:"";
  position:absolute; left:50%; top:14px; transform:translateX(-50%);
  width:46%; height:18px; border-radius:999px;
  background: rgba(0,0,0,.85);
}

.phone-img img {
    display: block;
    max-width: 100%;
    width: auto;
}

.phone-overlay {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(15, 30, 52, .88);
    border-bottom: 3px solid rgb(255 255 255 / 9%);
    border-radius: 16px;
    padding: 14px 14px 12px;
    min-width: 240px;
    box-shadow: var(--shadow2);
    backdrop-filter: blur(8px);
}
.phone-overlay .small {
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(234, 240, 255, .55);
}
.phone-overlay .big {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -.02em;
}
.phone-overlay .tiny {
    margin-top: 2px;
    font-size: 11px;
    color: rgba(234, 240, 255, .52);
    letter-spacing: 0.03em;
}

/* HOW IT WORKS */
.how-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  max-width:860px;
}
.how-grid p{margin:0}

.link-cta{
  display:inline-flex; align-items:center; gap:10px;
  margin-top:22px;
  font-weight:900;
  color:rgba(234,240,255,.92);
}
.link-cta span{border-bottom:1px solid rgba(234,240,255,.25)}
.arrow{
  width:16px;height:16px; opacity:.9;
  transform: translateY(1px);
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 34px;
}
.card {
    padding: 4px 20px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-right: 1px solid #ffffff0f;
    border-left: 1px solid #00000033;
}
.cards > .card:first-child {
    border-left: 0;
}

.cards > .card:last-child {
    border-right: 0;
}
.card .icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
    margin: 0 0 11px;
}
.tag{
  display:inline-flex;
  margin-left:10px;
  padding:3px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  border:1px solid rgba(46,204,113,.25);
  color:rgba(46,204,113,.95);
  background: rgba(46,204,113,.08);
  transform: translateY(-2px);
}
.card h3{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:-.01em;
}
.card p {
    margin: 0 0 8px;
    color: rgba(234, 240, 255, .62);
    line-height: 1.7;
    font-size: 14px;
}
.learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(234, 240, 255, .88);
    opacity: .95;
    border-bottom: 1px solid #ffffff3b;
    padding-bottom: 2px;
}
.learn svg{width:14px;height:14px; opacity:.9}

/* NOTICE */
.notice {
    border-top: 5px solid rgb(255 251 130 / 23%);
    padding: 17px 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 34px auto 0;
    background: #ffffff0a;
    max-width: 870px;
    border-radius: 7px;
}
.notice .warn{
  width:42px;height:42px;border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  flex:0 0 auto;
  margin-top:2px;
}
.notice h4{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.01em;
}
.notice p {
    margin: 0;
    color: rgba(234, 240, 255, .65);
    line-height: 1.7;
    font-size: 13px;
    max-width: 920px;
}

/* PLAY STYLES */
.play-head{ text-align:center; }
.play-head .section-title{ margin-left:auto; margin-right:auto; }
.play-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:34px;
}
.play-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border-bottom: 4px solid rgba(255, 255, 255, .10);
    padding: 24px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
    min-height: 260px;
    position: relative;
}
.play-card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(380px 240px at 10% 0%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}
.play-card h3{
  margin:0 0 14px;
  font-size:20px;
  letter-spacing:-.01em;
}
.bullets{
  list-style:none;
  padding:0; margin:0;
  display:flex; flex-direction:column; gap:10px;
  color:rgba(234,240,255,.68);
  font-size:14px;
}
.bullets li {
    align-items: flex-start;
    line-height: 1.55;
    list-style: square;
}
.check{
  width:18px;height:18px; flex:0 0 auto;
  opacity:.9;
  transform: translateY(2px);
}
.divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:18px 0 14px;
}
.paired {
    color: rgba(234, 240, 255, .55);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.paired strong {
    color: rgba(234, 240, 255, .92);
    margin-top: 6px;
    text-transform: uppercase;
}

/* DOWNLOAD BANNER */
.download-band {
    padding: 64px 0 84px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
}
.download-panel{
  text-align:center;
}
.download-panel::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(520px 260px at 50% 30%, rgba(59,120,215,.20), transparent 60%),
    radial-gradient(520px 260px at 30% 80%, rgba(140,91,255,.12), transparent 60%);
  pointer-events:none;
  filter: blur(14px);
}
.download-panel > *{position:relative}
.download-panel h2{
  margin:0 0 10px;
  font-size:52px;
  letter-spacing:-.03em;
  line-height:1.02;
}
.download-panel p{
  margin:0 auto 22px;
  color:rgba(234,240,255,.66);
  max-width:640px;
  line-height:1.7;
  font-size:16px;
}
.download-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-actions .hero-actions {
    margin: 0;
}

/* FOOTER */
footer{
  border-top:1px solid var(--line);
  padding:38px 0 46px;
  background: rgba(7,19,37,.35);
}
.footgrid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap:22px;
}
.footbrand p{
  margin:12px 0 0;
  color:rgba(234,240,255,.55);
  line-height:1.7;
  max-width:320px;
  font-size:13px;
}
.footcol .title{
  color:rgba(234,240,255,.82);
  font-weight:900;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.footcol a{
  display:block;
  color:rgba(234,240,255,.60);
  padding:8px 0;
  font-size:14px;
}
.footcol a:hover{color:rgba(234,240,255,.92)}
.copyright{
  margin-top:26px;
  color:rgba(234,240,255,.40);
  font-size:12px;
  line-height:1.6;
}

/** HOW IT WORKS **/

.fineprint{
    font-size: 13px;
    opacity: .7;
    margin-top: 8px;
  }
  
  footer .logo img {
    opacity: 0.4;
}


  /* ================================
     FACT GRID
  ================================ */
  
  .facts-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 16px;
    margin-top: 28px;
  }
  
  .fact-card{
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
  }
  
  .fact-title{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: .8;
  }
  
  .fact-text{
    font-size: 16px;
    font-weight: 600;
  }
  
  
  /* ================================
     STEPS
  ================================ */
  
  .steps{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .step{
    display: flex;
    gap: 20px;
  }
  
  .step-num{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-body h3 {
    margin-bottom: 6px;
    font-size: 16px;
}
  
  
  /* ================================
     GRID SYSTEM
  ================================ */
  
  .grid-2{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
  }
  
  .grid-3{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
  }
  
  
  /* ================================
     CARDS
  ================================ */
  
  .card{
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all .2s ease;
  }
  
  .card:hover{
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
  }
  
  .card-tag{
    font-size: 12px;
    letter-spacing: .6px;
    opacity: .6;
    margin-bottom: 8px;
  }
  
  .card h3{
    margin-bottom: 12px;
  }
  
  .bullets{
    margin-top: 12px;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
  }
  
  
  /* ================================
     MATH GRID
  ================================ */
  
  .math-grid{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
  }
  
  
  /* ================================
     EXAMPLES
  ================================ */
  
  .examples-grid{
    margin-top: 30px;
    display: grid;
    gap: 24px;
  }
  
  .example-card{
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .example-card h3{
    margin-bottom: 14px;
  }
  
  
  /* ================================
     ROAD VISUAL
  ================================ */
  
  .road{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .chip{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
  }
  
  .chip.b{
    background: #d9534f; /* Banker red */
  }
  
  .chip.p{
    background: #2f80ed; /* Player blue */
  }
  
  
  /* ================================
     JUMP BAR
  ================================ */
  
  .jumpbar{
    position: sticky;
    top: 72px; /* match your navbar height */
    z-index: 10;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  
  .jumpbar-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
  }
  
  .jump-link{
    font-size: 14px;
    opacity: .8;
    text-decoration: none;
    color: inherit;
  }
  
  .jump-link:hover{
    opacity: 1;
  }
  
  
  /* ================================
     FLOW SECTION
  ================================ */
  
  .flow{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .flow-row{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
  }
  
  .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2f80ed;
  }


/* Add to style.css */
.pricing-wrap{
    max-width:1100px;
    margin:0 auto;
    padding:44px 18px;
  }
  
  .pricing-head{
    text-align:center;
    margin-bottom:28px;
  }
  
  .pricing-head h1{
    font-size:34px;
    margin:0 0 10px;
  }
  
  .pricing-head p{
    margin:0;
    opacity:.75;
  }
  
  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:14px;
    align-items:stretch;
  }
  
  .plan {
    position: relative;
    border: 1px solid rgb(255 255 255 / 6%);
    border-radius: 6px;
    padding: 18px 16px 16px;
    background: #b8d4ff0f;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 340px;
    border-bottom: 10px solid rgb(210 222 255 / 38%);
}
  
  .plan-top h2{
    margin:0;
    font-size:20px;
  }
  
  .plan-sub{
    margin:6px 0 0;
    opacity:.7;
    font-size:13px;
  }
  
  .plan-price{
    margin-top:14px;
    display:flex;
    align-items:baseline;
    gap:10px;
  }
  
  .price-main{
    font-size:32px;
    font-weight:800;
    letter-spacing:-0.5px;
  }
  
  .price-note{
    opacity:.75;
    font-size:13px;
  }
  
  .plan-meta{
    margin-top:10px;
  }
  
  .meta-strong{
    font-weight:700;
    font-size:14px;
  }
  
  .meta-soft{
    opacity:.7;
    font-size:12px;
  }
  
  .plan-badges {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-plain {
    text-align: center;
    padding: 18px 0 0;
}

.btn-plain a {
    font-size: 13px;
    display: inline-block;
    border-bottom: 1px solid #ffffff4f;
    font-style: italic;
}
  
  .badge {
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: rgb(18 155 11 / 50%);
    font-size: 12px;
    font-weight: 700;
}
  
  .badge-muted{
    background:rgba(0,0,0,.06);
    opacity:.8;
  }
  
  .plan-features{
    margin:14px 0 0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:9px;
    flex:1;
  }
  
  .plan-features li{
    font-size:13px;
    opacity:.9;
    padding-left:18px;
    position:relative;
  }
  
  .plan-features li:before {
    content: "";
    width: 11px;
    height: 17px;
    border-radius: 999px;
    background: url(assets/tick.png) no-repeat;
    position: absolute;
    left: 3px;
    top: 7px;
    background-size: 90% auto;
    opacity: 0.5;
}
  
     
  .plan-featured {
    border: 1px solid #10418d;
    box-shadow: 0 0 10px 10px #0019404f;
    background: #14376c;
    border-bottom: 10px solid #10418d;
}
  
.ribbon {
    position: absolute;
    top: -15px;
    left: calc(50% - 80px);
    font-size: 12px;
    font-weight: 900;
    padding: 3px 0;
    background: #03142c;
    color: #fff;
    text-align: center;
    max-width: 160px;
    width: 100%;
    color: #ffffffdb;
    text-transform: uppercase;
    border-radius: 36px;
    border: 1px solid #ffffff3d;
}
  
  .pricing-notes{
    margin-top:20px;
    border:1px solid rgba(0,0,0,.10);
    border-radius:14px;
    padding:16px;
    background:rgba(255,255,255,.55);
  }
  
  .pricing-notes h3{
    margin:0 0 10px;
    font-size:15px;
  }
  
  .pricing-notes ul{
    margin:0;
    padding-left:18px;
    opacity:.85;
    font-size:13px;
    line-height:1.6;
  }

  #subscribe li {
    color: rgba(234, 240, 255, .65);
    font-size: 14px;
}

#subscribe ul {
    margin: 7px 0 0;
    padding: 0 0 0 23px;
}
  
.hero-actions .btn-waitlist {
    background: linear-gradient(180deg, rgba(59, 120, 215, .95), rgba(47, 95, 174, .95));
    border-color: rgba(59, 120, 215, .60);
    box-shadow: 0 16px 40px rgba(47, 95, 174, .25);
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    white-space: nowrap;
    max-width: 190px;
    width: auto;
    text-align: center;
}

.no-cta .download-band {
    display: none;
}

.hp {
    position: absolute;
    left: -9999px;
}

.waitlist-card {
    text-align: center;
    background: #ffffff0a;
    padding: 39px 0;
    border-bottom: 8px solid #ffffff24;
}

.waitlist-card p {
    margin: 0;
}

.waitlist-wrap h1 {
    margin-bottom: 15px;
}

.waitlist-card .subtitle {
    margin-bottom: 20px;
}

.waitlist-form input, .waitlist-form select, .waitlist-form textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 0 4px 2px;
    margin: 0 0 10px;
    color: #000;
    font-size: 15px;
    width: 100%;
}

.waitlist-form button {
    color: #fff;
    padding: 11px 50px;
    margin: 10px auto 30px;
    display: block;
}

.waitlist-form label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1.8em;
    color: #ffffff94;
}

.waitlist-form {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}


.is-success,.is-error {
    background: #3cff003d;
    margin: 0 0 20px;
    padding: 14px 18px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.3em;
    border: 1px solid #ffffff3b;
}

.is-error {
    background: #ff000036;
}

  /* Responsive */
  @media (max-width: 980px){
    .pricing-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 520px){
    .pricing-grid{ grid-template-columns:1fr; }

    .plan {
        max-width: 370px;
        margin: 0 auto 5px;
        width: 100%;
        display: block;
        min-height: auto;
        text-align: center;
    }
    .plan-price {
        display: block;
        margin: 12px 0 1px;
    }
    .plan > ul {
        text-align: left;
        max-width: 190px;
        margin: 0 auto;
    }
    .plan-badges {
        display: block;
        margin: 2px 0 6px;
    }
    .plan-meta {
        margin: 0 0 3px;
    }
  }

/* Mobile */
@media (max-width: 1020px){
  
  .hero h1{font-size:62px}
  .phone-inner{min-height:420px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .play-grid {
    grid-template-columns: repeat(2, 1fr);
}
  .footgrid{grid-template-columns:1fr 1fr}

  .flow-card {
    padding-top: 40px;
}

}

/* Nav: hamburger only at 920px and below; desktop nav above */
@media (max-width: 920px) {
  .navlinks { display: none; }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    color: rgba(234,240,255,.92);
  }
  .hamburger svg {
    width: 25px;
    height: 25px;
  }
  .nav-cta .btn-primary { display: none; }
}

@media (max-width: 720px){
  .hero{padding-top:26px}
  .hero h1{font-size:46px}
  .section-title{font-size:34px}
  .cards{grid-template-columns:1fr}
  .footgrid{grid-template-columns:1fr}
  .download-panel h2{font-size:25px}
}

.notice p {
    line-height: 1.4;
}

/* Mobile menu */
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  padding:12px 0 18px;
  background:rgba(7,19,37,.72);
  backdrop-filter: blur(10px);
}
.mobile-menu a{
  display:block;
  padding:10px 22px;
  color:rgba(234,240,255,.78);
  font-weight:700;
}
.mobile-menu a:hover{color:rgba(234,240,255,.95)}
.mobile-menu .btnwrap{
  padding:10px 22px 0;
  display:flex; gap:12px; flex-wrap:wrap;
}
.mobile-menu.open{display:block}

/* Small SVG helpers */
svg{display:block}

.how-right {
    flex: 2;
}
.how-left {
    flex: 3;
}
.flow-card {
    border-radius: 20px;
    padding: 80px 20px 0;
}
  
  .flow-step{
    display:flex;
    gap:14px;
    align-items:flex-start;
  }
  
  .flow-ico{
    width:46px; height:46px;
    border-radius: 14px;
    display:grid; place-items:center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(234,240,255,.92);
    flex: 0 0 auto;
  }
  
  .flow-ico svg{ width:22px; height:22px; }
  
  .flow-title{
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -.01em;
  }
  
  .flow-desc{
    margin-top: 4px;
    color: rgba(234,240,255,.60);
    font-size: 14px;
    line-height: 1.55;
  }
  
  .flow-connector{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding-left: 21px; /* aligns with icon center */
    margin: 12px 0;
  }
  
  .flow-line{
    width:2px;
    height:18px;
    background: rgba(255,255,255,.10);
    border-radius:999px;
  }
  
  .flow-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background: rgba(59,120,215,.95);
    box-shadow: 0 0 0 6px rgba(59,120,215,.12);
  }

  .flex {
    display: flex;
    gap: 30px;
}

/* =========================
   Mobile-first fixes (patch)
   Paste at the bottom
========================= */

/* 1) Make containers breathe on small screens */
@media (max-width: 720px){
    .container{ padding: 0 16px; }
    .section, .section.tight{ padding: 28px 0; }
  }
  
  /* 2) HERO: typography + spacing */
  @media (max-width: 720px){
    .hero {
        padding: 48px 0 18px;
    }
    .hero-grid{ grid-template-columns: 1fr; gap: 18px; }
    .hero h1{
      font-size: 60px;
      line-height: 1.02;
      margin: 14px 0 10px;
    }
    .hero p{ font-size: 16px; line-height: 1.6; }
    .hero-chip{ font-size: 11px; padding: 7px 12px; }
  }
  
  /* 3) HERO buttons: stack full width (fixes your max-width:148px issue) */
  @media (max-width: 720px){

    .hero-actions a{
      max-width: none !important;
      width: 100%;
      justify-content: center;
    }
    .hero-actions a img {
        width: 100%;
        max-width: 150px;
    }
    .hero-actions {
        max-width: 320px;
    }
  }
  
  /* 4) Phone panel: prevent overflow + tighten spacing */
  @media (max-width: 720px){
    .phone-inner{ padding: 18px; min-height: 380px; }
    .phone-img{ width: min(320px, 100%); border-width: 8px; border-radius: 30px; }
    .phone-overlay {
        bottom: auto;
        max-width: 280px;
        position: relative;
        left: auto;
        margin: -84px 0 0;
    }
    .phone-overlay .big{ font-size: 22px; }
  }
  
  /* 5) How It Works split: stack column */
  @media (max-width: 900px){
    .flex{ flex-direction: column; gap: 18px; }
    .how-left, .how-right{ flex: 0 0 auto; }
  }
  
  /* 6) Flow diagram spacing: reduce huge padding on mobile */
  @media (max-width: 720px){
    .flow-card{ padding: 22px; } /* was 80px 20px 0 */
  }
  
  /* 7) Game Styles cards grid */
  @media (max-width: 1020px){
    .cards{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  }
  @media (max-width: 720px){
    .cards{ grid-template-columns: 1fr; gap: 12px; }
    .card{
      padding: 14px 16px;
      min-height: auto;
      border-left: 0;
      border-right: 0;
      border-top: 1px solid #ffffff14;
    }
    .cards > .card:first-child {
        border-top: 0;
        padding-top: 0;
    }
    .card .icon {
        width: 38px;
        height: 38px;
    }
  }
  
  /* 8) Recommended Play Styles grid already stacks, just tighten */
  @media (max-width: 720px){
    .play-grid{ gap: 12px; margin-top: 18px; }
    .play-card{ padding: 18px; min-height: auto; }
  }
  
  /* 9) Download section: remove potential layout issues */
  @media (max-width: 720px){
    .download-band{ padding: 36px 0 44px; }
    .download-panel h2{ font-size: 34px; }
    .download-panel p{ font-size: 15px; }
    .download-actions .btn{ width: 100%; }
  }
  
  /* 10) Footer: stack cleanly */
  @media (max-width: 720px){
    .footgrid{ grid-template-columns: 1fr; gap: 18px; }
    footer{ padding: 28px 0 34px; }
    .hero-content, .container {
        max-width: 530px;
        margin: 0 auto;
    }
    .play-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .lead {
        font-size: 14px;
    }
    .notice {
        display: block;
        font-size: 14px;
        color: #ffffff94;
    }
    .notice .warn {
        display: none;
    }
    #math h3 {
        margin-bottom: 12px;
    }
    .example-card h3 {
        font-size: 16px;
    }
  }

  /* =========================
   Drawer Mobile Menu
========================= */
.menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 998;
  }
  
  .drawer{
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: rgba(7,19,37,.98);
    border-left: 1px solid var(--line);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform .22s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 14px;
  }
  
  .drawer-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
  }
  
  .drawer-title{
    font-weight: 700;
    letter-spacing: .2px;
  }
  
  .drawer-close{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    color: var(--text, #fff);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }
  
  .drawer-nav{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 2px 14px;
  }
  
  .drawer-nav a {
    display: block;
    padding: 12px 12px;
    border-bottom: 3px solid rgb(255 255 255 / 6%);
    background: rgba(255, 255, 255, .03);
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
  
  .drawer-actions {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin: 0 auto;
}
.drawer-actions img {
    display: flex;
    max-width: 130px;
}
  
  /* OPEN STATE */
  body.drawer-open .menu-overlay{
    opacity: 1;
    pointer-events: auto;
  }
  body.drawer-open .drawer{
    transform: translateX(0);
  }
  
  /* Optional: lock background scroll */
  body.drawer-open{
    overflow: hidden;
    touch-action: none;
  }
  
  /* Desktop: hide drawer system above 920px */
  @media (min-width: 921px) {
    .menu-overlay, .drawer { display: none; }
  }


  .example-body p {
    margin-bottom: 10px;
}

#examples {
    padding-top: 0;
}

