:root {
  color-scheme: dark;
  --bg: #070908;
  --panel: rgba(12, 15, 13, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.065);
  --ink: #f5f7ef;
  --muted: rgba(245, 247, 239, 0.7);
  --line: rgba(245, 247, 239, 0.16);
  --line-strong: rgba(245, 247, 239, 0.28);
  --acid: #baff4d;
  --red: #ff4f3d;
  --gold: #f2c15d;
  --radius: 22px;
  --radius-sm: 15px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.2, 0, 0.18, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100vw;
  background:
    radial-gradient(circle at 18% 22%, rgba(186, 255, 77, 0.12), transparent 28vw),
    radial-gradient(circle at 82% 36%, rgba(255, 79, 61, 0.09), transparent 24vw),
    linear-gradient(180deg, #080a09 0%, #10130f 48%, #070908 100%);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
  isolation: isolate;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -18vmax;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(186, 255, 77, 0.16), transparent 26vmax),
    radial-gradient(circle at 78% 18%, rgba(255, 79, 61, 0.13), transparent 24vmax),
    radial-gradient(circle at 62% 82%, rgba(242, 193, 93, 0.08), transparent 24vmax);
  filter: blur(34px);
  opacity: 0.58;
  animation: shaderDrift 24s var(--ease) infinite alternate;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(245, 247, 239, 0.12);
  background: rgba(7, 9, 8, 0.58);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.menu-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 247, 239, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: rgba(186, 255, 77, 0.48);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.menu-button span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease), width 180ms var(--ease);
}

.menu-button span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-button span:nth-child(3) {
  width: 20px;
  transform: translateY(5px);
}

body.menu-open .menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
  transform: translateX(-5px);
}

body.menu-open .menu-button span:nth-child(3) {
  width: 20px;
  transform: rotate(-45deg);
}

.brand {
  justify-self: start;
  display: grid;
  gap: 2px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.brand span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
}

.brand strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.header-cta {
  border: 1px solid rgba(186, 255, 77, 0.48);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(186, 255, 77, 0.08);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  color: var(--ink);
  overflow: hidden;
}

.site-menu[hidden] {
  display: none;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.site-menu__panel {
  position: relative;
  width: min(430px, calc(100% - 28px));
  height: 100dvh;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 20px 22px 34px;
  border-right: 1px solid rgba(245, 247, 239, 0.14);
  background:
    radial-gradient(520px 360px at 0% 0%, rgba(186, 255, 77, 0.16), transparent 62%),
    radial-gradient(460px 300px at 100% 16%, rgba(255, 79, 61, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(12, 15, 13, 0.98), rgba(7, 9, 8, 0.96));
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 260ms var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.site-menu.is-open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.site-menu__title {
  margin-top: 4px;
  font-size: 32px;
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

.site-menu__close {
  appearance: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 247, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.site-menu__close:hover,
.site-menu__close:focus-visible {
  border-color: rgba(186, 255, 77, 0.56);
  outline: none;
}

.menu-nav {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(245, 247, 239, 0.12);
}

.menu-nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 247, 239, 0.12);
  text-decoration: none;
  text-transform: uppercase;
}

.menu-nav a span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
}

.menu-nav a strong {
  color: var(--ink);
  font-size: clamp(23px, 7vw, 36px);
  line-height: 0.92;
  font-weight: 950;
}

.menu-nav a em {
  grid-column: 2;
  color: rgba(245, 247, 239, 0.58);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--acid);
  outline: none;
}

.menu-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 4px;
}

.menu-related p,
.menu-note {
  flex-basis: 100%;
  margin: 0;
  color: rgba(245, 247, 239, 0.48);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-related a {
  color: rgba(245, 247, 239, 0.74);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-related a:hover,
.menu-related a:focus-visible {
  color: var(--acid);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(840px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  overflow: clip;
  padding: 112px clamp(20px, 5vw, 70px) 42px;
  isolation: isolate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.015);
  animation: heroFade 18s var(--ease) infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.76) 0%, rgba(6, 8, 7, 0.48) 46%, rgba(6, 8, 7, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 8, 7, 0.76) 0%, rgba(6, 8, 7, 0.12) 45%, rgba(6, 8, 7, 0.58) 100%);
}

.hero-grid,
.process-section::before,
.assistant-demo::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 247, 239, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 239, 0.07) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  opacity: 0.42;
}

.hero-content {
  width: min(920px, 100%);
  display: grid;
  gap: 22px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 6.1vw, 84px);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 68px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy,
.section-copy p,
.cta-support,
.before-after p,
.final-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 247, 239, 0.82);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 750;
  line-height: 1.35;
}

.cta-support {
  max-width: 690px;
  color: rgba(245, 247, 239, 0.72);
  font-size: clamp(14px, 1.55vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.button:hover,
.button:focus-visible,
.detail-trigger:hover,
.detail-trigger:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  border: 1px solid rgba(186, 255, 77, 0.72);
  background: var(--acid);
  color: #101508;
}

.button.secondary {
  border: 1px solid rgba(245, 247, 239, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-metrics {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(245, 247, 239, 0.2);
  border-radius: 18px;
  background: rgba(7, 9, 8, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-metrics strong {
  color: var(--acid);
  font-size: 44px;
  line-height: 0.9;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 94px) 0;
  isolation: isolate;
}

main > .section + .section {
  margin-top: clamp(-28px, -2vw, -12px);
}

.section::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 36px) -24px;
  z-index: -1;
  pointer-events: none;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(186, 255, 77, 0.07), transparent 36%),
    radial-gradient(circle at 92% 40%, rgba(255, 79, 61, 0.055), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 70%);
  opacity: 0.9;
}

.intro-band::before,
.process-section::before,
.deliverables::before,
.assistant-demo::before,
.before-after::before {
  animation: sectionShaderDrift 18s var(--ease) infinite alternate;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.signal-list,
.process-grid,
.deliverable-grid {
  display: grid;
  gap: 12px;
}

.signal-card,
.process-card,
.deliverable-card {
  position: relative;
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(245, 247, 239, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 15, 13, 0.55);
  box-shadow: 0 14px 54px rgba(0, 0, 0, 0.18);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.signal-card:hover,
.process-card:hover,
.deliverable-card:hover,
.signal-card:focus-visible,
.process-card:focus-visible,
.deliverable-card:focus-visible {
  border-color: rgba(255, 79, 61, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 79, 61, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(12, 15, 13, 0.64);
}

.signal-card span,
.process-card span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
}

.signal-card strong,
.process-card strong,
.deliverable-card strong {
  color: var(--ink);
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.signal-card em,
.process-card em,
.deliverable-card em {
  width: fit-content;
  display: inline-flex;
  border-bottom: 1px solid rgba(255, 79, 61, 0.72);
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.split,
.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.image-panel,
.proof-image {
  overflow: hidden;
  border: 1px solid rgba(245, 247, 239, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.image-panel img,
.proof-image img,
.client-layout img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
}

.flow-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.flow-list div {
  padding: 18px;
  border: 1px solid rgba(245, 247, 239, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.flow-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-list strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.text-handshake {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.text-handshake::before {
  animation: sectionShaderDrift 20s var(--ease) infinite alternate;
}

.intake-sequence {
  counter-reset: intake;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-sequence li {
  position: relative;
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 20px 20px 68px;
  border: 1px solid rgba(245, 247, 239, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(12, 15, 13, 0.56);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.16);
}

.intake-sequence li span {
  position: absolute;
  top: 21px;
  left: 20px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
}

.intake-sequence li strong {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.intake-sequence li p {
  margin: 0;
  color: rgba(245, 247, 239, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.process-section {
  isolation: isolate;
}

.process-section::before,
.assistant-demo::before {
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card p,
.deliverable-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.os-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.diagram-node {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(245, 247, 239, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.diagram-node span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.diagram-node strong {
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
}

.diagram-arrow {
  align-self: center;
  color: var(--red);
  font-weight: 950;
}

.deliverable-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-links,
.assistant-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.proof-section .section-copy p strong {
  color: var(--ink);
  font-weight: 930;
}

.proof-links a,
.assistant-prompts button {
  border: 1px solid rgba(245, 247, 239, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.assistant-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  isolation: isolate;
}

.assistant-prompts {
  padding: 22px;
  border: 1px solid rgba(245, 247, 239, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(186, 255, 77, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.052);
}

.assistant-prompts button {
  cursor: pointer;
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.client-layout img {
  border-radius: 28px;
  border: 1px solid rgba(245, 247, 239, 0.14);
  object-position: center;
}

.client-editorial {
  align-self: center;
  max-width: 720px;
}

.client-editorial h3 {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.client-editorial p {
  margin: 0;
  color: rgba(245, 247, 239, 0.82);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 780;
  line-height: 1.24;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.before-after > div,
.final-cta {
  border: 1px solid rgba(245, 247, 239, 0.14);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(12, 15, 13, 0.7);
}

.seo-faq {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-faq .section-heading {
  max-width: 880px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.seo-faq .section-heading p:last-child {
  margin: 16px 0 0;
  color: rgba(245, 247, 239, 0.72);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 650;
  line-height: 1.48;
}

.faq-list {
  border-top: 1px solid rgba(245, 247, 239, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(245, 247, 239, 0.13);
  padding: clamp(18px, 3vw, 30px) 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: clamp(21px, 2.8vw, 34px);
  font-weight: 930;
  line-height: 1.08;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  margin-left: 20px;
  color: var(--acid);
  font-weight: 900;
}

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

.faq-list p {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(245, 247, 239, 0.76);
  font-size: clamp(16px, 1.85vw, 22px);
  font-weight: 620;
  line-height: 1.52;
}

.final-cta {
  width: min(1220px, calc(100% - 40px));
  margin: clamp(18px, 3vw, 36px) auto clamp(58px, 8vw, 104px);
  display: grid;
  gap: 18px;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 28px clamp(20px, 5vw, 70px) 110px;
  border-top: 1px solid rgba(245, 247, 239, 0.12);
  color: rgba(245, 247, 239, 0.54);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.site-footer a {
  color: rgba(245, 247, 239, 0.7);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--acid);
  outline: none;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  color: var(--ink);
}

.detail-modal.is-open {
  display: block;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 4, 0.54);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.detail-panel {
  position: absolute;
  inset: 0;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 82% 14%, rgba(186, 255, 77, 0.08), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(255, 79, 61, 0.08), transparent 30%),
    rgba(7, 9, 8, 0.96);
}

.detail-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 247, 239, 0.2);
  border-radius: 999px;
  background: rgba(7, 9, 8, 0.62);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.detail-hero {
  position: relative;
  min-height: clamp(360px, 58svh, 650px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.86), rgba(7, 9, 8, 0.24)),
    linear-gradient(0deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.08));
}

.detail-hero-copy {
  position: absolute;
  inset: auto clamp(22px, 6vw, 72px) clamp(24px, 6vw, 62px);
  z-index: 1;
  display: grid;
  gap: 12px;
}

.detail-hero-copy h2 {
  max-width: 980px;
}

.detail-body {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 0 80px;
}

.detail-body p {
  margin: 0 0 18px;
  color: rgba(245, 247, 239, 0.82);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 640;
  line-height: 1.48;
}

.detail-editorial-notes {
  margin-top: clamp(20px, 3vw, 32px) !important;
  padding-left: 18px;
  border-left: 3px solid var(--acid);
  color: rgba(245, 247, 239, 0.76) !important;
  font-size: clamp(16px, 1.85vw, 21px) !important;
  font-weight: 640 !important;
  line-height: 1.55 !important;
}

.detail-editorial-notes strong {
  color: var(--ink);
  font-weight: 900;
}

.detail-depth {
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(245, 247, 239, 0.16);
}

.detail-depth-section {
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid rgba(245, 247, 239, 0.12);
}

.detail-depth-section h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
}

.detail-depth-section p {
  margin: 0;
  color: rgba(245, 247, 239, 0.78);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 620;
  line-height: 1.52;
}

@media (max-width: 920px) {
  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .header-cta {
    display: none;
  }

  .site-menu__panel {
    width: min(420px, calc(100% - 22px));
    padding: 18px 18px 28px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 34px;
  }

  .hero-media {
    object-position: 56% center;
  }

  .hero-slide {
    transform: none;
    animation-name: heroFadeMobile;
  }

  .hero-shader {
    background:
      linear-gradient(90deg, rgba(6, 8, 7, 0.7) 0%, rgba(6, 8, 7, 0.48) 56%, rgba(6, 8, 7, 0.22) 100%),
      linear-gradient(0deg, rgba(6, 8, 7, 0.75) 0%, rgba(6, 8, 7, 0.16) 52%, rgba(6, 8, 7, 0.5) 100%);
  }

  h1 {
    font-size: clamp(38px, 11.2vw, 56px);
    line-height: 0.92;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-metrics,
  .intro-band,
  .split,
  .text-handshake,
  .proof-section,
  .assistant-demo,
  .client-layout,
  .before-after {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .os-diagram {
    grid-template-columns: 1fr;
  }

  .diagram-arrow {
    justify-self: start;
    padding-left: 18px;
    transform: rotate(90deg);
  }

  .image-panel img,
  .proof-image img,
  .client-layout img {
    height: 360px;
  }

  .detail-hero img {
    object-position: center;
  }

  .client-editorial p {
    font-size: clamp(20px, 5vw, 28px);
  }
}

@media (max-width: 560px) {
  .section::before {
    inset: clamp(12px, 3vw, 20px) 0;
    border-radius: 28px;
  }

  .brand strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    gap: 8px;
  }

  .hero-metrics div {
    min-height: 94px;
    padding: 14px;
  }

  .hero-metrics strong {
    font-size: 36px;
  }

  .section,
  .final-cta {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 46px;
  }

  main > .section + .section {
    margin-top: -18px;
  }

  .signal-card,
  .process-card,
  .deliverable-card {
    min-height: 132px;
    border-radius: 20px;
    padding: 18px;
  }

  .signal-card strong,
  .process-card strong,
  .deliverable-card strong {
    font-size: 24px;
  }

  .site-footer {
    padding-bottom: 98px;
  }
}

@keyframes shaderDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.04);
  }
}

@keyframes sectionShaderDrift {
  0% {
    opacity: 0.72;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(4px);
  }
}

@keyframes heroFade {
  0%,
  27% {
    opacity: 1;
    transform: scale(1.015);
  }
  33%,
  94% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes heroFadeMobile {
  0%,
  27% {
    opacity: 1;
  }
  33%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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