:root {
  --accent: #fb23c2;
  --accent-deep: #ed00b5;
  --accent-soft: #ff82db;
  --green: #0ae448;
  --oa-ink: #090a0a;
  --light: #16181a;
  --paper: #f1f2f3;
  --paper-tint: #e5e8ec;
  --paper-deep: #d5dbe1;
  --white: #ffffff;
  --text: #eeedf0;
  --oa-muted: #a7acb2;
  --oa-muted-dark: #687078;
  --oa-line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(9, 10, 10, 0.12);
  --display-font: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale */
  --fs-micro: 0.68rem;
  --fs-xs: 0.78rem;
  --fs-sm: 0.9rem;
  --fs-body: clamp(1rem, 1.12vw, 1.18rem);
  --fs-lede: clamp(1.05rem, 1.45vw, 1.38rem);
  --fs-card: clamp(1.35rem, 2.15vw, 2rem);
  --fs-section: clamp(2.8rem, 6.3vw, 6.1rem);
  --fs-hero: clamp(4.2rem, 9.4vw, 9rem);
  --fs-footer: clamp(2rem, 4.4vw, 4.3rem);

  --max-width: 1440px;
  --shell-padding: clamp(1.25rem, 4vw, 4.5rem);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.25rem;
  --shadow-card: 0 20px 42px rgba(9, 10, 10, 0.1), 0 2px 0 rgba(255, 255, 255, 0.72) inset;
  --shadow-dark: 0 28px 72px rgba(0, 0, 0, 0.38), 0 2px 0 rgba(255, 255, 255, 0.08) inset;
  --shadow-accent: 0 16px 34px rgba(251, 35, 194, 0.28), 0 3px 0 rgba(255, 255, 255, 0.22) inset;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--oa-ink);
}

body {
  margin: 0;
  background: var(--oa-ink);
  color: var(--text);
  font-family: var(--body-font);
  font-size: var(--fs-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body-font);
}

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

button,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

section[id] {
  scroll-margin-top: 7.5rem;
}

::selection {
  color: var(--oa-ink);
  background: var(--accent-soft);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: var(--shell-padding);
}

.band {
  background: var(--paper);
  color: var(--oa-ink);
}

.band-tint {
  background:
    radial-gradient(circle at 15% 15%, rgba(251, 35, 194, 0.08), transparent 27rem),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-tint) 100%);
  color: var(--oa-ink);
}

.band-dark {
  background: var(--oa-ink);
  color: var(--text);
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.section-intro-dark .section-kicker,
.band-dark .section-kicker {
  color: var(--accent-soft);
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--fs-section);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-lede {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: var(--oa-muted-dark);
  font-size: var(--fs-lede);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.section-intro-dark .section-lede,
.band-dark .section-lede {
  color: var(--oa-muted);
}

.section-intro-wide {
  max-width: 920px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 10, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.announcement {
  position: relative;
  z-index: 2;
  color: var(--oa-ink);
  background: linear-gradient(90deg, var(--green) 0%, #aaff84 100%);
  border-bottom: 1px solid rgba(9, 10, 10, 0.16);
}

.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(var(--max-width), calc(100% - 2rem));
  min-height: 40px;
  margin-inline: auto;
  padding: 0 2.8rem;
}

.announcement-kicker {
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.announcement-copy {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: center;
}

.announcement-dismiss {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: rgba(9, 10, 10, 0.56);
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease;
}

.announcement-dismiss:hover {
  color: var(--oa-ink);
  transform: translateY(-50%) rotate(90deg);
}

.nav-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(var(--max-width), calc(100% - 2rem));
  height: 76px;
  margin-inline: auto;
  padding-inline: var(--shell-padding);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand-word b {
  color: var(--accent-soft);
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 2.15rem;
  height: 1.35rem;
  color: currentColor;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 0.2rem;
  width: 1.35rem;
  height: 0.86rem;
  content: "";
  border: 2px solid currentColor;
  border-radius: 0.8rem 0.95rem 0.8rem 0.95rem;
  transform: rotate(36deg);
}

.brand-mark::before {
  left: 0;
}

.brand-mark::after {
  right: 0;
  transform: rotate(-36deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.15rem, 1vw, 0.75rem);
  min-width: 0;
  margin-left: 1.2rem;
}

.nav-link {
  position: relative;
  padding: 0.65rem 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.35rem;
  left: 0.72rem;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.nav-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.45rem;
  padding: 0.55rem 1rem;
  color: var(--oa-ink);
  background: var(--white);
  border-radius: 0.8rem;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-jump:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.27rem;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.55rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: clamp(3.6rem, 7vw, 6.5rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse 70% 75% at 50% 35%, black 0%, transparent 80%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 5%;
  right: 4%;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(251, 35, 194, 0.16), transparent 68%);
}

.hero-glow-two {
  bottom: 2%;
  left: 12%;
  width: 32rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(10, 228, 72, 0.08), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.92fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  color: var(--accent-soft);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(10, 228, 72, 0.1), 0 0 18px rgba(10, 228, 72, 0.65);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 8%, #ffffff 42%, #ffc9ef 72%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--display-font);
  font-size: var(--fs-hero);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-sub {
  max-width: 560px;
  margin: 2rem 0 0;
  color: var(--oa-muted);
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-primary,
.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.5rem;
  color: var(--white);
  background: var(--accent);
  border-radius: 0.95rem;
  box-shadow: var(--shadow-accent);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-primary:hover,
.final-cta-button:hover {
  background: var(--accent-deep);
  box-shadow: 0 20px 42px rgba(251, 35, 194, 0.38), 0 3px 0 rgba(255, 255, 255, 0.24) inset;
  transform: translateY(-4px);
}

.hero-primary span,
.final-cta-button span {
  font-size: 1.2em;
  line-height: 1;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.15rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0.95rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-secondary:hover {
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 35, 194, 0.5);
  transform: translateY(-3px);
}

.hero-disclosure,
.final-disclosure {
  max-width: 500px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.hero-art {
  position: relative;
  min-height: clamp(390px, 46vw, 610px);
}

.hero-art-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-art-ring-one {
  top: 3%;
  right: 4%;
  width: 92%;
  height: 92%;
  transform: rotate(14deg);
}

.hero-art-ring-two {
  top: 18%;
  right: 12%;
  width: 68%;
  height: 68%;
  border-color: rgba(251, 35, 194, 0.42);
  transform: rotate(-22deg);
}

.hero-art-main {
  position: absolute;
  top: 5%;
  right: 4%;
  width: min(82%, 620px);
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  background: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  box-shadow: var(--shadow-dark);
  transform: rotate(3.5deg);
  transition: transform 500ms cubic-bezier(0.2, 1.1, 0.3, 1), box-shadow 300ms ease;
}

.hero-art-main:hover {
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52), 0 2px 0 rgba(255, 255, 255, 0.14) inset;
  transform: rotate(1deg) translateY(-5px);
}

.hero-art-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 10, 10, 0.05) 20%, rgba(9, 10, 10, 0.66) 100%),
    linear-gradient(90deg, rgba(251, 35, 194, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-art-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 1.1, 0.3, 1);
}

.hero-art-main:hover img {
  transform: scale(1.045);
}

.hero-art-label,
.hero-art-main figcaption {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  color: var(--white);
}

.hero-art-label {
  top: 1.15rem;
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-art-main figcaption {
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-art-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  animation: art-float 6s ease-in-out infinite;
}

.hero-art-float-left {
  top: 15%;
  left: 0;
  color: var(--white);
  background: rgba(22, 24, 26, 0.92);
  transform: rotate(-9deg);
}

.hero-art-float-right {
  right: -1%;
  bottom: 16%;
  color: var(--oa-ink);
  background: var(--accent-soft);
  animation-delay: -2.1s;
  transform: rotate(8deg);
}

.float-number,
.float-mark {
  font-family: var(--display-font);
  font-size: 1.15rem;
  line-height: 1;
}

.float-number {
  color: var(--green);
}

.float-mark {
  color: var(--accent-deep);
}

.float-copy {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-art-note {
  position: absolute;
  right: 9%;
  bottom: 2%;
  display: grid;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.48);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-align: right;
}

.console-block {
  max-width: 1000px;
  margin: clamp(3rem, 6vw, 5.5rem) auto 0;
}

.console-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.console-kicker {
  margin: 0 0 0.55rem;
  color: var(--accent-soft);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.console-title {
  margin: 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.console-status {
  color: rgba(255, 255, 255, 0.43);
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.try-console {
  position: relative;
  padding: clamp(1rem, 2vw, 1.45rem);
  background:
    linear-gradient(#121416, #121416) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(251, 35, 194, 0.7) 44%, rgba(10, 228, 72, 0.33)) border-box;
  border: 1px solid transparent;
  border-radius: 1.75rem;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 2px 0 rgba(255, 255, 255, 0.1) inset, 0 -1px 0 rgba(0, 0, 0, 0.7) inset;
  transition: transform 260ms cubic-bezier(0.2, 1.1, 0.3, 1), box-shadow 260ms ease;
}

.try-console::after {
  position: absolute;
  inset: 0.35rem;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 1.45rem;
  content: "";
  pointer-events: none;
}

.try-console:hover {
  box-shadow: 0 44px 105px rgba(0, 0, 0, 0.58), 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 -1px 0 rgba(0, 0, 0, 0.7) inset;
  transform: translateY(-6px);
}

.try-console:focus-within {
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(251, 35, 194, 0.34), 0 2px 0 rgba(255, 255, 255, 0.12) inset;
}

.try-console > * {
  position: relative;
  z-index: 1;
}

.try-console textarea {
  display: block;
  width: 100%;
  min-height: 6.1rem;
  padding: 1rem 1.1rem;
  resize: none;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  field-sizing: content;
}

.try-console textarea::placeholder {
  color: rgba(255, 255, 255, 0.39);
}

.try-console textarea:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.2);
}

.try-console textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 35, 194, 0.58);
  box-shadow: 0 0 0 4px rgba(251, 35, 194, 0.1);
  outline: 0;
}

.tc-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 0.8rem;
}

.ratio-control {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.4rem;
  padding: 0.5rem 0.65rem 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.95rem;
  cursor: pointer;
}

.ratio-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.select-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.select-shell::after {
  position: absolute;
  right: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-right: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  pointer-events: none;
  transform: translateY(-0.15rem) rotate(45deg);
}

.select-shell select {
  min-height: 2.35rem;
  padding: 0.35rem 2rem 0.35rem 0.85rem;
  color: var(--white);
  background: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.7rem;
  appearance: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.select-shell select:hover {
  border-color: rgba(251, 35, 194, 0.55);
}

.select-shell select:focus {
  outline: 0;
}

.select-shell option {
  color: var(--white);
  background: var(--light);
}

.tc-go {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 10.5rem;
  min-height: 3.4rem;
  padding: 0.7rem 1.2rem;
  color: var(--white);
  background: var(--accent);
  border-radius: 0.95rem;
  box-shadow: 0 12px 25px rgba(251, 35, 194, 0.22), 0 2px 0 rgba(255, 255, 255, 0.24) inset;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tc-go:hover {
  background: var(--accent-deep);
  box-shadow: 0 18px 33px rgba(251, 35, 194, 0.35), 0 2px 0 rgba(255, 255, 255, 0.26) inset;
  transform: translateY(-3px);
}

.tc-go span {
  font-size: 1.35rem;
  line-height: 1;
}

.console-disclosure {
  margin: 0.9rem 0 0.95rem;
  color: rgba(255, 255, 255, 0.39);
  font-size: var(--fs-xs);
  line-height: 1.45;
}

.tc-examples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tc-example {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 220ms cubic-bezier(0.2, 1.1, 0.3, 1), box-shadow 180ms ease;
}

.tc-example:hover,
.tc-example[aria-pressed="true"] {
  background: rgba(251, 35, 194, 0.1);
  border-color: rgba(251, 35, 194, 0.78);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.tc-example img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: filter 220ms ease, transform 400ms cubic-bezier(0.2, 1.1, 0.3, 1);
}

.tc-example:hover img,
.tc-example[aria-pressed="true"] img {
  filter: saturate(1.2) contrast(1.06);
  transform: scale(1.045);
}

.tc-example-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  padding: 0.55rem 0.65rem;
}

.tc-example-number {
  color: var(--accent-soft);
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  font-weight: 700;
}

.tc-example-name {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-strip {
  padding: clamp(2.7rem, 5vw, 4.8rem) 0;
  border-top: 1px solid rgba(9, 10, 10, 0.08);
  border-bottom: 1px solid rgba(9, 10, 10, 0.08);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.trust-lede {
  max-width: 330px;
}

.trust-title {
  margin: 0;
  color: var(--oa-ink);
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-stat {
  min-height: 6.4rem;
  padding: 0.95rem 1rem;
  border-left: 2px solid rgba(251, 35, 194, 0.58);
}

.trust-stat strong {
  display: block;
  color: var(--accent-deep);
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.trust-stat span {
  display: block;
  max-width: 130px;
  margin-top: 0.55rem;
  color: var(--oa-muted-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-section {
  padding: clamp(5.5rem, 10vw, 9.5rem) 0 clamp(6.4rem, 11vw, 10.5rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3.2rem, 6vw, 5.7rem);
}

.feature-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms cubic-bezier(0.2, 1.1, 0.3, 1);
}

.feature-card:hover {
  border-color: rgba(251, 35, 194, 0.48);
  box-shadow: 0 28px 58px rgba(9, 10, 10, 0.17), 0 2px 0 rgba(255, 255, 255, 0.82) inset;
  transform: translateY(-7px);
}

.feature-card--one {
  grid-column: span 7;
}

.feature-card--two {
  grid-column: span 5;
}

.feature-card--three {
  grid-column: span 5;
}

.feature-card--four {
  grid-column: span 7;
}

.feature-card--five,
.feature-card--six {
  grid-column: span 6;
}

.feature-card--image {
  min-height: 28rem;
  color: var(--white);
  background: var(--light);
}

.feature-media,
.feature-media::after {
  position: absolute;
  inset: 0;
}

.feature-media::after {
  content: "";
  background: linear-gradient(180deg, rgba(9, 10, 10, 0.06) 22%, rgba(9, 10, 10, 0.86) 100%);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 650ms cubic-bezier(0.2, 1.1, 0.3, 1), filter 300ms ease;
}

.feature-card--image:hover .feature-media img {
  filter: saturate(1.18) contrast(1.05);
  transform: scale(1.055);
}

.feature-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.feature-number {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent-deep);
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card--image .feature-number {
  color: var(--accent-soft);
}

.feature-card h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--fs-card);
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 520px;
  margin: 0.85rem 0 0;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.feature-card--image p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card--solid {
  padding: clamp(1.35rem, 3vw, 2.15rem);
  color: var(--oa-ink);
  background: var(--white);
}

.feature-card--solid p {
  max-width: 410px;
  color: var(--oa-muted-dark);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2.7rem;
  color: var(--accent-deep);
  background: rgba(251, 35, 194, 0.1);
  border: 1px solid rgba(251, 35, 194, 0.23);
  border-radius: 1rem;
}

.feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.feature-card--solid .feature-number {
  margin-bottom: 0.8rem;
}

.feature-arrow {
  position: absolute;
  right: 1.55rem;
  bottom: 1.3rem;
  color: var(--accent-deep);
  font-size: 1.6rem;
  transition: transform 180ms ease;
}

.feature-card--solid:hover .feature-arrow {
  transform: translate(0.22rem, -0.22rem);
}

.how-section {
  padding: clamp(5.2rem, 9vw, 8.5rem) 0 clamp(5.8rem, 10vw, 9.2rem);
  border-top: 1px solid rgba(9, 10, 10, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: clamp(3.1rem, 6vw, 5rem) 0 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 18.5rem;
  padding: 1.5rem 1.35rem 1.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(9, 10, 10, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(9, 10, 10, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.2, 1.1, 0.3, 1);
}

.step-card:hover {
  border-color: rgba(251, 35, 194, 0.55);
  box-shadow: 0 24px 42px rgba(9, 10, 10, 0.13), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-6px);
}

.step-number {
  display: block;
  color: var(--accent-deep);
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.step-card h3 {
  margin: 2.2rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.step-card p {
  margin: 0.9rem 0 0;
  color: var(--oa-muted-dark);
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.step-line {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.55;
}

.use-cases {
  padding: clamp(6.2rem, 11vw, 10.8rem) 0 clamp(6.4rem, 11vw, 10rem);
  overflow: hidden;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3.5rem, 6vw, 5.8rem);
}

.use-case-cell {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: #111315;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 240ms ease, transform 240ms cubic-bezier(0.2, 1.1, 0.3, 1);
}

.use-case-cell:hover {
  background: #17191c;
  border-color: rgba(251, 35, 194, 0.58);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-7px);
}

.use-case-media {
  position: relative;
  height: 13.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 10, 10, 0.05), rgba(9, 10, 10, 0.48));
  pointer-events: none;
}

.use-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 600ms cubic-bezier(0.2, 1.1, 0.3, 1), filter 240ms ease;
}

.use-case-cell:hover .use-case-media img {
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.06);
}

.use-case-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 240ms ease, transform 400ms ease;
}

.use-case-cell:hover .use-case-swatch {
  filter: saturate(1.2) brightness(1.08);
  transform: scale(1.025);
}

.use-case-swatch span {
  color: rgba(255, 255, 255, 0.87);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.use-case-swatch--pink {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.45), transparent 12%),
    linear-gradient(135deg, #fd75d5, #7d0f63 75%);
}

.use-case-swatch--blue {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 18%),
    linear-gradient(135deg, #2c9bc8, #101a4d 75%);
}

.use-case-swatch--lime {
  background:
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.35), transparent 17%),
    linear-gradient(135deg, #9ebf3b, #263b26 76%);
}

.use-case-swatch--violet {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(135deg, #8d5bf4, #271254 75%);
}

.use-case-copy {
  padding: 1.25rem 1.3rem 1.4rem;
}

.use-case-index {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent-soft);
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.11em;
}

.use-case-copy h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.use-case-copy p {
  max-width: 290px;
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.capability-section {
  padding: clamp(5.8rem, 10vw, 9.5rem) 0;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.capability-copy {
  max-width: 500px;
}

.capability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  margin-top: 2rem;
  padding: 0.4rem 0.7rem;
  color: var(--accent-deep);
  background: rgba(251, 35, 194, 0.08);
  border: 1px solid rgba(251, 35, 194, 0.2);
  border-radius: 999px;
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capability-board {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(9, 10, 10, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.capability-table {
  min-width: 620px;
}

.board-head,
.board-row {
  display: grid;
  grid-template-columns: minmax(125px, 0.85fr) minmax(180px, 1.15fr) minmax(160px, 1fr);
}

.board-head {
  min-height: 3.7rem;
  color: var(--oa-muted-dark);
  background: rgba(9, 10, 10, 0.045);
  border-bottom: 1px solid rgba(9, 10, 10, 0.11);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-head span,
.board-row > span,
.board-row > strong {
  display: flex;
  align-items: center;
  padding: 0.95rem 1rem;
}

.board-head span + span,
.board-row > span + span,
.board-row > strong + span {
  border-left: 1px solid rgba(9, 10, 10, 0.1);
}

.board-row {
  min-height: 4.25rem;
  border-bottom: 1px solid rgba(9, 10, 10, 0.1);
  font-size: var(--fs-sm);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row > span:first-child {
  color: var(--oa-muted-dark);
  font-weight: 700;
}

.board-row > strong {
  color: var(--oa-ink);
  background: rgba(251, 35, 194, 0.055);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.board-row > span:last-child {
  color: rgba(104, 112, 120, 0.78);
}

.faq-section {
  padding: clamp(5.5rem, 10vw, 9.2rem) 0 clamp(6rem, 10vw, 9.8rem);
  border-top: 1px solid rgba(9, 10, 10, 0.08);
}

.faq-shell {
  max-width: 1080px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.67);
  border: 1px solid rgba(9, 10, 10, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 26px rgba(9, 10, 10, 0.06);
  transition: border-color 180ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(251, 35, 194, 0.46);
  box-shadow: 0 19px 34px rgba(9, 10, 10, 0.1);
}

.faq-item[open] {
  transform: translateY(-2px);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.7rem;
  padding: 1.05rem 1.3rem;
  color: var(--oa-ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(251, 35, 194, 0.23);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  content: "";
  background: var(--white);
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 780px;
  padding: 0 1.3rem 1.35rem 4.15rem;
  color: var(--oa-muted-dark);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  position: relative;
  padding: clamp(7rem, 14vw, 13.5rem) 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 50% 35%, rgba(251, 35, 194, 0.23), transparent 44%),
    linear-gradient(180deg, transparent, rgba(251, 35, 194, 0.06));
}

.final-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 45%, black, transparent 80%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-title {
  max-width: 950px;
  margin: 0;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 8%, #ffffff 38%, #ffcbef 72%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--display-font);
  font-size: clamp(4rem, 9vw, 9.3rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-transform: uppercase;
  text-wrap: balance;
}

.final-copy {
  max-width: 570px;
  margin: 2rem auto 0;
  color: var(--oa-muted);
  font-size: var(--fs-lede);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.final-cta-button {
  margin-top: 2.3rem;
  min-height: 3.8rem;
  padding-inline: 1.7rem;
}

.final-disclosure {
  max-width: 560px;
  margin-top: 1.15rem;
  text-align: center;
}

.final-cta-orbit {
  position: absolute;
  border: 1px solid rgba(251, 35, 194, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-orbit-one {
  top: 10%;
  left: 50%;
  width: min(80vw, 780px);
  height: min(80vw, 780px);
  transform: translateX(-50%) rotate(18deg);
}

.final-cta-orbit-two {
  top: 24%;
  left: 50%;
  width: min(62vw, 600px);
  height: min(62vw, 600px);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) rotate(-26deg);
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(ellipse at 52% 100%, rgba(251, 35, 194, 0.24), transparent 48%),
    #0b0c0d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-shell {
  padding-top: clamp(3.8rem, 7vw, 6.5rem);
  padding-bottom: 1.25rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: start;
}

.footer-brand-block {
  max-width: 310px;
}

.footer-brand {
  color: var(--white);
}

.footer-slogan {
  margin: 2.4rem 0 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: var(--fs-footer);
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.footer-note {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: var(--accent-soft);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-email:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 3rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-column h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-static {
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--fs-xs);
  letter-spacing: -0.015em;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--accent-soft);
  transform: translateX(3px);
}

.footer-static {
  color: rgba(255, 255, 255, 0.27);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(4rem, 8vw, 7.5rem);
  padding-top: 1.1rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Courier New", monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes art-float {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -0.75rem;
  }
}

@media (max-width: 1120px) {
  .nav-inner {
    gap: 1rem;
  }

  .nav-links {
    margin-left: 0.35rem;
  }

  .nav-link {
    padding-inline: 0.5rem;
    font-size: 0.84rem;
  }

  .nav-link::after {
    right: 0.5rem;
    left: 0.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-art-float-left {
    left: -0.5rem;
  }

  .hero-art-float-right {
    right: -0.5rem;
  }
}

@media (max-width: 920px) {
  .announcement-copy {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.8rem;
    background: rgba(9, 10, 10, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    border-radius: 0 0 1.2rem 1.2rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-link {
    padding: 0.9rem 1rem;
    border-radius: 0.65rem;
    font-size: 1rem;
  }

  .nav-link::after {
    right: 1rem;
    bottom: 0.45rem;
    left: 1rem;
  }

  .nav-jump {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    min-height: clamp(390px, 58vw, 560px);
    margin-top: 1.5rem;
  }

  .trust-layout,
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .trust-lede,
  .capability-copy {
    max-width: 650px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-brand-block {
    max-width: 460px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell-padding: 1.25rem;
  }

  .section-shell {
    width: min(100% - 1rem, var(--max-width));
  }

  .announcement-inner {
    justify-content: flex-start;
    min-height: 38px;
    padding-inline: 0.6rem 2.8rem;
  }

  .announcement-kicker {
    font-size: 0.63rem;
  }

  .nav-inner {
    width: calc(100% - 1rem);
    height: 68px;
    padding-inline: 0.65rem;
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    padding-top: 3.8rem;
    padding-bottom: 5.4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 7rem);
  }

  .hero-sub {
    margin-top: 1.5rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-art {
    min-height: 390px;
    margin-top: 0;
  }

  .hero-art-main {
    right: 3%;
    width: 86%;
  }

  .hero-art-float-left {
    top: 15%;
    left: -0.4rem;
  }

  .hero-art-float-right {
    right: -0.35rem;
    bottom: 13%;
  }

  .hero-art-note {
    right: 3%;
    bottom: 1%;
    font-size: 0.53rem;
  }

  .console-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-status {
    text-align: left;
  }

  .try-console {
    border-radius: 1.35rem;
  }

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

  .ratio-control,
  .tc-go {
    width: 100%;
  }

  .tc-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card--one,
  .feature-card--two,
  .feature-card--three,
  .feature-card--four,
  .feature-card--five,
  .feature-card--six {
    grid-column: span 1;
  }

  .feature-card--image {
    min-height: 24rem;
  }

  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-cell {
    min-height: 20rem;
  }

  .use-case-media,
  .use-case-swatch {
    height: 11.5rem;
  }

  .faq-item summary {
    min-height: 4.3rem;
    padding: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1.15rem 3.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.4rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-art {
    min-height: 315px;
  }

  .hero-art-main {
    top: 7%;
    width: 88%;
    border-radius: 1.35rem;
  }

  .hero-art-label {
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.55rem;
  }

  .hero-art-main figcaption {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    font-size: 1.7rem;
  }

  .hero-art-float {
    padding: 0.65rem 0.7rem;
    border-radius: 0.75rem;
  }

  .hero-art-float-left {
    left: -0.35rem;
  }

  .hero-art-float-right {
    right: -0.3rem;
  }

  .float-copy {
    font-size: 0.62rem;
  }

  .float-number,
  .float-mark {
    font-size: 0.9rem;
  }

  .console-title {
    font-size: 2.5rem;
  }

  .tc-examples {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .tc-example-info {
    min-height: 2.45rem;
    padding: 0.45rem;
  }

  .tc-example-name {
    font-size: 0.68rem;
  }

  .trust-stat {
    min-height: 5.5rem;
    padding: 0.75rem;
  }

  .trust-stat strong {
    font-size: 2.6rem;
  }

  .feature-grid,
  .steps,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--one,
  .feature-card--two,
  .feature-card--three,
  .feature-card--four,
  .feature-card--five,
  .feature-card--six {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 20rem;
  }

  .feature-card--image {
    min-height: 23rem;
  }

  .step-card {
    min-height: 15.5rem;
  }

  .use-case-cell {
    min-height: 19rem;
  }

  .use-case-media,
  .use-case-swatch {
    height: 12rem;
  }

  .board-head span,
  .board-row > span,
  .board-row > strong {
    padding-inline: 0.75rem;
  }

  .final-title {
    font-size: clamp(3.6rem, 17vw, 6.1rem);
  }

  .final-cta-button {
    width: 100%;
    padding-inline: 1rem;
    font-size: 0.9rem;
  }

  .footer-grid {
    gap: 2rem 1.2rem;
  }
}

/* Keep the script-owned component tokens intact; these are the site's own visual adjustments. */
main h1 {
  font-size: clamp(4rem, 6vw, 6rem);
}

main h2.section-title {
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
}

.final-title {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

main p {
  max-width: min(100%, 760px) !important;
}

main section > .section-shell > p:not(.section-kicker),
main section > .section-shell > .section-lede {
  margin-inline: auto;
}

#hero .hero-copy .hero-sub {
  max-width: 1060px;
}

main section:not(#hero) .hero-copy > h1 + .hero-sub,
main section > .section-shell > h1 + p,
main section > .section-shell > h1 + p.section-lede {
  max-width: 760px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.trust-title {
  max-width: 760px;
}

.trust-stat strong {
  color: #8f0068;
}

section.band:not(.band-dark) .step-card p,
section.band-tint .step-card p,
section.band:not(.band-dark) .metric span,
section.band-tint .metric span {
  color: #4a4d52;
}

section.band-dark .pbn-sublinks a {
  color: #c4c8cd;
}

.hero-primary,
.final-cta-button,
.tc-go {
  color: var(--oa-ink);
}

.ratio-control,
.ratio-control .ratio-label,
.select-shell select {
  color: var(--white);
}

.ratio-control,
.select-shell,
.select-shell select,
.tc-example {
  background-color: var(--light);
}

.tc-example-info,
.tc-example-name {
  color: var(--white);
}

.tc-example-number {
  color: var(--accent-soft);
}

.band:not(.band-dark) .section-kicker,
.band-tint:not(.band-dark) .section-kicker,
.band:not(.band-dark) .feature-number,
.band-tint:not(.band-dark) .feature-number {
  color: #8f0068;
}

.band-dark .section-kicker,
.band-dark .feature-number {
  color: var(--accent-soft);
}

.band-dark > .section-shell > .section-lede,
.band-dark > .section-shell > .hero-sub,
.band-dark > .section-shell > .final-copy,
.band-dark > .section-shell > p:not(.section-kicker) {
  color: #c4c8cd;
}

.band:not(.band-dark) > .section-shell > .section-lede,
.band-tint:not(.band-dark) > .section-shell > .section-lede,
.band:not(.band-dark) > .section-shell > p:not(.section-kicker),
.band-tint:not(.band-dark) > .section-shell > p:not(.section-kicker) {
  color: #4a4d52;
}

section.band-tint {
  background-color: var(--paper);
  color: var(--oa-ink);
}

section.band-dark {
  background-color: var(--oa-ink);
  color: var(--text);
}

section.band-dark .section-kicker {
  color: var(--accent-soft);
}

.band-dark .card,
.band-dark .feature-card--solid {
  background-color: #1f2020;
}

.ratio-control,
.select-shell,
.select-shell select,
.tc-example-info {
  background: #16181a;
}

.feature-icon {
  color: #8f0068;
  background: #ffffff;
}

.feature-arrow {
  color: #8f0068;
}

:root {
  --oa-muted-dark: #62666c;
}

.feature-card--image .feature-number {
  color: var(--accent-soft);
}

section.band-tint .step-card p,
section.band:not(.band-dark) .step-card p,
section.band-tint .metric span,
section.band:not(.band-dark) .metric span {
  color: #4a4d52 !important;
}

section.band-dark .rail .pill,
section.band-dark .pbn-sublinks a {
  color: #c4c8cd;
  background-color: #1f2020;
}

.ba {
  align-items: stretch;
}

.ba figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ba figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.section-shell > .hero-art-main {
  position: relative;
  top: auto;
  right: auto;
  width: min(100%, 680px);
  margin: 2rem auto 0;
}

@media (min-width: 721px) {
  .hero-art-main {
    max-height: 34rem;
  }
}

/* Art-directed hero: preserve the target's centered, orbiting image language while keeping the handoff console in the hero flow. */
@media (min-width: 721px) {
  .hero {
    min-height: 1320px;
    padding-top: clamp(6.5rem, 11vw, 10rem);
  }

  .hero-grid {
    display: block;
    min-height: 1040px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    max-width: 1060px;
    margin: 13rem auto 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 1060px;
    margin-inline: auto;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
    font-size: clamp(5rem, 9vw, 9rem);
    line-height: 0.82;
  }

  .hero-secondary {
    display: none;
  }

  .hero-sub,
  .hero-disclosure {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    position: absolute;
    inset: 0;
    min-height: 0;
    pointer-events: none;
  }

  .hero-art-main {
    top: 26%;
    right: 34%;
    width: 32%;
    opacity: 0.72;
    transform: rotate(4deg);
  }

  .hero-art-main figcaption,
  .hero-art-main .hero-art-label,
  .hero-art-float {
    display: none;
  }

  .hero-art-tile {
    position: absolute;
    display: block;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.35rem;
    box-shadow: var(--shadow-dark);
    background: var(--light);
    opacity: 0.88;
    transform: rotate(-7deg);
  }

  .hero-art-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.06);
  }

  .hero-art-tile-left {
    top: 28%;
    left: -1.5%;
    width: 17rem;
    aspect-ratio: 0.78;
    transform: rotate(-8deg);
  }

  .hero-art-tile-top {
    top: 9%;
    right: 24%;
    width: 16rem;
    aspect-ratio: 1.15;
    transform: rotate(-2deg);
  }

  .hero-art-tile-right {
    top: 24%;
    right: -3%;
    width: 18rem;
    aspect-ratio: 0.82;
    transform: rotate(6deg);
  }

  .hero-art-tile-bottom {
    bottom: 10%;
    left: 10%;
    width: 21rem;
    aspect-ratio: 1.15;
    transform: rotate(5deg);
  }
}

@media (max-width: 720px) {
  .hero-art-tile {
    display: none;
  }
}

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

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

  .hero-art-main,
  .hero-art-float-left,
  .hero-art-float-right {
    transform: none;
  }
}

/* Final palette and composition guardrails for the generated component layer. */
:root {
  --oa-muted-dark: #62666c;
}

main section > .section-shell > h1 + p,
main section > .section-shell > h1 + p.section-lede {
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#hero .hero-copy .hero-sub {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

main p {
  max-width: min(100%, 760px) !important;
}

section.band:not(.band-dark) .trust-stat strong,
section.band-tint .trust-stat strong {
  color: #65004a !important;
}

main p {
  width: min(100%, 760px) !important;
}

section.band .board-head {
  color: #3b4046;
  background: #e5e8ec;
}

section.band .board-head span {
  color: #3b4046;
}

.trust-stat strong {
  color: #65004a !important;
}

.capability-section .section-kicker {
  color: #65004a !important;
  background: #ffffff;
}

section.band .step-card,
section.band-tint .step-card {
  background: #ffffff;
}

section.band .step-number,
section.band-tint .step-number {
  color: #65004a !important;
}

.capability-badge {
  color: #65004a !important;
  background: #ffffff !important;
}

.site-header {
  position: relative;
}

main section.hero:not(#hero) {
  min-height: 0;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

main section.hero:not(#hero) .hero-copy {
  max-width: 820px;
  margin: 0;
  text-align: left;
}

main section.hero:not(#hero) .hero-copy .hero-sub {
  max-width: 760px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

main section.hero:not(#hero) .hero-art {
  display: none;
}

main section.hero:not(#hero) h1 {
  max-width: 820px;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  font-size: clamp(3.4rem, 6vw, 6rem);
}

section .cases img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

section.band .hero-actions,
section.band-tint .hero-actions {
  margin-bottom: 2.5rem;
}

#hero .hero-art-main,
#hero .hero-art-tile-top {
  display: none;
}

.hero-art-tile-left {
  left: 2%;
}

.hero-art-tile-right {
  right: 2%;
}

section .cases > article > img {
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
}

section.band-tint .step-card {
  background: #ffffff;
}

section.band-tint .step-card .step-number {
  color: #65004a !important;
}

section.band-tint .step-card p {
  color: #4a4d52 !important;
}

main section.hero + section {
  padding-top: clamp(6rem, 10vw, 10rem) !important;
}

section.band-dark .versus .card p,
section.band-dark .versus .card li {
  color: #c4c8cd !important;
}

section.band .feature-card--image .feature-number {
  color: var(--accent-soft) !important;
}

section.band:not(.band-dark) .timeline p,
section.band-tint .timeline p,
section.band:not(.band-dark) .step-card p,
section.band-tint .step-card p,
section.band:not(.band-dark) .metric span,
section.band-tint .metric span {
  color: #4a4d52 !important;
}

section.band-dark .rail .pill,
section.band-dark .rail .pill * {
  color: #c4c8cd !important;
  background-color: #1f2020 !important;
}

section.band:not(.band-dark) .rail .pill,
section.band-tint .rail .pill,
section.band:not(.band-dark) .rail .pill * ,
section.band-tint .rail .pill * {
  color: var(--oa-ink) !important;
  background-color: #ffffff !important;
}

section.band-tint .rail .pill,
section.band:not(.band-dark) .rail .pill {
  border-color: rgba(9, 10, 10, 0.16);
}

section.band .steps li p,
section.band-tint .steps li p {
  color: #4a4d52 !important;
}

section.band-dark .board-head {
  color: #c4c8cd;
  background: #1f2020;
}

section.band-dark .board-head span,
section.band-dark .board-row > span,
section.band-dark .board-row > strong {
  color: #c4c8cd;
}

section.band-tint .board-head {
  color: #4a4d52;
  background: #e5e8ec;
}