:root {
  --bg: #020406;
  --bg-2: #05080c;
  --panel: rgba(7, 11, 15, 0.78);
  --panel-strong: rgba(6, 9, 13, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --gold: #f4a000;
  --gold-2: #ffbf28;
  --gold-dim: #9b6709;
  --text: #f3f1ec;
  --muted: #b7b1a6;
  --quiet: #7b766d;
  --line: rgba(244, 160, 0, 0.25);
  --line-soft: rgba(255, 255, 255, 0.1);
  --danger: #f04a3a;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-gold: 0 0 80px rgba(244, 160, 0, 0.22);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 5%, rgba(244, 160, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 10% 35%, rgba(244, 160, 0, 0.08), transparent 26rem),
    linear-gradient(180deg, #000 0%, var(--bg) 42%, #010203 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  z-index: 20;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 20px 40px;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: rgba(244, 160, 0, 0.16);
  backdrop-filter: blur(18px);
}
.brand img { width: 162px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav a { transition: color .18s ease; }
.nav a:hover { color: var(--gold-2); }
.header-cta {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(244,160,0,.08);
}

.section-shell {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 28px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 150px;
}
.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 40%, rgba(0,0,0,.24) 68%, rgba(0,0,0,.9) 100%),
    url("assets/panel-1.webp") center / cover no-repeat;
  opacity: .72;
  z-index: -2;
}
.hero-bg::after,
.contact::before,
.market::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(244,160,0,.16), transparent 30rem);
  z-index: -1;
}
.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 28px;
  max-width: 790px;
  text-shadow: 0 0 42px rgba(0,0,0,.85);
}
h1 span, .section-intro h2 span { color: var(--gold); }
.hero-lede {
  max-width: 575px;
  color: #eee9df;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
  margin-bottom: 34px;
}
.hero-actions, .btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #120a00;
  border: 1px solid rgba(255, 204, 77, .8);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 36px rgba(244,160,0,.22);
}
.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(8, 10, 13, .72);
}
.hero-visual {
  justify-self: end;
  width: min(600px, 100%);
  filter: drop-shadow(0 0 80px rgba(244,160,0,.16));
  opacity: .88;
}
.hero-visual img {
  border-radius: 999px;
  mask-image: radial-gradient(circle at 46% 48%, black 44%, rgba(0,0,0,.76) 62%, transparent 76%);
}
.capability-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(6,8,11,.86));
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.capability-strip article {
  min-height: 190px;
  padding: 26px 22px;
  border-right: 1px solid rgba(244,160,0,.22);
}
.capability-strip article:last-child { border-right: 0; }
.icon-bubble {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: inset 0 0 20px rgba(244,160,0,.08);
}
.capability-strip h2,
.module-grid h3,
.execution-grid h3,
.outcome-grid h3,
.state-card h3 {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.capability-strip h2 { color: var(--gold-2); text-transform: uppercase; }
.capability-strip p,
.module-grid p,
.execution-grid p,
.outcome-grid p,
.state-card p,
.contact-copy p,
.section-intro p,
.content-stack p {
  color: var(--muted);
}
.capability-strip p { font-size: 13px; margin: 0; }

.section-grid { display: grid; gap: 32px; }
.section-intro { max-width: 780px; }
.section-intro.narrow { max-width: 850px; margin: 0 auto 36px; text-align: center; }
.section-intro h2,
.content-stack h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
.section-intro p,
.content-stack > p,
.contact-copy p {
  font-size: 17px;
  line-height: 1.7;
}
.market::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: 2rem;
  width: 760px;
  height: 420px;
  background: url("assets/mesh-field.webp") center / cover no-repeat;
  opacity: .38;
  filter: blur(.2px) saturate(1.2);
  z-index: -2;
  mask-image: radial-gradient(ellipse, black, transparent 70%);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.state-card,

.visual-card,
.flow-card,
.channel-panel,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10,13,17,.82), rgba(4,7,10,.92));
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 90px rgba(0,0,0,.32);
}
.state-card { padding: 34px; }
.state-card-problem { border-color: rgba(240, 74, 58, .34); }
.state-card-solution { border-color: rgba(244, 160, 0, .42); box-shadow: var(--shadow-gold); }
.state-label, .card-kicker {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.state-card-problem .state-label { color: #ff7569; }
ul { margin: 0; padding: 0; list-style: none; }
li {
  position: relative;
  padding-left: 22px;
  margin: 12px 0;
  color: var(--muted);
}
li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(244,160,0,.75);
}
.state-card-problem li::before { background: var(--danger); box-shadow: 0 0 16px rgba(240,74,58,.75); }
.versus {
  align-self: center;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 900;
  background: #050607;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.impact-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
}
.impact-grid strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 10px;
}
.impact-grid span { color: var(--muted); font-size: 13px; }

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); }
.visual-card {
  padding: 18px;
  overflow: hidden;
}
.visual-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  opacity: .92;
  filter: saturate(1.08) contrast(1.08);
}
.globe-card { background: radial-gradient(circle at 50% 45%, rgba(244,160,0,.19), rgba(6,9,13,.94) 50%); }
.module-grid,
.execution-grid,
.outcome-grid {
  display: grid;
  gap: 14px;
}
.module-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.module-grid article,
.execution-grid article,
.outcome-grid article {
  padding: 20px;
  border: 1px solid rgba(244,160,0,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
}
.module-grid h3,
.execution-grid h3,
.outcome-grid h3 { color: var(--gold-2); margin-bottom: 8px; }
.module-grid p,
.execution-grid p,
.outcome-grid p { font-size: 13px; margin: 0; }

.execution::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(0,0,0,.74), rgba(0,0,0,.92)),
    url("assets/panel-4.webp") center / cover no-repeat;
  opacity: .62;
  z-index: -2;
}
.flow-card { padding: 24px; margin-bottom: 20px; overflow-x: auto; }
.flow-row {
  min-width: 960px;
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 28px;
  align-items: center;
  position: relative;
}
.flow-row span {
  position: relative;
  display: grid;
  min-height: 92px;
  place-items: center;
  text-align: center;
  color: var(--text);
  border: 1px solid rgba(244,160,0,.42);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 20%, rgba(244,160,0,.15), rgba(0,0,0,.7));
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
}
.flow-row i {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translate(104px, -50%);
}
.flow-row i:nth-of-type(1) { left: calc((100% - 168px) / 7 * 1 - 2px); }
.flow-row i:nth-of-type(2) { left: calc((100% - 168px) / 7 * 2 + 8px); }
.flow-row i:nth-of-type(3) { left: calc((100% - 168px) / 7 * 3 + 18px); }
.flow-row i:nth-of-type(4) { left: calc((100% - 168px) / 7 * 4 + 28px); }
.flow-row i:nth-of-type(5) { left: calc((100% - 168px) / 7 * 5 + 38px); }
.flow-row i:nth-of-type(6) { left: calc((100% - 168px) / 7 * 6 + 48px); }
.execution-grid { grid-template-columns: repeat(4, 1fr); }
.channel-panel { margin-top: 18px; padding: 22px; }
.channel-panel .eyebrow { margin-bottom: 14px; }
.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.channel-list span, .trust-notes span {
  color: var(--text);
  border: 1px solid rgba(244,160,0,.22);
  background: rgba(244,160,0,.07);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
}

.outcome-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }

.contact {
  padding-bottom: 80px;
}
.contact-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  padding: clamp(24px, 4.8vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6,9,13,.96), rgba(6,9,13,.82)),
    url("assets/panel-6.webp") center / cover no-repeat;
}
.trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(16px);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-form .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(244,160,0,.22);
  border-radius: 14px;
  background: rgba(1,3,5,.85);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(255,191,40,.75);
  box-shadow: 0 0 0 4px rgba(244,160,0,.09);
}
.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.form-status.success { color: #75e2a8; }
.form-status.error { color: #ff8a80; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 28px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(244,160,0,.14);
  color: var(--quiet);
}
.site-footer img { width: 140px; }
.site-footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header { padding: 14px 22px; }
  .nav { display: none; }
  .brand img { width: 132px; }
  .header-cta { padding: 9px 12px; font-size: 11px; }
  .hero,
  .split-section,
  .split-section.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .capability-strip article { min-height: unset; border-bottom: 1px solid rgba(244,160,0,.18); }
  .capability-strip article:nth-child(2n) { border-right: 0; }
  .comparison { grid-template-columns: 1fr; }
  .versus { margin: 0 auto; }
  .impact-grid,
  .execution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .section-shell { padding: 86px 18px; }
  .hero { padding-top: 120px; }
  h1 { font-size: 46px; }
  .hero-lede { font-size: 18px; }
  .capability-strip,
  .module-grid,
  .impact-grid,
  .execution-grid,
  .outcome-grid,
  .contact-form { grid-template-columns: 1fr; }
  .capability-strip article { border-right: 0; }
  .contact-form .full { grid-column: auto; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}
