/* OMEGA SYNDICATE — 2026 landing · layout tokens (colors → omega-theme.css) */
:root {
  --r: 20px;
  --rs: 12px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Aurora background — vivid blue + green + gold */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, #0a2030 0%, var(--bg) 55%);
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
  animation: drift 18s var(--ease) infinite alternate;
}
.aurora::before {
  width: 65vw; height: 65vw; top: -22%; left: -12%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.45), transparent 68%);
  opacity: 0.7;
}
.aurora::after {
  width: 55vw; height: 55vw; bottom: -12%; right: -8%;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.4), transparent 68%);
  opacity: 0.65;
  animation-delay: -6s;
}
@keyframes drift {
  to { transform: translate(4%, 6%) scale(1.08); }
}
.noise {
  position: fixed; inset: 0; z-index: -1; opacity: 0.035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(4, 24, 40, 0.92); backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(3, 5, 8, 0.92); }
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: flex;
  align-items: center; gap: 10px;
}
.nav-logo span { font-size: 1.4rem; filter: drop-shadow(0 0 12px rgba(98,196,255,0.45)); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 22px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-ghost {
  padding: 10px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.nav-ghost:hover { border-color: var(--blue); background: var(--blue-dim); }
.menu-btn { display: none; color: var(--text); font-size: 1.4rem; padding: 8px; }

/* Hero */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; padding: calc(var(--nav-h) + 48px) clamp(20px, 5vw, 64px) 80px;
  max-width: 1400px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.hero-badge i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 12px var(--green); animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-highlight);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--muted); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.btn-primary {
  padding: 16px 32px; border-radius: var(--rs); font-weight: 700; font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-outline {
  padding: 16px 28px; border-radius: var(--rs); font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border); color: var(--text);
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(0, 200, 255, 0.5); background: var(--blue-dim); }
.hero-stats {
  display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
}
.hero-stat .val {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: var(--cyan);
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}
.hero-stat .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero animated banner (replaces terminal mockup) */
.hero-banner {
  position: relative;
  aspect-ratio: 4 / 3.2;
  min-height: 280px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(8, 22, 32, 0.95), rgba(6, 16, 12, 0.92));
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.hb-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 200, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(0, 232, 135, 0.16), transparent 50%);
  animation: hbMesh 8s ease-in-out infinite alternate;
}
@keyframes hbMesh {
  from { opacity: 0.75; transform: scale(1); }
  to { opacity: 1; transform: scale(1.06); }
}
.hb-grid-lines {
  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: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, #000 20%, transparent 75%);
  animation: hbGridDrift 12s linear infinite;
}
@keyframes hbGridDrift {
  from { background-position: 0 0; }
  to { background-position: 28px 28px; }
}
.hb-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.75), transparent);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.5);
  animation: hbScan 3.8s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes hbScan {
  0%, 100% { top: 8%; opacity: 0; }
  10% { opacity: 0.85; }
  90% { opacity: 0.85; }
  100% { top: 92%; opacity: 0; }
}
.hb-core {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}
.hb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, 0.35);
}
.hb-ring-a { animation: hbRing 3s ease-out infinite; }
.hb-ring-b { animation: hbRing 3s ease-out infinite 1s; border-color: rgba(255, 214, 51, 0.4); }
.hb-ring-c { animation: hbRing 3s ease-out infinite 2s; border-style: dashed; opacity: 0.6; }
@keyframes hbRing {
  0% { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}
.hb-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(0, 232, 135, 0.65);
  animation: pulse-dot 2s ease infinite;
}
.hb-marquee-wrap {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hb-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: hbMarquee 22s linear infinite;
  padding: 0 12px;
}
.hb-marquee span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
@keyframes hbMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hb-metrics {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 18px);
  padding: 0 16px;
}
.hb-metric {
  flex: 1;
  max-width: 110px;
  text-align: center;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0, 232, 135, 0.28);
  background: rgba(0, 232, 135, 0.08);
  backdrop-filter: blur(8px);
}
.hb-metric--cyan {
  border-color: rgba(0, 200, 255, 0.32);
  background: rgba(0, 200, 255, 0.1);
}
.hb-metric--gold {
  border-color: rgba(255, 214, 51, 0.32);
  background: rgba(255, 214, 51, 0.1);
}
.hb-m-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.hb-metric--cyan .hb-m-val { color: var(--cyan); }
.hb-metric--gold .hb-m-val { color: var(--gold); }
.hb-m-lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hb-foot {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px;
}
.hb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.hb-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}
.hb-pill--live {
  border-color: rgba(0, 232, 135, 0.4);
  color: var(--green);
}
.hb-pill--live i {
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 232, 135, 0.65);
  animation: pulse-dot 2s ease infinite;
}
.hero-banner.hb-pulse .hb-dot {
  transform: scale(1.35);
  box-shadow: 0 0 36px rgba(0, 232, 135, 0.9);
}
@media (prefers-reduced-motion: reduce) {
  .hb-mesh, .hb-grid-lines, .hb-scan, .hb-ring, .hb-marquee { animation: none !important; }
}

/* Hero stage — founder full bleed + floating terminal dock */
.hero-visual { position: relative; perspective: none; min-height: 560px; }
.hero-stage {
  position: relative;
  min-height: clamp(520px, 58vw, 680px);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.2);
  background: linear-gradient(155deg, rgba(8, 24, 36, 0.98), rgba(6, 18, 14, 0.96));
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(0, 232, 135, 0.06);
}
.hero-stage--immersive {
  display: block;
}
.hero-stage__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 35%, rgba(0, 200, 255, 0.24), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(0, 232, 135, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 95%, rgba(255, 214, 51, 0.12), transparent 55%);
  animation: hbMesh 8s ease-in-out infinite alternate;
}
.hero-stage__grid {
  position: absolute; inset: 0; opacity: 0.35;
  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: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, #000 15%, transparent 75%);
}
.hero-founder--full {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(8px, 1.5vw, 16px);
  padding-right: clamp(16px, 36%, 300px);
  pointer-events: none;
}
.hero-founder--full .hero-founder__label {
  pointer-events: auto;
}
.hero-founder {
  position: relative;
  width: 100%;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hero-founder--full::after {
  content: "";
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.65), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-founder__glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 70%;
  background:
    radial-gradient(ellipse 80% 65% at 50% 90%, rgba(0, 232, 135, 0.35), transparent 68%),
    radial-gradient(ellipse 65% 45% at 50% 95%, rgba(0, 200, 255, 0.18), transparent 72%);
  filter: blur(36px);
  pointer-events: none;
}
.hero-founder__figure {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 520px);
  min-height: unset;
  max-height: clamp(400px, 50vw, 580px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 28px 44px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 36px rgba(0, 232, 135, 0.1));
  mask-image: none;
  -webkit-mask-image: none;
}
.hero-founder__label {
  position: relative;
  z-index: 3;
  margin-top: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(6, 16, 24, 0.9);
  border: 1px solid rgba(0, 200, 255, 0.22);
  backdrop-filter: blur(10px);
  max-width: min(92%, 420px);
}
.hero-terminal-dock {
  position: absolute;
  right: clamp(10px, 2vw, 18px);
  top: clamp(12px, 2.5vw, 20px);
  bottom: auto;
  z-index: 6;
  width: min(300px, 40%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}
.hero-terminal-dock__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: auto;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s ease infinite;
}
.hero-terminal-dock__link {
  display: inline-flex;
  align-self: flex-end;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  background: rgba(4, 12, 18, 0.85);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.hero-terminal-dock__link:hover {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 200, 255, 0.1);
}
.terminal--dock {
  border: 1px solid rgba(0, 200, 255, 0.28);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(0, 232, 135, 0.08);
  backdrop-filter: blur(16px);
}
.term-body--dock {
  min-height: unset;
  padding: 12px 14px;
  font-size: 0.66rem;
  line-height: 1.55;
}
.term-body--dock .term-line:nth-child(n+6) { display: none; }
.term-line--plutus { margin-bottom: 2px; }
.term-line--plutus .plutus-equity-amt {
  font-size: clamp(0.82rem, 2.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  text-shadow: 0 0 12px rgba(0, 232, 135, 0.35);
}
.hero-founder__tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-founder__label p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
  font-style: italic;
}
.hero-stage__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  min-width: 0;
}
.hero-stage__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.hero-stage__foot--no-stats { justify-content: flex-end; }
.hero-proof-card--wide { flex: 1; min-width: 200px; max-width: 100%; }
.hero-kpi {
  flex: 1;
  min-width: 100px;
  padding: 12px 14px;
  border-radius: var(--rs);
  background: rgba(10, 13, 20, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.hero-kpi .fc-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-kpi .fc-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; margin-top: 4px; }
.terminal {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 14, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  width: 100%;
}
.term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.term-dot { width: 9px; height: 9px; border-radius: 50%; }
.term-dot.r { background: #ff5f57; }
.term-dot.y { background: #febc2e; }
.term-dot.g { background: #28c840; }
.hero-proof-card {
  flex: 0 0 92px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 232, 255, 0.35);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.hero-proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 245, 120, 0.5);
}
.hero-proof-card img {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  object-position: top;
  display: block;
}
.hero-proof-card span {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--cyan);
  padding: 5px 5px 7px;
  line-height: 1.2;
  text-align: center;
}

/* Legacy terminal helpers */
.term-title { margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted); }
.term-body { padding: 20px; font-family: var(--font-mono); font-size: 0.72rem; line-height: 1.65; min-height: 340px; }
.term-line { opacity: 0; animation: type-in 0.4s forwards; }
.term-line:nth-child(1) { animation-delay: 0.2s; }
.term-line:nth-child(2) { animation-delay: 0.5s; }
.term-line:nth-child(3) { animation-delay: 0.8s; }
.term-line:nth-child(4) { animation-delay: 1.1s; }
.term-line:nth-child(5) { animation-delay: 1.4s; }
.term-line:nth-child(6) { animation-delay: 1.7s; }
.term-line:nth-child(7) { animation-delay: 2s; }
@keyframes type-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.c-cyan { color: var(--cyan); }
.c-gold { color: var(--gold); }
.c-green { color: var(--green); }
.c-red { color: var(--red); }
.c-muted { color: var(--muted); }
.float-card {
  position: absolute; padding: 14px 18px; border-radius: var(--rs);
  background: rgba(10, 13, 20, 0.92); border: 1px solid var(--border);
  backdrop-filter: blur(12px); box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: float 5s ease-in-out infinite;
}
.float-card.a { bottom: -20px; left: -24px; animation-delay: 0s; }
.float-card.b { top: 40px; right: -20px; animation-delay: -2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card .fc-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.float-card .fc-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-top: 4px; }

/* Sections */
.section { padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 64px); max-width: none; width: 100%; margin: 0; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.hero h1 em {
  font-style: normal;
  background: var(--gradient-highlight);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.showcase-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; max-width: 720px;
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }

/* Bento grid */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.bento-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px); overflow: hidden; position: relative;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.bento-card:hover { border-color: rgba(232,184,74,0.25); transform: translateY(-4px); }
.bento-card.span4 { grid-column: span 4; }
.bento-card.span6 { grid-column: span 6; }
.bento-card.span8 { grid-column: span 8; }
.bento-card.span12 { grid-column: span 12; }
.bento-icon { font-size: 2rem; margin-bottom: 16px; }
.bento-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.bento-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  filter: blur(60px); opacity: 0.2; pointer-events: none;
}
.bento-card.wide-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  min-height: 280px;
}
.bento-visual {
  border-radius: var(--rs); overflow: hidden; aspect-ratio: 16/10;
  background: var(--bg3); border: 1px solid var(--border);
}
.bento-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

/* Bot fleet strip */
.fleet-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fleet-scroll::-webkit-scrollbar { display: none; }
.fleet-card {
  flex: 0 0 min(280px, 85vw); scroll-snap-align: start;
  padding: 24px; border-radius: var(--r); background: var(--glass);
  border: 1px solid var(--border); transition: border-color 0.3s;
}
.fleet-card:hover { border-color: rgba(0,232,255,0.3); }
.fleet-emoji { font-size: 2rem; margin-bottom: 12px; }
.fleet-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.fleet-card p { font-size: 0.85rem; color: var(--muted); }
.fleet-tag {
  display: inline-block; margin-top: 12px; padding: 4px 10px; border-radius: 6px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.fleet-tag.spot { background: rgba(0,245,144,0.12); color: var(--green); }
.fleet-tag.fut { background: rgba(232,184,74,0.15); color: var(--gold); }

/* Trust / transparency band */
.hero-badge--trust i { background: var(--green); box-shadow: 0 0 12px rgba(0,245,144,0.5); }

.trust-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,245,144,0.04) 0%, var(--bg) 40%, var(--bg) 100%);
  padding: clamp(48px, 8vw, 88px) 24px;
}
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.trust-head h2 em { color: var(--green); font-style: normal; }
.trust-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin-top: 16px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.trust-card {
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(10,15,28,0.6);
  transition: border-color 0.25s, transform 0.25s;
}
.trust-card:hover { border-color: rgba(0,232,255,0.35); transform: translateY(-2px); }
.trust-icon { font-size: 1.6rem; margin-bottom: 12px; }
.trust-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.trust-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.trust-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.trust-compare-col {
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.trust-compare-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-compare-bad { background: rgba(255,34,68,0.06); border-color: rgba(255,34,68,0.2); }
.trust-compare-bad h4 { color: var(--red, #ff2244); }
.trust-compare-good { background: rgba(0,245,144,0.06); border-color: rgba(0,245,144,0.25); }
.trust-compare-good h4 { color: var(--green); }
.trust-compare-col ul { list-style: none; padding: 0; margin: 0; }
.trust-compare-col li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-compare-col li:last-child { border-bottom: none; }
.trust-compare-bad li::before { content: "✕"; position: absolute; left: 0; color: #ff4466; font-weight: 700; }
.trust-compare-good li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.trust-proof {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.trust-proof-card {
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(0,232,255,0.25);
  background: var(--bg3);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.trust-proof-card:hover {
  border-color: rgba(232,184,74,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.trust-proof-card img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.trust-proof-cap {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-proof-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.trust-proof-cap strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--green); }
.trust-proof-cap span:last-child { font-size: 0.85rem; color: var(--muted); }
.trust-proof-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Video / demo band — kept for fallback if re-enabled */
.demo-band {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 72dvh, calc(100vw * 9 / 16));
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #030508;
}
.demo-band video,
.demo-band .demo-fallback,
.demo-band img.demo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.demo-video {
  filter: saturate(1.15) brightness(1.06) contrast(1.04);
}
.demo-fallback {
  background: linear-gradient(135deg, #0a1628 0%, #1a0a20 50%, #0a1628 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}
.demo-grid {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: linear-gradient(rgba(0,232,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,232,255,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-move 20s linear infinite;
  pointer-events: none;
}
@keyframes grid-move { to { background-position: 40px 40px; } }
.demo-band-hit {
  display: block; width: 100%; height: 100%; border: none; padding: 0; cursor: zoom-in;
  background: none;
}
.demo-band-hit img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.demo-cta-text {
  display: block; margin-top: 12px; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
}

/* Slider */
.slider-wrap { position: relative; margin-top: 32px; }
.slider {
  display: flex; gap: 20px; overflow: hidden; border-radius: var(--r);
}
.slide {
  flex: 0 0 100%; position: relative; border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden; aspect-ratio: 16/9;
  background: var(--bg3);
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(transparent, rgba(3,5,8,0.95));
}
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  transition: background 0.3s, transform 0.3s; cursor: pointer;
}
.slider-dot.on { background: var(--gold); transform: scale(1.3); }

/* Screenshot gallery */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.shot-card {
  grid-column: span 3;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.shot-card.wide { grid-column: span 4; }
.shot-card:hover {
  border-color: rgba(232, 245, 120, 0.3);
  transform: translateY(-4px);
}
.shot-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top center;
}
.shot-card.wide img { aspect-ratio: 9/19; }
.shot-card figcaption {
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.price-card {
  padding: 32px 28px; border-radius: var(--r); background: var(--glass);
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(232,184,74,0.45);
  background: linear-gradient(160deg, rgba(232,184,74,0.08), var(--glass));
  box-shadow: 0 24px 60px rgba(232,184,74,0.12);
}
.price-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.price-card.featured .price-tier { color: var(--gold); }
.price-amt { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; }
.price-amt small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.price-list li { font-size: 0.88rem; color: var(--muted); padding-left: 22px; position: relative; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-btn {
  padding: 14px; border-radius: var(--rs); font-weight: 700; text-align: center;
  border: 1px solid var(--border); transition: all 0.25s;
}
.price-btn.primary { background: var(--gradient-cta); color: #030508; border-color: transparent; }
.price-btn.primary:hover { box-shadow: 0 8px 28px rgba(232,184,74,0.35); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  border-radius: var(--rs); border: 1px solid var(--border); overflow: hidden;
  background: var(--glass);
}
.faq-q {
  width: 100%; padding: 20px 24px; text-align: left; font-weight: 600; font-size: 0.95rem;
  display: flex; justify-content: space-between; align-items: center; color: var(--text);
}
.faq-q span { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}
.faq-a-inner { padding: 0 24px 20px; }
.faq-item.open .faq-a { max-height: 900px; }

.section-glow {
  height: 1px; max-width: 720px; margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent, rgba(98,196,255,0.45), rgba(138,237,180,0.35), transparent);
  box-shadow: 0 0 24px rgba(98,196,255,0.15);
}
.faq-a-inner { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* CTA band */
.cta-band {
  margin: 80px clamp(20px, 5vw, 64px) 0; padding: clamp(48px, 8vw, 80px);
  border-radius: calc(var(--r) + 4px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(98,196,255,0.1), rgba(138,237,180,0.08));
  border: 1px solid rgba(98,196,255,0.22);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  padding: 48px clamp(20px, 5vw, 64px) 32px; border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px;
  max-width: 1280px; margin: 0 auto 40px;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 12px; max-width: 320px; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 10px; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--cyan); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted);
}

/* Hero floating orbs */
.hero { position: relative; overflow: hidden; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5;
  animation: heroOrb 14s var(--ease) infinite alternate;
}
.hero-orb--a { width: 280px; height: 280px; top: 8%; left: -5%; background: rgba(0, 200, 255, 0.48); }
.hero-orb--b { width: 220px; height: 220px; bottom: 10%; right: 5%; background: rgba(0, 232, 135, 0.42); animation-delay: -4s; }
.hero-orb--c { width: 160px; height: 160px; top: 40%; right: 30%; background: rgba(255, 214, 51, 0.28); animation-delay: -8s; }
@keyframes heroOrb {
  to { transform: translate(24px, -18px) scale(1.08); }
}
.hero-copy { animation: heroFloat 6s ease-in-out infinite alternate; }
@keyframes heroFloat { to { transform: translateY(-6px); } }
.nav-exe { border-color: rgba(0, 232, 135, 0.4) !important; color: var(--green) !important; }
.btn-exe { border-color: rgba(0, 232, 135, 0.45) !important; }
.btn-exe:hover { border-color: var(--green) !important; background: var(--green2) !important; }

/* EXE promo — main product block */
.exe-promo {
  position: relative;
  margin: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) 0;
  padding: clamp(36px, 6vw, 64px);
  border-radius: calc(var(--r) + 8px);
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.28);
  background: linear-gradient(145deg, rgba(8, 22, 32, 0.98), rgba(6, 18, 14, 0.95));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 232, 135, 0.1) inset;
}
.exe-promo__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0, 200, 255, 0.24), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(0, 232, 135, 0.18), transparent 50%);
  animation: hbMesh 10s ease-in-out infinite alternate;
}
.exe-promo__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 48px); align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.exe-promo h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.15; margin: 12px 0 16px;
}
.exe-promo h2 em { font-style: normal; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.exe-promo__lead { color: var(--muted); font-size: 1rem; line-height: 1.65; margin-bottom: 20px; max-width: 520px; }
.exe-promo__feats { list-style: none; display: grid; gap: 8px; margin-bottom: 28px; }
.exe-promo__feats li { font-size: 0.88rem; color: var(--text); font-family: var(--font-mono); }
.exe-promo__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.exe-promo__note { font-size: 0.75rem; color: var(--muted); max-width: 480px; }
.exe-promo__screen {
  position: relative; border-radius: var(--r); padding: 20px;
  background: rgba(3, 8, 14, 0.85); border: 1px solid rgba(0, 200, 255, 0.28);
  font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.7;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.exe-promo__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.exe-promo__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); opacity: 0.7; }
.exe-promo__bar span:nth-child(2) { background: var(--green); }
.exe-promo__bar span:nth-child(3) { background: var(--yellow); opacity: 0.5; }
.exe-promo__code .c-blue { color: var(--blue); }
.exe-promo__code .c-green { color: var(--green); }
.exe-promo__code .c-yellow { color: var(--yellow); }
.exe-promo__code .c-muted { color: var(--muted); font-size: 0.75rem; }
.exe-promo__pulse {
  position: absolute; bottom: 16px; right: 16px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 16px var(--green);
  animation: pulse-dot 2s ease infinite;
}
@media (max-width: 900px) {
  .exe-promo__inner { grid-template-columns: 1fr; text-align: center; }
  .exe-promo__lead, .exe-promo__note { margin-left: auto; margin-right: auto; }
  .exe-promo__actions { justify-content: center; }
  .exe-promo__visual { max-width: 360px; margin: 0 auto; }
}

/* Reveal animation — sections pop in, children stagger */
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-child {
  opacity: 0;
  transform: translateY(44px) scale(0.92);
  filter: blur(4px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.78s cubic-bezier(0.34, 1.22, 0.64, 1),
    filter 0.72s var(--ease),
    box-shadow 0.72s var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 0.09s + 0.14s);
}
.reveal.visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal.visible .trust-card.reveal-child,
.reveal.visible .bento-card.reveal-child,
.reveal.visible .price-card.reveal-child,
.reveal.visible .fleet-card.reveal-child,
.reveal.visible .trust-compare-col.reveal-child {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(0, 200, 255, 0.07);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero-copy { animation: none !important; }
}

/* Mobile */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-lead, .section-desc { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-visual { min-height: auto; }
  .hero-stage { min-height: clamp(480px, 100vw, 580px); }
  .hero-founder--full { padding-right: clamp(8px, 1.5vw, 16px); }
  .hero-founder__figure { max-height: clamp(360px, 72vw, 460px); max-width: min(100%, 400px); }
  .hero-terminal-dock {
    width: min(280px, 92%);
    right: 50%;
    top: auto;
    bottom: 8px;
    transform: translateX(50%);
  }
  .hero-founder__label { margin-bottom: clamp(118px, 28vw, 150px); }
  .hero-banner { min-height: 240px; aspect-ratio: auto; }
  .bento-card.span4, .bento-card.span6, .bento-card.span8 { grid-column: span 12; }
  .bento-card.wide-visual { grid-template-columns: 1fr; }
  .shot-card, .shot-card.wide { grid-column: span 6; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; padding: 24px;
    background: rgba(3,5,8,0.98); border-bottom: 1px solid var(--border);
  }
  .menu-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-compare { grid-template-columns: 1fr; }
  .trust-proof { grid-template-columns: 1fr; }
  .trust-proof-actions { align-items: stretch; }
  .trust-proof-actions .btn-primary,
  .trust-proof-actions .btn-outline { text-align: center; justify-content: center; }
  .demo-band {
    max-width: none;
    max-height: min(56vh, 56dvh, calc(100vw * 9 / 16));
  }
  .shot-card, .shot-card.wide { grid-column: span 12; }
}
