:root {
  color-scheme: light;
  --ink: #101319;
  --muted: #5f6673;
  --dim: #89909c;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f0f3f8;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --line: rgba(18, 24, 38, 0.11);
  --blue: #0a66ff;
  --blue-2: #15b8d6;
  --lime: #b9f35d;
  --violet: #6e59ff;
  --pink: #d65caa;
  --radius: 20px;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(30, 41, 59, 0.10);
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Geist", "Noto Sans", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans Thai", "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,248,251,0.96) 44%, #eef2f8 100%),
    linear-gradient(135deg, rgba(10,102,255,0.08), rgba(185,243,93,0.08));
  line-height: 1.55;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 19, 25, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 25, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}
body[dir="rtl"] {
  direction: rtl;
  text-align: right;
  font-family: "Noto Sans Arabic", "Geist", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg, canvas, iframe, pre, code { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
}
.nav {
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 700;
  font-size: 18px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #071018;
  background: linear-gradient(135deg, #9be7ff 0%, #d9ff82 100%);
  box-shadow: inset 0 0 0 1px rgba(16,19,25,0.08), 0 12px 30px rgba(10,102,255,0.15);
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.language-select {
  min-width: 136px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  box-shadow: 0 8px 24px rgba(30,41,59,0.06);
}

.button {
  min-height: 46px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(30,41,59,0.12);
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #0a66ff 0%, #12b7d7 100%);
  box-shadow: 0 18px 42px rgba(10,102,255,0.22);
}
.button.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.76);
  color: var(--ink);
}
.button.dark {
  color: #fff;
  background: #111827;
}
.button.full { width: 100%; }
.button.small { min-height: 38px; padding: 8px 13px; font-size: 13px; }

.hero {
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 98px) 24px clamp(42px, 6vw, 76px);
}
.hero-inner,
.section-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(10,102,255,0.14);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(10,102,255,0.06);
  color: #1454c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin: 16px 0 16px;
  font-size: clamp(46px, 7.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}
h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.gradient-text,
h1[data-i18n="heroTitle"] {
  background: linear-gradient(120deg, #0a0a0a 0%, #0a66ff 52%, #139c75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.72;
  font-weight: 400;
}
.section-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.glass,
.trust-item,
.panel,
.plan,
.faq-item,
.checkout-card,
.auth-card,
.stat,
.account-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.trust-item {
  padding: 18px;
  box-shadow: none;
  background: rgba(255,255,255,0.72);
}
.trust-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
.trust-item span,
.muted,
.panel p,
.faq-item p,
.stat span {
  color: var(--muted);
}

.terminal {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  background: #0b1020;
  color: #edf4ff;
  box-shadow: 0 28px 80px rgba(15,23,42,0.26);
}
.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dot { width: 11px; height: 11px; border-radius: 999px; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  font: 500 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.product-orbit { min-height: 520px; position: relative; display: grid; place-items: center; }
.orb-card {
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.orb-card .price { font-size: 64px; }
.signal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.mini-signal { border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: var(--surface-soft); }

.section {
  padding: clamp(54px, 7vw, 92px) 24px;
}
.section.soft {
  background: rgba(255,255,255,0.52);
  border-block: 1px solid rgba(18,24,38,0.06);
}
.section.dark {
  background: #101827;
  color: #fff;
}
.section.dark .stat {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: none;
}
.section.dark .stat span { color: rgba(255,255,255,0.72); }
.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stats,
.grid-3,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plans { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.stat,
.panel,
.faq-item {
  padding: 24px;
}
.panel,
.faq-item,
.stat {
  background: rgba(255,255,255,0.78);
  box-shadow: none;
}
.stat strong {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 1;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.models {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #273143;
  background: rgba(255,255,255,0.76);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
}
.compare th,
.compare td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: start;
}
.compare th {
  color: var(--muted);
  background: rgba(247,248,251,0.72);
}
.compare tr:last-child td { border-bottom: 0; }

.plan {
  position: relative;
  min-height: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.92);
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.2s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(10,102,255,0.13);
  border-color: rgba(10,102,255,0.22);
}
.plan.featured {
  border-color: rgba(10,102,255,0.3);
  box-shadow: 0 28px 72px rgba(10,102,255,0.18);
  background: linear-gradient(145deg, #fff 0%, rgba(10,102,255,0.03) 100%);
}
.plan.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(10,102,255,0.24);
}
.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(10,102,255,0.09);
  color: #0a66ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price {
  margin: 14px 0 6px;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}
.plan ul,
.check-list {
  padding: 0;
  margin: 14px 0 20px;
  list-style: none;
}
.plan li,
.check-list li {
  position: relative;
  margin: 8px 0;
  padding-inline-start: 20px;
  color: var(--muted);
  font-size: 13px;
}
.plan li::before,
.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.plan .button { margin-top: auto; }

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 28px;
  align-items: start;
}
.checkout-card,
.auth-card {
  padding: 28px;
  background: #fff;
}
.checkout-card.sticky {
  position: sticky;
  top: 92px;
}
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.order-row:last-child { border-bottom: 0; }
.order-row span { color: var(--muted); }
.wallet {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.wallet-address,
.auth-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
}
.auth-input:focus {
  border-color: rgba(10,102,255,0.52);
  box-shadow: 0 0 0 4px rgba(10,102,255,0.10);
  background: #fff;
}
.wallet-address {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}
.qr-box {
  min-height: 228px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(18,24,38,0.22);
  border-radius: 18px;
  background: #f8fafc;
  padding: 18px;
}
.qr-box img {
  width: min(188px, 100%);
  height: auto;
}
.notice {
  border: 1px solid rgba(10,102,255,0.18);
  border-radius: 16px;
  padding: 16px;
  background: rgba(10,102,255,0.06);
  color: #22304a;
}
.notice.compact { margin: 0 0 18px; }
.email-template {
  white-space: pre-wrap;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 18px;
  background: #0b1020;
  color: #edf4ff;
  overflow-x: auto;
  font: 500 13px/1.65 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.auth-shell {
  min-height: calc(100vh - 69px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 24px;
}
.auth-form {
  display: grid;
  gap: 14px;
}
.auth-label {
  display: grid;
  gap: 8px;
  color: #2d3442;
  font-weight: 700;
}
.auth-message {
  min-height: 24px;
  color: var(--muted);
}
.auth-message.success { color: #087f5b; }
.auth-message.error { color: #c24141; }
.reg-message { min-height: 24px; }

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}
.number-list {
  margin: 18px 0 0;
  padding-inline-start: 22px;
  color: var(--muted);
}
.number-list li { margin: 11px 0; }

body[data-account] {
  background:
    linear-gradient(180deg, #f7f8fb 0%, #eef2f8 100%),
    linear-gradient(135deg, rgba(10,102,255,0.06), transparent);
}
body[data-account] .section {
  padding-top: 42px;
}
body[data-account] .section-head h1 {
  font-size: clamp(34px, 5vw, 58px);
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.account-card {
  padding: 26px;
  background: #fff;
}
.account-card.wide { grid-column: 1 / -1; }
.account-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.account-topline h2 {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}
.status-pill {
  border: 1px solid rgba(8,127,91,0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: #087f5b;
  background: rgba(8,127,91,0.08);
  white-space: nowrap;
  font-weight: 760;
}
.account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #f8fafc;
}
.metric span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}
.metric strong {
  display: block;
  font-size: 22px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.footer {
  padding: 44px 24px;
  border-top: 1px solid rgba(18,24,38,0.08);
  color: var(--muted);
  background: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.fineprint {
  color: var(--muted);
  font-size: 13px;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 40px));
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 16px;
  padding: 13px 15px;
  background: #111827;
  color: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
[hidden] { display: none !important; }

body[dir="rtl"] .nav,
body[dir="rtl"] .nav-links,
body[dir="rtl"] .nav-actions,
body[dir="rtl"] .brand,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .inline-actions,
body[dir="rtl"] .account-topline,
body[dir="rtl"] .order-row {
  direction: rtl;
}
body[dir="rtl"] .terminal,
body[dir="rtl"] .email-template,
body[dir="rtl"] .wallet-address,
body[dir="rtl"] code,
body[dir="rtl"] pre {
  direction: ltr;
  text-align: left;
}

@media (max-width: 940px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    align-items: center;
    padding: 12px 20px;
  }
  .brand { order: 1; }
  .nav-actions {
    order: 2;
    width: auto;
    justify-self: end;
  }
  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .hero-grid,
  .checkout-layout,
  .auth-shell,
  .success-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }
  .trust-row,
  .stats,
  .grid-3,
  .grid-2,
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-layout,
  .auth-shell,
  .success-layout,
  .account-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .checkout-card.sticky { position: static; }
  .auth-card { max-width: none; }
  .account-card.wide { grid-column: auto; }
  .account-metrics { grid-template-columns: 1fr; }
  .product-orbit { min-height: auto; }
}

@media (max-width: 680px) {
  .trust-row,
  .stats,
  .grid-3,
  .grid-2,
  .plans {
    grid-template-columns: 1fr;
  }
  .auth-card { max-width: none; }
  .account-card.wide { grid-column: auto; }
  .account-metrics { grid-template-columns: 1fr; }
  .product-orbit { min-height: auto; }
}

@media (max-width: 700px) {
  body::before { background-size: 44px 44px; }
  .nav {
    padding-inline: 16px;
  }
  .nav-actions {
    max-width: min(48vw, 176px);
  }
  .nav-actions .button {
    display: none;
  }
  .language-select {
    width: 100%;
    min-width: 0;
    height: 42px;
  }
  .hero,
  .section,
  .auth-shell {
    padding-inline: 16px;
  }
  .hero {
    padding-top: 48px;
  }
  h1 {
    font-size: clamp(35px, 11vw, 48px);
    line-height: 1.04;
  }
  h2 {
    font-size: clamp(25px, 8vw, 36px);
    line-height: 1.08;
  }
  .hero-copy,
  .section-lead {
    font-size: 15px;
    line-height: 1.72;
  }
  .trust-row,
  .stats,
  .grid-3,
  .grid-2,
  .plans,
  .account-grid,
  .account-metrics {
    gap: 12px;
  }
  .trust-item,
  .panel,
  .plan,
  .faq-item,
  .checkout-card,
  .auth-card,
  .stat,
  .account-card {
    border-radius: 18px;
    padding: 20px;
  }
  .hero-actions,
  .inline-actions {
    width: 100%;
  }
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .order-row {
    align-items: flex-start;
  }
  .account-topline {
    display: grid;
  }
  .status-pill {
    width: fit-content;
  }
  .compare {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 430px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) minmax(122px, 42vw);
  }
  .brand {
    font-size: 17px;
  }
  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .nav-links {
    font-size: 13px;
    gap: 14px;
  }
  .hero,
  .section,
  .auth-shell {
    padding-inline: 14px;
  }
  h1 {
    font-size: clamp(32px, 10.8vw, 43px);
  }
  .eyebrow {
    font-size: 12px;
  }
  .button {
    min-height: 44px;
    padding: 11px 15px;
  }
  .terminal pre,
  .email-template {
    padding: 16px;
    font-size: 11px;
  }
  .wallet-address,
  .auth-input {
    min-height: 48px;
    padding: 12px;
  }
  .price {
    font-size: 38px;
  }
  .footer-inner {
    display: block;
  }
}

@media (max-width: 375px) {
  .hero,
  .section,
  .auth-shell {
    padding-inline: 12px;
  }
  h1 {
    font-size: 34px;
    line-height: 1.05;
  }
  .trust-item,
  .panel,
  .plan,
  .faq-item,
  .checkout-card,
  .auth-card,
  .stat,
  .account-card {
    padding: 18px;
  }
  .nav-links {
    gap: 12px;
  }
}

/* ─── Scroll reveal system ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--ri, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Hero glow orb */
.hero-inner { position: relative; z-index: 1; }
.hero-glow {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(10,102,255,0.13) 0%,
    rgba(19,156,117,0.07) 42%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 9s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(24px, -18px) scale(1.06); }
}

/* Page load animation for hero */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-inner > * {
  animation: hero-enter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.18s; }

/* Stat counter shimmer */
.stat strong {
  background: linear-gradient(90deg, var(--ink) 0%, #0a66ff 50%, var(--ink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section.dark .stat strong {
  background: linear-gradient(90deg, #fff 0%, #9be7ff 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
