:root {
  --void: #0C0E12;
  --asphalt: #161A22;
  --ink: #1A1D24;
  --paper: #F5F4F1;
  --card: #FFFFFF;
  --muted: #5F6570;
  --line: #E4E2DC;
  --sage: #8B9580;
  --amber: #E07A2A;
  --amber-2: #F0913C;
  --cyan: #3AA8A0;
  --hot: #D4546A;
  --white: #FFFFFF;
  --font: "Inter", "Segoe UI", sans-serif;
  --display: "Outfit", "Inter", sans-serif;
  --shadow: 0 18px 44px rgba(26, 29, 36, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% 18%, rgba(224, 122, 42, 0.05), transparent 50%),
    radial-gradient(700px 380px at 96% 70%, rgba(58, 168, 160, 0.05), transparent 48%),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul, ol { margin: 0; }
button { font-family: inherit; }

.cursor {
  position: fixed; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--amber); pointer-events: none; z-index: 90;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  opacity: 0; transition: opacity .2s ease, width .2s ease, height .2s ease;
}
.cursor.is-on { opacity: 1; }
.cursor.is-hot { width: 42px; height: 42px; border-color: #fff; }

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--hot));
  z-index: 80;
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 12px 20px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--pri {
  background: var(--amber); color: #fff;
}
.btn--pri:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224, 122, 42, .28); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.hero {
  position: relative;
  background:
    linear-gradient(125deg, #0C0E12 0%, #161A22 48%, #1C1814 78%, #12161C 100%);
  color: #fff; overflow: hidden;
}
.hero__fx { position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 20%, transparent 72%);
  animation: gridDrift 18s linear infinite;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(48px); opacity: .28;
  animation: float 9s ease-in-out infinite;
}
.orb--lime { width: 260px; height: 260px; background: #8B9580; top: -60px; right: 8%; }
.orb--amber { width: 220px; height: 220px; background: #E07A2A; bottom: 8%; left: 6%; animation-delay: -3s; opacity: .32; }
.orb--cyan { width: 160px; height: 160px; background: #3AA8A0; top: 36%; left: 42%; animation-delay: -6s; opacity: .22; }
.scan {
  position: absolute; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent, rgba(224, 122, 42, .06), transparent);
  animation: scan 7s linear infinite;
}
@keyframes gridDrift { to { background-position: 56px 56px; } }
@keyframes float { 50% { transform: translateY(-18px) scale(1.06); } }
@keyframes scan { 0% { top: -10%; } 100% { top: 110%; } }

.hero__grid {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto; padding: 64px 28px 80px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: #D4B59A; font-weight: 600; margin-bottom: 16px;
}
.eyebrow i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 0 rgba(224, 122, 42, .55);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(224, 122, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 122, 42, 0); }
}
.hero h1 {
  font-family: var(--display);
  font-size: 44px; line-height: 1.08; letter-spacing: -.035em; font-weight: 700; max-width: 15ch;
}
.brand-line { margin: 14px 0; font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: .1em; }
.brand-line span, .hero__prod span { color: var(--amber); }
.lead { color: #B8BDC6; font-size: 16px; max-width: 50ch; margin-bottom: 24px; }
.lead strong { color: #fff; }
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 26px 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.04);
  transform-style: preserve-3d;
}
.hero__logo { height: 50px; width: auto; background: #fff; padding: 7px 11px; border-radius: 10px; }
.hero__co { margin-top: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #D4B59A; font-weight: 600; }
.hero__prod { font-family: var(--display); font-size: 28px; font-weight: 700; margin: 4px 0 14px; }
.hero__card ol { list-style: none; padding: 0; }
.hero__card li {
  display: grid; grid-template-columns: 36px 1fr; gap: 10px;
  padding: 11px 8px; border-top: 1px solid rgba(255,255,255,.1); font-weight: 600;
  border-radius: 10px; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.hero__card li:hover { background: rgba(224, 122, 42, .12); transform: translateX(4px); }
.hero__card li span {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(224, 122, 42, .55); color: var(--amber); font-size: 11px;
}
.hero__card small { display: block; font-weight: 500; color: #A8AEB8; margin-top: 2px; }

.strip {
  max-width: 1140px; margin: -32px auto 0; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  overflow: hidden;
}
.strip__cell { padding: 22px 16px; border-right: 1px solid var(--line); cursor: default; transition: transform .2s ease, background .2s ease; }
.strip__cell:last-child { border-right: 0; }
.strip__cell:hover { transform: translateY(-3px); background: #FAFAF8; }
.strip b { display: block; font-family: var(--display); font-size: 24px; font-weight: 700; }
.strip span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.strip__cell[data-tone="lime"] b { color: var(--sage); }
.strip__cell[data-tone="amber"] b { color: var(--amber); }
.strip__cell[data-tone="cyan"] b { color: var(--cyan); }
.strip__cell[data-tone="hot"] b { color: var(--hot); }

.section { max-width: 1140px; margin: 0 auto; padding: 72px 28px 20px; }
.section--tint {
  max-width: none;
  background: #EEECE6;
  padding: 72px 0 40px;
}
.section--tint .section__head,
.section--tint .tabs,
.section--tint .panels,
.section--tint .roles { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.section__head { margin-bottom: 24px; }
.kicker { font-family: var(--display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 8px; }
h2 { font-family: var(--display); font-size: 34px; letter-spacing: -.03em; font-weight: 700; color: var(--ink); max-width: 18ch; }
.intro { margin-top: 10px; color: var(--muted); max-width: 66ch; }

.outcomes { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.outcomes article {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 16px 18px; min-height: 186px; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.outcomes article em {
  font-style: normal; font-family: var(--display); font-size: 26px; font-weight: 700;
  display: block; margin-bottom: 8px; opacity: .35;
}
.outcomes article[data-tone="lime"] em { color: var(--sage); }
.outcomes article[data-tone="amber"] em { color: var(--amber); }
.outcomes article[data-tone="cyan"] em { color: var(--cyan); }
.outcomes article[data-tone="hot"] em { color: var(--hot); }
.outcomes article::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.outcomes article[data-tone="lime"]::after { background: var(--sage); }
.outcomes article[data-tone="amber"]::after { background: var(--amber); }
.outcomes article[data-tone="cyan"]::after { background: var(--cyan); }
.outcomes article[data-tone="hot"]::after { background: var(--hot); }
.outcomes article:hover { box-shadow: var(--shadow); border-color: transparent; }
.outcomes article:hover::after { transform: scaleX(1); }
.outcomes h3 { font-family: var(--display); font-size: 17px; font-weight: 650; color: var(--ink); margin-bottom: 8px; }
.outcomes p { font-size: 13px; color: var(--muted); }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tab {
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 999px; padding: 9px 15px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.tab:hover { transform: translateY(-2px); border-color: var(--amber); }
.tab.is-on {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(26, 29, 36, .16);
}
.panels { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.panel { display: none; grid-template-columns: 260px 1fr; animation: panelIn .35s ease; }
.panel.is-on { display: grid; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel__meta {
  background:
    radial-gradient(180px 140px at 20% 0%, rgba(224, 122, 42, .16), transparent 60%),
    var(--asphalt);
  color: #fff; padding: 26px 20px;
}
.panel__meta span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #D4B59A; font-weight: 600; margin-bottom: 8px; }
.panel__meta h3 { font-family: var(--display); font-size: 22px; font-weight: 700; }
.panel__meta p { margin-top: 8px; color: #B8BDC6; font-size: 13px; }
.panel__grid { display: grid; grid-template-columns: 1fr 1fr; }
.cell { padding: 16px 18px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.cell:nth-child(odd) { border-left: 0; }
.cell:nth-last-child(-n+2) { border-bottom: 0; }
.cell b { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.cell span { font-size: 13px; color: var(--muted); }
.cell:hover { background: #FAF6F1; transform: translateY(-1px); }

.flow__hint { font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 12px; }
.flow__step {
  text-align: left; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 12px; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.flow__step:hover { transform: translateY(-3px); }
.flow__step span { display: block; font-size: 11px; font-weight: 650; color: var(--amber); margin-bottom: 6px; }
.flow__step strong { display: block; font-family: var(--display); color: var(--ink); }
.flow__step em { display: block; font-style: normal; font-size: 12px; color: var(--muted); margin-top: 3px; }
.flow__step.is-on {
  background: var(--ink); border-color: var(--ink); color: #fff;
  box-shadow: 0 12px 28px rgba(26, 29, 36, .18);
}
.flow__step.is-on strong { color: #fff; }
.flow__step.is-on em, .flow__step.is-on span { color: #E8C4A4; }
.flow__card {
  background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--amber);
  border-radius: 14px; padding: 22px 24px; min-height: 132px;
}
.flow__card.is-swap { animation: swap .32s ease; }
@keyframes swap { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.flow__card h3 { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin: 4px 0 8px; }
.flow__card p { color: var(--muted); }

.roles { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.roles article {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 16px; min-height: 168px; transition: transform .2s ease, box-shadow .2s ease;
}
.roles article[data-tone="lime"] { border-top: 4px solid var(--sage); }
.roles article[data-tone="amber"] { border-top: 4px solid var(--amber); }
.roles article[data-tone="cyan"] { border-top: 4px solid var(--cyan); }
.roles article[data-tone="hot"] { border-top: 4px solid var(--hot); }
.roles article:hover { box-shadow: var(--shadow); }
.who { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); font-weight: 650; margin-bottom: 6px; }
.roles h3 { font-family: var(--display); font-size: 16px; font-weight: 650; color: var(--ink); margin-bottom: 8px; }
.roles p { font-size: 13px; color: var(--muted); }

.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: default; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.chips li:hover {
  transform: translateY(-2px);
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.cta {
  max-width: 1140px; margin: 40px auto 0; padding: 36px 32px;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items: center;
  background:
    radial-gradient(420px 220px at 12% 0%, rgba(224, 122, 42, .18), transparent 60%),
    radial-gradient(320px 180px at 90% 100%, rgba(58, 168, 160, .12), transparent 55%),
    var(--void);
  color: #fff; border-radius: 22px;
}
.cta h2 { color: #fff; }
.cta p { color: #B8BDC6; margin-top: 10px; }
.cta .kicker { color: #E8C4A4; }
.cta__card { background: #fff; color: var(--ink); border-radius: 16px; padding: 22px; }
.cta__card strong { display: block; font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); }
.cta__card a { display: block; margin-top: 8px; font-weight: 650; color: #9A5200; width: fit-content; border-bottom: 2px solid var(--amber); }
.cta__card a:hover { color: var(--hot); border-color: var(--hot); }
.cta__card span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }

.foot {
  max-width: 1140px; margin: 0 auto; padding: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--muted); font-size: 13px;
}
.foot img { height: 32px; width: auto; }

@media (max-width: 960px) {
  .hero__grid, .panel, .cta, .strip, .outcomes, .roles, .flow { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; max-width: none; }
  .strip { margin: 0 16px; }
  .strip__cell, .cell { border-right: 0; border-left: 0; }
  .panel.is-on { display: block; }
  .cta { margin: 32px 16px 0; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .progress, .cursor, .hero__fx { display: none !important; }
  .panel { display: grid !important; page-break-inside: avoid; }
  .panel[hidden] { display: grid !important; }
}
