/* =========================================
   ARENAFLOW — Final
   Brand: orange #F26A1F · navy ink · cream
   ========================================= */
:root {
  --orange: #f26a1f;
  --orange-deep: #d8551a;
  --orange-soft: #ffe2d0;
  --orange-tint: #fff4ec;
  --ink: #0d1830;            /* deep navy */
  --ink-soft: #1c2945;
  --ink-line: #2a3859;
  --paper: #ffffff;
  --paper-soft: #f7f5f1;
  --paper-warm: #fbf6ee;
  --mute: #5b6680;
  --mute-soft: #8b95ac;
  --line: rgba(13,24,48,0.1);
  --line-soft: rgba(13,24,48,0.06);
  --green: #1aa874;          /* success */
  --yellow: #f6b800;          /* highlight */

  --ff-display: "Saira Condensed", "Saira", Impact, sans-serif;
  --ff-body: "Saira", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: "ss01";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; }

/* Tiny grain on cream sections */
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; font-size: 14px; font-weight: 600;
  border-radius: 999px; transition: all 0.22s ease;
  border: 1.5px solid transparent;
  white-space: nowrap; letter-spacing: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 6px 18px -6px rgba(242,106,31,0.5);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(242,106,31,0.6);
}
.btn-ink {
  background: var(--ink); color: white;
}
.btn-ink:hover { background: var(--orange); }
.btn-ghost {
  color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-ghost-light {
  color: white; border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: white; color: var(--ink); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--orange);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.light { color: var(--orange); }

/* ---------- Section common ---------- */
section { position: relative; }
.section { padding: 110px 0; }

.section-head {
  max-width: 760px; margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 16px 0 16px;
  color: var(--ink);
  text-transform: none;
}
.section-title em {
  font-style: normal; color: var(--orange);
}
.section-sub {
  font-size: 17px; color: var(--mute); line-height: 1.6;
  max-width: 620px;
  font-weight: 400;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ TOP NOTICE ============ */
.notice {
  background: var(--ink); color: white;
  padding: 9px 0; font-size: 12px;
  text-align: center;
  font-family: var(--ff-mono); letter-spacing: 0.05em;
  border-bottom: 2px solid var(--orange);
}
.notice strong { color: var(--orange); font-weight: 600; }
.notice .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange);
  margin: 0 10px; vertical-align: middle;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: var(--maxw); margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center;
  height: 44px;
}
.logo img {
  height: 90px; width: auto; display: block;
}
.nav-links {
  display: flex; gap: 30px; font-size: 14px; color: var(--ink);
  font-weight: 500;
}
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 980px){ .nav-links { display: none; } }

/* ============ HAMBURGER + MOBILE MENU ============ */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
  isolation: isolate;            /* new: forces own stacking context */
  flex-shrink: 0;
  transition: border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;         /* new: explicit Firefox */
  appearance: none;
  font: inherit;
  color: inherit;
  touch-action: manipulation;    /* new: removes 300ms tap delay on Firefox mobile */
}
.nav-hamburger:hover { border-color: var(--orange); }
.nav-hamburger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.nav-hamburger .bar {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
  left: 11px;
  pointer-events: none;
}
.nav-hamburger .bar:nth-child(1) { top: 13px; }
.nav-hamburger .bar:nth-child(2) { top: 20px; }
.nav-hamburger .bar:nth-child(3) { top: 27px; }
.nav-hamburger[aria-expanded="true"] .bar:nth-child(1) { top: 20px; transform: rotate(45deg); background: var(--orange); }
.nav-hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .bar:nth-child(3) { top: 20px; transform: rotate(-45deg); background: var(--orange); }

@media (max-width: 980px){
  .nav-hamburger { display: inline-flex !important; }      /* !important defeats overrides */
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 480px){
  .nav-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;                        /* explicit instead of `inset: 0` */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;                 /* bumped from 999 to 9999 to defeat any third-party widget */
  background: var(--ink);
  color: #fff;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;  /* new: prevent body scroll bleed-through on Firefox */
  will-change: transform;        /* new: hint for smooth animation on Firefox mobile */
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
  position: relative;            /* new: lock body scroll on Firefox mobile */
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-menu-head .logo {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu-head .logo::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}
.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-weight: 300;
  line-height: 1;
  padding: 0;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu-eyebrow {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 26px 22px 10px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
}
.mobile-menu-links a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 22px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
  transition: color 0.2s, padding 0.2s;
}
.mobile-menu-links a::after {
  content: "→";
  font-family: var(--ff-mono);
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--orange);
}
.mobile-menu-links a:hover::after,
.mobile-menu-links a:active::after {
  color: var(--orange);
  transform: translateX(4px);
}

.mobile-menu-cta {
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
}
.mobile-menu-cta .btn-ghost {
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  background: transparent;
}
.mobile-menu-cta .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu-foot {
  padding: 20px 22px 28px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-menu-foot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.mobile-menu-foot-row a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mobile-menu-foot-row a:hover { color: var(--orange); }
.mobile-menu-foot-row .lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 48px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 50px 0 80px;
  background:
    radial-gradient(ellipse 700px 500px at 90% 30%, rgba(242,106,31,0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(13,24,48,0.04), transparent 60%),
    var(--paper);
  overflow: hidden;
}

/* Soft infinity-flow decoration in bg */
.hero-flow {
  position: absolute; top: 10%; right: -100px;
  width: 600px; height: 600px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px){ .hero-grid { grid-template-columns: 1fr; gap: 50px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  font-size: 12px; color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge .sparkle {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

.hero-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.98; letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-title em {
  font-style: normal; color: var(--orange);
}
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.hero-sub {
  font-size: 19px; color: var(--mute); line-height: 1.55;
  max-width: 520px; margin-bottom: 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.hero-trust-line {
  margin-top: 26px;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--mute); letter-spacing: 0.04em;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero-trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust-line span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}

/* HERO VISUAL: phone + dashboard composition */
.hero-visual {
  position: relative;
  min-height: 580px;
}

/* Phone mockup */
.phone {
  position: absolute;
  top: 0; right: 30px;
  width: 280px; height: 560px;
  background: var(--ink);
  border-radius: 38px;
  padding: 11px;
  box-shadow:
    0 50px 100px -30px rgba(13,24,48,0.4),
    0 25px 50px -20px rgba(13,24,48,0.3),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transform: rotate(2deg);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: var(--ink);
  border-radius: 12px; z-index: 10;
}
.phone-status {
  padding: 40px 18px 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; color: var(--ink);
  font-weight: 500;
}
.phone-status .dots {
  display: flex; gap: 3px;
}
.phone-status .dots span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink);
}
.phone-content {
  padding: 8px 16px 16px; flex: 1; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.phone-brand-row {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}
.phone-brand-mini {
  width: 22px; height: 22px; flex-shrink: 0;
}
.phone-brand-label {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 14px; letter-spacing: -0.01em;
}
.phone-greeting h5 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 2px; color: var(--ink);
}
.phone-greeting p {
  font-size: 11px; color: var(--mute); margin: 0;
}
.phone-kpis {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.phone-kpi {
  background: var(--paper-soft);
  border-radius: 12px; padding: 12px 11px;
  border: 1px solid var(--line-soft);
}
.phone-kpi-label {
  font-size: 9px; color: var(--mute); text-transform: uppercase;
  letter-spacing: 0.06em; font-family: var(--ff-mono);
  margin-bottom: 4px;
}
.phone-kpi-val {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; color: var(--ink); letter-spacing: -0.01em;
  line-height: 1;
}
.phone-kpi-val.orange { color: var(--orange); }
.phone-kpi-delta { font-size: 9px; color: var(--green); margin-top: 4px; font-family: var(--ff-mono); }
.phone-section-title {
  font-size: 10px; color: var(--mute); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--ff-mono);
  display: flex; justify-content: space-between;
  margin-top: 2px;
}
.phone-session {
  background: var(--paper-soft); border-radius: 12px;
  padding: 10px 12px; border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 10px;
}
.phone-session-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; font-family: var(--ff-display);
  flex-shrink: 0;
}
.phone-session-icon.ink { background: var(--ink); }
.phone-session-icon.green { background: var(--green); }
.phone-session-body { flex: 1; min-width: 0; }
.phone-session-title {
  font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-session-meta { font-size: 10px; color: var(--mute); margin-top: 2px; }
.phone-session-count {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; color: var(--ink); letter-spacing: -0.01em;
}

/* Dashboard card */
.dash-card {
  position: absolute;
  left: 0; top: 90px;
  width: 320px;
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow:
    0 30px 60px -20px rgba(13,24,48,0.25),
    0 12px 24px -10px rgba(13,24,48,0.15);
  z-index: 1;
  border: 1px solid var(--line-soft);
  transform: rotate(-4deg);
}
.dash-card-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--mute); margin-bottom: 16px;
  font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: 0.08em;
}
.dash-card-top .live {
  color: var(--orange); display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.dash-card-top .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.5s infinite;
}
.dash-card-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 4px; line-height: 1;
}
.dash-card-sub {
  font-size: 12px; color: var(--mute); margin-bottom: 18px;
}
.chart {
  display: flex; gap: 5px; align-items: flex-end;
  height: 80px; padding-bottom: 16px;
  border-bottom: 1px dashed var(--line); margin-bottom: 14px;
  position: relative;
}
.chart-bar {
  flex: 1; background: var(--paper-warm);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.chart-bar.tall { background: var(--orange); }
.chart-bar[data-m]::after {
  content: attr(data-m);
  position: absolute; bottom: -14px; left: 0; right: 0;
  text-align: center; font-size: 8px; color: var(--mute);
  font-family: var(--ff-mono);
}
.dash-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.dash-metric-label {
  font-size: 9px; color: var(--mute); text-transform: uppercase;
  letter-spacing: 0.08em; font-family: var(--ff-mono);
  margin-bottom: 3px;
}
.dash-metric-val {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; color: var(--ink); letter-spacing: -0.01em; line-height: 1;
}

/* Floating notification */
.float-notif {
  position: absolute;
  right: 0; bottom: 30px;
  width: 240px;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -12px rgba(13,24,48,0.4);
  z-index: 3;
  transform: rotate(2deg);
  display: flex; align-items: center; gap: 12px;
}
.float-notif-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.float-notif-title { font-size: 12px; font-weight: 600; }
.float-notif-meta { font-size: 10px; color: rgba(255,255,255,0.6); font-family: var(--ff-mono); margin-top: 2px; }

@media (max-width: 1000px){
  .hero-visual { min-height: 620px; }
  .phone { right: 8%; }
  .dash-card { left: 6%; }
}
@media (max-width: 560px){
  .hero-visual { min-height: 540px; transform: scale(0.82); transform-origin: top center; margin: 0 auto; }
  .phone { right: 5%; }
}

/* ============ STAT BAR ============ */
.statbar {
  background: var(--ink);
  color: white;
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.statbar::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 300px at 50% 100%, rgba(242,106,31,0.18), transparent 70%);
  pointer-events: none;
}
.statbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; position: relative;
}
@media (max-width: 800px){ .statbar-inner { grid-template-columns: 1fr 1fr; gap: 40px 30px; } }
.statbar-cell {
  position: relative;
  border-left: 2px solid var(--orange);
  padding-left: 22px;
}
.statbar-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
  color: white;
}
.statbar-num .small { color: var(--orange); font-size: 32px; }
.statbar-lbl {
  font-family: var(--ff-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-top: 10px;
  font-weight: 600;
}
.statbar-sub {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

/* ============ COMPARE (without vs with) ============ */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 840px){ .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.compare-col.bad {
  background: #fff5f3;
  border-color: #ffd2c8;
}
.compare-col.good {
  background:
    linear-gradient(180deg, #fff6ec 0%, #fff9f3 100%);
  border-color: var(--orange-soft);
}
.compare-col h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.01em;
  margin: 0 0 24px;
  display: flex; align-items: center; gap: 12px;
}
.compare-col.bad h3 { color: #c34922; }
.compare-col.good h3 { color: var(--orange); }
.compare-col h3 svg { flex-shrink: 0; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  font-size: 15px; color: var(--ink);
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.45;
}
.compare-col li:first-child { border-top: none; }
.compare-col.bad li::before {
  content: "×"; color: #c34922; font-size: 22px; line-height: 1; flex-shrink: 0;
  font-weight: 700; margin-top: -2px;
}
.compare-col.good li::before {
  content: "✓"; color: var(--orange); font-size: 16px; line-height: 1; flex-shrink: 0;
  font-weight: 700; margin-top: 2px;
}

/* ============ FEATURES BENTO ============ */
.section.features-bg {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  grid-auto-rows: minmax(180px, auto);
}
@media (max-width: 900px){ .bento { grid-template-columns: repeat(2, 1fr); } }

.bento-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(13,24,48,0.15);
  border-color: var(--orange-soft);
}
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange);
  border: 1px solid var(--orange-soft);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.bento-icon svg { width: 20px; height: 20px; }

.bento-card h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 8px; line-height: 1.15;
  color: var(--ink);
}
.bento-card p {
  font-size: 14px; color: var(--mute); line-height: 1.55; margin: 0;
}

.bento-card .badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--ff-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: 999px;
  font-weight: 600;
}
.bento-card .badge.free {
  background: var(--green); color: white;
}
.bento-card .badge.addon {
  background: var(--orange); color: white;
}

.bento-card.big { grid-column: span 3; grid-row: span 2; }
.bento-card.tall { grid-column: span 3; grid-row: span 2; }
.bento-card.med { grid-column: span 3; }
.bento-card.small { grid-column: span 2; }

@media (max-width: 900px){
  .bento-card.big, .bento-card.tall, .bento-card.med, .bento-card.small {
    grid-column: span 2; grid-row: auto;
  }
}

/* Sport chips inside big card */
.sport-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px;
}
.chip {
  padding: 6px 12px; border-radius: 999px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-size: 12px; color: var(--ink);
  font-weight: 500;
  transition: all 0.2s;
}
.chip:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* White-label mock inside tall card */
.wl-mock {
  margin-top: 18px;
  display: flex; gap: 8px;
}
.wl-phone {
  flex: 1;
  background: var(--ink);
  border-radius: 14px;
  padding: 10px 8px;
}
.wl-phone-screen {
  background: white; border-radius: 8px; padding: 10px;
}
.wl-phone-head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.wl-logo { width: 16px; height: 16px; border-radius: 4px; }
.wl-logo.a { background: #4d7cff; }
.wl-logo.b { background: var(--green); }
.wl-name { font-size: 10px; font-weight: 700; color: var(--ink); }
.wl-tag { font-size: 8px; color: var(--mute); font-family: var(--ff-mono); }
.wl-bars { display: flex; flex-direction: column; gap: 3px; }
.wl-bars div { height: 3px; border-radius: 2px; background: var(--paper-warm); }
.wl-bars div:nth-child(1) { width: 80%; background: var(--ink); opacity: 0.3; }
.wl-bars div:nth-child(2) { width: 55%; }
.wl-bars div:nth-child(3) { width: 70%; }

/* Mini chart inside reports card */
.mini-chart {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: var(--paper-warm);
}
.mini-chart-head {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--mute); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.mini-chart-head .pos { color: var(--green); font-weight: 600; }
.mini-chart-bars { display: flex; gap: 5px; align-items: flex-end; height: 60px; }
.mini-chart-bars div {
  flex: 1; background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px 3px 0 0;
}
.mini-chart-bars div.peak {
  background: var(--orange); border-color: var(--orange);
}

/* ============ MOBILE APP DOWNLOAD ============ */
.app-download {
  background: var(--ink);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.app-download::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 50%, rgba(242,106,31,0.15), transparent 60%),
    radial-gradient(ellipse 500px 300px at 80% 80%, rgba(242,106,31,0.08), transparent 60%);
  pointer-events: none;
}
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
@media (max-width: 900px){ .app-grid { grid-template-columns: 1fr; } }
.app-info h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 16px 0 18px;
}
.app-info h2 em { font-style: normal; color: var(--orange); }
.app-info p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 32px; max-width: 480px;
}
.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: white;
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 12px;
  transition: all 0.2s;
  border: 2px solid white;
}
.store-btn:hover {
  background: transparent; color: white;
  transform: translateY(-2px);
}
.store-btn-icon {
  font-size: 28px;
}
.store-btn-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.store-btn-text small {
  font-size: 10px; opacity: 0.7;
  font-family: var(--ff-mono); letter-spacing: 0.08em; text-transform: uppercase;
}
.store-btn-text strong {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 18px;
}

.app-qr {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 380px;
  margin: 0 auto;
}
.app-qr h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.app-qr p {
  font-size: 13px; color: var(--mute); margin: 0 0 20px;
}
.qr-block {
  display: flex; gap: 18px; align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.qr-pattern {
  width: 110px; height: 110px; flex-shrink: 0;
  background: var(--ink);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
}
.qr-pattern div { background: white; }
.qr-pattern div.off { background: var(--ink); }
.qr-text strong {
  display: block;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; letter-spacing: -0.01em; margin-bottom: 4px;
}
.qr-text span {
  font-size: 12px; color: var(--mute); line-height: 1.45;
}

.wa-row {
  margin-top: 18px;
  display: flex; gap: 10px;
}
.wa-input {
  flex: 1;
  padding: 11px 14px;
  background: var(--paper-soft);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 14px; color: var(--ink);
  outline: none;
}
.wa-input:focus { border-color: var(--orange); }
.wa-btn {
  padding: 11px 20px;
  background: var(--ink); color: white;
  border-radius: 9px; font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.wa-btn:hover { background: var(--orange); }

/* ============ PERSONAS ============ */
.personas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 16px;
}
@media (max-width: 900px){ .personas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .personas { grid-template-columns: 1fr; } }
.persona {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.persona:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(13,24,48,0.12);
}
.persona-num {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 0.18em;
  font-weight: 600; margin-bottom: 12px;
}
.persona h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 8px; line-height: 1.15;
  color: var(--ink);
}
.persona p {
  font-size: 13.5px; color: var(--mute); margin: 0; line-height: 1.55;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: start;
}
@media (max-width: 900px){ .pricing-grid { grid-template-columns: 1fr; } }

.price-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(13,24,48,0.1);
}
.price-table-head {
  padding: 22px 26px;
  background: var(--ink);
  color: white;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.price-table-head h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; margin: 0;
}
.price-table-head .meta {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.price-tier {
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.2s;
}
.price-tier:hover { background: var(--paper-warm); }
.price-tier-students {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.price-tier-amount {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 24px; color: var(--ink); letter-spacing: -0.01em;
  line-height: 1;
}
.price-tier.popular {
  background: var(--orange-tint);
  border-left: 4px solid var(--orange);
  padding-left: 22px;
}
.price-tier.popular .price-tier-amount { color: var(--orange); }
.price-tier.popular .price-tier-students::after {
  content: "MOST POPULAR";
  display: inline-block;
  font-family: var(--ff-mono); font-size: 9px;
  background: var(--orange); color: white;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.1em; font-weight: 600;
  margin-left: 12px;
}

.price-extras {
  padding: 18px 26px;
  background: var(--paper-warm);
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--mute);
  border-top: 2px solid var(--orange);
}
.price-extras strong {
  color: var(--ink); font-weight: 600;
}

.price-side {
  display: flex; flex-direction: column; gap: 14px;
}
.side-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
}
.side-card.dark {
  background: var(--ink); color: white; border-color: var(--ink);
}
.side-card.dark h5 { color: white; }
.side-card.dark p { color: rgba(255,255,255,0.7); }
.side-card.dark .side-icon { background: var(--orange); color: white; border-color: var(--orange); }

.side-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  border: 1px solid var(--orange-soft);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  margin-bottom: 14px;
}
.side-card h5 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
  margin: 0 0 6px; color: var(--ink);
}
.side-card p {
  font-size: 13px; color: var(--mute); line-height: 1.55; margin: 0;
}

/* ============ ADD-ONS ============ */
.section.market {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.addons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 16px;
}
@media (max-width: 900px){ .addons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .addons { grid-template-columns: 1fr; } }

.addon {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.addon::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.addon:hover {
  border-color: var(--orange-soft);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(13,24,48,0.12);
}
.addon:hover::before { transform: scaleX(1); }
.addon-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  margin-bottom: 14px;
}
.addon-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: white;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.addon:hover .addon-icon { background: var(--orange); }
.addon-price {
  text-align: right;
}
.addon-price-val {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 24px; color: var(--orange); letter-spacing: -0.01em;
  line-height: 1;
}
.addon-price-per {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--mute); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 3px;
}
.addon h5 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 6px; color: var(--ink);
}
.addon p {
  font-size: 13.5px; color: var(--mute); margin: 0; line-height: 1.55;
}

/* ============ INTEGRATIONS ============ */
.integrations {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 30px;
}
@media (max-width: 900px){ .integrations { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .integrations { grid-template-columns: 1fr; } }
.integ {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
  text-align: center;
}
.integ:hover { border-color: var(--orange); transform: translateY(-3px); }
.integ-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.integ h6 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; letter-spacing: -0.005em;
  margin: 0 0 6px; color: var(--ink);
  text-transform: uppercase;
}
.integ p {
  font-size: 13px; color: var(--mute); margin: 0; line-height: 1.4;
}

/* ============ ACADEMY SIZES ============ */
.section.sizes-bg {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sizes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 16px;
}
@media (max-width: 900px){ .sizes { grid-template-columns: 1fr; } }

.size-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.size-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(13,24,48,0.15);
  border-color: var(--orange-soft);
}
.size-card.featured {
  background: var(--ink); color: white;
  border-color: var(--ink);
}
.size-card.featured h4 { color: white; }
.size-card.featured .size-num { color: var(--orange); }
.size-card.featured ul li { color: rgba(255,255,255,0.85); }
.size-card.featured ul li::before { color: var(--orange); }
.size-card.featured .size-foot { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

.size-num {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--orange); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
.size-card h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.01em;
  margin: 0 0 4px; color: var(--ink);
}
.size-card .size-range {
  font-size: 14px; color: var(--mute); margin-bottom: 20px;
  font-family: var(--ff-mono); letter-spacing: 0.05em;
}
.size-card.featured .size-range { color: rgba(255,255,255,0.6); }
.size-card ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.size-card ul li {
  font-size: 14px; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.size-card ul li::before {
  content: "✓"; color: var(--orange); font-weight: 700;
  flex-shrink: 0; font-size: 14px;
}
.size-foot {
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--mute);
  line-height: 1.5;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 16px;
}
@media (max-width: 900px){ .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 24px;
  transition: all 0.25s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(13,24,48,0.14);
  border-color: var(--orange-soft);
}
.t-badge {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; color: var(--orange);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.t-quote {
  font-family: var(--ff-body); font-weight: 400;
  font-size: 16px; color: var(--ink);
  line-height: 1.55; flex: 1; margin: 0;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px dashed var(--line);
}
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 18px;
}
.t-avatar.ink { background: var(--ink); }
.t-avatar.green { background: var(--green); }
.t-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 15px; color: var(--ink); letter-spacing: -0.005em;
  line-height: 1.2;
}
.t-meta {
  font-size: 12px; color: var(--mute);
  font-family: var(--ff-mono);
  margin-top: 3px;
}

/* ============ LOGO SLIDER ============ */
.logo-slider-section {
  padding: 60px 0 70px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.logo-slider-head {
  text-align: center;
  margin-bottom: 36px;
}
.logo-slider-head .eyebrow {
  justify-content: center;
}
.logo-slider-head h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 14px 0 10px;
  line-height: 1.15;
}
.logo-slider-head h3 em {
  font-style: normal;
  color: var(--orange);
}
.logo-slider-head p {
  font-size: 14px;
  color: var(--mute);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 45s linear infinite;
  gap: 18px;
  padding: 8px 0;
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

.logo-card {
  flex: 0 0 auto;
  width: 180px;
  height: 88px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  filter: grayscale(1) opacity(0.55);
  transition: all 0.3s ease;
}
.logo-card:hover {
  filter: grayscale(0) opacity(1);
  border-color: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(13,24,48,0.16);
}
.logo-card svg { flex: 0 0 auto; display: block; }
.logo-card .logo-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.logo-card .logo-text .sub {
  display: block;
  font-family: var(--ff-mono);
  font-size: 8.5px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-slider-foot {
  text-align: center;
  margin-top: 28px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.logo-slider-foot strong {
  color: var(--orange);
  font-weight: 700;
}

/* ============ BLOG ============ */
.blog {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 16px;
}
@media (max-width: 900px){ .blog { grid-template-columns: 1fr; } }
.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(13,24,48,0.15);
}
.blog-image {
  height: 180px;
  background: var(--paper-warm);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.blog-image.a { background: linear-gradient(135deg, #fff4ec, #ffe2d0); }
.blog-image.b { background: linear-gradient(135deg, #e8eef9, #d2dcf0); }
.blog-image.c { background: linear-gradient(135deg, #f0f9ee, #d4e8d0); }
.blog-image::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,24,48,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,24,48,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blog-image-icon {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 52px; color: var(--orange);
  position: relative; z-index: 2;
}
.blog-body {
  padding: 24px 24px 26px; flex: 1;
  display: flex; flex-direction: column;
}
.blog-meta {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--mute); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 10px; display: flex; gap: 12px;
}
.blog-meta .tag { color: var(--orange); font-weight: 600; }
.blog-card h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
  line-height: 1.25; margin: 0 0 10px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14px; color: var(--mute); line-height: 1.55;
  margin: 0 0 16px; flex: 1;
}
.blog-link {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--orange); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-link .arr { transition: transform 0.2s; }
.blog-card:hover .blog-link .arr { transform: translateX(3px); }

/* ============ FAQ ============ */
.faq {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item:hover { padding-left: 6px; }
.faq-q {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.005em;
  line-height: 1.25;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  color: var(--ink);
}
.faq-q em { color: var(--orange); font-style: normal; }
.faq-q .plus {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper-warm);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 400; font-size: 20px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item:hover .plus {
  background: var(--orange); border-color: var(--orange); color: white;
}
.faq-item.open .plus {
  background: var(--orange); border-color: var(--orange); color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 15px; color: var(--mute); line-height: 1.65;
  padding-right: 56px;
}
.faq-item.open .faq-a { max-height: 500px; margin-top: 16px; }

/* ============ CONTACT FORM ============ */
.section.contact-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start;
}
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 4.6vw, 52px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 16px 0 16px;
  color: var(--ink);
}
.contact-info h2 em { font-style: normal; color: var(--orange); }
.contact-info p {
  font-size: 16px; color: var(--mute); line-height: 1.6;
  margin-bottom: 30px;
}

.contact-channels {
  display: flex; flex-direction: column; gap: 12px;
}
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.channel:hover {
  border-color: var(--orange);
  transform: translateX(3px);
}
.channel-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-tint); color: var(--orange);
  border: 1px solid var(--orange-soft);
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 22px;
}
.channel:hover .channel-icon { background: var(--orange); color: white; border-color: var(--orange); }
.channel-body strong {
  display: block;
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--mute); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 3px;
  font-weight: 600;
}
.channel-body a, .channel-body span {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; color: var(--ink); letter-spacing: -0.005em;
}

/* Form */
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(13,24,48,0.15);
}
.form-head {
  background: var(--ink); color: white;
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  position: relative;
}
.form-head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.form-head h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; margin: 0; letter-spacing: -0.01em;
}
.form-head .tag {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 10px; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 5px; font-weight: 600;
  color: var(--orange);
  border-color: rgba(242,106,31,0.5);
}

.form-body {
  padding: 30px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 560px){ .form-body { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.form-label .num {
  font-family: var(--ff-display); font-size: 13px;
  color: var(--orange); letter-spacing: -0.01em; font-weight: 700;
}
.form-label .req { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  font-family: inherit;
  font-size: 15px; color: var(--ink);
  background: var(--paper-soft);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  font-weight: 500;
  transition: all 0.2s;
  outline: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--mute-soft); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(242,106,31,0.12);
}
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23f26a1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 100px; }

.form-foot {
  padding: 22px 28px;
  background: var(--paper-warm);
  border-top: 2px solid var(--orange);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.form-trust {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 8px;
}
.form-trust::before { content: "🔒"; }
.form-submit {
  font-family: var(--ff-body);
  font-weight: 600; font-size: 14px;
  background: var(--orange); color: white;
  padding: 13px 26px; border-radius: 999px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px -6px rgba(242,106,31,0.5);
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(242,106,31,0.6);
}

.form-success {
  display: none; padding: 60px 28px; text-align: center;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: white;
  display: grid; place-items: center;
  margin: 0 auto 18px; font-size: 30px;
}
.form-success h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 28px; color: var(--orange);
  letter-spacing: -0.01em; margin: 0 0 8px;
}
.form-success p {
  font-size: 15px; color: var(--mute); margin: 0;
}
.form-body.hide, .form-foot.hide { display: none; }

/* ============ DETAILED FEATURE ROWS (with visuals) ============ */
.feature-rows-section {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 900px){
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
}

.feature-chip-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.feature-chip {
  padding: 5px 12px;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid;
}
.feature-chip.core { background: rgba(26,168,116,0.08); border-color: var(--green); color: var(--green); }
.feature-chip.addon { background: var(--orange-tint); border-color: var(--orange); color: var(--orange); }

.feature-row h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 0 0 16px; color: var(--ink);
}
.feature-row h3 em { font-style: normal; color: var(--orange); }
.feature-row > div > p {
  font-size: 16px; color: var(--mute); line-height: 1.6;
  margin: 0 0 22px; max-width: 480px;
}

.feature-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fstat-v {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 32px; color: var(--orange);
  line-height: 1; letter-spacing: -0.01em;
}
.fstat-l {
  font-family: var(--ff-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mute); margin-top: 6px;
  font-weight: 600;
}

/* Product art container */
.product-art {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
}
.product-art.warm {
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--orange-tint) 100%);
  border: 1px solid var(--orange-soft);
}
.product-art.ink {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.product-art.green-gradient {
  background: linear-gradient(135deg, #e6f3eb 0%, #cce6d4 100%);
  border: 1px solid rgba(26,168,116,0.2);
}
.product-art.gold {
  background: linear-gradient(135deg, #fbf6ee 0%, #f6e0bb 100%);
  border: 1px solid #e8c47f;
}
.product-art::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.product-art.ink::before {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
}

/* ROSTER UI */
.roster {
  width: 100%; max-width: 340px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(13,24,48,0.25);
  position: relative; z-index: 2;
}
.roster-head {
  background: var(--ink); color: white;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.roster-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.005em;
}
.roster-sub {
  font-family: var(--ff-mono); font-size: 10px;
  color: rgba(255,255,255,0.6); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 2px;
}
.roster-count {
  background: var(--orange); color: white;
  padding: 5px 10px; border-radius: 4px;
  font-family: var(--ff-display); font-weight: 700; font-size: 16px;
  line-height: 1;
}
.roster-count .sep { opacity: 0.6; margin: 0 1px; }
.roster-list { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.roster-player {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border-radius: 8px;
  background: var(--paper-soft);
  border-left: 3px solid transparent;
}
.roster-player.in { border-left-color: var(--green); }
.roster-player.late { border-left-color: var(--yellow); background: #fff9eb; }
.roster-player.out { border-left-color: #c34922; opacity: 0.55; }
.roster-jersey {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 15px;
  border-radius: 7px;
}
.roster-jersey.ink { background: var(--ink); }
.roster-jersey.green { background: var(--green); }
.roster-jersey.gold { background: var(--yellow); color: var(--ink); }
.roster-player-body { flex: 1; min-width: 0; }
.roster-name {
  font-family: var(--ff-body); font-weight: 600;
  font-size: 13px; color: var(--ink); line-height: 1.2;
}
.roster-meta {
  font-family: var(--ff-mono); font-size: 9px;
  color: var(--mute); letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 3px;
}
.roster-status {
  font-family: var(--ff-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.roster-status.ok { color: var(--green); }
.roster-status.late { color: #b88800; }
.roster-status.out { color: #c34922; }

/* RFID ART */
.rfid-stage { position: relative; width: 100%; max-width: 360px; aspect-ratio: 0.95; }
.rfid-gate {
  position: absolute; top: 8%; right: 0;
  width: 46%; aspect-ratio: 0.78;
  background: white;
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 1;
  box-shadow: 0 24px 48px -16px rgba(13,24,48,0.4);
}
.rfid-gate-top {
  display: flex; justify-content: space-between; align-items: center;
}
.rfid-gate-label {
  font-family: var(--ff-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mute); font-weight: 600;
}
.rfid-gate-led {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.2s infinite;
}
.rfid-waves {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  margin: auto 0;
}
.rfid-waves div {
  border: 2px solid var(--orange);
  border-bottom-color: transparent; border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.rfid-waves div:nth-child(1) { width: 50px; height: 50px; opacity: 0.4; }
.rfid-waves div:nth-child(2) { width: 36px; height: 36px; opacity: 0.7; margin-top: -40px; }
.rfid-waves div:nth-child(3) { width: 22px; height: 22px; opacity: 1; margin-top: -28px; }

.rfid-gate-foot {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; color: var(--ink);
  letter-spacing: -0.005em;
}
.rfid-gate-id {
  font-family: var(--ff-mono); font-size: 9px;
  color: var(--mute); letter-spacing: 0.08em;
  margin-top: 2px;
}

.rfid-card {
  position: absolute;
  bottom: 10%; left: 0;
  width: 70%; aspect-ratio: 1.58;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-radius: 12px;
  padding: 16px;
  transform: rotate(-6deg);
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(242,106,31,0.5);
  display: flex; flex-direction: column; justify-content: space-between;
}
.rfid-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.rfid-card-brand {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 16px; color: white; letter-spacing: -0.005em;
}
.rfid-card-brand-sub {
  font-family: var(--ff-mono); font-size: 8px;
  color: rgba(255,255,255,0.75); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 2px;
  font-weight: 600;
}
.rfid-chip {
  width: 32px; height: 22px;
  background: linear-gradient(135deg, #f4d78e, #c89849);
  border-radius: 3px;
  position: relative;
}
.rfid-chip::before, .rfid-chip::after {
  content: ""; position: absolute; background: rgba(0,0,0,0.35);
}
.rfid-chip::before { top: 4px; left: 3px; right: 3px; height: 1px; }
.rfid-chip::after { top: 50%; left: 3px; right: 3px; height: 1px; }
.rfid-card-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 15px; color: white; letter-spacing: -0.005em;
}
.rfid-card-id {
  font-family: var(--ff-mono); font-size: 9px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.12em;
  margin-top: 2px;
}
.rfid-trail {
  position: absolute;
  left: 42%; top: 38%;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 18px; color: var(--orange);
  transform: rotate(-5deg);
  letter-spacing: -0.005em;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

/* WHATSAPP UI */
.wa-wrap {
  width: 100%; max-width: 290px;
  background: #e5dfd4;
  border-radius: 18px;
  padding: 14px 12px;
  box-shadow: 0 24px 50px -18px rgba(13,24,48,0.3);
}
.wa-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 12px;
}
.wa-av-img {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: white;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 14px;
}
.wa-name {
  font-family: var(--ff-body); font-weight: 700;
  font-size: 12px; color: #111b21; line-height: 1.2;
}
.wa-status {
  font-family: var(--ff-mono); font-size: 9px;
  color: #25d366; letter-spacing: 0.05em; font-weight: 600;
}
.wa-body { display: flex; flex-direction: column; gap: 6px; }
.wa-msg {
  background: white;
  padding: 8px 11px;
  border-radius: 8px 8px 8px 2px;
  font-size: 11.5px; color: #111b21; line-height: 1.42;
  max-width: 86%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.wa-msg.out {
  background: #d9fdd3;
  margin-left: auto;
  border-radius: 8px 8px 2px 8px;
}
.wa-msg strong { font-weight: 700; color: var(--orange); }
.wa-msg .wa-link { color: #027eb5; text-decoration: underline; }
.wa-time {
  font-family: var(--ff-mono); font-size: 8px;
  color: #667781; text-align: right; margin-top: 3px;
}
.wa-bot {
  margin-top: 10px; text-align: center;
  font-family: var(--ff-mono); font-size: 8px;
  color: var(--green); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
}

/* BRACKET */
.bracket-stage { width: 100%; max-width: 410px; }
.bracket-header {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; color: var(--ink);
  text-align: center; margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.bracket-sub {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--mute); letter-spacing: 0.12em;
  text-transform: uppercase; text-align: center;
  margin-bottom: 18px; font-weight: 600;
}
.bracket-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; align-items: center;
}
.bracket-col { display: flex; flex-direction: column; gap: 10px; }
.bracket-match {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--ff-mono); font-size: 10px;
}
.bracket-match.live {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 20px -6px rgba(242,106,31,0.4);
}
.bracket-slot {
  padding: 7px 10px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.bracket-slot:last-child { border-bottom: none; }
.bracket-slot.w { background: rgba(26,168,116,0.1); font-weight: 700; }
.bracket-slot.l { opacity: 0.55; }
.bracket-slot .sc { font-weight: 700; }
.bracket-slot.live-slot { color: var(--orange); font-weight: 700; }
.bracket-champ {
  padding: 18px 14px;
  background: linear-gradient(135deg, #f4d78e, #c89849);
  color: var(--ink);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 30px -10px rgba(200,152,73,0.5);
}
.bracket-champ-label {
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 6px; font-weight: 700;
}
.bracket-champ-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 28px; line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.bracket-champ-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 14px; letter-spacing: -0.005em;
}

/* ============ COMPARE TABLE ============ */
.cmp-wrap {
  margin-top: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(13,24,48,0.1);
}
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp-table thead th {
  padding: 18px 22px;
  text-align: left;
  background: var(--paper-warm);
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  border-bottom: 2px solid var(--line);
}
.cmp-table thead th.af {
  background: var(--orange); color: white;
  position: relative;
}
.cmp-table thead th.af::after {
  content: "★"; position: absolute;
  top: 10px; right: 14px;
  color: white; font-size: 12px;
}
.cmp-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody td:first-child {
  font-weight: 600; font-size: 14px;
}
.cmp-table .col-af {
  background: var(--orange-tint);
  color: var(--orange); font-weight: 700;
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cmp-table .yes { color: var(--green); font-weight: 700; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.06em; }
.cmp-table .no { color: #c34922; opacity: 0.7; font-family: var(--ff-mono); }
.cmp-table .meh { color: var(--mute); font-family: var(--ff-mono); font-size: 12.5px; }
.cmp-table tbody tr:hover td:not(.col-af) { background: var(--paper-warm); }

@media (max-width: 720px){
  .cmp-wrap { overflow-x: auto; }
  .cmp-table { min-width: 640px; }
}

/* ============ TRANSFER / MIGRATION ============ */
.transfer {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.transfer-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
@media (max-width: 900px){ .transfer-inner { grid-template-columns: 1fr; } }
.transfer h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 16px 0 18px; color: var(--ink);
}
.transfer h2 em { font-style: normal; color: var(--orange); }
.transfer > div > p {
  font-size: 16px; color: var(--mute);
  line-height: 1.6; margin-bottom: 28px; max-width: 480px;
}
.transfer-steps {
  display: flex; flex-direction: column; gap: 12px;
}
.transfer-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.transfer-step:hover {
  transform: translateX(4px);
  border-left-color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(13,24,48,0.15);
}
.transfer-step-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 30px; color: var(--orange);
  line-height: 1; flex-shrink: 0; width: 38px;
  letter-spacing: -0.01em;
}
.transfer-step-body strong {
  display: block;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 17px; color: var(--ink);
  letter-spacing: -0.005em; margin-bottom: 3px;
}
.transfer-step-body span {
  font-size: 13.5px; color: var(--mute); line-height: 1.5;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 140px 0 130px;
  background:
    radial-gradient(ellipse at top, rgba(242,106,31,0.2), transparent 60%),
    var(--ink);
  color: white;
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--orange);
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.final-cta-inner { position: relative; }
.final-cta .eyebrow { color: var(--orange); justify-content: center; }
.final-cta .eyebrow::before { background: var(--orange); }
.final-cta h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.98; letter-spacing: -0.015em;
  margin: 18px 0 18px; color: white;
}
.final-cta h2 em { font-style: normal; color: var(--orange); }
.final-cta p {
  font-size: 19px; color: rgba(255,255,255,0.75);
  max-width: 580px; margin: 0 auto 36px;
  line-height: 1.55;
}
.final-cta .hero-cta-row { justify-content: center; }

/* ============ FOOTER ============ */
footer {
  padding: 70px 0 30px;
  background: #060c1e;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 840px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
.footer-about { max-width: 340px; }
.footer-about .logo img { filter: brightness(0) invert(1); height: 85px; }
.footer-about p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin: 18px 0 18px;
}
.footer-newsletter {
  display: flex; gap: 8px; max-width: 320px;
}
.footer-newsletter input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;
  font-size: 13px; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--orange); }
.footer-newsletter button {
  padding: 10px 16px;
  background: var(--orange); color: white;
  border-radius: 8px; font-size: 13px;
  font-weight: 600;
}
.footer-newsletter button:hover { background: var(--orange-deep); }
.footer-col h6 {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  font-family: var(--ff-mono); letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 14px;
}

/* WhatsApp floating */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366; color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5);
  z-index: 90;
  transition: all 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(37,211,102,0.6);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* custom css */
.error{
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.text-danger {
  color: #ff3b3b;
  font-weight: 500;
}

.form-control{
    height: 50px;
}

textarea.form-control{
    height: auto;
}

#submitBtn{
    min-width: 180px;
}