
:root{
  --ink:#0a1b2c;
  --ink2:#12314b;
  --sand:#f7e2b6;
  --sand2:#f3d39a;
  --sky:#bfe9ff;
  --white:#ffffff;
  --text:#0d2132;
  --muted:#466579;
  --line: rgba(10,27,44,.12);
  --brand:#00b7ff;
  --brand2:#23d38a;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(10,27,44,.18);
  --wrap: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 480px at 20% 0%, rgba(0,183,255,.12), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(35,211,138,.10), transparent 60%),
    linear-gradient(180deg, #fef9ee, #ffffff);
}
a{color:inherit}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 20px}
.hidden{display:none}

.topbar{
  position:sticky; top:0; z-index:60;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.mark{
  width:42px; height:42px; border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(135deg, rgba(0,183,255,.95), rgba(35,211,138,.85));
  box-shadow: 0 14px 36px rgba(0,183,255,.18);
}
.brand-title{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:10px}
.nav a{
  text-decoration:none; font-size:14px; color:rgba(13,33,50,.86);
  padding:10px 10px; border-radius:12px;
}
.nav a:hover{background: rgba(10,27,44,.06)}
.pill{
  background: rgba(0,183,255,.10);
  border:1px solid rgba(0,183,255,.20);
  font-weight:900;
}
.top-ctas{display:flex; gap:10px; align-items:center}
.cta{
  text-decoration:none;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(0,183,255,.25);
  background: linear-gradient(135deg, rgba(0,183,255,.95), rgba(35,211,138,.75));
  color:#062031;
  font-weight:900;
}
.cta.ghost{
  background: rgba(255,255,255,.60);
  border:1px solid rgba(10,27,44,.14);
  color: rgba(13,33,50,.86);
}

.nav-toggle{display:none; background:none; border:0; padding:10px; border-radius:12px}
.nav-toggle span{display:block; width:22px; height:2px; background:rgba(13,33,50,.70); margin:5px 0; border-radius:20px}

.hero{position:relative; min-height: 84vh; overflow:hidden}
.hero-bg{
  position:absolute; inset:0;
  background-image: url("/assets/hero-superstition.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.03);
}
.hero-sheen{
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 520px at 28% 40%, rgba(255,255,255,.36), transparent 60%),
    radial-gradient(860px 520px at 72% 22%, rgba(255, 236, 190, .30), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.24), rgba(255,255,255,.92));
  mix-blend-mode: screen;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding: 84px 0 58px;
  align-items:stretch;
}
.chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(10,27,44,.14);
  font-weight:900;
  color: rgba(13,33,50,.88);
}
h1{
  margin:12px 0 10px;
  font-size: 52px;
  line-height:1.04;
  letter-spacing:-1px;
  color: rgba(10,27,44,.96);
  text-shadow: 0 8px 30px rgba(255,255,255,.70);
}
.grad{
  background: linear-gradient(90deg, rgba(0,183,255,1), rgba(35,211,138,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin:0 0 18px;
  font-size:18px;
  color: rgba(13,33,50,.82);
  max-width: 70ch;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(10,27,44,.10);
  border-radius: 18px;
  padding: 12px 14px;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid rgba(0,183,255,.25);
  background: linear-gradient(135deg, rgba(0,183,255,.95), rgba(35,211,138,.75));
  color:#062031;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 14px 36px rgba(0,183,255,.14);
}
.btn:hover{filter:brightness(1.02)}
.btn.ghost{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(10,27,44,.14);
  color: rgba(13,33,50,.86);
  box-shadow:none;
}
.wide{width:100%}
.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:10px}
.kpi{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(10,27,44,.12);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 10px 28px rgba(10,27,44,.10);
}
.kpi-top{font-weight:900}
.kpi-sub{margin-top:6px; color:var(--muted); font-size:13px}
.micro{
  margin-top:10px;
  display:flex; align-items:center; gap:10px;
  font-size: 12px;
  color: rgba(13,33,50,.78);
  background: rgba(255,255,255,.62);
  border:1px solid rgba(10,27,44,.10);
  border-radius: 999px;
  padding: 8px 12px;
  width: fit-content;
}
.dot{width:8px; height:8px; border-radius:50%; background: linear-gradient(135deg, rgba(0,183,255,1), rgba(35,211,138,1));}

.hero-card{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(10,27,44,.14);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.hero-card-head{padding:18px 18px 10px}
.tag{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  background: rgba(0,183,255,.10);
  border:1px solid rgba(0,183,255,.18);
  font-weight:900;
}
.hero-card-title{margin:10px 0 6px; font-size:22px}
.muted{color:var(--muted)}
.stack{display:grid; gap:10px; padding:0 18px 12px}
.hero-card-foot{padding:12px 18px 18px; border-top:1px solid rgba(10,27,44,.10)}
.fine{font-size:12px; color:rgba(13,33,50,.76)}
.fine a{color: rgba(13,33,50,.92); font-weight:900; text-decoration:none}

.section{padding:76px 0}
.section-head{margin-bottom:22px}
.section-head h2{margin:0 0 8px; font-size:36px; letter-spacing:-.5px}
.section-head p{margin:0; color:rgba(13,33,50,.78); max-width: 90ch}
.section-bright{position:relative}
.section-bg{
  position:absolute; inset:0;
  background-image:url("/assets/panel-desert.jpg");
  background-size:cover; background-position:center;
  opacity:.70;
  filter: saturate(1.05);
}
.section-bright .wrap{position:relative}
.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(10,27,44,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(10,27,44,.10);
}
.card.bright{background: rgba(255,255,255,.84)}
.bullets{margin:14px 0 0; padding-left:18px}
.bullets li{margin:10px 0; color:rgba(13,33,50,.84)}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(10,27,44,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.8);
}
.shot img{width:100%; height:auto; display:block}

.callout{
  margin-top:18px;
  padding:18px;
  border-radius: 22px;
  border:1px solid rgba(10,27,44,.14);
  background: rgba(255,255,255,.84);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  flex-wrap:wrap;
  box-shadow: 0 10px 30px rgba(10,27,44,.10);
}
.callout-actions{display:flex; gap:10px; flex-wrap:wrap}

.section-sand{
  background: linear-gradient(180deg, rgba(247,226,182,.55), rgba(255,255,255,1));
  border-top: 1px solid rgba(10,27,44,.08);
  border-bottom: 1px solid rgba(10,27,44,.08);
}
.plans{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.plan{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(10,27,44,.14);
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
}
.plan .speed{font-weight:900; margin-top:6px}
.plan-cta{display:grid; gap:10px; margin-top:14px}
.plan.featured{
  border-color: rgba(0,183,255,.30);
  background: linear-gradient(180deg, rgba(0,183,255,.08), rgba(255,255,255,.90));
}
.badge{
  position:absolute; top:14px; right:14px;
  padding:8px 12px; border-radius:999px;
  background: rgba(0,183,255,.12);
  border:1px solid rgba(0,183,255,.22);
  font-weight:900;
}
.note{
  margin-top:16px;
  padding:14px 16px;
  border:1px dashed rgba(10,27,44,.24);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: rgba(13,33,50,.84);
}
.note code{
  background: rgba(10,27,44,.06);
  padding:2px 6px;
  border-radius:10px;
  border:1px solid rgba(10,27,44,.10)
}

.game-shell{display:grid; grid-template-columns: 1.3fr .7fr; gap:14px}
.game-frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(10,27,44,.14);
  background:#fff;
  box-shadow: var(--shadow);
  min-height: 520px;
}
.game-frame iframe{width:100%; height:100%; border:0; display:block; min-height:520px}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.form .row{display:grid; gap:8px; margin-bottom:12px}
label{font-weight:900; font-size:13px; color: rgba(13,33,50,.86)}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(10,27,44,.14);
  background: rgba(255,255,255,.92);
  color: rgba(13,33,50,.95);
  padding:12px 12px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,183,255,.45);
  box-shadow: 0 0 0 4px rgba(0,183,255,.16);
}
.row.cols{grid-template-columns:1fr 1fr; gap:12px}

.big-links{display:grid; gap:10px; margin-top:12px}
.big{
  display:flex; align-items:center; justify-content:center;
  height:54px; border-radius: 16px;
  text-decoration:none; font-weight:900;
  border:1px solid rgba(0,183,255,.25);
  background: linear-gradient(135deg, rgba(0,183,255,.95), rgba(35,211,138,.75));
  color:#062031;
}
.big.ghost{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(10,27,44,.14);
  color: rgba(13,33,50,.86);
}
.divider{height:1px; background: rgba(10,27,44,.10); margin:18px 0}
.steps{margin:0; padding-left:18px; color: rgba(13,33,50,.86)}
.steps li{margin:10px 0}

.final{padding:72px 0}
.final-inner{display:flex; justify-content:center}
.final-card{
  max-width: 980px;
  width:100%;
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.74));
  border:1px solid rgba(10,27,44,.14);
  border-radius: 26px;
  padding:22px;
  box-shadow: var(--shadow);
}
.final-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.footer{
  border-top: 1px solid rgba(10,27,44,.10);
  padding:26px 0;
  background: rgba(255,255,255,.75);
}
.foot{display:flex; justify-content:space-between; gap:12px; align-items:flex-start; flex-wrap:wrap}
.foot-title{font-weight:900}
.foot-links{display:flex; gap:10px; flex-wrap:wrap}
.foot-links a{text-decoration:none; padding:10px 10px; border-radius:12px; color: rgba(13,33,50,.86)}
.foot-links a:hover{background: rgba(10,27,44,.06)}

.sticky{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(10,27,44,.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(10,27,44,.18);
}
.sbtn{
  flex:1;
  display:inline-flex; align-items:center; justify-content:center;
  height: 50px;
  border-radius: 16px;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(0,183,255,.25);
  background: linear-gradient(135deg, rgba(0,183,255,.95), rgba(35,211,138,.75));
  color:#062031;
}
.sbtn.ghost{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(10,27,44,.14);
  color: rgba(13,33,50,.86);
}

@media (max-width: 1040px){
  .hero-inner{grid-template-columns:1fr}
  h1{font-size:44px}
  .cards3{grid-template-columns:1fr}
  .plans{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .game-shell{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
}
@media (max-width: 900px){
  .nav, .top-ctas{display:none}
  .nav-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    position:absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction:column;
    padding:12px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border:1px solid rgba(10,27,44,.14);
    box-shadow: var(--shadow);
  }
  .kpis{grid-template-columns:1fr}
  .row.cols{grid-template-columns:1fr}
  .sticky{display:flex}
  body{padding-bottom: 88px}
}


.brand-img{width:46px;height:46px;object-fit:contain;border-radius:14px;box-shadow:0 14px 36px rgba(0,183,255,.16);background:rgba(255,255,255,.70);border:1px solid rgba(10,27,44,.12);padding:6px;}


/* --- V2 readability + Arizona hero contrast --- */
.hero{
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(6,18,32,.78), rgba(6,18,32,.32) 55%, rgba(6,18,32,.10));
  pointer-events:none;
}
.hero > .wrap{
  position: relative;
  z-index: 1;
}
.hero h1, .hero .kicker, .hero p{
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.hero h1{
  color:#ffffff;
}
.hero .kicker{
  color: rgba(255,255,255,.92);
}
.hero p{
  color: rgba(255,255,255,.90);
}



/* ===== V3 MAXED (carrier-grade polish) ===== */
:root{
  --ink:#071525;
  --ocean:#0a1b2c;
  --sky:#00b7ff;
  --sand:#f6efe2;
  --card:#ffffff;
  --line:rgba(10,27,44,.10);
  --shadow:0 18px 60px rgba(7,21,37,.12);
}

.section-white{ background: #fff; }
.section-sand{ background: linear-gradient(180deg, rgba(246,239,226,.92), rgba(255,255,255,.92)); }

/* hero refinement */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("/assets/grain.svg");
  opacity:.28;
  pointer-events:none;
  mix-blend-mode:overlay;
}

/* reveal */
.reveal{ transform: translateY(14px); opacity:0; transition: all .75s cubic-bezier(.2,.9,.2,1); }
.reveal.in{ transform: translateY(0); opacity:1; }

/* flow */
.flow-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.flow-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
}
.flow-top{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  height:28px; padding:0 10px; border-radius:999px;
  font-size:12px; letter-spacing:.3px; text-transform:uppercase;
  background: rgba(0,183,255,.12); color: rgba(7,21,37,.86);
  border:1px solid rgba(0,183,255,.22);
}
.flow-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }

/* coverage */
.coverage-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:12px;
}
.cov{
  display:block;
  padding:14px 14px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow: 0 14px 40px rgba(7,21,37,.08);
  text-decoration:none;
}
.cov:hover{ transform: translateY(-2px); transition: transform .2s ease; }
.cov-title{ font-weight:800; letter-spacing:-.3px; margin-bottom:4px; color: var(--ink); }

/* gallery + lightbox */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.gitem{
  border:0;
  padding:0;
  cursor:pointer;
  text-align:left;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
}
.gitem img{ width:100%; height: 260px; object-fit: cover; display:block; }
.gcap{ padding:10px 12px; font-size:13px; color: rgba(7,21,37,.82); background: rgba(255,255,255,.94); }

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.74);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 9999;
  padding: 18px;
}
.lightbox.open{ display:flex; }
.lb-img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.lb-close{
  position:absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}
body.lb-open{ overflow:hidden; }

/* signup grid */
.signup-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}

/* stepper */
.stepper{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.step{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
}
.step span{
  width:26px; height:26px;
  border-radius: 9px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(0,183,255,.12);
  border:1px solid rgba(0,183,255,.22);
  font-weight:800;
}
.step.active{ box-shadow: 0 14px 40px rgba(7,21,37,.10); }

/* forms */
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.fg{ display:flex; flex-direction:column; gap:6px; }
.fg.full{ grid-column: 1 / -1; }
input, select, textarea{
  border:1px solid rgba(10,27,44,.14);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 15px;
  outline:none;
  background: rgba(255,255,255,.92);
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,183,255,.55);
  box-shadow: 0 0 0 4px rgba(0,183,255,.12);
}

/* tiny footer links */
.foot-links .tiny{
  opacity:.7;
  font-size:12px;
}

/* responsive */
@media (max-width: 980px){
  .flow-grid{ grid-template-columns: 1fr; }
  .coverage-grid{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .signup-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .gitem img{ height: 240px; }
}
