:root {
  --bg: #0d0d0d;
  --bg-deep: #020202;
  --surface: #151515;
  --border: #262626;
  --text: #fafafa;
  --muted: #9e9e9e;
  --green: #12b669;
  --green-bright: #00e567;
  --amber: #ffb433;
  --font-body: "Instrument Sans", sans-serif;
  --font-display: "Hedvig Letters Serif", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.5rem; }

a { color: inherit; }

:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--bg-deep); padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Announcement banner */
.banner {
  display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: rgba(18, 182, 105, 0.1);
  border-bottom: 1px solid rgba(18, 182, 105, 0.25);
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}
.banner p { color: var(--text); }
.banner a { color: var(--green-bright); font-weight: 600; text-decoration: none; }
.banner a:hover { text-decoration: underline; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6vw;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  color: var(--bg-deep);
  background: var(--green);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--green-bright); color: var(--bg-deep); }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); color: var(--text);
  font: inherit; padding: 0.4rem 0.9rem; border-radius: 6px; cursor: pointer;
}

/* Ambient background glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}
.glow-c {
  width: 40rem; height: 24rem; top: -6rem; left: 50%; margin-left: -20rem;
  background: radial-gradient(closest-side, rgba(255, 217, 153, 0.22), transparent);
  animation: drift-a 16s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate(-3rem, 0) scale(1); opacity: 0.7; }
  to { transform: translate(5rem, 2.5rem) scale(1.2); opacity: 1; }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.hero { background: #000; }
.hero-canvas, .cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}
/* reference site's bottom fade: 120px, transparent -> #020202 at 70% */
.hero::before, .cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--bg) 70.27%);
}
/* reference site's noise overlay: 40px tile at 10% opacity */
.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: 40px 40px;
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}
.mist-fallback .hero-canvas, .mist-fallback .cta-canvas {
  background:
    radial-gradient(45% 50% at 40% 30%, rgba(255, 255, 255, 0.08), transparent 70%),
    radial-gradient(40% 45% at 70% 60%, rgba(255, 255, 255, 0.05), transparent 70%),
    #000;
}
.hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) 4vw 6rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  animation: rise 0.7s ease both;
}
.hero h1 em { font-style: normal; color: var(--green-bright); }
.hero-sub {
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  color: var(--muted);
  animation: rise 0.7s ease 0.12s both;
}
.hero .btn { animation: rise 0.7s ease 0.24s both; }
.hero-note { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); animation: rise 0.7s ease 0.3s both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
}
.btn-primary { background: var(--green); color: var(--bg-deep); }
.btn-primary:hover { background: var(--green-bright); }

/* Sections shared */
section { padding: 5rem 6vw; }

/* Offerings */
.offerings { max-width: 74rem; margin: 0 auto; }
.offerings-head { max-width: 44rem; margin-bottom: 3rem; }
.offerings-head p { color: var(--muted); }
.offer-grid {
  --step: 3.25rem;
  --gap: 1.25rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  align-items: start;
  padding-top: 1.75rem;
}
/* rail runs through the icon nodes from the lowest card to the highest */
.offer-rail {
  position: absolute;
  z-index: 0;
  top: 1.75rem;
  left: calc(12.5% - var(--gap) * 0.375);
  width: calc(75% + var(--gap) * 0.75);
  height: calc(var(--step) * 3);
  overflow: visible;
  pointer-events: none;
}
.offer-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--text-dim, #3d3d3d); }
.offer-card:nth-of-type(1) { margin-top: calc(var(--step) * 3); }
.offer-card:nth-of-type(2) { margin-top: calc(var(--step) * 2); }
.offer-card:nth-of-type(3) { margin-top: calc(var(--step) * 1); }
.offer-card:nth-of-type(4) { margin-top: 0; }
.offer-node {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 6px var(--bg);
}
.offer-card:nth-of-type(4) .offer-node {
  border-color: var(--green);
  box-shadow: 0 0 0 6px var(--bg), 0 0 28px rgba(0, 229, 103, 0.35);
}
.offer-icon { width: 1.35rem; height: 1.35rem; color: var(--green-bright); }
.offer-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.offer-card p { color: var(--muted); font-size: 0.95rem; }

/* Stats dashboard */
.stats {
  background: var(--bg-deep);
  border-block: 1px solid var(--border);
  text-align: center;
  padding-inline: 0;
}
.stats h2 { margin-bottom: 1rem; padding-inline: 6vw; }
.stats-sub { color: var(--muted); max-width: 40rem; margin: 0 auto 3rem; padding-inline: 6vw; }
.stats .btn { margin-top: 3rem; }
.dash {
  max-width: 74rem;
  margin: 0 auto;
  padding-inline: 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(8.5rem, auto);
  gap: 1.25rem;
  text-align: left;
}
.dash .chart-panel { grid-column: 1 / 3; grid-row: 1 / 3; margin: 0; }
.dash .metric { width: auto; margin: 0; }
.dash .dash-wide { grid-column: span 2; }
.dash .dash-wide .metric-num { font-size: 2.4rem; }
.dash .dash-wide .metric-spark { height: 3.4rem; }

.metric {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem 0.9rem;
  margin-right: 1.25rem;
  width: 19rem;
  text-align: left;
}
.metric-top { display: flex; align-items: center; gap: 0.6rem; }
.metric-icon {
  display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem; border-radius: 8px;
  background: rgba(255, 180, 51, 0.10);
  color: var(--amber);
}
.metric-icon svg { width: 1.05rem; height: 1.05rem; }
.metric-label { color: var(--muted); font-size: 0.85rem; }
.metric-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.metric-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  white-space: nowrap;
  color: var(--text);
  line-height: 1.1;
}
.metric-delta {
  color: var(--green-bright);
  background: rgba(18, 182, 105, 0.1);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.metric-spark { width: 100%; height: 2.2rem; margin-top: 0.2rem; overflow: visible; }
.spark-area { fill: rgba(255, 180, 51, 0.12); }
.spark-line { fill: none; stroke: var(--amber); stroke-width: 1.5; vector-effect: non-scaling-stroke; stroke-linejoin: round; }

/* Growth chart */
.chart-panel {
  display: flex; flex-direction: column;
  max-width: 74rem;
  margin: 3rem auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1rem;
  text-align: left;
}
.chart-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1rem; }
.chart-title { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.2; }
.chart-sub { color: var(--muted); font-size: 0.85rem; }
.chart-kpi { display: flex; align-items: baseline; gap: 0.5rem; }
.chart-kpi-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--amber); line-height: 1; }
.chart-kpi-label { color: var(--muted); font-size: 0.85rem; }
.chart { width: 100%; height: auto; flex: 1; display: block; overflow: visible; }
.chart-grid line { stroke: var(--border); stroke-width: 1; }
.chart-grid text, .chart-x text { fill: var(--muted); font-size: 15px; font-family: var(--font-body); }
.chart-line { fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.chart-area { opacity: 0; transition: opacity 0.8s ease 0.9s; }
.chart-dot { fill: var(--amber); opacity: 0; transition: opacity 0.4s ease 1.6s; }
.chart.drawn .chart-area, .chart.drawn .chart-dot { opacity: 1; }
.chart.drawn .chart-dot { animation: chart-pulse 2.2s ease-out infinite 1.8s; }
@keyframes chart-pulse {
  0% { filter: drop-shadow(0 0 0 rgba(255, 180, 51, 0.9)); }
  100% { filter: drop-shadow(0 0 14px rgba(255, 180, 51, 0)); }
}
.chart-hover-line { stroke: var(--muted); stroke-width: 1; stroke-dasharray: 3 4; }
.chart-hover-dot { fill: var(--bg); stroke: var(--amber); stroke-width: 2; }
.chart-tip rect { fill: #1f1f1f; stroke: var(--border); }
.chart-tip text { fill: var(--text); font-size: 15px; font-family: var(--font-body); }
.chart-hit { cursor: crosshair; }
.chart-hover[hidden] { display: none; }


/* Proof cards — continue the dashboard grid */
.ach-grid {
  max-width: 74rem;
  margin: 1.25rem auto 0;
  padding-inline: 6vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.ach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
}
.ach-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }

/* Achievement visuals — one illustration per stat, explained by the caption below */
.ach-card { padding: 0.9rem 0.9rem 1.5rem; }
.ach-card h3, .ach-card p { padding-inline: 0.6rem; }
.ach-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(70% 80% at 50% 100%, rgba(255, 180, 51, 0.10), transparent 70%), #0a0a0a;
  border: 1px solid #1f1f1f;
  margin-bottom: 1.2rem;
}
.ach-visual > svg { width: 100%; height: 100%; display: block; }
.v-label { fill: var(--muted); font-size: 12px; font-family: var(--font-body); }
.v-big { fill: var(--text); font-size: 24px; font-family: var(--font-display); }
.v-grid line { stroke: #2a2a2a; stroke-dasharray: 3 4; }
.v-line { fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round; }
.v-axis text { fill: var(--muted); font-size: 10px; font-family: var(--font-body); }

/* margin ring */
.ring-bg { fill: none; stroke: #262626; stroke-width: 14; }
.ring-fg { fill: none; stroke: var(--amber); stroke-width: 14; stroke-linecap: round; stroke-dasharray: 281.5 402.1; }
.v-legend text { fill: var(--muted); font-size: 11px; font-family: var(--font-body); }
.l-profit { fill: var(--amber); } .l-cost { fill: #3a3a3a; }

/* documents */
.v-docs .doc {
  position: absolute; left: 50%; top: 50%;
  width: 27%; aspect-ratio: 3 / 4; border-radius: 8px;
  background: linear-gradient(160deg, #ffd999, #f0b14a);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  padding: 12% 10%; display: flex; flex-direction: column; gap: 9%;
}
.v-docs .doc i { display: block; height: 5px; border-radius: 3px; background: rgba(120, 70, 0, 0.35); }
.v-docs .doc i:nth-child(2) { width: 70%; } .v-docs .doc i:nth-child(4) { width: 55%; }
.v-docs .doc-1 { transform: translate(-95%, -58%) rotate(-14deg); filter: brightness(.75); }
.v-docs .doc-2 { transform: translate(-62%, -52%) rotate(-6deg); filter: brightness(.88); }
.v-docs .doc-3 { transform: translate(-28%, -46%) rotate(6deg); }
.doc-tag { position: absolute; color: var(--text); font-size: 0.7rem; letter-spacing: 0.02em; padding: 0.2rem 0.55rem; border-radius: 999px; background: #161616; border: 1px solid #2a2a2a; }
.doc-tag.t-1 { left: 6%; top: 8%; }
.doc-tag.t-2 { right: 6%; top: 8%; }
.doc-tag.t-3 { right: 6%; bottom: 8%; }

/* client pills */
.v-clients .pill {
  position: absolute; left: var(--x); top: var(--y);
  display: grid; grid-template-columns: auto 1fr; column-gap: 0.5rem; align-items: center;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem; border-radius: 999px;
  background: #171717; border: 1px solid #2a2a2a; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.v-clients .pill::before {
  content: ""; grid-row: span 2; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #3a3a3a 0 28%, #1c1c1c 30%);
  border: 1px solid #333;
}
.v-clients .pill b { font-size: 0.82rem; line-height: 1.1; color: var(--text); }
.v-clients .pill small { font-size: 0.6rem; color: var(--muted); }
.v-clients .pill-lg b { font-size: 1rem; } .v-clients .pill-lg::before { width: 1.8rem; height: 1.8rem; }

/* platform bars */
.v-bars { display: flex; justify-content: center; align-items: flex-end; gap: 12%; padding: 6% 10% 0; }
.v-bars .bar { position: relative; width: 22%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 0.35rem; }
.v-bars .bar b { width: 100%; height: var(--h); flex: none; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #4a4a4a, #161616); border: 1px solid #333; border-bottom: 0; }
.v-bars .bar em { font-style: normal; font-size: 0.78rem; color: var(--text); }
.v-bars .bar-icon { width: 2rem; height: 2rem; border-radius: 8px; display: grid; place-items: center; }
.v-bars .bar-icon svg { width: 1.2rem; height: 1.2rem; }
.v-bars .bar-ig .bar-icon { background: linear-gradient(45deg, #f9a03f, #e1306c 55%, #833ab4); color: #fff; }
.v-bars .bar-yt .bar-icon { background: #ff0000; color: #fff; }

/* team orbit */
.v-rings circle { fill: none; stroke: #2e2e2e; }
.v-core { fill: var(--amber); }
.v-dot { fill: #d8d8d8; } .v-dot-2 { fill: #8f8f8f; } .v-dot-3 { fill: #ffd999; }

/* mastermind card */
.v-cardwrap { display: grid; place-items: center; background: radial-gradient(60% 70% at 50% 50%, #2a2a2a, #0a0a0a 75%); }
.mcard {
  position: relative; width: 72%; aspect-ratio: 1.6; border-radius: 12px;
  background: linear-gradient(135deg, #1a1a1a, #050505 60%, #161616);
  border: 1px solid #2c2c2c; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  padding: 8% 8%; display: flex; flex-direction: column; justify-content: space-between;
}
.mcard-title { font-family: var(--font-display); color: var(--amber); font-size: 1rem; }
.mcard-mid { display: flex; justify-content: space-between; align-items: center; }
.mcard-chip { width: 16%; aspect-ratio: 1.3; border-radius: 4px; background: linear-gradient(135deg, #ffd999, #c98a1e); }
.mcard-mark { font-family: var(--font-display); font-size: 2rem; color: var(--amber); line-height: 1; }
.mcard-foot { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.mcard-foot em { font-style: normal; display: block; color: var(--text); }

/* views mosaic */
.v-views { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; padding: 0.75rem; }
.v-views span {
  display: flex; align-items: center; gap: 0.3rem; padding-left: 0.5rem;
  border-radius: 6px; font-size: 0.72rem; color: var(--text);
  background: #1a1a1a; border: 1px solid #2a2a2a;
}
.v-views span::before {
  content: ""; width: 0.75rem; height: 0.5rem; border-radius: 50%; flex: none;
  border: 1.5px solid currentColor; opacity: 0.7;
}
.v-views span.lit { background: linear-gradient(180deg, #ffc35a, #e39a26); color: #1a1200; border-color: #ffd48a; }
.v-views span:nth-child(4n+2) { transform: translateY(0.35rem); }
.v-views span:nth-child(4n+3) { transform: translateY(-0.25rem); }
.ach-card p { color: var(--muted); font-size: 0.92rem; }
.ach-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-right: 2rem;
}
.ach-wide .ach-visual { margin-bottom: 0; aspect-ratio: 16 / 7; }
.ach-wide h3 { font-size: 1.5rem; }

/* Testimonials */
.testimonials { max-width: 74rem; margin: 0 auto; }
.testimonials h2 { text-align: center; margin-bottom: 2.5rem; }
.quote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
}
.quote-card blockquote { color: var(--text); font-size: 0.98rem; }
.quote-card blockquote::before { content: "\201C"; color: var(--green); font-family: var(--font-display); }
.quote-card blockquote::after { content: "\201D"; color: var(--green); font-family: var(--font-display); }
.quote-card figcaption { display: flex; flex-direction: column; }
.quote-name { font-weight: 600; font-size: 0.95rem; }
.quote-role { color: var(--muted); font-size: 0.85rem; }
.disclaimer { margin-top: 2rem; font-size: 0.8rem; color: var(--muted); max-width: 44rem; }

/* Final CTA */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: 7rem;
  background: #000;
  border-top: 1px solid var(--border);
}
.cta p { max-width: 38rem; margin: 0 auto 2.25rem; color: var(--muted); }

/* Footer */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 3rem 6vw 2rem; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--muted); font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.75rem; }
  .offer-rail { display: none; }
  .offer-card:nth-of-type(n) { margin-top: 0; }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .ach-grid { grid-template-columns: repeat(2, 1fr); }
  .ach-wide { grid-column: 1 / -1; grid-template-columns: 1fr; padding-right: 0.9rem; }
  .dash { grid-template-columns: repeat(2, 1fr); }
  .dash .chart-panel { grid-column: 1 / 3; grid-row: auto; }
}

@media (max-width: 600px) {
  .offer-grid, .quote-grid, .ach-grid { grid-template-columns: 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash .chart-panel, .dash .dash-wide { grid-column: auto; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 6vw; width: 100%; }
  .nav-links .nav-cta { border-radius: 0; background: none; color: var(--green-bright); }
}

.noanim .hero h1, .noanim .hero-sub, .noanim .hero .btn { animation: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1, .hero-sub, .hero .btn, .hero-note { animation: none; }
  .glow { animation: none; }
  .chart-dot { animation: none; }
}


/* Ascension opt-in page */
.optin-page { background: #000; }
.optin {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 3.5rem 6vw 2rem;
}
.optin-inner { max-width: 46rem; width: 100%; margin: 0 auto; }
.lockup { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-bottom: 2.5rem; }
.lockup-mark {
  font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--amber);
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border: 1px solid rgba(255, 180, 51, 0.45); border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 217, 153, 0.18), transparent);
}
.lockup-text { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }
.qualifier {
  display: inline-block;
  background: linear-gradient(90deg, #ffb433, #ffe1a8);
  color: #1a1200; font-weight: 600; font-size: 0.95rem;
  padding: 0.6rem 1.5rem; border-radius: 6px;
  margin-bottom: 1.75rem;
}
.optin h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
.guarantee { font-family: var(--font-display); color: var(--amber); font-size: 1.35rem; margin-bottom: 2.25rem; }
.optin-form { max-width: 34rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.optin-form input {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 0.95rem 1.1rem; border-radius: 8px;
  background: #fafafa; color: #111; border: 1px solid #ddd;
}
.optin-form input::placeholder { color: #6b6b6b; }
.optin-form input:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.btn-block { display: block; width: 100%; border: 0; cursor: pointer; font: inherit; font-weight: 600; font-size: 1.05rem; padding: 1rem; border-radius: 8px; }
.form-fine { color: var(--muted); font-size: 0.8rem; }
.form-note { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.95rem; }
.form-ok { background: rgba(18, 182, 105, 0.12); color: var(--green-bright); border: 1px solid rgba(18, 182, 105, 0.35); }
.form-err { background: rgba(224, 73, 57, 0.12); color: #ff8a7a; border: 1px solid rgba(224, 73, 57, 0.35); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.optin-footer { margin-top: 4rem; max-width: 48rem; }
.optin-footer .footer-legal { justify-content: center; margin-bottom: 1rem; }
.optin-footer .disclaimer { margin: 0 auto 0.75rem; font-size: 0.72rem; }
.optin-footer .copyright { color: var(--muted); font-size: 0.8rem; }
.optin-footer a { color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.optin-footer a:hover { color: var(--text); }


/* Apex VSL page */
.vsl { justify-content: flex-start; }
.vsl-inner { max-width: 52rem; }
.vsl .guarantee { margin-bottom: 1.75rem; }
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 50rem;
  margin: 0 auto 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  background: #070707;
  border: 1px solid #2a2a2a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 180, 51, 0.08);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background: radial-gradient(60% 70% at 50% 45%, rgba(255, 180, 51, 0.10), transparent 70%), #070707;
  color: var(--muted);
}
.vsl-placeholder p { color: var(--text); font-weight: 600; }
.vsl-placeholder small { font-size: 0.75rem; }
.vsl-placeholder code { color: var(--amber); }
.vsl-play {
  width: 4.5rem; height: 4.5rem; border-radius: 50%;
  border: 1px solid rgba(255, 180, 51, 0.5);
  background: rgba(255, 180, 51, 0.12);
  display: grid; place-items: center; margin-bottom: 0.5rem;
}
.vsl-play::after { content: ""; border-left: 1.4rem solid var(--amber); border-top: 0.85rem solid transparent; border-bottom: 0.85rem solid transparent; margin-left: 0.3rem; }
.btn-wide { min-width: 16rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 1rem 2.5rem; border-radius: 8px; }
.steps { width: 100%; max-width: 40rem; margin: 4rem auto 0; padding: 0; }
.steps h2 { margin-bottom: 1.75rem; }
.steps-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.9rem; }
.steps-list li {
  display: grid; grid-template-columns: 2.25rem 1fr; align-items: start; gap: 0.9rem;
  background: rgba(21, 21, 21, 0.85); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.9rem 1.1rem;
}
.steps-list span {
  font-family: var(--font-display); color: var(--amber);
  width: 2.25rem; height: 2.25rem; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255, 180, 51, 0.4);
}
.steps-list p { margin: 0.3rem 0 0; }
.steps-contact { margin-top: 1.5rem; color: var(--muted); }
.steps-contact a { color: var(--amber); text-decoration: none; }
.steps-contact a:hover { text-decoration: underline; }


/* Apex application page */
.apply { justify-content: flex-start; }
.apply-inner { max-width: 40rem; text-align: left; }
.apply .lockup { display: flex; justify-content: center; }
.apply h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); line-height: 1.2; margin-bottom: 0.75rem; text-align: center; }
.apply-warn {
  display: inline-grid; place-items: center; vertical-align: middle;
  width: 1.6rem; height: 1.6rem; margin-right: 0.35rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: #1a1200;
  background: var(--amber); clip-path: polygon(50% 0, 100% 100%, 0 100%);
  padding-top: 0.35rem;
}
.apply-sub { color: var(--muted); text-align: center; margin-bottom: 2rem; }
.apply-form { display: flex; flex-direction: column; gap: 1.25rem; }
.apply-form .form-note { margin-bottom: 0; }
.field label, .field legend { display: block; font-size: 0.92rem; margin-bottom: 0.45rem; color: var(--text); }
.field label::after, .field legend::after { content: " *"; color: var(--amber); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 0.85rem 1rem; border-radius: 8px;
  background: #fafafa; color: #111; border: 1px solid #ddd;
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field input::placeholder { color: #6b6b6b; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.field fieldset { border: 0; padding: 0; margin: 0; }
.yesno { display: flex; gap: 0.75rem; }
.yesno label {
  flex: 1; display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
  padding: 0.75rem 1rem; border-radius: 8px;
  background: rgba(21, 21, 21, 0.85); border: 1px solid var(--border);
}
.yesno label::after { content: none; }
.yesno label:has(input:checked) { border-color: var(--green); background: rgba(18, 182, 105, 0.12); }
.yesno input { accent-color: var(--green); width: 1.1rem; height: 1.1rem; }
.field-missing input, .field-missing textarea, .field-missing .yesno label { border-color: #e04939; }
.apply-form .btn-block { margin-top: 0.5rem; }
.apply-done { text-align: center; padding: 2rem 0 3rem; }
.apply-done h1 { margin-top: 1rem; }
.apply-done p { color: var(--muted); max-width: 30rem; margin: 0 auto 2rem; }
.apply-check {
  display: inline-grid; place-items: center; width: 4rem; height: 4rem; border-radius: 50%;
  border: 1px solid rgba(18, 182, 105, 0.5); background: rgba(18, 182, 105, 0.12);
}
.apply-check::after { content: ""; width: 1.1rem; height: 0.6rem; border-left: 3px solid var(--green-bright); border-bottom: 3px solid var(--green-bright); transform: translateY(-3px) rotate(-45deg); }


/* Strategic Audit payment page */
.audit-page { background: var(--bg); }
.audit {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 26rem);
  gap: 4rem;
  max-width: 68rem;
  margin: 0 auto;
  padding: 3rem 6vw 4rem;
  align-items: start;
}
.audit-info { max-width: 34rem; }
.lockup-sm { margin-bottom: 2.5rem; }
.lockup-sm .lockup-mark { width: 2.4rem; height: 2.4rem; font-size: 1.6rem; }
.lockup-sm .lockup-text { font-size: 1.15rem; letter-spacing: 0.14em; }
.audit-info h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 0.9rem; }
.audit-rule { display: block; width: 2.5rem; height: 3px; background: var(--amber); border-radius: 2px; margin-bottom: 1.5rem; }
.audit-info p { color: var(--muted); margin-bottom: 0.9rem; }
.audit-info p strong { color: var(--text); }
.audit-info h2 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin: 1.75rem 0 0.6rem; }
.audit-steps { counter-reset: step; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.9rem; }
.audit-steps li { position: relative; padding-left: 2.2rem; }
.audit-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0.05rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.85rem; color: var(--amber);
  border: 1px solid rgba(255, 180, 51, 0.45);
}
.audit-note { font-size: 0.9rem; }
.audit-terms { margin-top: 0.5rem; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
.audit-terms summary { cursor: pointer; padding: 0.8rem 1rem; font-weight: 600; font-size: 0.95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.audit-terms summary::-webkit-details-marker { display: none; }
.audit-terms summary::after { content: "+"; color: var(--amber); font-size: 1.2rem; }
.audit-terms[open] summary::after { content: "\2212"; }
.audit-terms ul { padding: 0 1rem 1rem 2.2rem; color: var(--muted); font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.45rem; }
.audit-contact a { color: var(--text); text-decoration: none; }
.audit-contact a:hover { color: var(--green-bright); }
.audit-legal { font-size: 0.78rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }

.pay-card {
  position: sticky; top: 2rem;
  background: #fafafa; color: #111;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.pay-form { padding: 1.6rem 1.6rem 1.25rem; }
.pay-form h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.4rem; color: #111; }
.pay-field { display: grid; grid-template-columns: 5.5rem 1fr; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.pay-field label { font-size: 0.88rem; color: #444; }
.pay-field label::after { content: " *"; color: #e04939; }
.pay-field input { width: 100%; font: inherit; font-size: 0.95rem; padding: 0.6rem 0.75rem; border: 1px solid #d6d6d6; border-radius: 6px; background: #fff; color: #111; }
.pay-field input:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.pay-field input[readonly] { background: #f2f7f4; font-weight: 600; }
.pay-phone { display: flex; }
.pay-phone span { display: grid; place-items: center; padding: 0 0.7rem; font-size: 0.85rem; background: #ececec; border: 1px solid #d6d6d6; border-right: 0; border-radius: 6px 0 0 6px; color: #333; white-space: nowrap; }
.pay-phone input { border-radius: 0 6px 6px 0; }
.pay-error { color: #c0392b; font-size: 0.85rem; margin: 0.25rem 0 0.75rem; }
.pay-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.4rem -1.6rem -1.25rem; padding: 0.9rem 1.6rem; background: #f1f1f1; }
.pay-methods { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.pay-methods span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; color: #555; border: 1px solid #ccc; border-radius: 4px; padding: 0.15rem 0.4rem; background: #fff; }
.pay-btn { font: inherit; font-weight: 700; font-size: 0.98rem; padding: 0.85rem 1.4rem; border: 0; border-radius: 8px; background: var(--green); color: #031; cursor: pointer; white-space: nowrap; }
.pay-btn:hover { background: var(--green-bright); }
.pay-btn:disabled { opacity: 0.6; cursor: wait; }
.pay-demo { margin-top: 2rem; font-size: 0.78rem; color: #6b5a00; background: #fff6d6; border: 1px solid #f0d98a; border-radius: 6px; padding: 0.6rem 0.75rem; }
.pay-demo code { font-size: 0.75rem; }
.pay-secure { padding: 0.8rem 1.6rem; font-size: 0.75rem; color: #666; border-top: 1px solid #e6e6e6; background: #fff; }

@media (max-width: 900px) {
  .audit { grid-template-columns: 1fr; gap: 2.5rem; }
  .pay-card { position: static; }
}

.welcome { display: inline-block; margin-bottom: 1.5rem; }

/* Admin */
.admin-page { background: var(--bg); }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 2rem 6vw; }
.admin-card { width: 100%; max-width: 24rem; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.admin-card .lockup { align-self: center; margin-bottom: 1rem; }
.admin-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: 1rem; }
.admin-card label { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.admin-card input { width: 100%; font: inherit; padding: 0.75rem 0.9rem; border-radius: 8px; background: #fafafa; color: #111; border: 1px solid #ddd; }
.admin-card input:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.admin-card .btn-block { margin-top: 1rem; }
.admin-nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 6vw; border-bottom: 1px solid var(--border); background: var(--bg-deep); }
.admin-brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: var(--font-display); font-size: 1.15rem; }
.admin-brand .lockup-mark { width: 2rem; height: 2rem; font-size: 1.3rem; }
.admin-nav nav { display: flex; align-items: center; gap: 1.5rem; }
.admin-nav nav a { text-decoration: none; color: var(--muted); padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.admin-nav nav a.active { color: var(--text); border-bottom-color: var(--green); }
.admin-nav nav a:hover { color: var(--text); }
.admin-logout { background: none; border: 1px solid var(--border); color: var(--muted); font: inherit; font-size: 0.85rem; padding: 0.35rem 0.8rem; border-radius: 6px; cursor: pointer; }
.admin-logout:hover { color: var(--text); border-color: #3d3d3d; }
.admin-main { max-width: 74rem; margin: 0 auto; padding: 2rem 6vw 4rem; }
.admin-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.admin-head h1 { font-size: 1.8rem; }
.admin-sub { color: var(--muted); font-size: 0.9rem; }
.day-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.75rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); }
.day-tabs button { flex: none; display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font: inherit; font-size: 0.85rem; padding: 0.55rem 0.9rem; border-radius: 8px; cursor: pointer; }
.day-tabs button small { font-size: 0.75rem; color: var(--amber); }
.day-tabs button.active { color: var(--text); border-color: var(--green); background: rgba(18, 182, 105, 0.08); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.admin-table th { text-align: left; font-weight: 600; color: var(--muted); font-size: 0.8rem; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 0.7rem 0.75rem; border-bottom: 1px solid #1c1c1c; vertical-align: top; }
.admin-table td a { color: var(--text); text-decoration: none; }
.admin-table td a:hover { color: var(--green-bright); }
.admin-clickable tbody tr { cursor: pointer; }
.admin-clickable tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.admin-clickable tbody tr.active { background: rgba(18, 182, 105, 0.08); }
.admin-empty { color: var(--muted); padding: 2rem 0; }
.admin-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 26rem); gap: 1.5rem; align-items: start; }
.admin-split .admin-detail[hidden] { display: none; }
.admin-detail { position: sticky; top: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.4rem; max-height: calc(100vh - 3rem); overflow: auto; }
.detail-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.detail-head h2 { font-size: 1.3rem; }
.detail-close { background: none; border: 0; color: var(--muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.detail-meta { color: var(--muted); font-size: 0.82rem; margin: 0.4rem 0 1rem; }
.detail-list { display: grid; grid-template-columns: 1fr; gap: 0.15rem 0; font-size: 0.92rem; }
.detail-list dt { color: var(--muted); font-size: 0.78rem; margin-top: 0.7rem; }
.detail-list dd { color: var(--text); white-space: pre-wrap; }
@media (max-width: 900px) { .admin-split { grid-template-columns: 1fr; } .admin-detail { position: static; max-height: none; } }
