:root {
  color-scheme: dark;
  --black: #050706;
  --panel: #0b1010;
  --panel-strong: #101818;
  --surface: rgba(9, 15, 15, 0.88);
  --surface-soft: rgba(0, 229, 255, 0.07);
  --yellow: #f5f500;
  --cyan: #00e5ff;
  --magenta: #ff0a6c;
  --green: #3dff9d;
  --white: #f4f7ed;
  --muted: rgba(244, 247, 237, 0.72);
  --line: rgba(0, 229, 255, 0.26);
  --yellow-line: rgba(245, 245, 0, 0.72);
  --shadow: 0 22px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --content: 1180px;
  font-family: Inter, "IBM Plex Sans", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 245, 0, 0.08), transparent 34%, rgba(255, 10, 108, 0.07) 68%, transparent),
    var(--black);
  background-size: 56px 56px, 56px 56px, auto, auto;
  color: var(--white);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(244, 247, 237, 0.025), rgba(244, 247, 237, 0.025) 1px, transparent 1px, transparent 6px),
    linear-gradient(180deg, rgba(5, 7, 6, 0.1), rgba(5, 7, 6, 0.78));
}

body::selection {
  background: var(--yellow);
  color: var(--black);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: 1px solid var(--cyan);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(5, 7, 6, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26);
}

.brand,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 900;
  font-size: 18px;
  font-family: Inter, "IBM Plex Sans", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 246px;
  height: auto;
  max-height: 62px;
  filter: drop-shadow(0 8px 18px rgba(0, 229, 255, 0.14));
}

.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(125, 249, 255, 0.16);
}

.nav-links {
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: none;
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(0, 229, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.7);
}

.language-switch button,
.language-switch a {
  min-width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.language-switch button[aria-pressed="true"],
.language-switch a[aria-current="page"] {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: none;
}

.language-switch button[aria-pressed="true"]:hover,
.language-switch button[aria-pressed="true"]:focus-visible,
.language-switch a[aria-current="page"]:hover,
.language-switch a[aria-current="page"]:focus-visible {
  color: var(--black);
}

.console-section {
  position: relative;
  min-height: clamp(760px, calc(100svh - 132px), 980px);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.console-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.console-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.18) contrast(1.08);
}

.console-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98), rgba(5, 7, 6, 0.74) 48%, rgba(5, 7, 6, 0.94)),
    linear-gradient(180deg, rgba(0, 229, 255, 0.05), rgba(255, 10, 108, 0.06)),
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.10), rgba(0, 229, 255, 0.10) 1px, transparent 1px, transparent 7px);
}

.console-section::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 34px;
  width: min(44vw, 560px);
  height: min(36vw, 430px);
  border: 1px solid rgba(0, 229, 255, 0.26);
  border-radius: var(--radius);
  pointer-events: none;
  content: "";
  z-index: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(245, 245, 0, 0.16) 42% 43%, transparent 43% 100%),
    linear-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.42;
}

.console-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 34px;
  align-items: center;
  max-width: var(--content);
  min-height: clamp(760px, calc(100svh - 132px), 980px);
  margin: 0 auto;
  padding: 48px 20px 56px;
}

.console-copy {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  width: 100%;
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 950;
  text-shadow: 0 0 28px rgba(245, 245, 0, 0.16);
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 21px;
}

.console-copy p:not(.eyebrow),
.section-heading p,
.brief-copy p,
.security-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-proof div {
  min-height: 92px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.10), rgba(5, 7, 6, 0.12)),
    rgba(5, 7, 6, 0.84);
}

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

.hero-proof strong {
  margin-bottom: 7px;
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 22px;
  line-height: 1.05;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.campaign-console,
.brief-form {
  position: relative;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    rgba(8, 13, 13, 0.9);
  background-size: 34px 34px;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.18), var(--shadow);
}

.campaign-console {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.campaign-console::before,
.brief-form::before {
  position: absolute;
  top: -1px;
  right: 24px;
  width: 92px;
  height: 3px;
  background: var(--magenta);
  content: "";
}

.console-header h2 {
  font-size: 30px;
  margin-bottom: 0;
}

.campaign-console label,
.campaign-console fieldset {
  gap: 6px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 229, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(5, 7, 7, 0.86);
  color: var(--white);
  font: inherit;
}

input[type="range"] {
  accent-color: var(--yellow);
  cursor: pointer;
}

input[type="range"]:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

input[type="email"],
input[type="text"],
textarea {
  padding: 12px;
}

input:focus-visible,
textarea:focus-visible {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 245, 0, 0.12);
}

textarea {
  min-height: 340px;
  overflow: hidden;
  line-height: 1.5;
  resize: none;
}

.field-hint {
  color: rgba(244, 247, 237, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.form-privacy-note {
  margin: 0;
  color: rgba(244, 247, 237, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.form-noscript {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(245, 245, 0, 0.42);
  border-radius: var(--radius);
  background: rgba(245, 245, 0, 0.08);
  color: rgba(244, 247, 237, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.form-noscript a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

output {
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.radio-row,
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(244, 247, 237, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 7, 7, 0.58);
}

.radio-row input,
.check-row input {
  width: auto;
  accent-color: var(--cyan);
}

.check-row {
  margin-top: -8px;
  color: var(--white);
  cursor: pointer;
}

.check-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.console-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  padding: 14px;
  border: 1px solid rgba(61, 255, 157, 0.44);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(61, 255, 157, 0.12), rgba(0, 229, 255, 0.06)),
    rgba(5, 7, 7, 0.72);
}

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

.console-result strong {
  color: var(--green);
  font-family: "Courier New", monospace;
  overflow-wrap: anywhere;
  text-align: right;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(245, 245, 0, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.action-row,
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(0, 229, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  outline: none;
  transform: translateY(-1px);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245, 245, 0, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.product-band,
.story-band,
.campaign-flow-band,
.packages-band,
.process-band,
.brief-band {
  max-width: var(--content);
  margin: 0 auto;
  padding: 96px 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.feature-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.30);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(5, 7, 6, 0.02)),
    rgba(11, 16, 16, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 18px;
  width: 82px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.feature-visual {
  position: relative;
  min-height: 210px;
  margin: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(rgba(0, 229, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.10) 1px, transparent 1px),
    rgba(5, 7, 6, 0.64);
  background-size: 30px 30px;
}

.feature-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.82));
}

.feature-visual img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
}

.feature-code {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 5px 8px;
  border: 1px solid rgba(245, 245, 0, 0.64);
  border-radius: 5px;
  background: rgba(5, 7, 6, 0.7);
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
}

.feature-copy {
  padding: 6px 18px 20px;
}

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

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(0, 229, 255, 0.18);
}

.story-copy {
  position: sticky;
  top: 102px;
}

.story-grid {
  display: grid;
  gap: 14px;
}

.story-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 2px 16px;
  padding: 18px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent 40%),
    rgba(11, 16, 16, 0.82);
}

.story-grid span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 245, 0, 0.72);
  border-radius: 6px;
  background: rgba(245, 245, 0, 0.08);
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.story-grid h3 {
  margin-bottom: 4px;
}

.story-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.campaign-flow-band {
  border-top: 1px solid rgba(245, 245, 0, 0.18);
}

.campaign-flow-band .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.flow-track {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.30);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    rgba(11, 16, 16, 0.88);
  background-size: 34px 34px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.flow-track::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 94px;
  height: 3px;
  background: var(--cyan);
  content: "";
}

.flow-track-production {
  border-color: rgba(245, 245, 0, 0.42);
}

.flow-track-production::before {
  background: var(--yellow);
}

.flow-track-player {
  border-color: rgba(255, 10, 108, 0.38);
}

.flow-track-player::before {
  background: var(--magenta);
}

.flow-track-header {
  margin-bottom: 20px;
}

.flow-track-header span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-track-production .flow-track-header span {
  color: var(--yellow);
}

.flow-track-player .flow-track-header span {
  color: var(--magenta);
}

.flow-track-header h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.flow-track-header p,
.flow-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.flow-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow-step;
}

.flow-steps li {
  position: relative;
  min-height: 156px;
  padding: 16px 16px 16px 70px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.62);
  counter-increment: flow-step;
}

.flow-steps li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(245, 245, 0, 0.62);
  border-radius: 6px;
  color: var(--yellow);
  content: counter(flow-step, decimal-leading-zero);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.flow-track-player .flow-steps li::before {
  border-color: rgba(255, 10, 108, 0.62);
  color: var(--magenta);
}

.flow-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.flow-steps p {
  margin-bottom: 0;
}

.deliverables-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(245, 245, 0, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(245, 245, 0, 0.09), rgba(0, 229, 255, 0.06)),
    rgba(11, 16, 16, 0.86);
}

.deliverables-panel h3 {
  margin-bottom: 0;
  font-size: 28px;
}

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

.deliverables-grid article {
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.58);
}

.deliverables-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 18px;
}

.deliverables-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.packages-band {
  border-top: 1px solid rgba(0, 229, 255, 0.18);
}

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

.package-card {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 420px;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(5, 7, 6, 0.04)),
    rgba(11, 16, 16, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.package-card-featured {
  border-color: var(--yellow);
  background:
    linear-gradient(180deg, rgba(245, 245, 0, 0.12), rgba(255, 10, 108, 0.08)),
    rgba(11, 16, 16, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.22), 0 18px 54px rgba(0, 0, 0, 0.38);
}

.package-badge {
  justify-self: start;
  margin: -6px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(245, 245, 0, 0.72);
  border-radius: 999px;
  background: rgba(245, 245, 0, 0.12);
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-code,
.package-range {
  color: var(--muted);
  font-family: "Courier New", monospace;
}

.package-code {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-range {
  min-height: 44px;
  margin-bottom: 0;
  line-height: 1.45;
}

.package-price {
  margin: 0;
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 24px;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--yellow);
  content: "/";
  font-weight: 900;
}

.packages-note {
  max-width: 900px;
  margin: 22px 0 0;
  padding: 15px 18px;
  border: 1px solid rgba(245, 245, 0, 0.34);
  border-radius: var(--radius);
  background: rgba(245, 245, 0, 0.07);
  color: var(--muted);
  line-height: 1.55;
}

.legal-scope-note {
  max-width: 900px;
  margin: 12px 0 0;
  padding: 15px 18px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.06);
  color: var(--muted);
  line-height: 1.55;
}

.process-band {
  border-top: 1px solid rgba(245, 245, 0, 0.18);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(255, 10, 108, 0.04)),
    rgba(11, 16, 16, 0.82);
}

.process-list li::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(245, 245, 0, 0.58);
  border-right: 1px solid rgba(245, 245, 0, 0.58);
  content: "";
}

.process-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--magenta);
  font-family: "Courier New", monospace;
  font-size: 28px;
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
  line-height: 1.55;
}

.impact-band {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 54px max(20px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(255, 10, 108, 0.18);
  border-bottom: 1px solid rgba(255, 10, 108, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 10, 108, 0.12), rgba(61, 255, 157, 0.08) 55%, rgba(0, 229, 255, 0.08)),
    rgba(5, 7, 6, 0.88);
}

.impact-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 174px;
}

.impact-visual::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(0, 229, 255, 0.36);
  content: "";
  transform: skewX(-8deg);
}

.impact-visual img {
  position: relative;
  width: min(100%, 210px);
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.36));
}

.impact-band h2 {
  margin-bottom: 0;
}

.impact-band p:not(.eyebrow) {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  padding: 86px max(20px, calc((100vw - var(--content)) / 2));
  background:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 0, 0.10), rgba(0, 229, 255, 0.08));
  background-size: 38px 38px, 38px 38px, auto;
  border-bottom: 1px solid rgba(0, 229, 255, 0.24);
}

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

.security-grid div {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(245, 245, 0, 0.32);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.security-grid div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.security-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 18px;
}

.security-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.brief-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.copy-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-family: "Courier New", monospace;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(245, 245, 0, 0.3);
  color: var(--muted);
  font-family: "Courier New", monospace;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-family: Inter, "IBM Plex Sans", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
  outline: 2px solid rgba(0, 229, 255, 0.52);
  outline-offset: 4px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 20px 96px;
}

.legal-page .eyebrow {
  margin-bottom: 14px;
}

.legal-page h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 0.95;
}

.legal-lead {
  max-width: 780px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.legal-card {
  padding: 24px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.72);
  box-shadow: var(--shadow);
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 30px;
}

.legal-card h3 {
  margin: 20px 0 8px;
  color: var(--cyan);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card ul,
.legal-card ol {
  padding-left: 22px;
}

.legal-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--yellow);
  outline: 2px solid rgba(245, 245, 0, 0.52);
  outline-offset: 3px;
}

.legal-table-wrap {
  width: 100%;
  margin: 18px 0;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border: 1px solid rgba(0, 229, 255, 0.20);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--yellow);
  font-family: "Courier New", monospace;
  text-transform: uppercase;
}

.legal-note {
  border-color: rgba(245, 245, 0, 0.42);
  background: rgba(245, 245, 0, 0.07);
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  max-width: var(--content);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 54px 20px 72px;
}

.download-copy h1 {
  font-size: 52px;
}

.download-copy p:not(.eyebrow),
.store-note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 14px;
}

.store-button {
  display: grid;
  min-width: 210px;
  min-height: 72px;
  justify-content: start;
  padding: 13px 18px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
}

.store-button span {
  font-size: 13px;
  font-weight: 700;
}

.store-button strong {
  font-family: "Courier New", monospace;
  font-size: 24px;
  line-height: 1.1;
}

.store-button-ios {
  border-color: rgba(0, 229, 255, 0.62);
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
}

.store-button:hover,
.store-button:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--black);
  outline: none;
}

.store-button-ios:hover,
.store-button-ios:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245, 245, 0, 0.10);
}

.store-button-pending {
  border-style: dashed;
}

.store-note {
  max-width: 620px;
  font-size: 14px;
}

.download-panel {
  padding: 22px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 229, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.10) 1px, transparent 1px),
    rgba(8, 13, 13, 0.9);
  background-size: 34px 34px;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.44);
}

.download-panel h2 {
  color: var(--yellow);
}

.demo-checklist {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.demo-checklist li {
  position: relative;
  padding: 14px 14px 14px 34px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(5, 7, 6, 0.54);
  color: var(--muted);
  line-height: 1.5;
}

.demo-checklist li::before {
  position: absolute;
  left: 14px;
  color: var(--yellow);
  content: "/";
  font-weight: 900;
}

.demo-qr-band {
  max-width: var(--content);
  margin: 0 auto;
  padding: 30px 20px 72px;
  border-top: 1px solid rgba(0, 229, 255, 0.24);
}

.demo-qr-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.demo-qr-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(0, 229, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(255, 10, 108, 0.06)),
    rgba(11, 16, 16, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.demo-qr-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(244, 247, 237, 0.88);
  border-radius: var(--radius);
  background: #ffffff;
}

.demo-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.demo-qr-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-family: "Courier New", monospace;
  font-size: 16px;
  font-weight: 900;
}

.demo-qr-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 18px;
}

.demo-qr-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.demo-qr-note {
  max-width: 820px;
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--yellow);
  background: rgba(245, 245, 0, 0.07);
  color: var(--muted);
  line-height: 1.55;
}

.demo-legal-note {
  border-left-color: var(--magenta);
  background: rgba(255, 10, 108, 0.06);
}

.demo-info-band {
  max-width: var(--content);
  margin: 0 auto;
  padding: 30px 20px 86px;
  border-top: 1px solid rgba(0, 229, 255, 0.24);
}

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

.download-feature-grid article {
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(5, 7, 6, 0.1)),
    rgba(11, 16, 16, 0.88);
}

.download-feature-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--magenta);
  font-family: "Courier New", monospace;
  font-size: 28px;
  font-weight: 900;
}

.download-feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .console-grid,
  .story-band,
  .flow-layout,
  .deliverables-panel,
  .impact-band,
  .security-band,
  .brief-band,
  .download-hero {
    grid-template-columns: 1fr;
  }

  .console-section::after {
    right: 20px;
    width: calc(100vw - 40px);
    height: 300px;
    opacity: 0.24;
  }

  .story-copy {
    position: static;
  }

  .feature-grid,
  .packages-grid,
  .process-list,
  .deliverables-grid,
  .demo-qr-grid,
  .download-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  h1 {
    font-size: 42px;
  }

  .legal-page h1 {
    font-size: 42px;
  }

  .legal-lead {
    font-size: 20px;
  }

  .legal-card h2 {
    font-size: 26px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 190px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .site-header {
    position: static;
  }

  .console-grid {
    padding-top: 34px;
  }

  .console-grid,
  .campaign-console,
  .hero-proof,
  .brief-form {
    min-width: 0;
  }

  .campaign-console {
    padding: 18px;
  }

  .action-row {
    flex-direction: column;
  }

  .action-row .primary-action,
  .action-row .secondary-action {
    width: 100%;
  }

  .hero-proof div {
    min-height: 76px;
  }

  .feature-visual,
  .feature-visual img {
    height: 188px;
    min-height: 188px;
  }

  .download-hero {
    padding-top: 34px;
  }

  .download-copy h1 {
    font-size: 34px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .legal-page h1 {
    font-size: 32px;
  }

  .legal-lead {
    font-size: 18px;
  }

  .legal-card {
    padding: 18px;
  }

  .legal-card h2 {
    font-size: 24px;
  }

  h2 {
    font-size: 28px;
  }

  .feature-grid,
  .packages-grid,
  .process-list,
  .flow-layout,
  .deliverables-grid,
  .security-grid,
  .demo-qr-grid,
  .download-feature-grid {
    grid-template-columns: 1fr;
  }

  .story-grid article {
    grid-template-columns: 1fr;
  }

  .story-grid span {
    grid-row: auto;
  }

  .console-result {
    grid-template-columns: 1fr;
  }

  .console-result strong {
    text-align: left;
  }

  .store-actions {
    width: 100%;
  }

  .store-button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .primary-action:hover,
  .primary-action:focus-visible,
  .secondary-action:hover,
  .secondary-action:focus-visible {
    transform: none;
  }
}
