:root {
  --bg:#f0f2f5;
  --paper:#f8f9fb;
  --cream:#f0f2f5;
  --panel:#ffffff;
  --panel-soft:#eef3f6;
  --panel-tint:#e8eef3;
  --line:#e2e5ea;
  --line-strong:#b8c2cd;
  --text:#111827;
  --muted:#6b7280;
  --brand:#0f2444;
  --brand-mid:#1e3a5f;
  --brand-dark:#071526;
  --brand-soft:#e8edf5;
  --accent:#b8882a;
  --success:#0d7a4e;
  --danger:#c0392b;
  --signal-neu:#2563a8;
  --shadow:0 18px 36px rgba(10,23,36,0.12);
}

* { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior:smooth;
}

body {
  font-family:'Source Sans 3',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(15,36,68,0.12), transparent 26%),
    linear-gradient(180deg, rgba(15,36,68,0.1), transparent 240px),
    var(--bg);
  min-height:100vh;
}

a {
  color:inherit;
}

.app-shell {
  width:min(1500px, calc(100% - 32px));
  margin:0 auto;
  padding:24px 0 36px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.page-shell {
  width:min(1320px, calc(100% - 32px));
  margin:0 auto;
  padding:24px 0 88px;
}

.topbar {
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-end;
  padding:clamp(1.5rem,3vw,2.5rem) clamp(1.2rem,3vw,3rem);
  color:#f8f9fb;
  background:linear-gradient(135deg,#071526 0%, #0d2340 56%, #163758 100%);
  border:1px solid rgba(15,36,68,0.12);
  border-bottom:3px solid var(--accent);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  flex-wrap:wrap;
}

.topbar.topbar-light {
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
  padding:14px 18px;
  border-radius:24px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(14px);
  border:1px solid rgba(22,63,99,0.08);
  box-shadow:0 12px 40px rgba(16,28,24,0.06);
  flex-wrap:nowrap;
  gap:18px;
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex:0 0 auto;
}

.brand-mark {
  width:44px;
  height:44px;
  border-radius:15px;
  display:grid;
  place-items:center;
  color:#f8fbfa;
  background:linear-gradient(135deg, #0b1f3a, #163758);
  box-shadow:0 16px 32px rgba(7,21,38,0.22);
  font-weight:800;
  letter-spacing:0.08em;
}

.brand-copy span,
.eyebrow,
.section-tag,
.metric-label,
.pricing-topline {
  text-transform:uppercase;
  letter-spacing:0.16em;
  font-size:0.76rem;
  font-weight:800;
}

.brand-copy span,
.eyebrow,
.section-tag,
.nav-links a {
  color:var(--muted);
}

.brand-copy strong {
  display:block;
  font-size:1rem;
  letter-spacing:-0.02em;
  color:var(--brand-dark);
}

.nav-links {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
  white-space:nowrap;
  flex:0 0 auto;
}

.nav-links a {
  text-decoration:none;
  font-size:0.86rem;
  font-weight:700;
}

.nav-soon {
  display:inline-flex;
  align-items:center;
  padding:0.58rem 0.9rem;
  border-radius:999px;
  background:linear-gradient(135deg, #d43b3b, #931f1f);
  color:#ffffff;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.04em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 12px 24px rgba(147,31,31,0.22);
}

.nav-login {
  padding:0.58rem 0.9rem;
  border-radius:999px;
  border:1px solid rgba(11,31,58,0.16);
  background:linear-gradient(135deg, rgba(11,31,58,0.08), rgba(22,55,88,0.12));
  color:var(--brand-dark);
}

.nav-login.is-disabled,
.hero-actions .btn.is-disabled,
.cta-actions .btn.is-disabled {
  pointer-events:none;
  cursor:not-allowed;
  opacity:0.72;
}

.hero-actions .btn.is-disabled {
  background:linear-gradient(135deg, #8797a8, #647589) !important;
  color:#f7fbff !important;
  border-color:rgba(255,255,255,0.24) !important;
  box-shadow:none !important;
  filter:saturate(0.55);
}

.cta-actions .btn.is-disabled {
  background:linear-gradient(135deg, #8797a8, #647589) !important;
  color:#f7fbff !important;
  border-color:rgba(255,255,255,0.24) !important;
  box-shadow:none !important;
  filter:saturate(0.55);
}

.nav-login.is-disabled {
  background:linear-gradient(135deg, #c9d4e0, #b7c7d8);
  border-color:rgba(11,31,58,0.18);
  color:#5a6f86;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color:var(--brand);
}

.topbar::before {
  content:none;
  position:absolute;
  right:-0.5rem;
  top:50%;
  transform:translateY(-50%);
  font-family:'DM Serif Display',serif;
  font-size:clamp(5rem,10vw,8.2rem);
  color:rgba(255,255,255,0.08);
  letter-spacing:0.08em;
  pointer-events:none;
}

.header-left,
.header-right {
  position:relative;
  z-index:1;
}

.header-left {
  display:flex;
  flex-direction:column;
  gap:0.48rem;
  min-width:0;
}

.brand-pill {
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  color:#f4f8f5;
  text-decoration:none;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.04em;
}

.brand-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(184,136,42,0.18);
}

.suite-line {
  display:none;
}

h1 {
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.5rem, 4.4vw, 4rem);
  line-height:0.95;
  font-weight:400;
  letter-spacing:-0.03em;
  color:#ffffff;
  text-transform:uppercase;
}

.title-accent {
  color:#9AAFC3;
}

.subtitle {
  display:flex;
  flex-wrap:wrap;
  gap:0.45rem;
  align-items:center;
  line-height:1.25;
  color:#ffffff;
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.02em;
  max-width:66ch;
}

.subtitle span {
  display:inline-flex;
  align-items:center;
}

.subtitle span:not(:last-child)::after {
  content:'|';
  color:rgba(255,255,255,0.75);
  margin-left:0.45rem;
}

.hero-kicker {
  color:rgba(248,249,251,0.72);
  font-size:0.95rem;
  line-height:1.5;
  font-weight:600;
}

.hero-kicker-stack {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.hero-kicker-secondary {
  display:inline-flex;
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  border:1px solid rgba(184,136,42,0.30);
  color:#091f33;
  font-size:0.9rem;
  line-height:1.1;
  font-weight:800;
  letter-spacing:0.06em;
  white-space:nowrap;
}

.hero-lead {
  max-width:none;
  color:var(--muted);
  line-height:1.8;
}

.purchase-notice {
  margin-top:0;
  width:100%;
  max-width:none;
  color:var(--muted);
  font-size:0.66rem;
  line-height:0.84;
  letter-spacing:-0.015em;
}

.header-right {
  min-width:320px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:0.6rem;
}

.summary-stat {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:0.22rem;
}

.summary-stat span {
  font-size:0.68rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(248,249,251,0.58);
  font-weight:800;
}

.summary-stat strong {
  font-size:0.9rem;
  font-weight:700;
  color:#ffffff;
  line-height:1.25;
  text-align:right;
}

.toolbar {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0.55rem 0.95rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  font-family:'Source Sans 3',sans-serif;
  font-weight:700;
  font-size:0.78rem;
  letter-spacing:0.03em;
  text-decoration:none;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform:translateY(-1px);
}

.btn-primary {
  background:#ffffff;
  color:var(--brand-dark);
  border-color:#ffffff;
  box-shadow:0 8px 18px rgba(9,31,51,0.12);
}

.btn-secondary {
  background:rgba(255,255,255,0.08);
  color:#ffffff;
}

.btn-ghost {
  background:transparent;
  color:var(--brand-dark);
  border-color:rgba(22,63,99,0.16);
}

main {
  display:grid;
  grid-template-columns:320px 1fr;
  gap:18px;
  align-items:start;
  min-width:0;
}

aside {
  display:flex;
  flex-direction:column;
  gap:18px;
  min-width:0;
}

.panel {
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(236,241,245,0.98));
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.panel-head {
  padding:16px 18px;
  background:linear-gradient(180deg, rgba(215,226,235,1), rgba(236,242,247,1));
  border-bottom:1px solid var(--line);
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.04em;
  color:var(--brand-dark);
  line-height:1.25;
}

.panel-body {
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.panel-body p {
  color:var(--muted);
  line-height:1.6;
}

.link-list {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.link-list a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  background:var(--panel-soft);
  border:1px solid rgba(22,63,99,0.1);
  text-decoration:none;
  font-weight:700;
  color:var(--brand-dark);
}

.link-list a:hover,
.link-list a:focus-visible {
  background:#ffffff;
}

.content {
  min-width:0;
}

.hero,
.card-grid,
.auth-grid,
.dashboard-grid {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
}

.hero {
  padding:clamp(1.4rem, 2.5vw, 2rem);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 22%),
    linear-gradient(135deg, #0B1F3A 0%, #0B1F3A 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  box-shadow:0 30px 92px rgba(2,10,18,0.34);
  color:#f8f9fb;
}

.hero-copy {
  display:flex;
  flex-direction:column;
  gap:14px;
  height:100%;
  padding:24px;
  transform:none;
}

.eyebrow {
  display:inline-flex;
  width:fit-content;
  align-items:center;
  gap:8px;
  padding:3px 7px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  color:#d8e6f5;
  font-size:0.46rem;
  font-weight:800;
  letter-spacing:0.05em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:clip;
}

.hero h2 {
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.3rem, 4vw, 3.55rem);
  line-height:0.98;
  letter-spacing:-0.03em;
  color:#ffffff;
}

.hero h1 {
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.5rem, 4.4vw, 4rem);
  line-height:0.95;
  font-weight:400;
  letter-spacing:-0.03em;
  color:#ffffff;
  text-transform:none;
}

.hero-line {
  display:block;
}

.hero p,
.copy {
  color:rgba(248,249,251,0.82);
  line-height:1.7;
  font-size:1.02rem;
}

.hero-actions {
  display:flex;
  flex-wrap:nowrap;
  gap:12px;
  margin-top:6px;
  align-items:stretch;
}

.hero-actions .btn {
  min-width:0;
  flex:1 1 0;
  min-height:56px;
  padding:0.95rem 1.5rem;
  border-radius:18px;
  font-size:1.1rem;
  letter-spacing:0.04em;
  box-shadow:0 18px 34px rgba(7,21,38,0.22);
  white-space:nowrap;
}

.hero-actions .btn-dark {
  background:#0B1F3A;
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.84);
  box-shadow:0 18px 34px rgba(7,21,38,0.22);
}

.hero-actions .btn-light {
  background:linear-gradient(135deg, #ffffff, #edf4fb);
  color:#091f33;
  border:1px solid rgba(255,255,255,0.55);
}

.hero-actions .btn:hover,
.hero-actions .btn:focus-visible {
  transform:translateY(-2px);
  box-shadow:0 22px 40px rgba(7,21,38,0.28);
}

.hero-proof {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-bottom:24px;
}

.hero-purchase-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin:4px 0 24px;
}

.hero-proof div {
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(242,247,245,0.1);
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.purchase-card {
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(22,63,99,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,247,250,0.95));
  box-shadow:0 12px 24px rgba(16,28,24,0.06);
}

.purchase-card strong {
  display:block;
  margin-bottom:6px;
  font-size:0.98rem;
  color:var(--brand-dark);
}

.purchase-card p {
  margin:0;
  color:var(--muted);
  font-size:0.9rem;
  line-height:1.55;
}

.hero-proof strong {
  display:block;
  margin-bottom:4px;
  font-size:0.9rem;
  color:#ffffff;
}

.hero-proof span {
  color:rgba(242,247,245,0.68);
  font-size:0.84rem;
  line-height:1.5;
}

.hero-side {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.panel-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(19,33,28,0.08);
  color:var(--muted);
  font-size:0.88rem;
}

.hero-panel {
  position:relative;
  z-index:1;
  align-self:stretch;
  padding:24px;
  border-radius:30px;
  border:1px solid transparent;
  background:transparent;
  color:#f8f9fb;
  box-shadow:none;
  transform:none;
}

.panel-badge {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  margin:18px 0 18px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  color:#091f33;
  border:1px solid rgba(184,136,42,0.28);
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.04em;
}

.panel-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:20px;
  background:transparent;
}

.panel-head > div {
  background:transparent;
}

.panel-head h2 {
  margin-bottom:4px;
  font-family:'DM Serif Display',serif;
  font-size:1.42rem;
  line-height:1.05;
  letter-spacing:-0.02em;
}

.panel-head p {
  margin-bottom:0;
  color:rgba(248,249,251,0.8);
  font-size:0.98rem;
  line-height:1.5;
  font-weight:400;
}

.hero .panel-head h2,
.hero .panel-footer strong,
.hero .panel-footer span,
.hero .section-tag {
  color:#f8f9fb;
}

.hero .panel-head {
  border-bottom:1px solid rgba(248,249,251,0.26);
  padding-bottom:16px;
}

.hero .section-tag {
  opacity:1;
  display:inline-flex;
  width:fit-content;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  color:#091f33;
  border:1px solid rgba(184,136,42,0.30);
  box-shadow:0 8px 18px rgba(7,21,38,0.12);
}

.hero .network-node,
.hero .insight-card {
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,247,250,0.96));
}

.hero .network-node p,
.hero .network-node small,
.hero .insight-card p,
.hero .panel-footer,
.hero .panel-footer span,
.hero .panel-footer strong {
  color:rgba(248,249,251,0.9);
}

.hero .network-node,
.hero .insight-card {
  text-align:center;
}

.hero .network-node strong,
.hero .network-node .network-value,
.hero .network-node p,
.hero .network-node small,
.hero .insight-card strong,
.hero .insight-card p {
  color:#08131d;
  text-align:center;
}

.hero .network-grid {
  justify-items:stretch;
}

.hero .insight-stack {
  text-align:center;
}

.hero .insight-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:160px;
}

.hero .network-node {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.hero-summary-card {
  text-align:center;
  min-height:174px;
}

.hero-summary-card strong,
.hero-summary-card .network-value,
.hero-summary-card p,
.hero-summary-card small {
  color:#08131d !important;
  text-align:center;
}

.hero-summary-card strong {
  margin-bottom:6px;
}

.hero-summary-card .network-value {
  margin-bottom:2px;
}

.hero-summary-card p,
.hero-summary-card small {
  max-width:28ch;
  margin-left:auto;
  margin-right:auto;
}

.hero-matrix-card {
  display:grid;
  grid-template-columns:minmax(0, 1.5fr) minmax(220px, 0.9fr);
  gap:16px;
  align-items:start;
  margin-top:14px;
  padding:18px;
  border-radius:26px;
  background:linear-gradient(160deg, rgba(250,252,255,0.98), rgba(239,244,249,0.96));
  border:1px solid rgba(15,36,68,0.08);
  box-shadow:0 26px 54px rgba(7,21,38,0.16);
  color:#102741;
}

.hero-mini-stack {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  width:100%;
  margin-top:14px;
}

.hero-card-compact {
  padding:24px;
}

.hero-matrix-copy {
  display:flex;
  flex-direction:column;
  gap:8px;
  align-self:stretch;
  justify-content:flex-start;
  text-align:left;
}

.hero-matrix-copy h3 {
  font-family:'DM Serif Display',serif;
  font-size:1.56rem;
  line-height:1;
  letter-spacing:-0.03em;
  color:#102741;
  margin:0;
}

.hero-matrix-copy .section-tag {
  opacity:1;
  display:inline-flex;
  width:fit-content;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  color:#091f33;
  border:1px solid rgba(184,136,42,0.30);
  box-shadow:0 8px 18px rgba(7,21,38,0.12);
}

.hero-matrix-lead {
  color:#314660;
  font-family:'Source Sans 3',sans-serif;
  font-size:0.93rem;
  line-height:1.44;
  letter-spacing:0;
  font-weight:400;
  margin:0;
  max-width:none;
  width:100%;
}

.hero-matrix-body {
  color:#314660;
  line-height:1.55;
  font-size:0.94rem;
  margin:0;
}

.hero-matrix-meta {
  display:block;
  margin:6px 0 0;
  width:100%;
  grid-column:1 / -1;
  color:#314660;
  font-size:0.86rem;
  font-weight:600;
  letter-spacing:0.02em;
  text-align:center;
}

.hero-matrix-copy p {
  margin:0;
}

.hero-matrix-visual {
  display:grid;
  place-items:center;
  align-self:center;
  justify-self:end;
  width:min(100%, 176px);
  aspect-ratio:1 / 1;
  height:auto;
  min-height:0;
  overflow:hidden;
  padding:8px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.98));
  border:1px solid rgba(15,36,68,0.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.75);
}

.hero-matrix-visual img {
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:cover;
  object-position:84% 100%;
  border-radius:12px;
}

.hero-overview-section {
  display:grid;
  gap:16px;
}

.hero-overview-section .hero-matrix-card,
.hero-overview-section .hero-ai-card {
  margin-top:0;
}

.hero-ai-card {
  margin-top:14px;
  padding:24px;
  border-radius:26px;
  background:linear-gradient(160deg, rgba(250,252,255,0.98), rgba(239,244,249,0.96));
  border:1px solid rgba(15,36,68,0.08);
  box-shadow:0 26px 54px rgba(7,21,38,0.16);
  text-align:left;
  color:#102741;
}

.hero-mini-stack .hero-card-compact {
  height:100%;
}

.hero-card-compact .hero-matrix-copy h3,
.hero-card-compact .hero-ai-head h3 {
  font-size:1.42rem;
  line-height:1.05;
}

.hero-report-head h3 {
  font-family:'DM Serif Display',serif;
  font-size:1.42rem;
  line-height:1.05;
  letter-spacing:-0.02em;
  color:#102741;
}

.hero-card-compact .hero-ai-head {
  align-items:flex-start;
}

.hero-ai-head {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:0;
}

.hero-ai-head > div {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.hero-ai-head h3 {
  margin-top:0;
  font-family:'DM Serif Display',serif;
  font-size:1.42rem;
  line-height:1.08;
  letter-spacing:-0.02em;
  color:#102741;
}

.hero-ai-head p {
  margin-top:0;
  color:#102741 !important;
  font-family:'Source Sans 3',sans-serif;
  font-size:0.96rem;
  line-height:1.55;
  font-weight:400;
  max-width:none;
  width:100%;
}

.hero-ai-lead {
  margin-top:0;
  color:#102741 !important;
  font-family:'Source Sans 3',sans-serif;
  font-size:0.96rem;
  line-height:1.55;
  font-weight:400;
}

.hero-ai-body {
  margin-top:0;
  color:#102741 !important;
  font-family:'Source Sans 3',sans-serif;
  font-size:0.96rem;
  line-height:1.55;
  font-weight:400;
  max-width:none;
  width:100%;
  margin-left:0;
  margin-right:0;
}

.hero-report-card {
  margin-top:16px;
  padding:28px;
  border-radius:26px;
  background:linear-gradient(160deg, rgba(250,252,255,0.98), rgba(239,244,249,0.96));
  border:1px solid rgba(15,36,68,0.08);
  box-shadow:0 26px 54px rgba(7,21,38,0.16);
  text-align:left;
  color:#102741;
}

.hero-report-head {
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:18px;
}

.hero-report-lead {
  margin-top:10px;
  color:#102741 !important;
  font-size:0.98rem;
  line-height:1.55;
  font-weight:600;
  max-width:60ch;
}

.hero-report-points {
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
  padding-left:1.1rem;
}

.hero-report-points li {
  display:list-item;
  color:#102741 !important;
  line-height:1.4;
  font-size:0.88rem;
  text-align:left;
  margin:0;
}

.hero-matrix-card h3,
.hero-matrix-card h4,
.hero-matrix-card p,
.hero-matrix-card span,
.hero-matrix-card strong,
.hero-matrix-card li,
.hero-ai-card h3,
.hero-ai-card h4,
.hero-ai-card p,
.hero-ai-card span,
.hero-ai-card strong,
.hero-ai-card li,
.hero-report-card h3,
.hero-report-card h4,
.hero-report-card p,
.hero-report-card span,
.hero-report-card strong,
.hero-report-card li {
  color:#102741 !important;
}

.hero-report-head h3 {
  margin:0;
  font-family:'DM Serif Display',serif;
  font-size:1.42rem;
  line-height:1.08;
  letter-spacing:-0.02em;
  color:#102741;
}

.hero-ai-intro,
.hero-ai-note,
.hero-ai-footnote {
  color:var(--muted);
  line-height:1.6;
}

.hero-ai-intro {
  margin-top:12px;
}

.hero-ai-pills {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:16px;
}

.hero-card-compact .hero-ai-pills {
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:12px;
}

.hero-ai-pills span {
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:42px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  color:#ffffff;
  font-weight:700;
}

.hero-ai-card .section-tag {
  display:inline-flex;
  width:fit-content;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  color:#091f33;
  border:1px solid rgba(184,136,42,0.30);
  box-shadow:0 8px 18px rgba(7,21,38,0.12);
}

.hero-ai-input {
  margin-top:16px;
}

.hero-ai-input label {
  display:block;
  margin-bottom:8px;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.hero-ai-textarea {
  min-height:96px;
  padding:18px 16px;
  border-radius:18px;
  border:1px solid rgba(18,63,99,0.18);
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,251,0.98));
  color:#90a0b6;
  font-style:italic;
  line-height:1.6;
}

.hero-ai-actions {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.hero-card-compact .hero-ai-actions {
  margin-top:12px;
}

.hero-left-footer {
  width:100%;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:14px;
  padding-top:12px;
  color:rgba(248,249,251,0.9);
  font-size:0.82rem;
  border-top:1px solid rgba(248,249,251,0.26);
  background:transparent;
  box-shadow:none;
  border-radius:0;
  text-align:left;
}

.hero-left-footer strong {
  color:#ffffff;
  font-size:0.9rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  opacity:1;
}

.hero-left-footer span {
  color:rgba(248,249,251,0.9);
}

.hero-ai-action {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  text-align:center;
  text-decoration:none;
  font-weight:800;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  backdrop-filter:blur(4px);
}

.hero-ai-action.primary {
  background:linear-gradient(135deg, #b8882a, #8a5f14);
  color:#ffffff;
  border-color:rgba(184,136,42,0.85);
}

.hero-ai-action.secondary {
  background:rgba(255,255,255,0.08);
  color:#ffffff;
}

.hero-ai-note {
  margin-top:12px;
  font-size:0.92rem;
}

.hero-ai-result {
  margin-top:16px;
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,250,0.98));
  border:1px solid rgba(18,63,99,0.12);
  min-height:152px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-ai-result strong {
  font-size:1.05rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--brand-dark);
  margin-bottom:8px;
}

.hero-ai-result p {
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

.hero-ai-footnote {
  margin-top:12px;
  font-size:0.84rem;
}

.status-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  white-space:nowrap;
  border-radius:999px;
  background:rgba(248,244,234,0.96);
  color:#091f33;
  border:1px solid rgba(184,136,42,0.30);
  font-size:0.84rem;
  font-weight:700;
}

.status-pill::before {
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#b8882a;
  box-shadow:0 0 0 8px rgba(184,136,42,0.14);
}

.network-card,
.insight-card,
.feature-card,
.proof-card,
.timeline-card,
.faq-item,
.cta-band {
  border:1px solid var(--line);
  box-shadow:0 18px 48px rgba(16,28,24,0.08);
}

.network-card,
.insight-card {
  background:transparent;
}

.network-card {
  padding:22px;
  border-radius:22px;
}

.network-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:20px;
  grid-auto-rows:1fr;
}

.node,
.network-node {
  position:relative;
  padding:16px;
  min-height:112px;
  border-radius:18px;
  background:linear-gradient(180deg, #fefefe, #f4f7f5);
  border:1px solid rgba(18,63,56,0.1);
  height:100%;
}

.node.active,
.network-node.active {
  background:radial-gradient(circle at top right, rgba(181,148,82,0.18), transparent 42%), linear-gradient(180deg, #fffdf8, #f7f1e4);
  border-color:rgba(181,148,66,0.22);
}

.node strong,
.network-node strong,
.insight-card strong,
.feature-card strong,
.proof-card strong,
.timeline-card strong,
.faq-item strong {
  display:block;
  margin-bottom:10px;
  font-size:1.12rem;
  letter-spacing:-0.02em;
}

.node-value,
.network-value,
.node-spread-value,
.price-value {
  display:block;
  margin-bottom:4px;
  color:var(--text);
  font-size:2rem;
  font-weight:800;
  line-height:0.95;
  letter-spacing:-0.05em;
}

.node-unit,
.node-spread-unit {
  display:block;
  color:var(--muted);
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
}

.node small,
.network-node small,
.network-node p,
.metric-copy,
.insight-card p,
.feature-card p,
.proof-card p,
.timeline-card p,
.faq-item p {
  color:var(--muted);
}

.network-node p {
  margin:0 0 6px;
  font-size:0.92rem;
  font-weight:700;
  line-height:1.2;
}

.network-node small {
  display:block;
  margin-top:8px;
  font-size:0.88rem;
  line-height:1.45;
  text-transform:none;
  letter-spacing:0;
  font-weight:400;
}

.insight-stack {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
}

.insight-card {
  padding:16px 18px;
  border-radius:18px;
  background:var(--panel);
}

.section {
  padding-top:86px;
}

.section-head {
  display:grid;
  gap:16px;
  margin-bottom:30px;
}

.section-head h2 {
  margin:12px 0 0;
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.85rem, 3.1vw, 3rem);
  line-height:1.02;
  letter-spacing:-0.035em;
  max-width:11ch;
}

.manual-breaks {
  max-width:none;
}

.manual-breaks .line {
  display:block;
  white-space:nowrap;
}

.manual-breaks .line + .line {
  margin-top:0.18em;
}

.feature-grid,
.timeline-grid {
  display:grid;
  gap:18px;
}

.feature-grid {
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

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

.feature-card {
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,0.9);
  position:relative;
  overflow:hidden;
}

.feature-card::before {
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--brand), rgba(181,139,66,0.85));
}

.feature-number {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:20px;
  border-radius:14px;
  background:var(--brand-soft);
  color:var(--brand);
  font-weight:800;
}

.proof-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.proof-card,
.timeline-card,
.faq-item,
.cta-band {
  background:var(--panel);
  border-radius:24px;
}

.proof-card,
.timeline-card {
  padding:28px;
}

.proof-list,
.timeline-list {
  display:grid;
  gap:12px;
  margin:18px 0 0;
}

.timeline-card > strong {
  margin-bottom:8px;
  color:var(--brand);
  font-size:0.84rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
}

.timeline-card h3 {
  margin:0 0 10px;
  font-family:var(--font-serif);
  font-size:1.42rem;
  line-height:1.08;
  letter-spacing:-0.03em;
}

.proof-list div,
.timeline-list div {
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(18,63,99,0.10);
  background:linear-gradient(180deg, #fbfdff, #eef4fb);
}

.faq-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.faq-item {
  padding:24px 26px;
}

.pricing-card {
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(18,63,99,0.16);
  background:radial-gradient(circle at top right, rgba(120,155,196,0.22), transparent 22%), linear-gradient(145deg, #f7fbff, #eaf2fb);
  box-shadow:0 32px 80px rgba(7,21,38,0.12);
}

.pricing-topline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(120,155,196,0.18);
  color:var(--brand-mid);
}

.pricing-card h3 {
  margin-bottom:10px;
  font-family:'DM Serif Display',serif;
  font-size:clamp(2rem, 3vw, 2.8rem);
  line-height:0.98;
  letter-spacing:-0.04em;
}

.pricing-lead {
  max-width:none;
  margin-bottom:22px;
  color:var(--muted);
  line-height:1.8;
}

.pricing-grid {
  display:grid;
  grid-template-columns:minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap:16px;
  margin-bottom:20px;
  align-items:stretch;
}

.pricing-subgrid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.price-block {
  padding:22px;
  border-radius:20px;
  border:1px solid rgba(18,63,99,0.12);
  background:linear-gradient(180deg, #fbfdff, #edf3fb);
  min-height:100%;
  text-align:center;
}

.price-block.featured {
  background:linear-gradient(135deg, #071526 0%, #0d2340 56%, #163758 100%);
  color:#f6faf8;
  border-color:rgba(248,249,251,0.16);
  box-shadow:0 18px 40px rgba(7,21,38,0.22);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:100%;
}

.price-label {
  display:block;
  margin-bottom:10px;
  color:var(--muted);
  font-size:0.84rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.price-block.featured .price-label {
  color:rgba(246,250,248,0.68);
}

.price-block.featured .price-value {
  color:#ffffff;
}

.price-tax {
  display:block;
  margin-top:4px;
  color:rgba(246,250,248,0.68);
  font-size:0.84rem;
  font-weight:400;
  letter-spacing:0.02em;
}

.price-block.featured .price-copy {
  color:rgba(246,250,248,0.82);
  text-align:center;
}

.price-copy {
  margin:0;
  color:var(--muted);
  line-height:1.65;
  text-align:center;
}

.price-copy-strong {
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:1.55rem;
  line-height:1.02;
  letter-spacing:-0.03em;
}

.price-block.featured .price-copy-strong {
  color:#ffffff;
}

.price-block .price-label,
.price-block .price-copy {
  width:100%;
}

.pricing-detail {
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(18,63,99,0.10);
  background:linear-gradient(180deg, #fbfdff, #eef4fb);
}

.pricing-detail strong {
  display:block;
  margin-bottom:12px;
  color:var(--brand-mid);
  font-size:0.94rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.pricing-detail p {
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.pricing-detail p + p {
  margin-top:12px;
}

.cta-band {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:28px;
  margin-top:12px;
  margin-bottom:12px;
  background:radial-gradient(circle at top right, rgba(120,155,196,0.24), transparent 24%), radial-gradient(circle at bottom left, rgba(15,36,68,0.10), transparent 28%), linear-gradient(145deg, #f7fbff, #eaf2fb);
  border:1px solid rgba(18,63,99,0.16);
  box-shadow:0 30px 80px rgba(7,21,38,0.10);
}

.cta-band .section-tag {
  display:inline-flex;
  width:fit-content;
  align-items:center;
  padding:8px 12px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(120,155,196,0.18);
  color:var(--brand-mid);
  border:1px solid rgba(120,155,196,0.22);
  box-shadow:0 8px 18px rgba(7,21,38,0.08);
}

.cta-band h2 {
  margin-bottom:16px;
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.75rem, 3vw, 2.7rem);
  line-height:1.02;
  letter-spacing:-0.035em;
  max-width:none;
}

.cta-band p {
  max-width:none;
  line-height:1.8;
}

.cta-actions {
  display:flex;
  flex-wrap:nowrap;
  gap:14px;
  margin-top:22px;
}

.cta-actions .btn {
  flex:1 1 0;
  min-height:68px;
  padding:1.1rem 1.9rem;
  border-radius:22px;
  font-size:1.2rem;
  letter-spacing:0.05em;
  box-shadow:0 18px 34px rgba(7,21,38,0.22);
  white-space:nowrap;
}

.cta-legal,
.cta-purchase-notice {
  max-width:none;
  color:var(--muted);
}

.cta-legal {
  margin-top:16px;
  font-size:0.92rem;
  line-height:1.7;
}

.cta-purchase-notice {
  margin-top:14px;
  max-width:74ch;
  font-size:0.84rem;
  line-height:1.6;
}

.cta-actions .btn-dark {
  background:#0B1F3A;
  color:#ffffff;
  border-color:rgba(255,255,255,0.84);
}

.cta-actions .btn-light {
  background:transparent;
  color:#0d2340;
  border-color:#0d2340;
  box-shadow:none;
}

.cta-arrow {
  display:inline-block;
  margin-right:0.18em;
  font-size:1.25em;
  font-weight:400;
  line-height:1;
  vertical-align:-0.06em;
}

.cta-access-link {
  margin-top:18px;
  color:var(--brand);
}

.cta-access-link:hover,
.cta-access-link:focus-visible {
  color:var(--brand-dark);
  text-decoration:underline;
  text-underline-offset:0.18em;
}

.reveal {
  opacity:0;
  transform:translateY(22px);
  transition:opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity:1;
  transform:translateY(0);
}

.btn-dark {
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#f5faf8;
  box-shadow:0 18px 34px rgba(18,63,56,0.16);
}

.btn-light {
  background:linear-gradient(135deg, var(--brand-mid), var(--brand-dark));
  color:#f5faf8;
  box-shadow:0 18px 34px rgba(18,63,56,0.16);
  border-color:rgba(255,255,255,0.08);
}

.footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:48px;
  color:var(--muted);
  font-size:0.92rem;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:0 22px;
}

.footer-links a {
  color:var(--muted);
  text-decoration:none;
  font-size:0.82rem;
  font-weight:500;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color:var(--brand);
}

.footer-links a + a {
  position:relative;
  padding-left:0;
}

.footer-links a + a::before {
  content:none;
}

.stat-card,
.feature-card,
.login-card {
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(245,248,250,1));
  border:1px solid rgba(22,63,99,0.12);
  border-radius:18px;
  padding:16px;
}

.stat-card strong,
.feature-card strong {
  display:block;
  color:var(--brand-dark);
  font-size:1.04rem;
  margin-bottom:6px;
}

.stat-card span,
.feature-card span {
  color:var(--muted);
  line-height:1.55;
}

.card-grid,
.auth-grid,
.dashboard-grid {
  margin-top:18px;
  padding:clamp(1rem, 2vw, 1.4rem);
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.grid-2 {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.section-title {
  font-family:'DM Serif Display',serif;
  font-size:1.65rem;
  color:var(--brand-dark);
  margin-bottom:12px;
}

.section-copy {
  color:var(--muted);
  line-height:1.65;
  margin-bottom:14px;
}

.login-card h3,
.feature-card h3 {
  font-size:1.08rem;
  color:var(--brand-dark);
  margin-bottom:10px;
}

.field {
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}

.field label {
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--muted);
}

.field input,
.field textarea,
.field select {
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:0.85rem 0.95rem;
  font:inherit;
  color:var(--text);
  background:#ffffff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline:2px solid rgba(22,63,99,0.22);
  border-color:var(--brand);
}

.footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  padding:18px 0 0;
  border:0;
  background:transparent;
  box-shadow:none;
  color:var(--muted);
  font-size:1.03rem;
  font-weight:400;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:0;
  color:var(--muted);
  font-size:1.01rem;
  font-weight:400;
}

.footer-links a,
.footer-links span {
  display:inline-flex;
  align-items:center;
  font-weight:400;
}

.footer-links a {
  color:var(--brand-dark);
  text-decoration:none;
  font-weight:400;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration:underline;
  text-underline-offset:0.16em;
}

.footer-sep {
  padding:0 12px;
  color:rgba(48,66,82,0.55);
  font-weight:400;
  user-select:none;
}

.footer-meta {
  color:var(--muted);
  font-size:1.01rem;
  font-weight:400;
  white-space:nowrap;
}

@media (max-width: 1080px) {
  main,
  .topbar.topbar-light {
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .nav-links {
    flex-wrap:wrap;
    white-space:normal;
  }

  .toolbar {
    justify-content:flex-start;
  }

  .hero-proof,
  .hero-purchase-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns:1fr;
  }

  .hero-matrix-card {
    grid-template-columns:1fr;
  }

  .hero-mini-stack {
    grid-template-columns:1fr;
  }

  .hero-ai-pills,
  .hero-ai-actions {
    grid-template-columns:1fr;
  }

  .feature-grid,
  .timeline-grid,
  .faq-grid,
  .pricing-grid,
  .pricing-subgrid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-shell {
    width:min(100% - 18px, 1500px);
    padding-top:10px;
  }

  .topbar {
    padding:1.25rem;
  }

  .header-right {
    min-width:0;
  }

  .footer-meta {
    white-space:normal;
  }

  .cta-actions {
    flex-direction:column;
  }

  .feature-grid,
  .timeline-grid,
  .faq-grid,
  .hero-proof,
  .hero-purchase-grid,
  .pricing-grid,
  .pricing-subgrid,
  .proof-grid,
  .insight-stack,
  .network-grid {
    grid-template-columns:1fr;
  }

  .network-grid {
    margin-top:16px;
  }

  .hero-matrix-card {
    grid-template-columns:1fr;
  }

  .hero-ai-head,
  .hero-ai-actions {
    grid-template-columns:1fr;
    display:grid;
  }

  .hero-mini-stack {
    grid-template-columns:1fr;
  }

  .hero-ai-pills {
    grid-template-columns:1fr;
  }

  .node-spread {
    grid-column:auto;
  }
}
