:root {
  --bg-0: #06080d;
  --bg-1: #0b1018;
  --bg-2: #111827;
  --panel: rgba(12, 18, 28, 0.56);
  --panel-strong: rgba(12, 18, 28, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text-0: #f7f6f1;
  --text-1: rgba(247, 246, 241, 0.88);
  --text-2: rgba(247, 246, 241, 0.64);
  --gold: #d4a23c;
  --gold-l: #f4d68a;
  --cyan: #6ed9ff;
  --violet: #b49cff;
  --green: #67d6a4;
  --danger: #ff8a8a;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 20px 64px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.48);
  --glass: blur(18px) saturate(145%);
  --glass-light: blur(10px) saturate(120%);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --maxw: 1240px;
  --f-display: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-smooth: cubic-bezier(.16, 1, .3, 1);
  --ease-float: cubic-bezier(.25, .8, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 162, 60, 0.11), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(110, 217, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(180, 156, 255, 0.06), transparent 28%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 35%, var(--bg-0) 100%);
  color: var(--text-1);
  font-family: var(--f-body);
  line-height: 1.65;
  letter-spacing: -0.01em;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

code,
pre,
.cmd {
  font-family: var(--f-mono);
}

::selection {
  background: rgba(212, 162, 60, 0.28);
  color: #fff;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.9;
  pointer-events: none;
}

.z1,
.doc-header,
.layout {
  position: relative;
  z-index: 1;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(212, 162, 60, 0.45);
}

.c-dot,
.c-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 95;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.c-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.c-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%);
}

.container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 124px 0;
}

.page-hero {
  padding: 140px 0 72px;
}

.divider {
  height: 1px;
  margin: 0 auto;
  width: min(calc(100% - 64px), var(--maxw));
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.divider-glow {
  box-shadow: 0 0 28px rgba(212, 162, 60, 0.14);
}

.skip,
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

.skip:focus,
.skip-link:focus {
  left: 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(6, 8, 13, 0.5);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar.scrolled {
  background: rgba(6, 8, 13, 0.7);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.topbar-inner,
.topbar__in {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 32px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo,
.footer-brand-logo,
.doc-logo,
.brand__logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #110f08;
  font-weight: 800;
  background: linear-gradient(135deg, #f7dfa7, var(--gold));
  box-shadow: 0 10px 24px rgba(212, 162, 60, 0.28);
}

.brand-name,
.footer-brand-name,
.brand__name,
.doc-h1,
.page-title,
.hero-title,
.h2,
.h3,
.sec-title,
.sec-h2,
.sec-h3,
.prod-title,
.cta-title,
.price-amt,
.stat-num {
  font-family: var(--f-display);
  letter-spacing: -0.045em;
}

.brand-name,
.brand__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-0);
}

.brand-pill,
.path-badge,
.doc-badge,
.hero-pill,
.price-note,
.prod-badge,
.badge,
.pb,
.nav-cta,
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text-1);
  backdrop-filter: var(--glass-light);
  -webkit-backdrop-filter: var(--glass-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.nav,
.footer-links,
.quick-links,
.mob-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.mob-nav a,
.footer-links a,
.quick-links a,
.toc-list a {
  color: var(--text-2);
  transition:
    color .45s var(--ease-out),
    transform .45s var(--ease-out),
    border-color .45s var(--ease-out),
    background-color .45s var(--ease-out);
}

.nav a:hover,
.mob-nav a:hover,
.footer-links a:hover,
.quick-links a:hover,
.toc-list a:hover {
  color: var(--text-0);
}

.nav a:hover,
.quick-links a:hover {
  transform: translateY(-1px);
}

.topbar-right,
.tb-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-sel,
.hamburger,
.btn-glass,
.btn-ghost,
.btn--ghost,
.btn--outline,
.btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: var(--glass-light);
  -webkit-backdrop-filter: var(--glass-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.lang-sel,
.hamburger {
  min-height: 40px;
  border-radius: 12px;
  padding: 0 12px;
}

.hamburger {
  display: none;
  min-width: 40px;
}

.mob-nav {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 32px 18px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  padding: 132px 0 96px;
}

.hero-grid,
.hero-glow-left,
.hero-glow-right {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 92%);
}

.hero-glow-left,
.hero-glow-right {
  width: 38vw;
  height: 38vw;
  filter: blur(60px);
  opacity: 0.26;
}

.hero-glow-left {
  left: -8vw;
  top: 4vh;
  background: radial-gradient(circle, rgba(212,162,60,0.8), transparent 62%);
}

.hero-glow-right {
  right: -10vw;
  top: 10vh;
  background: radial-gradient(circle, rgba(110,217,255,0.65), transparent 62%);
}

.hero-inner,
.about-grid,
.contact-grid,
.comp-grid,
.inc-grid,
.fin-grid,
.price-grid,
.prod-grid,
.dl-grid,
.path-grid,
.footer-grid,
.hero-actions,
.form-row2,
.ci-list,
.ethrion-grid,
.feat-grid,
.biz-grid,
.stack-chips,
.inc-nums,
.doc-badges,
.cta-btns,
.tl-tags,
.prod-tags,
.price-feats,
.path-items,
.c-law-list,
.ftree,
.ft-f,
.ft-s,
.footer-brand-legal,
.footer-legal,
.footer-brand,
.doc-badges {
  display: grid;
  gap: 24px;
}

.hero-inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 430px);
  align-items: center;
  gap: 72px;
}

.hero-pill {
  width: fit-content;
  padding: 8px 16px;
  margin-bottom: 28px;
}

.hero-pill-dot,
.marquee-dot,
.dot,
.tl-dot,
.c-dot-w {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero-pill-dot,
.dot--gold,
.db-g,
.note-g,
.sn-g,
.ib-g,
.fv-g,
.fv--g,
.pb-now {
  background: var(--gold);
}

.dot--cyan,
.db-c,
.note-c,
.sn-c,
.ib-c {
  background: var(--cyan);
}

.dot--violet,
.db-v,
.sn-v {
  background: var(--violet);
}

.dot--green,
.note-gr,
.sn-gr,
.ib-gr,
.pb-later {
  background: var(--green);
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(50px, 6vw, 92px);
  line-height: 0.94;
  font-weight: 700;
  color: var(--text-0);
  max-width: 11ch;
}

.hero-title-line1,
.hero-title-line2 {
  display: block;
}

.hero-title-line2 {
  color: color-mix(in srgb, var(--text-0) 86%, var(--gold) 14%);
}

.hero-sub,
.lead,
.sec-sub,
.doc-sub,
.about-body,
.prod-body,
.feat-body,
.c-desc,
.dl-desc,
.faq-a,
.tl-desc,
.cta-sub,
.inc-desc,
.prod-cite,
.price-per,
.fnote,
.note,
.c-note,
.footer-tagline,
.footer-law,
.ft-d,
.ft-n,
.ft-s,
.ft-f,
.ci-val-sm,
.ci-val--sm,
.hero-meta-item,
.snap-mod-desc {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.85;
}

.hero-sub,
.lead,
.sec-sub,
.doc-sub {
  font-size: 17px;
  max-width: 62ch;
}

.hero-meta,
.stats-strip,
.quick-links,
.c-dot-wrap,
.bar-item,
.bar-wrap,
.bar-track,
.bar-fill,
.hero-actions,
.snap-row,
.snap-mod,
.snap-mods,
.info-row,
.info-row__k,
.info-row__v,
.fin-row,
.fg,
.flab,
.tl-head,
.marquee-item,
.fin-head,
.bars-area,
.bars-wrap,
.bar-hd,
.brand__sub,
.footer-bottom,
.m-row,
.m-k,
.path-item,
.ethrion-dim,
.sec-hd,
.info-table-head,
.info-table__head,
.doc-header,
.tl-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta,
.hero-actions,
.stats-strip,
.snap-mods,
.quick-links,
.ci-list,
.tl-tags,
.prod-tags,
.price-feats,
.stack-chips,
.c-law-list,
.footer-links,
.footer-brand-legal,
.footer-legal,
.doc-badges,
.path-items,
.inc-nums {
  flex-wrap: wrap;
}

.hero-actions {
  margin: 34px 0 0;
}

.hero-langs,
.snap-card,
.feat-card,
.prod-card,
.price-card,
.dl-card,
.ci-card,
.form-wrap,
.faq-item,
.tl-content,
.tl-body,
.ethrion-card,
.info-table,
.matrix,
.c-card,
.c-law,
.biz-card,
.inc-card,
.inc-num-card,
.fin-card,
.stack-chip,
.path-card,
.comp-table,
.table-wrap,
.cta-banner,
.doc-header,
.toc,
.content,
.sec-block {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(10, 15, 24, 0.46);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}

.hero-langs,
.snap-card,
.feat-card,
.prod-card,
.price-card,
.dl-card,
.ci-card,
.form-wrap,
.faq-item,
.tl-content,
.tl-body,
.ethrion-card,
.info-table,
.matrix,
.c-card,
.c-law,
.biz-card,
.inc-card,
.inc-num-card,
.fin-card,
.stack-chip,
.path-card,
.btn,
.doc-badge,
.brand-pill,
.path-badge,
.lang-sel,
.hamburger,
.marquee-item,
.cta-banner,
.topbar,
.table-wrap,
.comp-table,
.toc,
.content,
.sec-block,
.footer,
.bar-track,
.bar-fill {
  transition:
    transform .72s var(--ease-smooth),
    opacity .72s var(--ease-smooth),
    filter .72s var(--ease-smooth),
    border-color .72s var(--ease-smooth),
    background-color .72s var(--ease-smooth),
    box-shadow .72s var(--ease-smooth);
}

.snap-card,
.cta-banner,
.doc-header {
  background:
    linear-gradient(145deg, rgba(212,162,60,0.1), rgba(110,217,255,0.03), rgba(255,255,255,0.03)),
    rgba(10, 15, 24, 0.56);
}

.snap-card {
  padding: 30px;
}

.snap-card-border {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,162,60,0.32), transparent 32%, rgba(110,217,255,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.snap-label,
.kicker,
.sec-kicker,
.price-tier,
.footer-col-title,
.toc-title,
.sec-num,
.info-k,
.info-row__k,
.info-row__v,
.fin-k,
.flabel,
.ci-label,
.tl-q,
.snap-mod-label,
.prod-detail-head,
.path-title,
.info-table-head,
.info-table__head,
.doc-badge,
.brand-pill,
.path-badge,
.hero-pill,
.sec-hd,
.m-k {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.snap-label,
.kicker,
.sec-kicker,
.price-tier,
.footer-col-title,
.toc-title,
.sec-num,
.info-k,
.info-row__k,
.fin-k,
.flabel,
.ci-label,
.tl-q,
.snap-mod-label,
.prod-detail-head,
.path-title,
.info-table-head,
.info-table__head,
.m-k {
  color: rgba(247,246,241,0.56);
}

.snap-row,
.snap-mod,
.info-row,
.fin-row,
.path-item,
.ethrion-dim,
.bar-item,
.ibox,
.c-card,
.prod-detail-item {
  justify-content: space-between;
}

.snap-divider,
.tl-line,
.bar-track,
.div,
.footer-bottom {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.snap-divider,
.footer-bottom {
  height: 1px;
}

.snap-v,
.snap-v-gold,
.info-v,
.info-v-gold,
.ci-val,
.price-amt,
.stat-num,
.inc-num,
.inc-big,
.fin-v,
.ethrion-dim-score {
  color: var(--text-0);
  font-weight: 700;
}

.snap-v-gold,
.info-v-gold,
.ci-val,
.stat-num,
.inc-num,
.inc-big,
.price-card--feat .price-amt,
.price-card-feat .price-amt {
  color: var(--gold-l);
}

.stats-strip {
  margin-top: 72px;
  gap: 16px;
}

.stat-block {
  flex: 1 1 180px;
  min-height: 120px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  backdrop-filter: var(--glass-light);
  -webkit-backdrop-filter: var(--glass-light);
}

.stat-lbl {
  display: block;
  margin-top: 10px;
  color: var(--text-2);
  font-size: 13px;
}

.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-item {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-1);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.sec-hd {
  display: block;
  margin-bottom: 64px;
}

.h2,
.sec-title,
.page-title,
.sec-h2,
.doc-h1 {
  margin: 0;
  color: var(--text-0);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  font-weight: 700;
}

.h3,
.sec-h3,
.cta-title,
.prod-title {
  margin: 0;
  color: var(--text-0);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.08;
  font-weight: 700;
}

.feat-grid,
.prod-grid,
.path-grid,
.price-grid,
.dl-grid,
.comp-grid,
.contact-grid,
.fin-grid,
.footer-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.feat-card,
.prod-card,
.price-card,
.dl-card,
.path-card,
.fin-card,
.c-card,
.c-law,
.biz-card,
.ci-card,
.form-wrap,
.inc-card,
.inc-num-card,
.ethrion-card,
.stack-chip,
.faq-item,
.tl-content,
.tl-body,
.info-table,
.matrix,
.comp-table,
.table-wrap {
  padding: 28px;
}

.feat-card,
.prod-card,
.dl-card,
.c-card,
.c-law,
.biz-card,
.path-card,
.fin-card,
.ethrion-card,
.inc-card,
.inc-num-card {
  overflow: hidden;
}

.feat-card:hover,
.prod-card:hover,
.price-card:hover,
.dl-card:hover,
.c-card:hover,
.c-law:hover,
.biz-card:hover,
.path-card:hover,
.fin-card:hover,
.ethrion-card:hover,
.stack-chip:hover,
.ci-card:hover,
.faq-item:hover,
.tl-content:hover,
.tl-body:hover,
.info-table:hover,
.matrix:hover,
.inc-card:hover,
.inc-num-card:hover,
.form-wrap:hover,
.comp-table:hover,
.table-wrap:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.08);
}

.feat-card { grid-column: span 4; }
.prod-card { grid-column: span 6; }
.price-card,
.dl-card,
.path-card,
.fin-card,
.c-card,
.c-law { grid-column: span 6; }
.form-wrap,
.matrix,
.table-wrap,
.comp-table,
.ci-list,
.info-table,
.inc-card { grid-column: span 6; }
.ci-card,
.biz-card,
.inc-num-card,
.stack-chip,
.ethrion-card,
.faq-item { grid-column: span 12; }

.feat-icon,
.dl-icon,
.ci-icon,
.ibox-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.fi-gold,
.ec-gold,
.kw .dot--gold,
.accent,
.td-dim,
.tq-dim {
  color: var(--gold-l);
}

.fi-cyan,
.ec-cyan { color: var(--cyan); }
.fi-violet,
.ec-violet { color: var(--violet); }
.fi-green,
.ec-green { color: var(--green); }

.feat-title,
.c-title,
.dl-title,
.path-title,
.tl-title,
.fin-head,
.ci-lbl,
.ci-val,
.price-tier,
.price-amt,
.doc-logo,
.ft-n,
.fv-g,
.ft-f,
.ft-s {
  color: var(--text-0);
}

.feat-title,
.c-title,
.dl-title,
.path-title,
.tl-title,
.ci-lbl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-grid,
.contact-grid,
.comp-grid,
.inc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.biz-grid,
.stack-chips,
.inc-nums {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.biz-card,
.stack-chip,
.inc-num-card {
  padding: 18px 20px;
}

.biz-code,
.tag,
.stack-chip,
.path-badge,
.pb,
.note,
.price-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-1);
  font-size: 12px;
}

.tag {
  color: var(--text-2);
}

.prod-detail-list,
.price-feats,
.c-list,
.path-list,
.c-law-list,
.ci-list,
.faq-list,
.ftree,
.toc-list,
.footer-links,
.doc-badges {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prod-detail-item,
.price-feat,
.path-item,
.c-law,
.ft-f,
.ft-s,
.ft-n,
.info-row,
.fin-row,
.matrix-row,
.m-row,
.bar-item {
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.prod-detail-item:last-child,
.price-feat:last-child,
.path-item:last-child,
.c-law:last-child,
.ft-f:last-child,
.ft-s:last-child,
.ft-n:last-child,
.info-row:last-child,
.fin-row:last-child,
.matrix-row:last-child,
.m-row:last-child,
.bar-item:last-child {
  border-bottom: 0;
}

.info-table,
.matrix,
.comp-table,
.table-wrap {
  display: block;
}

.info-table-head,
.info-table__head,
.matrix-head,
.bar-hd,
.tl-head {
  justify-content: space-between;
  margin-bottom: 12px;
}

.info-row__k,
.info-row__v,
.fin-k,
.fin-v,
.matrix-k,
.m-k {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 14px;
  font-weight: 500;
}

.info-row__k,
.fin-k,
.matrix-k,
.m-k {
  color: var(--text-2);
}

.info-row__v,
.fin-v {
  color: var(--text-0);
  font-weight: 600;
}

.price-grid { gap: 24px; }

.price-card {
  grid-column: span 6;
  min-height: 100%;
}

.price-card--feat,
.price-card-feat,
.path-card--rec,
.path-card-rec {
  border-color: rgba(212,162,60,0.26);
  box-shadow: 0 24px 74px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.price-amt {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
}

.price-per {
  margin-top: 8px;
  margin-bottom: 20px;
}

.btn,
.btn--gold,
.btn-gold,
.btn--ghost,
.btn-ghost,
.btn--outline,
.btn-outline,
.btn-glass,
.btn-sm,
.btn--sm,
.btn--ghost,
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1;
}

.btn-gold,
.btn--gold {
  color: #100d05;
  background: linear-gradient(135deg, #f7dfa7, var(--gold));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 38px rgba(212, 162, 60, 0.22);
}

.btn-glass,
.btn-ghost,
.btn--ghost,
.btn--outline,
.btn-outline {
  color: var(--text-0);
}

.btn-sm,
.btn--sm {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold:hover,
.btn--gold:hover {
  box-shadow: 0 22px 44px rgba(212, 162, 60, 0.3);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--text-0);
  font-weight: 600;
}

.faq-a {
  padding: 0 22px 22px;
}

.contact-grid {
  gap: 28px;
}

.form-wrap {
  padding: 30px;
}

.fg {
  display: block;
}

.flabel {
  display: block;
  margin-bottom: 10px;
}

.finput,
.fselect,
.ftextarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-0);
  outline: none;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .35s var(--ease-out);
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: rgba(212,162,60,0.42);
  box-shadow: 0 0 0 4px rgba(212,162,60,0.12);
  background: rgba(255,255,255,0.06);
}

.ftextarea {
  min-height: 150px;
  resize: vertical;
}

.form-row2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ci-list {
  display: grid;
  gap: 16px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  flex: 0 0 auto;
}

.ci-label,
.ci-lbl,
.ci-val,
.ci-val-sm,
.ci-val--sm {
  display: block;
}

.timeline {
  position: relative;
}

.tl-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(212,162,60,0.6), rgba(255,255,255,0.08));
}

.tl-items {
  display: grid;
  gap: 20px;
}

.tl-item {
  align-items: stretch;
  gap: 18px;
}

.tl-dot {
  margin-top: 16px;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04);
}

.tl-content,
.tl-body {
  flex: 1 1 auto;
}

.tl-tags,
.prod-tags {
  margin-top: 18px;
}

.fin-grid,
.bars-wrap {
  gap: 20px;
}

.fin-card {
  grid-column: span 6;
}

.fin-head {
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.bar-track {
  overflow: hidden;
  height: 10px;
  background: rgba(255,255,255,0.06);
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.doc-header {
  width: min(100%, 1180px);
  margin: 28px auto 0;
  padding: 28px;
}

.layout {
  width: min(100%, 1180px);
  margin: 20px auto 72px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 22px;
  height: fit-content;
}

.toc-list {
  display: grid;
  gap: 10px;
}

.toc-h2 {
  color: var(--text-1);
  font-weight: 600;
}

.toc-h3 {
  margin-left: 16px;
  color: var(--text-2);
  font-size: 14px;
}

.content {
  padding: 28px;
}

.sec-block {
  margin-bottom: 24px;
  padding: 28px;
}

.sec-block:last-child {
  margin-bottom: 0;
}

.accent {
  color: var(--gold-l);
  font-weight: 600;
}

.ftree {
  gap: 8px;
}

.ft-d {
  color: var(--text-2);
}

.ft-f,
.ft-s,
.ft-n {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer {
  padding: 80px 0 48px;
}

.footer-grid {
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 24px;
}

.footer-col-title {
  margin-bottom: 14px;
}

.footer-brand-legal,
.footer-legal,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  background: transparent;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-d1,
.reveal-d2,
.d1,
.d2,
.d3,
.d4,
.d5 {
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition:
    opacity .95s var(--ease-smooth),
    transform .95s var(--ease-smooth),
    filter .95s var(--ease-smooth);
}

.reveal,
.reveal-d1,
.reveal-d2,
.d1,
.d2,
.d3,
.d4,
.d5 {
  transform: translate3d(0, 42px, 0);
}

.reveal-left {
  transform: translate3d(-42px, 0, 0);
}

.reveal-right {
  transform: translate3d(42px, 0, 0);
}

.reveal-scale {
  transform: translate3d(0, 22px, 0) scale(.97);
}

.reveal.in,
.reveal-left.in,
.reveal-right.in,
.reveal-scale.in,
.reveal-d1.in,
.reveal-d2.in,
.d1.in,
.d2.in,
.d3.in,
.d4.in,
.d5.in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-d1,
.d1 { transition-delay: .10s; }
.reveal-d2,
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .26s; }
.d4 { transition-delay: .34s; }
.d5 { transition-delay: .42s; }

.mt8 { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mt44 { margin-top: 44px; }
.mt56 { margin-top: 56px; }
.g2 { gap: 8px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1120px) {
  .hero-inner,
  .layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .feat-card { grid-column: span 6; }
  .prod-card,
  .price-card,
  .dl-card,
  .path-card,
  .fin-card,
  .c-card,
  .c-law,
  .form-wrap,
  .matrix,
  .table-wrap,
  .comp-table,
  .info-table,
  .inc-card { grid-column: span 12; }

  .hero-title {
    max-width: 12ch;
  }
}

@media (max-width: 860px) {
  .container,
  .topbar-inner,
  .mob-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section { padding: 92px 0; }
  .page-hero { padding: 112px 0 56px; }
  .hero { padding: 114px 0 74px; }

  .nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }

  .about-grid,
  .contact-grid,
  .comp-grid,
  .inc-grid,
  .biz-grid,
  .stack-chips,
  .inc-nums,
  .form-row2 {
    grid-template-columns: 1fr;
  }

  .feat-grid,
  .prod-grid,
  .price-grid,
  .dl-grid,
  .comp-grid,
  .contact-grid,
  .fin-grid,
  .path-grid,
  .footer-grid {
    gap: 18px;
  }

  .feat-card,
  .prod-card,
  .price-card,
  .dl-card,
  .path-card,
  .fin-card,
  .c-card,
  .c-law,
  .form-wrap,
  .matrix,
  .table-wrap,
  .comp-table,
  .info-table,
  .inc-card {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .container,
  .topbar-inner,
  .mob-nav { padding-left: 16px; padding-right: 16px; }

  .hero-title,
  .page-title,
  .h2,
  .sec-title,
  .sec-h2,
  .doc-h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  .hero-sub,
  .lead,
  .sec-sub,
  .doc-sub,
  .about-body,
  .prod-body,
  .feat-body,
  .c-desc,
  .dl-desc,
  .faq-a,
  .tl-desc,
  .cta-sub,
  .inc-desc,
  .prod-cite,
  .price-per,
  .fnote,
  .note,
  .c-note,
  .footer-tagline,
  .footer-law,
  .ft-d,
  .ft-n,
  .ft-s,
  .ft-f,
  .ci-val-sm,
  .ci-val--sm,
  .hero-meta-item,
  .snap-mod-desc {
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-inner { gap: 32px; }
  .hero-actions { gap: 12px; }
  .stats-strip { margin-top: 40px; }

  .snap-card,
  .feat-card,
  .prod-card,
  .price-card,
  .dl-card,
  .ci-card,
  .form-wrap,
  .faq-item,
  .tl-content,
  .tl-body,
  .ethrion-card,
  .info-table,
  .matrix,
  .c-card,
  .c-law,
  .biz-card,
  .inc-card,
  .inc-num-card,
  .fin-card,
  .stack-chip,
  .path-card,
  .comp-table,
  .table-wrap,
  .cta-banner,
  .doc-header,
  .toc,
  .content,
  .sec-block {
    padding: 22px;
    border-radius: 20px;
  }

  .topbar-inner { min-height: 68px; }
  .brand-name,
  .brand-pill { display: none; }
  .lang-sel { max-width: 120px; }
  .quick-links { gap: 10px; }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-d1,
  .reveal-d2,
  .d1,
  .d2,
  .d3,
  .d4,
  .d5 {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .c-dot,
  .c-ring,
  #bg-canvas {
    display: none !important;
  }
}
