/* AurexisLabs marketing — Binance-like type (IBM Plex Sans ≈ BinancePlex) */
:root {
  --bg: #070B12;
  --void: #0B101A;
  --card: rgba(11, 16, 26, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --text: #EAECEF;
  --muted: #848E9C;
  --muted-2: #B7BDC6;
  --gold: #00C9A7;
  --gold2: #2EF2C8;
  --gold-deep: #067A66;
  --blue: #5b9dff;
  /* Binance market tones */
  --green: #0ecb81;
  --green-soft: #0ecb81;
  --green-dim: rgba(14, 203, 129, 0.12);
  --green-glow: rgba(14, 203, 129, 0.28);
  --red: #f6465d;
  --red-soft: #f6465d;
  --red-dim: rgba(246, 70, 93, 0.12);
  --red-glow: rgba(246, 70, 93, 0.28);
  /* IBM Plex Sans ≈ BinancePlex — shared with app (styles.css) */
  --font: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Noto Sans SC", "Noto Sans JP", "Noto Sans Arabic", sans-serif;
  --display: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --nav-h: 56px;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fs-body: 14px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --lh-body: 1.5;
  --lh-tight: 1.25;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: 0;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" on;
  overflow-x: clip;
  -webkit-tap-highlight-color: rgba(46, 242, 200, 0.12);
  touch-action: manipulation;
}
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  inset: 0;
}
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; }
p { margin: 0; }

.bg-mesh {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(46, 242, 200, 0.14), transparent 55%),
    radial-gradient(700px 380px at 92% 8%, rgba(91, 157, 255, 0.08), transparent 50%),
    radial-gradient(600px 400px at 70% 100%, rgba(46, 230, 166, 0.05), transparent 55%);
}
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.18;
  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: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* —— Nav (Binance-like: 56px, tight links, clear actions) —— */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  min-height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(11, 14, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--nav-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 32px; height: 32px; border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(46,242,200,.22);
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #EAECEF;
  white-space: nowrap;
}
.brand-name span {
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #848E9C;
  opacity: 1;
}
.brand-sub {
  font-family: var(--font);
  font-size: 11px;
  color: var(--gold2);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
  margin-left: 8px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #EAECEF;
  letter-spacing: 0;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #F0B90B;
  background: transparent;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.site-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  cursor: pointer;
  height: 32px;
  padding: 0 6px 0 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.site-lang .lang-ico {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  user-select: none;
}
html { color-scheme: dark; }
html[lang="zh"] body { font-family: "IBM Plex Sans", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif; }
html[lang="ja"] body { font-family: "IBM Plex Sans", "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif; }
html[lang="ar"] body { font-family: "IBM Plex Sans", "Noto Sans Arabic", "Segoe UI", Tahoma, system-ui, sans-serif; }
.site-lang .lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent !important;
  border: 0;
  border-radius: 4px;
  color: #EAECEF !important;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 22px 4px 4px;
  max-width: 140px;
  min-width: 100px;
  cursor: pointer;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, #848E9C 50%),
    linear-gradient(135deg, #848E9C 50%, transparent 50%);
  background-position: calc(100% - 10px) calc(50% - 2px), calc(100% - 5px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.site-lang .lang-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 242, 200, 0.25);
}
.site-lang .lang-select option {
  background-color: #1e2329 !important;
  color: #EAECEF !important;
  font-weight: 500;
}
@media (max-width: 720px) {
  .site-lang .lang-select { max-width: 100px; font-size: 12px; padding: 4px 20px 4px 2px; }
  .brand-sub { display: none; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border: 1px solid transparent;
  line-height: 1.25;
  height: 36px;
  transition: filter 0.12s, background 0.12s, border-color 0.12s;
}
.btn:hover { transform: none; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: #EAECEF;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); }
.btn-primary {
  color: #0b0e11;
  background: linear-gradient(135deg, #2EF2C8, #00C9A7 55%, #00A88C);
  box-shadow: none;
  font-weight: 600;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: none; }
.btn-lg {
  padding: 12px 20px;
  font-size: 15px;
  height: auto;
  border-radius: 8px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #EAECEF;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
}

/* —— Layout —— */
.page { position: relative; z-index: 1; }
.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 80px 24px;
}
.section-sm { padding-top: 48px; padding-bottom: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
  line-height: 1.3;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--gold);
}
h1, h2, h3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #EAECEF;
}
.h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  max-width: 18ch;
  font-weight: 600;
}
.h1 .gold {
  background: linear-gradient(105deg, #E8FFFB, #2EF2C8 45%, #00C9A7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  line-height: var(--lh-tight);
  margin-bottom: 14px;
  max-width: 28ch;
}
.lead {
  color: var(--muted-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 54ch;
  margin: 18px 0 0;
  letter-spacing: 0;
}
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.meta-item .k {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 600;
}
.meta-item .v {
  margin-top: 5px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,242,200,.45), transparent);
}
.panel-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
}
.panel-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ecb81;
  box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.55);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(14, 203, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 203, 129, 0); }
}
.ticker { display: grid; gap: 8px; }
.tick {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: var(--fs-small);
  transition:
    background 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease;
}
.tick-loading {
  color: var(--muted);
  justify-content: center;
  text-align: center;
  grid-template-columns: 1fr;
}
.live-tick .tick-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.live-tick .tick-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.tick .sym {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.98rem;
  color: #fff;
}
.tick .mcap {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.tick .price {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.98rem;
  color: #eaecef; /* Binance primary text */
  letter-spacing: -0.02em;
  transition: color 0.15s ease, text-shadow 0.35s ease, background-color 0.35s ease;
  border-radius: 4px;
  padding: 1px 4px;
}
.tick .chg {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
}
/* Binance: #0ECB81 up / #F6465D down */
.chg-up { color: #0ecb81; }
.chg-down { color: #f6465d; }
.chg-flat { color: #848e9c; }

/* Row flash — soft green/red wash like Binance ticker board */
.flash-up {
  background: rgba(14, 203, 129, 0.14) !important;
  border-color: rgba(14, 203, 129, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(14, 203, 129, 0.12);
  animation: binanceFlashUp 0.85s ease-out;
}
.flash-down {
  background: rgba(246, 70, 93, 0.14) !important;
  border-color: rgba(246, 70, 93, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(246, 70, 93, 0.12);
  animation: binanceFlashDown 0.85s ease-out;
}
.flash-up .price {
  color: #0ecb81 !important;
  background: rgba(14, 203, 129, 0.16);
  text-shadow: 0 0 12px rgba(14, 203, 129, 0.35);
}
.flash-down .price {
  color: #f6465d !important;
  background: rgba(246, 70, 93, 0.16);
  text-shadow: 0 0 12px rgba(246, 70, 93, 0.35);
}
@keyframes binanceFlashUp {
  0% {
    background: rgba(14, 203, 129, 0.32);
    border-color: rgba(14, 203, 129, 0.65);
  }
  100% {
    background: rgba(14, 203, 129, 0.08);
    border-color: rgba(14, 203, 129, 0.2);
  }
}
@keyframes binanceFlashDown {
  0% {
    background: rgba(246, 70, 93, 0.32);
    border-color: rgba(246, 70, 93, 0.65);
  }
  100% {
    background: rgba(246, 70, 93, 0.08);
    border-color: rgba(246, 70, 93, 0.2);
  }
}
.vote-bar {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(46,242,200,0.06);
  border: 1px solid rgba(46,242,200,0.18);
}
.vote-bar strong { color: var(--gold2); font-weight: 600; }
.vote-bar p {
  margin: 8px 0 0;
  font-size: var(--fs-small);
  color: var(--muted-2);
  line-height: 1.6;
}
.live-foot p { font-size: 0.78rem; }

/* Quote */
.quote-band {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 24px 28px;
}
.quote {
  border-radius: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(46,242,200,0.1), rgba(12,16,28,0.6));
  border: 1px solid rgba(46,242,200,0.22);
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #e8ecf4;
}
.quote em { color: var(--gold2); font-style: normal; font-weight: 600; }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.card:hover {
  border-color: rgba(46,242,200,0.28);
  transform: translateY(-2px);
}
.card .ico {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(46,242,200,0.1);
  border: 1px solid rgba(46,242,200,0.2);
  color: var(--gold2);
  font-family: var(--mono);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.8rem;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--muted-2);
  line-height: 1.65;
  font-weight: 400;
}

/* Problem table */
.table-wrap {
  margin-top: 28px;
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
}
table.problems {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
  min-width: 520px;
}
table.problems th, table.problems td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
table.problems th {
  background: rgba(0,0,0,0.35);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}
table.problems tr:last-child td { border-bottom: 0; }
table.problems td:first-child {
  font-family: var(--display);
  font-weight: 650;
  color: #fff;
  width: 28%;
  letter-spacing: -0.01em;
}
table.problems td:last-child { color: var(--muted-2); }

/* Methods */
.methods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.method {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--line);
}
.method .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold2);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.method .t {
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.method .d {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.step-card h3 {
  font-size: 1.08rem;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.step-card ol {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted-2);
  font-size: var(--fs-small);
  line-height: 1.7;
}
.step-card ol li { margin-bottom: 4px; }
.step-card .promise {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
  color: #e2e8f0;
  line-height: 1.6;
  font-weight: 500;
}

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.plan {
  border-radius: 18px;
  padding: 24px 20px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: rgba(46,242,200,0.42);
  box-shadow: 0 0 0 1px rgba(46,242,200,0.1), 0 16px 40px rgba(46,242,200,0.08);
  background: linear-gradient(180deg, rgba(46,242,200,0.08), rgba(0,0,0,0.28));
}
.plan .badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  margin-bottom: 14px;
}
.plan.featured .badge {
  background: rgba(46,242,200,0.16);
  color: var(--gold2);
}
.plan h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.plan .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--gold2);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.plan .period {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}
.plan ul {
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
  flex: 1;
}
.plan li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: var(--fs-small);
  color: var(--muted-2);
  line-height: 1.5;
}
.plan li::before {
  content: "";
  position: absolute; left: 0; top: 0.9em;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
.plan .btn { width: 100%; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.why {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}
.why .k {
  font-size: 0.72rem;
  color: var(--gold2);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why .v {
  margin-top: 10px;
  font-size: var(--fs-small);
  color: #dbe2ef;
  line-height: 1.55;
  font-weight: 400;
}

/* CTA */
.cta-band {
  margin: 12px auto 0;
  width: min(var(--max), 100%);
  padding: 0 24px 88px;
}
.cta-inner {
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(46,242,200,0.16), transparent 60%),
    var(--card);
  border: 1px solid rgba(46,242,200,0.22);
}
.cta-inner h2 {
  margin: 0 auto 12px;
  max-width: none;
}
.cta-inner p {
  margin: 0 auto 24px;
  max-width: 46ch;
  color: var(--muted-2);
  line-height: 1.65;
  font-size: 1.05rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px 48px;
}
.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  align-items: flex-start;
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a {
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 500;
}
.footer-links a:hover { color: #fff; }
.disclaimer {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #f0a8a8;
  max-width: 72ch;
  font-weight: 400;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.nav-links.open {
  display: flex;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  flex-direction: column;
  background: rgba(11, 14, 17, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px 12px;
  gap: 2px;
  z-index: 60;
}
.nav-links.open a {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.nav-links.open a:hover {
  background: rgba(255,255,255,0.04);
  color: #F0B90B;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .plans, .methods, .why-grid { grid-template-columns: 1fr 1fr; }
  .methods { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .h1 { max-width: none; }
  .hero-cta .btn { min-height: 44px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    min-width: 40px;
    min-height: 40px;
  }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .grid-3, .grid-2, .plans, .steps, .methods, .why-grid { grid-template-columns: 1fr; }
  .section {
    padding: 48px max(16px, env(safe-area-inset-left, 0px)) 48px max(16px, env(safe-area-inset-right, 0px));
  }
  body { font-size: 15px; }
  .lead { font-size: 15px; line-height: 1.55; max-width: none; }
  .h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.2;
  }
  .h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); max-width: none; }
  .hero {
    padding-top: 36px;
    gap: 24px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 10px;
  }
  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .plan .btn,
  .cta .btn {
    width: 100%;
    min-height: 48px;
  }
  .ticker-panel,
  .card {
    max-width: 100%;
  }
  /* Touch-friendly tables / overflow panels */
  .table-scroll,
  .methods,
  .ticker {
    -webkit-overflow-scrolling: touch;
  }
  .footer {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    gap: 12px;
  }
  /* Lighter glass on mobile */
  .nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .brand-sub { display: none; }
}
@media (max-width: 380px) {
  .nav-actions .btn-primary {
    font-size: 12px;
    padding: 8px 10px;
  }
  .methods { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ========== Pro marketing: motion, showcase, product story ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.hero {
  position: relative;
}
.hero .h1 .gold {
  background: linear-gradient(120deg, var(--gold2), #7dffe8, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 6s ease infinite;
}
@keyframes gold-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.live-panel {
  animation: float-y 7s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.live-dot {
  animation: pulse-dot 1.6s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(14, 203, 129, 0); }
}

.card, .method, .plan, .why {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover, .method:hover, .plan:hover, .why:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 242, 200, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(46, 242, 200, 0.08);
}

/* Showcase gallery — Super Scan product shots */
.showcase {
  position: relative;
}
.showcase-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.showcase-head .lead { margin: 0; max-width: 52ch; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
.shot-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 16, 26, 0.9);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.shot-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}
.shot-card:hover img {
  transform: scale(1.03);
}
.shot-card .shot-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(transparent, rgba(5, 8, 14, 0.92) 40%);
  font-size: 13px;
  color: var(--muted-2);
}
.shot-card .shot-cap strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 4px;
}
.shot-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(46, 242, 200, 0.1);
  border: 1px solid rgba(46, 242, 200, 0.28);
  margin-bottom: 12px;
}
.shot-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 1.6s ease infinite;
}

/* Product story timeline */
.story {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  counter-reset: story;
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .story { grid-template-columns: 1fr; }
}
.story-step {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(46, 242, 200, 0.06), rgba(11, 16, 26, 0.9));
  min-height: 140px;
}
.story-step .num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.story-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}
.story-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Method ring animation for Super Scan section */
.methods .method {
  position: relative;
  overflow: hidden;
}
.methods .method::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 242, 200, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.methods .method:hover::after { opacity: 1; }

/* Hard-scan visual row */
.scan-visual {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin: 28px 0 8px;
  align-items: center;
}
@media (max-width: 900px) {
  .scan-visual { grid-template-columns: 1fr; }
}
.scan-visual .shot-card { margin: 0; }
.scan-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scan-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 16, 26, 0.75);
}
.scan-point .mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  color: #0b0e11;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
.scan-point strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.scan-point span { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }

/* Hero product ribbon */
.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hero-ribbon span {
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-2);
}
.hero-ribbon span em {
  font-style: normal;
  color: var(--gold2);
  font-weight: 600;
}

.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(46, 242, 200, 0.18), transparent 65%);
  animation: float-y 8s ease-in-out infinite;
  pointer-events: none;
}
