@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap");

:root{
  --primary:#00D596;
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0d131c;
  --text:#e7eef6;
  --muted:#a8b4c3;
  --border:rgba(255,255,255,.10);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
button, input, textarea, select{ font:inherit; }
html{ scroll-behavior:smooth; overflow-x:hidden; overflow-x:clip; }
body{
  margin:0;
  overflow-x:hidden;
  overflow-x:clip;
  font-family: "Cairo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(0,213,150,.20), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(0,213,150,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  position:relative;
  overflow: visible;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{
  width:65px;
  height:65px;
  border-radius:12px;
  object-fit:contain; /* use 'cover' if your logo is a square badge */
  background: rgba(255,255,255,.03); /* remove if you want fully transparent */
  border: 1px solid rgba(255,255,255,.10);
}

.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{
  display:flex; align-items:center; gap:18px;
  z-index:60;
}
.nav > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  line-height:1;
}
.nav a:hover{ color:var(--text); }
.nav .nav-cta{
  color:#061018;
  background:var(--primary);
  padding:0 14px;
  border-radius:12px;
  font-weight:800;
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  cursor:pointer;
  position:relative;
  z-index:70;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.nav-toggle span{
  position:absolute;
  left:50%;
  display:block;
  height:2px; width:18px;
  background:var(--text);
  margin:0;
  border-radius:20px;
  opacity:.9;
  transform:translateX(-50%);
  transition: top .26s ease, transform .26s ease, opacity .18s ease, background-color .22s ease;
}
.nav-toggle span:nth-child(1){ top:14px; }
.nav-toggle span:nth-child(2){ top:21px; }
.nav-toggle span:nth-child(3){ top:28px; }
.nav-toggle:hover{
  border-color: rgba(0,213,150,.34);
  background: rgba(255,255,255,.06);
}
.nav-toggle[aria-expanded="true"]{
  border-color: rgba(0,213,150,.42);
  background: rgba(0,213,150,.12);
  box-shadow: 0 0 0 4px rgba(0,213,150,.12);
}
.nav-toggle[aria-expanded="true"] span{
  background: var(--primary);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  top:21px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
  transform: translateX(-50%) scaleX(.35);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  top:21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Hero */
.hero{
  padding:0;
}
.hero-shell{
  position:relative;
  min-height:calc(100svh - 94px);
  overflow-x:clip;
}
.hero-carousel{
  position:relative;
  min-height:inherit;
  background:#05080c;
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  display:flex;
  opacity:0;
  pointer-events:none;
  transition:opacity .45s ease;
  overflow-x:clip;
}
.hero-slide.active{
  opacity:1;
  pointer-events:auto;
}
.hero-scene{
  position:relative;
  width:100%;
  min-height:inherit;
  overflow:hidden;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  --hero-tilt-x: 0px;
  --hero-tilt-y: 0px;
}
.hero-scene-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transform-origin:center center;
  will-change:transform;
}
.hero-scene-bg{
  object-fit:fill;
  object-position:center center;
  filter:brightness(1.02) saturate(1.04);
}
.hero-scene-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(60% 60% at 74% 48%, rgba(0,0,0,.04) 0%, rgba(0,0,0,.32) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.32) 68%, rgba(0,0,0,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.10) 28%, rgba(0,0,0,.38) 100%);
}
.hero-carousel-nav{
  position:absolute;
  right:24px;
  bottom:24px;
  z-index:3;
  display:flex;
  gap:10px;
}
.hero-carousel-btn{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(5,8,12,.44);
  color:var(--text);
  backdrop-filter:blur(10px);
  cursor:pointer;
}
.hero-carousel-btn:hover{
  background:rgba(5,8,12,.62);
}
.hero-carousel-dots{
  position:absolute;
  left:50%;
  bottom:28px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:10px;
  transform:translateX(-50%);
}
.hero-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.34);
  padding:0;
  cursor:pointer;
}
.hero-dot.active{
  background:var(--primary);
  box-shadow:0 0 0 5px rgba(0,213,150,.14);
}
.hero-carousel.is-static .hero-carousel-nav,
.hero-carousel.is-static .hero-carousel-dots{
  display:none;
}
.hero-slide-inner{
  position:relative;
  z-index:3;
  min-height:inherit;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:56px;
  padding-bottom:56px;
  padding-left:0;
  padding-right:0;
}
.hero-slide-inner.container{
  width:100%;
  max-width:none;
}
.hero-layout{
  width:100%;
  display:grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(420px, 1.92fr);
  align-items:center;
  gap:0;
}
.hero-media{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  margin-left:0;
  overflow:visible;
  will-change:transform;
}
.hero-scene-foreground{
  width:min(200%, 2440px);
  height:auto;
  display:block;
  transform-origin:center center;
  will-change:transform;
}
.hero-copy{
  width:100%;
  max-width:760px;
  margin-left:auto;
  padding-right:62px;
  text-align:right;
  will-change:transform, opacity;
}
.hero-title{
  margin:0;
  color:#fff;
  font-family:"Cairo", ui-sans-serif, system-ui, sans-serif;
  font-size:clamp(30px, 3.8vw, 62px);
  font-weight:800;
  line-height:1;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.hero-title span{
  display:block;
  margin-top:.18em;
}
.hero-subtitle{
  margin:26px 0 0 auto;
  max-width:760px;
  color:#f1875d;
  font-size:clamp(16px, 1.45vw, 24px);
  line-height:1.24;
  font-weight:600;
}
.hero-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:26px;
}

.hero-slide.active .hero-scene-bg{
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-slide.active .hero-media{
  animation: heroMediaReveal .9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-slide.active .hero-scene-foreground{
  animation: heroFloat 7.5s ease-in-out infinite;
}

.hero-slide.active .hero-copy{
  animation: heroCopyReveal .8s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroKenBurns{
  0%{
    transform: translate3d(calc(var(--hero-pan-x) * .35), calc(var(--hero-pan-y) * .35), 0) scale(1.04);
  }
  50%{
    transform: translate3d(calc(var(--hero-pan-x) * .35 - 10px), calc(var(--hero-pan-y) * .35 + 6px), 0) scale(1.08);
  }
  100%{
    transform: translate3d(calc(var(--hero-pan-x) * .35 + 8px), calc(var(--hero-pan-y) * .35 - 4px), 0) scale(1.12);
  }
}

@keyframes heroFloat{
  0%{
    transform: translate3d(calc(var(--hero-pan-x) * .75), calc(var(--hero-pan-y) * .75), 0) rotate(calc(var(--hero-tilt-x) * .25)) scale(1);
  }
  50%{
    transform: translate3d(calc(var(--hero-pan-x) * .75 + 8px), calc(var(--hero-pan-y) * .75 - 10px), 0) rotate(calc(var(--hero-tilt-x) * .25 + .4deg)) scale(1.01);
  }
  100%{
    transform: translate3d(calc(var(--hero-pan-x) * .75), calc(var(--hero-pan-y) * .75), 0) rotate(calc(var(--hero-tilt-x) * .25)) scale(1);
  }
}

@keyframes heroMediaReveal{
  from{
    opacity:0;
    transform:translate3d(-20px, 24px, 0) scale(.98);
  }
  to{
    opacity:1;
    transform:translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroCopyReveal{
  from{
    opacity:0;
    transform:translate3d(20px, 18px, 0);
  }
  to{
    opacity:1;
    transform:translate3d(0, 0, 0);
  }
}
.pill{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(0,213,150,.35);
  border-radius:999px;
  background: rgba(0,213,150,.08);
  color: var(--text);
  font-weight:700;
  font-size:13px;
}
h1{
  font-size: clamp(34px, 4vw, 48px);
  line-height:1.1;
  margin:14px 0 10px;
  letter-spacing:-.6px;
}
.lead{
  color:var(--muted);
  font-size:16px;
  margin:0 0 18px;
}

.download-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.download-page{
  position:relative;
  overflow:hidden;
}
.download-page::before{
  content:"";
  position:absolute;
  inset:auto -10% -120px auto;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(0,213,150,.18) 0%, rgba(0,213,150,0) 68%);
  pointer-events:none;
}
.download-hero-card{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(340px, .9fr);
  gap:26px;
  align-items:start;
  padding:30px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(circle at top left, rgba(241,135,93,.12), transparent 34%);
  box-shadow:0 18px 44px rgba(0,0,0,.28);
}
.download-copy{
  display:grid;
  gap:14px;
}
.download-copy h1{
  margin:0;
  max-width:12ch;
}
.download-lead{
  margin:0;
  max-width:56ch;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}
.download-steps{
  display:grid;
  gap:12px;
  margin-top:8px;
}
.download-step{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  color:var(--text);
}
.download-step strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(0,213,150,.14);
  color:#8ff3ce;
  font-size:14px;
  flex:0 0 auto;
}
.download-head{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; }
.h3{ margin:0; font-size:18px; }
.muted{ color:var(--muted); }
.download-actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.download-note{ margin-top:12px; }
.download-support-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:18px auto 0;
  padding:16px 18px;
  width:min(920px, 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  text-align:center;
}
.download-support-strip strong{
  color:var(--text);
}
.download-support-strip a{
  color:#8ff3ce;
}
.field{
  display:block;
}
.field textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
  resize:vertical;
  min-height:110px;
}
.demo-request-form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.demo-actions{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}
.demo-status{
  margin:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  justify-content:center;
  position:relative;
  user-select:none;
}
.btn .btn-sub{
  display:block;
  font-size:12px;
  font-weight:700;
  color:rgba(231,238,246,.70);
  margin-left:4px;
}
.btn-icon{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}
.btn-primary{
  background: var(--primary);
  color:#061018;
  border-color: rgba(0,213,150,.6);
}
.btn-outline{
  background: rgba(0,213,150,.06);
  border-color: rgba(0,213,150,.35);
  color:var(--text);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn:disabled,
.btn[disabled]{
  opacity:.65;
  cursor:not-allowed;
  background: rgba(255,255,255,.05);
  border-color: var(--border);
  color: var(--muted);
  transform:none;
}
.btn.is-disabled,
.btn[aria-disabled="true"]{
  opacity:.55;
  pointer-events:none;
  cursor:not-allowed;
}

.btn-sm{
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
}

.download-section .download-wrap{
  width:min(760px, 100%);
  margin:0 auto;
}

/* Temporary: hide hero visual panel and use single-column hero layout */
.hero-grid{
  grid-template-columns: minmax(0, 1fr);
}
.hero-visual{
  display:none !important;
}

/* ===== Scoreboard hero mock (clean + consistent) ===== */

.hero-visual{
  position: relative;
  display:flex;
  justify-content:center;
  width:100%;
}

.scoreboard-mock{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);

  width:100%;
  max-width: 720px;
  margin:0 auto;

  background:
    radial-gradient(900px 500px at 50% 20%, rgba(255,255,255,.05), transparent 60%),
    rgba(0,0,0,.55);

  box-shadow: 0 18px 60px rgba(0,0,0,.55);

  /* Makes it look like a real overlay panel */
  aspect-ratio: 16 / 9;
  min-height: 380px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;

  padding: 28px 28px 38px;
}

.scoreboard-mock::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  pointer-events:none;
  z-index: 1;
}

.sb-watermark{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  text-align:center;

  font-weight: 1000;
  letter-spacing: 2px;
  font-size: clamp(68px, 5vw, 108px);
  line-height: .9;

  opacity: .10;
  color: rgba(0,213,150,.35);
  text-shadow: 0 20px 60px rgba(0,0,0,.8);
  pointer-events:none;
  z-index: 1;
}
.sb-watermark span:last-child{
  color: rgba(0,213,150,.22);
}

.sb-side{
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-width: 0;
  z-index: 2;
}

.sb-left{ align-items:flex-start; }
.sb-right{ align-items:flex-end; text-align:right; }

.sb-logo{
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.65));
}

.sb-team{
  font-weight: 1000;
  font-size: clamp(18px, 1.8vw, 28px);
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1.05;
}

.sb-score{
  font-weight: 1100;
  font-size: clamp(56px, 5.5vw, 96px);
  line-height: 1;
  margin-top: 6px;
}

.sb-label{
  font-weight: 900;
  letter-spacing: 1.2px;
  color: rgba(231,238,246,.85);
  text-transform: uppercase;
  margin-top: 8px;
  font-size: 14px;
}

.sb-squares{
  display:flex;
  gap: 8px;
}
.sb-squares span{
  width: 26px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.16);
}

.sb-dots{
  display:flex;
  gap: 10px;
}
.sb-dots span{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
}

.sb-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  z-index: 2;
}

.sb-clock{
  font-weight: 1100;
  font-size: clamp(50px, 4.6vw, 84px);
  letter-spacing: 1px;
  text-shadow: 0 20px 60px rgba(0,0,0,.75);
}

.sb-q{
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 1000;
  letter-spacing: 1px;
}

.sb-shot{
  width: 76px;
  height: 76px;
  display:grid;
  place-items:center;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 1100;
  font-size: clamp(40px, 4vw, 58px);
  color: #ff3b30;
  text-shadow: 0 18px 50px rgba(255,59,48,.45);
}

.sb-footer{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  text-align:right;
  font-size: 12px;
  opacity: .75;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 920px){
  .scoreboard-mock{
    grid-template-columns: 1fr;
    text-align:center;
    padding: 22px 20px 46px;
    aspect-ratio: auto;
  }
  .sb-left, .sb-right{ align-items:center; text-align:center; }
  .sb-logo{ width: 70px; height: 70px; }
  .sb-shot{ width: 74px; height: 74px; font-size: 50px; }
}



/* Mock window */
.hero-visual .mock{
  border-radius: 22px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock-top{
  display:flex; align-items:center; gap:8px;
  padding:12px 14px;
  border-bottom:1px solid var(--border);
}
.dot{ width:10px; height:10px; border-radius:999px; background: rgba(231,238,246,.18); }
.mock-title{ margin-left:auto; font-weight:800; color:rgba(231,238,246,.85); font-size:12px; }
.mock-body{ padding:16px; }
.mock-score{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:12px;
  align-items:center;
  padding:14px;
  border:1px solid var(--border);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}
.mock-team{ display:flex; align-items:center; gap:10px; }
.mock-team.right{ justify-content:flex-end; text-align:right; }
.mock-badge{
  width:34px; height:34px; border-radius:12px;
  background: rgba(0,213,150,.22);
  border:1px solid rgba(0,213,150,.35);
}
.mock-teamname{ font-weight:900; letter-spacing:.8px; font-size:12px; }
.mock-small{ font-size:12px; }
.mock-center{ text-align:center; }
.mock-clock{
  font-weight:1000;
  font-size:28px;
  letter-spacing:.6px;
}
.mock-shot{
  display:inline-block;
  margin-top:6px;
  padding:6px 10px;
  border-radius: 14px;
  background: rgba(0,213,150,.18);
  border:1px solid rgba(0,213,150,.30);
  font-weight:1000;
}

.mock-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:12px;
}
.mock-tile{
  padding:12px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.02);
}
.mock-label{ font-size:12px; color:var(--muted); font-weight:800; }
.mock-value{ font-size:14px; font-weight:950; margin-top:4px; }
.mock-footer{ margin-top:12px; font-size:12px; }

/* Sections */
.section{
  padding:58px 0;
}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-surface{
  position:relative;
  overflow:hidden;
  --section-parallax-y: 0px;
}
.section-surface::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.9;
  transform: translate3d(0, var(--section-parallax-y), 0) scale(1.06);
  transform-origin: center center;
  will-change: transform;
}
.section-surface > .container{
  position:relative;
  z-index:1;
}
.section-surface-emerald{
  background:
    radial-gradient(1000px 420px at 18% 0%, rgba(0,213,150,.12), transparent 62%),
    linear-gradient(180deg, rgba(8,17,18,.56) 0%, rgba(8,13,20,0) 100%);
}
.section-surface-emerald::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(90deg, rgba(0,213,150,.05) 0%, rgba(0,213,150,0) 34%, rgba(0,213,150,.03) 100%);
}
.section-surface-graphite{
  background:
    radial-gradient(880px 420px at 82% 12%, rgba(255,196,87,.10), transparent 58%),
    linear-gradient(180deg, rgba(17,18,25,.72) 0%, rgba(11,15,20,.92) 100%);
}
.section-surface-graphite::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(90deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%);
}
.section-surface-ink{
  background:
    radial-gradient(760px 320px at 50% 0%, rgba(78,120,255,.08), transparent 68%),
    linear-gradient(180deg, rgba(10,14,22,.88) 0%, rgba(7,10,16,.96) 100%);
}
.section-surface-ink::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 20%);
}
.section-surface-gold{
  background:
    radial-gradient(840px 420px at 10% 0%, rgba(255,176,74,.12), transparent 58%),
    linear-gradient(180deg, rgba(24,16,10,.78) 0%, rgba(13,15,20,.96) 100%);
}
.section-surface-gold::before{
  background:
    linear-gradient(90deg, rgba(255,176,74,.05) 0%, rgba(255,176,74,0) 34%, rgba(255,255,255,.02) 100%);
}
.section-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.section-title{
  text-align:center;
  margin-bottom:18px;
}
.section-title-left{
  text-align:left;
  margin-bottom:0;
}
.section-title-left p{
  margin-left:0;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  color:var(--muted);
  text-transform:uppercase;
  background: rgba(255,255,255,.03);
}
.section-title h2{ margin:8px 0 8px; }
.section-title p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
}
h2{ margin:0 0 10px; font-size:28px; letter-spacing:-.4px; }
.h4{ margin:0 0 8px; font-size:16px; }

.checklist{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.checklist li{ margin:8px 0; }

.info-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.info-rows{ margin-top:10px; display:grid; gap:10px; }
.info-row{
  display:flex; justify-content:space-between; gap:12px;
  align-items:flex-start;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background: rgba(0,0,0,.16);
}
.info-k,
.info-v{
  min-width:0;
}
.info-k{ color:var(--muted); font-weight:800; font-size:13px; }
.info-v{
  font-weight:900;
  font-size:13px;
  overflow-wrap:anywhere;
}

.overview-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:center;
  margin-top:22px;
}
.overview-row.reverse .overview-media{ order:2; }
.overview-row.reverse .overview-copy{ order:1; }
.overview-copy{
  display:grid;
  gap:12px;
}
.overview-media img{
  width:100%;
  display:block;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.overview-meta{
  display:grid;
  gap:10px;
}

.cards{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.cards.cards-4{
  grid-template-columns: repeat(4, 1fr);
}
.scoreboard-banner-section{
  position:relative;
  width:100%;
  max-width:100%;
  margin:0;
  background:#05080c;
  overflow:hidden;
  --banner-parallax-y: 0px;
}
.scoreboard-banner-section img{
  display:block;
  width:100%;
  height:auto;
  transform: translate3d(0, var(--banner-parallax-y), 0) scale(1.06);
  transform-origin:center center;
  will-change:transform;
}
.proof-section{
  padding:58px 0 0;
}
.proof-section .section-title{
  margin-bottom:22px;
}
.card{
  min-width:0;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 20px 44px rgba(0,0,0,.24);
}
.card-kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7dddbb;
}
.card-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  object-fit:cover;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 14px 34px rgba(0,0,0,.65);
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.stat{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.stat-number{
  font-size:28px;
  font-weight:1100;
  letter-spacing:-.4px;
}
.stat-label{
  color:var(--muted);
  margin-top:6px;
  font-weight:800;
}

/* Screenshots carousel */

.icon-btn{
  width:44px;
  height:44px;
  padding:0;
}

.icon{
  width:18px;
  height:18px;
  display:block;
}

.section-head{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.shots{
  margin-top:14px;
  display:grid;
  gap:12px;
}
.shot{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:12px;
  box-shadow: var(--shadow);
}
.shot.active{ display:block; }
.shots-nav .icon{
  width:20px;
  height:20px;
  color:#fff;
}
.shots-nav .btn{
  color:#fff;
  border-color: rgba(255,255,255,.35);
}
.shot-img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: rgba(7,12,18,.92);
  display:block;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.shot-ph{
  height:320px;
  border-radius: 18px;
  border:1px dashed rgba(0,213,150,.35);
  display:grid; place-items:center;
  color:rgba(231,238,246,.75);
  background: rgba(0,213,150,.06);
  font-weight:900;
}
.shot-cap{ margin-top:8px; font-size:13px; }
.shot-cap{
  display:grid;
  gap:2px;
  padding:0 2px 2px;
}
.shot-cap strong{
  font-size:16px;
  letter-spacing:-.02em;
}

.shot-lightbox{
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 18px;
}
.shot-lightbox.hidden{ display:none !important; }
.shot-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(3,6,10,.88);
}
.shot-lightbox-panel{
  position: relative;
  z-index: 1;
  width: min(96vw, 1400px);
  max-height: min(92vh, 1100px);
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0f1620;
  box-shadow: 0 22px 70px rgba(0,0,0,.65);
  display: grid;
  gap: 10px;
}
.shot-lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.shot-lightbox-img{
  width: 100%;
  max-height: calc(92vh - 90px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
}
.shot-lightbox-cap{
  font-size: 13px;
  padding-inline: 4px;
}
body.shot-lightbox-open{
  overflow: hidden;
}
[dir="rtl"] .shot-lightbox-close{
  right: auto;
  left: 10px;
}


@media (max-width: 920px){
  .shots{
    display:flex;
    gap:12px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .shots::-webkit-scrollbar{
    display:none;
  }

  .shot{
    display:block;
    flex:0 0 100%;
    min-width:100%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }

  .shot-img{
    aspect-ratio:auto;
    height:auto;
  }
}

/* Pricing */
.pricing-clarity{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}
.pricing-chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,213,150,.24);
  background: rgba(0,213,150,.08);
  color:var(--text);
  font-size:13px;
  font-weight:800;
}
.pricing-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}
.plan{
  min-width:0;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.plan.featured{
  border-color: rgba(0,213,150,.40);
  background: rgba(0,213,150,.06);
  box-shadow: 0 12px 40px rgba(0,213,150,.10);
}
.plan-top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.plan-name{ font-weight:1000; }
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:104px;
  min-height:64px;
  font-size:12px;
  font-weight:950;
  line-height:1.15;
  text-align:center;
  white-space:normal;
  color:#061018;
  background: var(--primary);
  padding:8px 12px;
  border-radius:999px;
}
.plan-price{
  font-size:26px;
  font-weight:1100;
  letter-spacing:-.5px;
}
.plan-per{ font-size:12px; color:var(--muted); font-weight:800; }
.plan-summary{
  margin:10px 0 0;
  color:var(--text);
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}
.plan-list{
  margin:0;
  padding-left:16px;
  color:var(--muted);
  font-size:13px;
  display:grid;
  gap:8px;
}
.plan-actions{ margin-top:auto; display:grid; gap:10px; }
.plan small{ color:var(--muted); }
.card .h4,
.card p,
.plan-summary,
.plan-list li{
  overflow-wrap:anywhere;
}

.pricing-note{ margin-top:14px; }

/* FAQ */
.faq{ margin-top:14px; display:grid; gap:10px; }
details{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:12px 14px;
}
summary{ cursor:pointer; font-weight:950; }
details p{ margin:10px 0 0; }

.logo-strip{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
  justify-content:center;
}
.logo-chip{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:.2px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  min-height:80px;
}
.logo-img{
  display:block;
  height:38px;
  max-width:140px;
  object-fit:contain;
}

.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.testimonial{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
  display:grid;
  gap:10px;
  text-align:center;
  justify-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.testimonial-avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.testimonial-quote{
  margin:0;
  color:var(--text);
  font-weight:750;
  line-height:1.5;
}
.testimonial-meta{
  display:grid;
  gap:2px;
}
.testimonial-name{
  font-weight:1000;
}
.testimonial-role{
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

/* CTA */
.cta{
  padding:44px 0;
}
.cta-inner{
  border:1px solid rgba(0,213,150,.25);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,213,150,.14), rgba(255,255,255,.02));
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta-title{ margin:0; letter-spacing:-.4px; }
.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Footer */
.site-footer{
  padding:42px 0 42px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(0,213,150,.08), transparent 65%),
    linear-gradient(180deg, rgba(10,14,20,.96) 0%, rgba(6,9,14,1) 100%);
}
.footer-shell{
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
  padding-bottom:24px;
  margin-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{
  display:flex;
  align-items:flex-start;
  gap:14px;
  max-width:620px;
}
.footer-name{
  font-weight:950;
  font-size:24px;
  line-height:1;
}
.footer-copy{
  margin:10px 0 0;
  max-width:560px;
}
.footer-social-wrap{
  min-width:min(100%, 320px);
}
.footer-kicker{
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.footer-socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
}
.footer-social:hover{
  background: rgba(0,213,150,.12);
  border-color: rgba(0,213,150,.28);
  color:#dffcf2;
}
.footer-social-icon{
  width:18px;
  height:18px;
  display:block;
}
.footer-main{
  display:grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1.35fr);
  gap:18px;
}
.footer-col{
  min-width:0;
  padding:0;
  background: transparent;
  border:0;
  border-radius:0;
}
.footer-col-title{
  font-size:13px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.footer-stack{
  display:grid;
  gap:10px;
}
.footer-stack a{
  color:var(--text);
  font-weight:800;
  font-size:14px;
  opacity:.88;
}
.footer-stack a:hover{
  opacity:1;
  color:#dffcf2;
}
.footer-contact-list{
  display:grid;
  gap:10px;
}
.footer-contact-item{
  display:grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items:flex-start;
  gap:10px;
  padding:0;
  border-radius:0;
  border:0;
  background: transparent;
}
.footer-contact-item > div{
  display:grid;
  gap:4px;
  min-width:0;
}
.footer-contact-icon{
  width:18px;
  height:18px;
  display:block;
  margin-top:2px;
  opacity:.92;
}
.footer-contact-label{
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  letter-spacing:.25px;
  text-transform:uppercase;
}
.footer-contact-value{
  font-weight:900;
  font-size:14px;
  overflow-wrap:anywhere;
}
.footer-contact-value a{
  color:inherit;
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top:18px;
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.07);
}
.footer-meta{ font-size:12px; }

/* Modal */
.modal{ display:none; }
.modal.show{ display:block; }
.modal-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
}
.modal-card{
  position:fixed;
  inset:auto 0 0 0;
  margin: auto;
  width:min(720px, calc(100% - 28px));
  top: 10%;
  border-radius: 22px;
  border:1px solid var(--border);
  background: rgba(15,22,32,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}
.modal-title{ font-weight:1000; }
.modal-close{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
}
.modal-body{ padding:16px; color:var(--muted); }

/* ===== Checkout ===== */
.checkout-body{
  background: radial-gradient(1000px 500px at 10% 0%, rgba(0,213,150,.18), transparent 60%),
              radial-gradient(800px 420px at 90% 10%, rgba(0,213,150,.10), transparent 55%),
              var(--bg);
}
.checkout-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:20px;
  align-items:start;
}
.live-shell{
  display:grid;
  gap:18px;
}
.live-grid,
.live-stack{
  display:grid;
  grid-template-columns: 1fr;
  gap:20px;
  align-items:start;
}
.live-hero{
  display:grid;
  gap:12px;
}
.live-hero-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.live-audience{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.live-audience-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,213,150,.22);
  background: rgba(0,213,150,.08);
  color:var(--text);
  font-size:13px;
  font-weight:800;
}
.live-branding{
  display:grid;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(0,213,150,.14), rgba(255,255,255,.03));
  overflow:hidden;
}
.live-branding.has-banner{
  background-size: cover;
  background-position: center;
  position: relative;
}
.live-branding.has-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(4,16,23,.82), rgba(4,16,23,.56));
}
.live-branding-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:14px;
}
.live-branding-logo{
  width:72px;
  height:72px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  object-fit:cover;
  flex:0 0 auto;
}
.live-branding-copy{
  display:grid;
  gap:6px;
}
.live-branding-copy strong{
  font-size:18px;
}
.live-branding-accent{
  width:56px;
  height:6px;
  border-radius:999px;
  background: var(--accent, #00d596);
}
.live-context{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.live-spotlight{
  margin: 0 0 14px;
  display:grid;
  gap:12px;
}
.scoreboard-card{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:14px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  background:
    radial-gradient(circle at top, rgba(0,213,150,.12), transparent 45%),
    rgba(255,255,255,.03);
}
.scoreboard-team{
  display:grid;
  gap:8px;
  align-items:center;
  text-align:center;
}
.scoreboard-team-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.scoreboard-team-logo,
.team-logo-fallback{
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  object-fit:cover;
  flex-shrink:0;
}
.team-logo-fallback{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:900;
}
.scoreboard-team-home{
  justify-self:start;
}
.scoreboard-team-away{
  justify-self:end;
}
.scoreboard-team-score{
  font-size: clamp(34px, 7vw, 56px);
  line-height:1;
  font-weight:900;
}
.scoreboard-team-name{
  font-size:16px;
  font-weight:800;
}
.scoreboard-center{
  display:grid;
  gap:8px;
  text-align:center;
  min-width:140px;
}
.scoreboard-clock{
  font-size: clamp(28px, 6vw, 44px);
  line-height:1;
  font-weight:900;
}
.scoreboard-meta{
  color:var(--muted);
  font-size:13px;
}
.live-card-grid,
.live-match-list{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.live-match-row{
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) auto auto;
  gap:16px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:14px 16px;
}
.live-match-row-main{
  display:grid;
  gap:8px;
}
.live-match-row-teams{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.live-match-row-team{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.live-match-row-team strong{
  font-size:17px;
}
.live-match-row-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.live-match-row-score{
  font-size:28px;
  line-height:1;
  font-weight:1000;
}
.live-card{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:14px;
  display:grid;
  gap:10px;
}
.live-card-score{
  font-size:26px;
  line-height:1;
  font-weight:900;
}
.live-overview{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.live-list{
  display:grid;
  gap:8px;
}
.live-list-row,
.live-table-row{
  display:grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  background: rgba(255,255,255,.02);
}
.live-table{
  display:grid;
  gap:8px;
}
.account-shell{
  display:grid;
  gap:18px;
}
.account-hero{
  display:grid;
  gap:10px;
}
.account-grid{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap:20px;
  align-items:start;
}
.checkout-body .nav{
  display:flex;
  position:static;
  background:transparent;
  border:none;
  padding:0;
}
.checkout-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.checkout-title{
  margin:12px 0 6px;
}
.checkout-body .iti{
  width: 100%;
  display: block;
}
.checkout-body .iti__flag-container{
  z-index: 3;
}
.checkout-body .iti__country-list{
  color: #0b1020;
  max-width: min(92vw, 360px);
}
.checkout-body .iti__selected-dial-code{
  color: var(--muted);
}
.checkout-form{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.auth-switch{
  display:inline-grid;
  grid-auto-flow:column;
  gap:10px;
  padding:6px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.03);
}
.auth-switch-btn{
  border:0;
  background:transparent;
  color:var(--muted);
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
}
.auth-switch-btn.active{
  background: rgba(0,213,150,.12);
  color:var(--text);
}
.account-details{
  margin-top:12px;
}
.auth-signed-in-state{
  display:grid;
  gap:12px;
}
.auth-inline-form{
  margin-top:12px;
}
.account-status-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(3, 1fr);
  margin:14px 0;
}
.account-banner{
  margin-top:14px;
  border:1px solid rgba(0,213,150,.22);
  border-radius:14px;
  padding:12px 14px;
  background: rgba(0,213,150,.08);
  color:var(--text);
}
.account-highlights{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
  margin:14px 0 18px;
}
.metric-card{
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  padding:12px;
  display:grid;
  gap:6px;
}
.metric-card.good{
  border-color: rgba(0,213,150,.35);
  background: rgba(0,213,150,.09);
}
.account-stat{
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  padding:12px;
  display:grid;
  gap:6px;
}
.account-published-list,
.published-items{
  display:grid;
  gap:12px;
}
.published-section{
  display:grid;
  gap:10px;
}
.published-item{
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  padding:12px;
  display:grid;
  gap:6px;
}
.meta-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:8px;
}
.published-item-head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.published-item-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}
.status-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-size:12px;
  font-weight:800;
  text-transform:capitalize;
}
.status-chip.good{
  border-color: rgba(0,213,150,.38);
  background: rgba(0,213,150,.12);
}
.status-chip.danger{
  border-color: rgba(255,120,120,.28);
  background: rgba(255,120,120,.1);
}
.order-list{
  display:grid;
  gap:10px;
}
.order-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.order-row:first-child{
  border-top:0;
}
.order-row-side{
  display:grid;
  gap:6px;
  justify-items:end;
  text-align:right;
}
.live-debug summary{
  cursor:pointer;
  font-weight:800;
}
.checkout-auth-gate{
  margin-bottom:18px;
  border:1px solid rgba(0,213,150,.24);
  border-radius:18px;
  background: rgba(0,213,150,.07);
  padding:16px;
  display:grid;
  gap:12px;
}
.checkout-auth-gate .actions{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field-note{
  margin-top:6px;
}
.danger-text{
  color:#ff8f8f;
}
.password-meter{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.password-meter-bars{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:6px;
}
.password-meter-bars span{
  display:block;
  height:7px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
}
.password-meter-bars[data-tone="weak"] span:nth-child(1){
  background:#ff8f8f;
}
.password-meter-bars[data-tone="medium"] span:nth-child(-n+2){
  background:#f7d56b;
}
.password-meter-bars[data-tone="strong"] span{
  background:#00d596;
}
.password-meter-label{
  font-size:12px;
  color:var(--muted);
}
.turnstile-slot{
  display:grid;
  gap:8px;
}
.honeypot-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}
.turnstile-label{
  font-weight:700;
}
.license-inline-key{
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed rgba(0,213,150,.35);
  background: rgba(0,0,0,.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing:.3px;
  word-break:break-word;
}
.plan-row{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:10px;
}
.plan-chip{
  width:100%;
  text-align:left;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  transition: border-color .15s, transform .15s;
}
.plan-chip.active{
  border-color: rgba(0,213,150,.7);
  background: rgba(0,213,150,.08);
  transform: translateY(-1px);
}
.plan-chip-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:800;
}
.plan-chip-sub{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}
.form-row{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}
.field input,
.field select{
  width:100%;
  padding:12px;
  min-height:50px;
  box-sizing:border-box;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
}
.field select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding-inline-end:42px;
  line-height:1.2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23a8b4c3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3.5 5.5L7 9l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:14px 14px;
}
.field select:focus{
  outline:none;
  border-color:rgba(0,213,150,.55);
  box-shadow:0 0 0 2px rgba(0,213,150,.2);
}
.password-field{
  position:relative;
}
.password-field input{
  padding-inline-end:50px;
}
.password-toggle{
  position:absolute;
  top:50%;
  inset-inline-end:12px;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:10px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
}
.password-toggle:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
}
.password-toggle:focus-visible{
  outline:2px solid rgba(0,213,150,.55);
  outline-offset:2px;
}
.password-toggle svg{
  width:18px;
  height:18px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  pointer-events:none;
}
.password-toggle .icon-eye-off{
  display:none;
}
.password-toggle[data-visible="true"] .icon-eye{
  display:none;
}
.password-toggle[data-visible="true"] .icon-eye-off{
  display:block;
}
.form-label{
  font-weight:700;
  color:var(--muted);
  font-size:13px;
  display:block;
  margin-bottom:6px;
}
.card-box{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,.02);
}
.payment-methods{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap:10px;
}
.method-card{
  width:100%;
  text-align:left;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.method-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.method-card.active{
  border-color: rgba(0,213,150,.7);
  background: rgba(0,213,150,.08);
}
.method-title{
  font-weight:800;
  font-size:15px;
  margin-bottom:4px;
}
.payment-box{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,.02);
}
.payment-box-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.payment-frame{
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.2);
  overflow:hidden;
  width:100%;
  height:min(560px, 70vh);
  min-height:420px;
}
.payment-frame iframe{
  width:100%;
  height:100%;
  border:0;
  background:transparent;
}
.payment-status{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}
.payment-status.success{ color:#7dddbb; }
.payment-status.error{ color:#ffb0b0; }
.card-box-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.form-error{
  color:#ffb0b0;
  font-size:13px;
}
.spinner{
  width:16px;
  height:16px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.15);
  border-top-color:#061018;
  animation: spin 1s linear infinite;
}
@keyframes spin{
  to { transform: rotate(360deg); }
}
.hidden{ display:none !important; }

.success-card{
  margin-top:14px;
  border:1px solid rgba(0,213,150,.35);
  border-radius:16px;
  padding:18px;
  background: rgba(0,213,150,.08);
  box-shadow: var(--shadow);
}
.license-display{
  display:flex;
  align-items:center;
  gap:10px;
  margin:12px 0;
  flex-wrap:wrap;
}
.license-key{
  font-weight:900;
  font-size:20px;
  letter-spacing:1px;
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed rgba(0,213,150,.55);
  background: rgba(0,0,0,.25);
}
.license-meta{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:10px;
}
.summary-card{
  position:sticky;
  top:90px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  background: var(--panel2);
  box-shadow: var(--shadow);
}
.summary-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.summary-title{ font-weight:800; font-size:16px; }
.summary-price{ font-weight:900; font-size:26px; }
.summary-list{
  list-style:none;
  padding:0;
  margin:12px 0;
  color:var(--muted);
  display:grid;
  gap:6px;
}
.small{ font-size:12px; }

@media (max-width: 900px){
  .checkout-grid{
    grid-template-columns: 1fr;
  }
  .account-grid{
    grid-template-columns: 1fr;
  }
  .live-grid{
    grid-template-columns: 1fr;
  }
  .account-status-grid{
    grid-template-columns: 1fr;
  }
  .live-hero-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .scoreboard-card{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .scoreboard-team-home,
  .scoreboard-team-away{
    justify-self:center;
  }
  .scoreboard-team-top{
    justify-content:center;
  }
  .live-match-row{
    grid-template-columns: 1fr;
  }
  .order-row{
    flex-direction:column;
  }
  .order-row-side{
    justify-items:start;
    text-align:left;
  }
  .summary-card{
    position: static;
  }
  .checkout-body .nav{
    justify-content:flex-end;
  }
}

/* Responsive */
@media (max-width: 920px){
  .section-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .cards.cards-4{ grid-template-columns: repeat(2, 1fr); }
  .overview-row{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .section-title-left{
    text-align:center;
  }
  .section-title-left p{
    margin:0 auto;
  }
  .section-head{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-shell{ min-height:100svh; }
  .hero-slide-inner{
    align-items:center;
    justify-content:center;
    padding-top:86px;
    padding-bottom:64px;
    padding-right:0;
  }
  .hero-layout{
    grid-template-columns: 1fr;
    gap:10px;
  }
  .hero-media{
    order:2;
    width:100%;
    align-self:end;
    justify-content:flex-start;
  }
  .hero-scene-foreground{
    width:min(100%, 1120px);
  }
  .hero-copy{
    order:1;
    max-width:720px;
    margin:0 auto;
    padding:0 28px;
    text-align:center;
  }
  .hero-title{
    font-size:clamp(42px, 7vw, 64px);
  }
  .hero-subtitle{
    margin:20px auto 0;
    max-width:680px;
    font-size:clamp(20px, 2.6vw, 28px);
    text-align:center;
  }
  .hero-actions{
    justify-content:center;
    margin-top:22px;
  }
}
@media (max-width: 640px){
  .hero-scene-bg{
    object-fit: cover;
    object-position:center center;
  }
  .hero-scene-shade{
    background:
      linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.14) 26%, rgba(0,0,0,.54) 100%),
      linear-gradient(90deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.08) 40%, rgba(0,0,0,.34) 100%);
  }
  .hero-slide-inner{
    align-items:center;
    justify-content:center;
    padding-top:74px;
    padding-bottom:72px;
    padding-right:16px;
    padding-left:0;
  }
  .hero-layout{
    grid-template-columns: 1fr;
    gap:10px;
  }
  .hero-media{
    order:2;
    width:100%;
    margin-left:0;
    justify-content:flex-start;
    overflow-x:clip;
  }
  .hero-scene-foreground{
    width:min(100%, 1560px);
  }
  .hero-copy{
    order:1;
    width:100%;
    max-width:100%;
    margin:0 auto;
    padding:0 20px 0 36px;
    text-align:center;
  }
  .hero-title{
    font-size:clamp(30px, 9vw, 44px);
    line-height:.98;
  }
  .hero-subtitle{
    margin:16px auto 0;
    max-width:440px;
    font-size:clamp(15px, 4.1vw, 18px);
    text-align:center;
  }
  .hero-actions{
    flex-direction:column;
    align-items:center;
    gap:10px;
    margin-top:18px;
  }
  .hero-actions .btn{
    width:min(100%, 280px);
    padding:11px 14px;
    font-size:15px;
  }
  .hero-carousel-nav{
    right:16px;
    bottom:20px;
  }
  .hero-carousel-dots{
    left:24px;
    bottom:38px;
    transform:none;
  }
  .download-actions{ grid-template-columns: 1fr; }
  .download-hero-card{
    grid-template-columns:1fr;
    padding:22px;
  }
  .download-support-strip{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .cards.cards-4{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-actions{
    width:100%;
  }
  .cta-actions .btn{
    flex:1 1 0;
  }
  .footer-top{
    flex-direction:column;
  }
  .footer-main{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:24px 18px;
  }
  .footer-col-contact{
    grid-column: 1 / -1;
  }

  .nav-toggle{ display:block; }
  .nav{
    position:absolute;
    top:68px; right:20px; left:20px;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(11,15,20,.92);
    z-index:80;
  }
  .nav.open{ display:flex; }
  .nav a{ width:100%; padding:10px 10px; border-radius:14px; }
  .nav .nav-cta{ text-align:center; }
  .checkout-auth-gate .actions{ grid-template-columns: 1fr; }
}


/* ===== Language switcher / i18n ===== */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #eaf2ff;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.lang-trigger-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-trigger:hover {
  border-color: rgba(0,213,150,.45);
  background: rgba(0,213,150,.08);
}

.lang-trigger-caret {
  opacity: .75;
  font-size: 12px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: #111824;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  z-index: 70;
}

.lang-option {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  background: transparent;
  color: #eaf2ff;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}

.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.22);
  object-fit: cover;
  display: inline-block;
  flex: 0 0 auto;
}

.lang-option:hover {
  background: rgba(255,255,255,.06);
}

body.rtl {
  text-align: right;
}

body.rtl .site-header,
body.rtl main,
body.rtl .site-footer {
  direction: rtl;
}

[dir="rtl"] .header-inner,
html[dir="rtl"] .header-inner,
body.rtl .header-inner {
  flex-direction: row-reverse;
  direction: rtl;
}

[dir="rtl"] .header-inner > .brand,
html[dir="rtl"] .header-inner > .brand,
body.rtl .header-inner > .brand {
  order: 2;
  flex-direction: row;
  direction: rtl;
}

[dir="rtl"] .header-inner > .brand .brand-text,
html[dir="rtl"] .header-inner > .brand .brand-text,
body.rtl .header-inner > .brand .brand-text {
  text-align: right;
}

[dir="rtl"] .header-inner > .nav,
html[dir="rtl"] .header-inner > .nav,
body.rtl .header-inner > .nav {
  order: 1;
  flex-direction: row;
  justify-content: flex-start;
  direction: rtl;
}

[dir="rtl"] .header-inner > .nav > a,
html[dir="rtl"] .header-inner > .nav > a,
body.rtl .header-inner > .nav > a {
  text-align: right;
}

body.rtl .lang-menu,
[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

body.rtl .lang-option,
[dir="rtl"] .lang-option {
  text-align: right;
}

body.rtl .hero,
body.rtl .hero-shell,
body.rtl .hero-carousel,
body.rtl .hero-slide-inner,
body.rtl .hero-layout,
body.rtl .hero-media,
body.rtl .hero-copy,
body.rtl .hero-actions,
[dir="rtl"] .hero,
[dir="rtl"] .hero-shell,
[dir="rtl"] .hero-carousel,
[dir="rtl"] .hero-slide-inner,
[dir="rtl"] .hero-layout,
[dir="rtl"] .hero-media,
[dir="rtl"] .hero-copy,
[dir="rtl"] .hero-actions {
  direction: ltr;
}

body.rtl .hero-grid > .hero-copy,
[dir="rtl"] .hero-grid > .hero-copy {
  order: 2;
}

body.rtl .hero-grid > .hero-visual,
[dir="rtl"] .hero-grid > .hero-visual {
  order: 1;
}

body.rtl .hero.hero-preserve-layout .hero-grid > .hero-copy,
[dir="rtl"] .hero.hero-preserve-layout .hero-grid > .hero-copy {
  order: 1;
}

body.rtl .hero.hero-preserve-layout .hero-grid > .hero-visual,
[dir="rtl"] .hero.hero-preserve-layout .hero-grid > .hero-visual {
  order: 2;
}

body.rtl .overview-row,
[dir="rtl"] .overview-row {
  flex-direction: row-reverse;
}

body.rtl .overview-row.reverse,
[dir="rtl"] .overview-row.reverse {
  flex-direction: row;
}

body.rtl .download-step,
body.rtl .download-support-strip,
[dir="rtl"] .download-step,
[dir="rtl"] .download-support-strip {
  direction: rtl;
}

body.rtl .overview-meta .info-row,
body.rtl .license-meta,
body.rtl .payment-box-head,
body.rtl .summary-head,
body.rtl .download-actions,
body.rtl .hero-meta,
body.rtl .footer-brand,
body.rtl .footer-top,
body.rtl .footer-main,
body.rtl .footer-stack,
body.rtl .footer-contact-list,
body.rtl .footer-bottom,
body.rtl .cta-inner,
body.rtl .actions,
[dir="rtl"] .overview-meta .info-row,
[dir="rtl"] .license-meta,
[dir="rtl"] .payment-box-head,
[dir="rtl"] .summary-head,
[dir="rtl"] .download-actions,
[dir="rtl"] .hero-meta,
[dir="rtl"] .footer-brand,
[dir="rtl"] .footer-top,
[dir="rtl"] .footer-main,
[dir="rtl"] .footer-stack,
[dir="rtl"] .footer-contact-list,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .cta-inner,
[dir="rtl"] .actions {
  direction: rtl;
}

body.rtl .value-ltr,
[dir="rtl"] .value-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  text-align: left;
}

body.rtl .value-ltr-fixed,
[dir="rtl"] .value-ltr-fixed {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
  text-align: left;
}

body.rtl .plan-chip-top,
body.rtl .plan-top,
body.rtl .meta-item,
body.rtl .card,
body.rtl .testimonial,
body.rtl .faq details,
body.rtl .checkout-card,
body.rtl .summary-card,
body.rtl .legal-block,
[dir="rtl"] .plan-chip-top,
[dir="rtl"] .plan-top,
[dir="rtl"] .meta-item,
[dir="rtl"] .card,
[dir="rtl"] .testimonial,
[dir="rtl"] .faq details,
[dir="rtl"] .checkout-card,
[dir="rtl"] .summary-card,
[dir="rtl"] .legal-block {
  text-align: right;
}

body.rtl input,
body.rtl textarea,
body.rtl select,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

body.rtl .password-toggle,
[dir="rtl"] .password-toggle{
  inset-inline-end:auto;
  inset-inline-start:12px;
}

body.rtl .shot-cap,
body.rtl .muted.small,
body.rtl small,
[dir="rtl"] .shot-cap,
[dir="rtl"] .muted.small,
[dir="rtl"] small {
  text-align: right;
}

body.rtl .plan-list,
[dir="rtl"] .plan-list {
  padding-left: 0;
  padding-right: 16px;
}

@media (max-width: 900px) {
  .lang-switcher {
    width: 100%;
  }

  .lang-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .lang-menu {
    width: 100%;
    left: 0;
    right: 0;
  }
}


/* ===== Mobile nav drawer overrides ===== */
@media (max-width: 640px){
  html, body{
    overflow-x: hidden;
  }

  :root{
    --drawer-edge-gap: 0px;
  }

  .site-header{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11,15,20,.94);
  }

  .nav-toggle{
    display:block;
    z-index: 96;
  }

  .nav{
    position: absolute;
    top: 0;
    right: var(--drawer-edge-gap);
    left: auto;
    bottom: auto;
    height: auto;
    max-height: 100dvh;
    width: min(calc(100vw - var(--drawer-edge-gap)), 364px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 74px 14px 14px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
    border-radius: 24px 0 0 24px;
    border: 1px solid rgba(255,255,255,.10);
    border-right: 0;
    background:
      linear-gradient(180deg, rgba(11,17,25,.92) 0%, rgba(8,13,20,.97) 100%);
    box-shadow: 0 26px 60px rgba(0,0,0,.52);
    transform: translate3d(110%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .24s ease, opacity .18s ease, visibility 0s linear .24s;
    z-index: 95;
  }

  .nav::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:
      linear-gradient(180deg, rgba(4,7,12,.64) 0%, rgba(4,7,12,.90) 100%),
      radial-gradient(60% 60% at 50% 0%, rgba(0,213,150,.10) 0%, rgba(0,213,150,0) 100%),
      url("../assets/banners/menu_background.webp") center center / cover no-repeat;
    filter: brightness(.26) saturate(.76);
    opacity:.92;
    z-index:-2;
  }

  .nav::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:
      linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 24%),
      linear-gradient(180deg, rgba(10,14,21,.18) 0%, rgba(10,14,21,.58) 100%);
    z-index:-1;
  }

  .nav > *{
    position:relative;
    z-index:1;
  }

  .nav.open,
  .nav.closing{
    display:flex;
    visibility: visible;
  }

  .nav.open{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: transform .24s ease, opacity .18s ease;
    pointer-events: auto;
  }

  .nav.closing{
    opacity: 0;
    transform: translate3d(110%, 0, 0);
    transition: transform .24s ease, opacity .18s ease;
    pointer-events: none;
  }

  .nav a{
    width:100%;
    justify-content:flex-start;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
    text-align:left;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    color: rgba(231,238,246,.92);
  }

  .nav a:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.11);
  }

  .nav .nav-cta{
    margin-top: 6px;
    text-align:center;
    justify-content:center;
    min-height: 48px;
    border: 0;
    box-shadow: 0 10px 24px rgba(0,213,150,.16);
  }

  body.nav-drawer-open .site-header,
  body.nav-drawer-closing .site-header{
    z-index: 120;
  }

  body::before{
    content: "";
    position: fixed;
    inset: 0;
    background:
      radial-gradient(80% 70% at 50% 16%, rgba(0,213,150,.05) 0%, rgba(0,213,150,0) 100%),
      rgba(2,4,7,.92);
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility 0s linear .24s;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  body.nav-drawer-open::before{
    opacity: 1;
    visibility: visible;
    transition: opacity .24s ease;
  }

  body.nav-drawer-closing::before{
    opacity: 0;
    visibility: visible;
    transition: opacity .24s ease;
  }

  [dir="rtl"] .header-inner > .nav,
  html[dir="rtl"] .header-inner > .nav,
  body.rtl .header-inner > .nav,
  [dir="rtl"] .nav,
  html[dir="rtl"] .nav,
  body.rtl .nav{
    right: auto;
    left: var(--drawer-edge-gap);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: 0 26px 60px rgba(0,0,0,.52);
    text-align: right;
    transform: translate3d(-110%, 0, 0);
    border-radius: 0 24px 24px 0;
    border-right: 1px solid rgba(255,255,255,.10);
    border-left: 0;
  }

  [dir="rtl"] .header-inner > .nav.open,
  html[dir="rtl"] .header-inner > .nav.open,
  body.rtl .header-inner > .nav.open,
  [dir="rtl"] .nav.open,
  html[dir="rtl"] .nav.open,
  body.rtl .nav.open{
    left: var(--drawer-edge-gap);
    right: auto;
    transform: translate3d(0, 0, 0);
  }

  [dir="rtl"] .header-inner > .nav.closing,
  html[dir="rtl"] .header-inner > .nav.closing,
  body.rtl .header-inner > .nav.closing,
  [dir="rtl"] .nav.closing,
  html[dir="rtl"] .nav.closing,
  body.rtl .nav.closing{
    left: var(--drawer-edge-gap);
    right: auto;
    transform: translate3d(-110%, 0, 0);
  }

  [dir="rtl"] .nav a,
  [dir="rtl"] .nav .nav-cta,
  html[dir="rtl"] .nav a,
  html[dir="rtl"] .nav .nav-cta,
  body.rtl .nav a,
  body.rtl .nav .nav-cta{
    text-align: right;
    justify-content: flex-end;
  }

  .lang-trigger{
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.10);
  }

  .lang-switcher{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }

  .lang-menu{
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 6px;
    background: rgba(10,15,22,.78);
    border-color: rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  }

  .lang-option{
    border-radius: 12px;
  }

  /* Checkout page keeps a normal header nav on mobile (not the drawer) */
  .checkout-body .nav{
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    z-index: auto;
  }

  .checkout-body .nav::before,
  .checkout-body .nav::after{
    content: none;
  }

  .checkout-body .nav.open,
  .checkout-body .nav.closing{
    right: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
  }

  .checkout-body .nav a{
    width: auto;
    padding: 10px 12px;
  }

  [dir="rtl"] .checkout-body .nav,
  html[dir="rtl"] .checkout-body .nav,
  body.rtl .checkout-body .nav{
    flex-direction: row;
    text-align: initial;
    border-right: 0;
    box-shadow: none;
  }
}



/* Legal pages: skip homepage-style hero */
.legal-page main > .hero#home{
  display:none;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .section-surface::before,
  .scoreboard-banner-section img,
  .hero-slide,
  .hero-slide.active .hero-scene-bg,
  .hero-slide.active .hero-media,
  .hero-slide.active .hero-scene-foreground,
  .hero-slide.active .hero-copy{
    animation:none !important;
    transition:none !important;
    transform:none !important;
  }
}
