:root {
  --ink: #f7f5ef;
  --muted: #a7acb8;
  --dark: #080a0f;
  --dark-2: #10141c;
  --line: rgba(255, 255, 255, .12);
  --card: rgba(255, 255, 255, .07);
  --paper: #f4f1e8;
  --paper-ink: #101319;
  --acid: #d8ff5d;
  --cyan: #59d7ff;
  --red: #ff4f5e;
  --icon-bg: rgba(216, 255, 93, .12);
  --icon-line: rgba(216, 255, 93, .25);
  --shadow: 0 24px 90px rgba(0, 0, 0, .35);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--acid);
  color: #05070b;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 10, 15, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 15, .92);
  border-color: var(--line);
}

.nav {
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  width: 192px;
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 255, 93, .45);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(216, 255, 93, .22), rgba(89, 215, 255, .08));
  color: var(--acid);
  font-weight: 900;
}

.brand-text {
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d9dde6;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #d9dde6;
  transition: background .2s ease, color .2s ease;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nav-cta {
  background: var(--ink);
  color: #07090d;
}

.button.primary {
  background: var(--acid);
  color: #07090d;
  border-color: var(--acid);
}

.button.ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 88px 0 52px;
  background:
    radial-gradient(circle at 76% 16%, rgba(216, 255, 93, .16), transparent 30%),
    linear-gradient(135deg, #080a0f 0%, #111722 54%, #090b10 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: #d2d6df;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  margin-top: 44px;
  gap: 14px;
}

.proof-row div {
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  font-size: 18px;
}

.proof-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  perspective: 1100px;
}

.dashboard {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-7deg);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(216, 255, 93, .5), transparent 34%, rgba(89, 215, 255, .36));
  z-index: -1;
}

.dash-top,
.metric-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 15, .72);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  color: #dce3ef;
  font-weight: 800;
}

.status-dot {
  color: var(--acid);
}

.main-metric {
  margin-top: 14px;
  padding: 22px;
}

.metric-panel span,
.metric-panel em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.metric-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 38px;
  line-height: 1;
}

.chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 22px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(216, 255, 93, .08), rgba(89, 215, 255, .05));
}

.chart span {
  flex: 1;
  min-width: 16px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--acid), var(--cyan));
  animation: pulse-bar 3.5s ease-in-out infinite;
}

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

.dash-grid .metric-panel {
  padding: 16px;
}

.dash-grid strong {
  font-size: 24px;
}

.platform-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #0b0e14;
}

.strip-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .08em;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track img {
  width: 176px;
  height: 52px;
  object-fit: contain;
  filter: saturate(.92);
}

.section {
  padding: 110px 0;
}

.two-column,
.results-grid,
.about-grid,
.why-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p,
.section-copy p,
.problem-list p,
.about-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.problem {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 25, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 19, 25, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.problem .shell {
  position: relative;
  z-index: 1;
}

.problem .eyebrow {
  color: #c43a44;
}

.problem-list p,
.problem .section-copy p {
  color: #505866;
}

.signal-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.signal-grid span,
.industry-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 19, 25, .05);
  transition: transform .2s ease, border-color .2s ease;
}

.signal-grid span:hover,
.industry-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 255, 93, .42);
}

[data-icon] {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--icon-bg);
  border: 1px solid var(--icon-line);
}

[data-icon]::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  color: var(--acid);
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

[data-icon="waste"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16v3H4zm2 5h12v3H6zm3 5h8v3H9z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="track"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 7h7l-5.5 4.5L18.5 21 12 16.8 5.5 21l2-7.5L2 9h7z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="creative"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-4 12.7V17h8v-2.3A7 7 0 0 0 12 2zm-4 17h8v3H8z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="funnel"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18l-7 8v6l-4 2v-8z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="report"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h11l3 3v15H5zm3 6h8v2H8zm0 4h8v2H8zm0 4h5v2H8z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="scale"], [data-icon="scale-up"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 18h16v3H4zm2-3l5-5 4 4 5-8v7h-3V11l-4 6-4-4-3 3z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="setup"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v4H4zm0 6h7v8H4zm9 0h7v8h-7z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="optimize"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 17h3l4-10 4 10h5v3h-7l-2-5-2 5H4z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="analytics"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19h16v2H4zM6 10h3v7H6zm5-5h3v12h-3zm5 8h3v4h-3z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="research"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 3a7 7 0 0 1 5.5 11.3l4.1 4.1-2.2 2.2-4.1-4.1A7 7 0 1 1 10 3zm0 3a4 4 0 1 0 0 8 4 4 0 0 0 0-8z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="launch"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l7 7-4 1-5 5-1 4-7-7 4-1 5-5zM14 16l4 4-6 2z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="calendar"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h2V2h3v2h4V2h3v2h2v17H5zm3 6h8v3H8zm0 5h5v3H8z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="channels"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5h6v6H5zm8 0h6v6h-6zM5 13h6v6H5zm8 0h6v6h-6z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="budget"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16v12H4zm3 3v6h10V9zm4 1h2v4h-2z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="cart"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h2l2 10h9l3-7H8.5L8 5H4zm4 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm9 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="lead"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm-7 9a7 7 0 0 1 14 0z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="local"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 10l8-7 8 7v10h-5v-6H9v6H4z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="education"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l10 5-10 5L2 8zm-6 8l6 3 6-3v5c-2 2-10 2-12 0z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="saas"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 18a5 5 0 0 1 1-9 6 6 0 0 1 11 3 3.5 3.5 0 0 1-1 6z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="ticket"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 8a3 3 0 0 0 0 6v3h16v-3a3 3 0 0 0 0-6V5H4zm7-1h2v10h-2z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="transparent"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l9 4v6c0 4-3 7-9 9-6-2-9-5-9-9V7zm0 4v11c4-1.5 6-3.3 6-5.5V9z'/%3E%3C/svg%3E"); color: #d8ff5d; }
[data-icon="structure"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h14v5H5zm2 7h4v9H7zm6 0h4v9h-4z'/%3E%3C/svg%3E"); color: #59d7ff; }
[data-icon="responsible"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l8 5v6c0 5-4 8-8 9-4-1-8-4-8-9V7zm-1 13l6-6-2-2-4 4-2-2-2 2z'/%3E%3C/svg%3E"); color: #d8ff5d; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.system-steps article,
.timeline article,
.why-list article,
.faq-list details,
.lead-form,
.about-card,
.industry-panel,
.stat-stack div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 255, 93, .16), transparent 34%),
    radial-gradient(circle at 85% 16%, rgba(89, 215, 255, .14), transparent 24%);
  opacity: 0;
  transition: opacity .2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 255, 93, .5);
  background: rgba(255, 255, 255, .1);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.service-top span {
  color: var(--acid);
  font-weight: 900;
}

.service-card em {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  color: rgba(247, 245, 239, .48);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 850;
}

.service-card p,
.system-steps p,
.timeline p,
.why-list p,
.faq-list p {
  color: var(--muted);
}

.system {
  position: relative;
  overflow: hidden;
  background: #0e1219;
}

.system::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(980px, 76vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(216, 255, 93, .65), rgba(89, 215, 255, .45), transparent);
}

.system .shell {
  position: relative;
  z-index: 1;
}

.system-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.system-steps article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px 22px 24px;
}

.system-steps article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid), var(--cyan));
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .25s ease;
}

.system-steps article:hover::after {
  transform: scaleX(1);
}

.system-steps article strong {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 0;
  color: rgba(247, 245, 239, .11);
  font-size: 46px;
  line-height: 1;
}

.system-steps article [data-icon],
.system-steps article span,
.system-steps article p {
  position: relative;
  z-index: 1;
}

.system-steps article [data-icon] {
  margin-right: 10px;
  vertical-align: middle;
}

.system-steps span {
  display: inline-flex;
  max-width: calc(100% - 58px);
  margin: 18px 0 14px;
  vertical-align: middle;
  color: var(--acid);
  font-weight: 900;
}

.results {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #080a0f, #10141c);
}

.results::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(89, 215, 255, .16);
  transform: rotate(22deg);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.decision-console {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  max-width: 430px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.decision-console div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.decision-console div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.decision-console span {
  color: var(--muted);
}

.decision-console b {
  color: var(--acid);
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-stack div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease;
}

.stat-stack div:hover {
  transform: translateX(-6px);
  border-color: rgba(89, 215, 255, .45);
}

.stat-stack strong,
.stat-stack span {
  display: block;
}

.stat-stack strong {
  font-size: 30px;
  grid-column: 2;
}

.stat-stack span {
  color: var(--muted);
  grid-column: 2;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(196, 58, 68, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(196, 58, 68, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 72%, transparent);
}

.about .shell {
  position: relative;
  z-index: 1;
}

.about .eyebrow {
  color: #c43a44;
}

.about-card,
.industry-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-color: rgba(0, 0, 0, .08);
  padding: 32px;
}

.about-card {
  border-left: 5px solid #c43a44;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.about-metrics span {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  color: #505866;
  font-size: 13px;
  font-weight: 760;
}

.about-metrics b {
  display: block;
  color: #101319;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}

.industry-orbit {
  display: none;
}

.industry-panel h3 {
  position: relative;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 24px;
}

.industry-panel {
  align-self: start;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(216, 255, 93, .11), transparent 36%),
    linear-gradient(180deg, #141923, #0e1219);
  border-color: rgba(255, 255, 255, .12);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(14, 18, 25, .2);
}

.industry-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.industry-grid {
  position: relative;
  gap: 12px;
}

.industry-grid span {
  min-height: 74px;
  padding: 16px;
  color: #f7f5ef;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.industry-grid span:hover {
  background: rgba(255, 255, 255, .085);
}

.industry-grid [data-icon] {
  --icon-bg: rgba(216, 255, 93, .12);
  --icon-line: rgba(216, 255, 93, .28);
  width: 42px;
  height: 42px;
  background: var(--icon-bg);
  border-color: var(--icon-line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 250px;
  padding: 22px;
}

.timeline strong {
  color: var(--cyan);
}

.why {
  position: relative;
  overflow: hidden;
  background: #0d1118;
}

.why::before {
  content: "MEDIA BUYING";
  position: absolute;
  left: 5vw;
  bottom: -42px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(70px, 14vw, 190px);
  font-weight: 900;
  white-space: nowrap;
}

.why .shell {
  position: relative;
  z-index: 1;
}

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

.why-list article {
  position: relative;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}

.why-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 255, 93, .42);
}

.why-list article [data-icon] {
  margin-bottom: 28px;
}

.why-list article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 50px;
  height: 50px;
  border-top: 1px solid rgba(216, 255, 93, .35);
  border-right: 1px solid rgba(216, 255, 93, .35);
}

.faq-grid {
  grid-template-columns: .8fr 1.2fr;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--acid);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 20px;
}

.contact {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(216, 255, 93, .12), transparent 32%),
    #f4f1e8;
  color: var(--paper-ink);
}

.contact .eyebrow {
  color: #c43a44;
}

.contact-mails {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-mails a {
  color: #0b111b;
  font-weight: 800;
}

.lead-form {
  padding: 28px;
  background: #fff;
  border-color: rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(14, 18, 25, .12);
}

.form-row {
  margin-bottom: 16px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #29313c;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd2db;
  border-radius: var(--radius);
  background: #f9faf7;
  color: #101319;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #234100;
  font-weight: 800;
}

.form-status.error {
  color: #b42332;
}

.site-footer {
  padding: 64px 0 24px;
  background: #080a0f;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p {
  max-width: 440px;
  color: var(--muted);
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--acid);
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: #dce1eb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.legal-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.legal-main {
  padding: 92px 0 110px;
}

.legal-card {
  max-width: 860px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  background: #fff;
}

.legal-card h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: #4f5865;
}

.legal-card a {
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
}

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

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-bar {
  0%, 100% { opacity: .72; }
  50% { opacity: 1; }
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-menu.is-open {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #10141c;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open a {
    padding: 14px;
  }

  .hero-grid,
  .two-column,
  .results-grid,
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .dashboard {
    transform: none;
  }

  .service-grid,
  .system-steps,
  .timeline,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .nav {
    height: 68px;
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-logo {
    width: 166px;
  }

  .hero {
    padding: 46px 0 36px;
  }

  h1 {
    font-size: 46px;
    line-height: .96;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-actions .button,
  .proof-row div {
    width: 100%;
  }

  .section,
  .contact {
    padding: 74px 0;
  }

  .service-grid,
  .system-steps,
  .timeline,
  .why-list,
  .signal-grid,
  .industry-grid,
  .form-row.two,
  .dash-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline article,
  .system-steps article {
    min-height: auto;
  }

  .service-card em {
    position: static;
    display: block;
    margin-top: 24px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .marquee-track img {
    width: 154px;
    height: 46px;
  }

  .lead-form,
  .about-card,
  .industry-panel,
  .legal-card {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 440px;
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(216, 255, 93, 0.05);
  padding: 22px;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-line);
  color: var(--acid);
  flex-shrink: 0;
}

.cookie-title-wrap {
  display: flex;
  flex-direction: column;
}

.cookie-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--acid);
  font-weight: 700;
}

.cookie-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.cookie-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--acid);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.cookie-btn {
  flex: 1;
  font-size: 13px;
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

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

  .cookie-btn {
    width: 100%;
  }
}

