/*
  Optional legal custom-font setup:
  Put licensed .woff2 files inside /fonts and uncomment these blocks.

  @font-face {
    font-family: "Fovelon Display";
    src: url("fonts/FovelonDisplay.woff2") format("woff2");
    font-weight: 400 900;
    font-display: swap;
  }

  @font-face {
    font-family: "Fovelon Text";
    src: url("fonts/FovelonText.woff2") format("woff2");
    font-weight: 400 900;
    font-display: swap;
  }
*/

:root {
  color-scheme: dark;
  --bg: #040506;
  --bg-soft: #080a0f;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.115);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f8f3;
  --muted: #9aa3ad;
  --muted-strong: #c5ccd2;
  --brand: #c8d48b;
  --brand-2: #86b7aa;
  --brand-3: #5f6784;
  --danger: #ff8c8c;
  --warning: #ffd27a;
  --brand-rgb: 200, 212, 139;
  --brand-2-rgb: 134, 183, 170;
  --brand-3-rgb: 95, 103, 132;
  --container: 1180px;
  --page-pad: clamp(18px, 4vw, 32px);
  --header-height: 78px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 34px 110px rgba(0, 0, 0, 0.46);
  --font-display: "Fovelon Display", "Instrument Sans", "Geist", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Fovelon Text", "Geist", "Instrument Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(180deg, #040506 0%, #05070b 38%, #040506 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  height: env(safe-area-inset-top);
  background: #040506;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  height: env(safe-area-inset-bottom);
  background: #040506;
  pointer-events: none;
}

::selection {
  background: rgba(var(--brand-rgb), 0.28);
  color: #ffffff;
}

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

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

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

button {
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(var(--brand-3-rgb), 0.10), transparent 32%),
    radial-gradient(circle at 14% 14%, rgba(var(--brand-2-rgb), 0.05), transparent 30%),
    linear-gradient(180deg, #040506 0%, #06080d 50%, #040506 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.31;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.96), rgba(0,0,0,0.5) 42%, transparent 100%);
}

.bg-line {
  position: absolute;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.bg-line-one { top: 18%; }
.bg-line-two { top: 62%; opacity: 0.5; }

.container {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--container));
  margin-inline: auto;
}

.section,
.section-safe {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
}

.section-safe {
  padding-top: clamp(58px, 9vw, 120px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: rgba(4, 5, 6, 0.72);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 5, 6, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.105);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: var(--header-height);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #07090e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  color: var(--muted);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(var(--brand-rgb), 0.3);
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.11);
  color: #faffdd;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(var(--brand-rgb), 0.16);
  border-color: rgba(var(--brand-rgb), 0.44);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.2px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.2px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow,
.section-kicker,
.featured-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.046);
  color: var(--muted-strong);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(var(--brand-rgb), 0.5);
}

.hero h1,
.section-heading h2,
.cta-copy h2,
.thanks-card h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 780;
  line-height: 0.91;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 900px;
  margin-top: 26px;
  font-size: clamp(52px, 8vw, 118px);
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
  letter-spacing: -0.026em;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 21px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  border: 1px solid rgba(var(--brand-rgb), 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    var(--brand);
  color: #11140b;
  box-shadow: 0 18px 48px rgba(var(--brand-rgb), 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.trust-row span,
.trust-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.trust-row strong {
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.042);
  color: var(--muted-strong);
  padding: 0 11px;
}

.hero-panel,
.problem-card,
.stack-card,
.timeline-card,
.bento-card,
.price-card,
.contact-form,
.thanks-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(255, 255, 255, 0.09), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.hero-panel:hover,
.problem-card:hover,
.stack-card:hover,
.timeline-card:hover,
.bento-card:hover,
.price-card:hover,
.contact-form:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.hero-panel {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  border-radius: var(--radius-xl);
  padding: clamp(18px, 2.6vw, 26px);
}

.panel-bar,
.stack-title,
.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.panel-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  padding-bottom: 18px;
}

.panel-bar span,
.stack-title span,
.ledger-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-bar strong,
.stack-title strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.panel-bar small,
.ledger-head small {
  flex: 0 0 auto;
  color: rgba(var(--brand-rgb), 0.98);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.system-status {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.system-status span,
.system-status strong {
  display: block;
}

.system-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.system-status strong {
  margin-top: 3px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 74px);
  font-weight: 760;
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.status-meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.status-meter span {
  display: block;
  width: 87%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.panel-grid article,
.ledger-row,
.stack-layer {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.panel-grid article {
  border-radius: 20px;
  padding: 15px;
}

.panel-grid article span,
.card-index,
.timeline-card > span {
  color: rgba(var(--brand-rgb), 0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.panel-grid article strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.panel-grid article p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.revenue-ledger {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(4, 5, 6, 0.36);
  padding: 14px;
}

.ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  margin-top: 8px;
  border-radius: 15px;
  padding: 0 12px;
}

.ledger-row span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.ledger-row strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 62px);
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(40px, 5.8vw, 82px);
}

.section-heading p,
.cta-copy p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.024em;
}

.section-heading.align-left p,
.cta-copy p {
  margin-left: 0;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card {
  min-height: 285px;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
}

.problem-card h3,
.timeline-card h3,
.bento-card h3,
.price-top span {
  margin: 28px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 31px);
  line-height: 1.03;
  font-weight: 760;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.problem-card p,
.timeline-card p,
.bento-card p,
.price-top p,
.stack-layer p,
.form-note {
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.018em;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.solution-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.solution-points div,
.cta-notes div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 680;
}

.solution-points span,
.cta-notes span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(var(--brand-rgb), 0.38);
}

.stack-card {
  border-radius: var(--radius-xl);
  padding: clamp(18px, 2.7vw, 28px);
}

.stack-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  padding-bottom: 18px;
}

.stack-layer {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 10px;
  border-radius: 22px;
  padding: 18px;
}

.stack-layer > span {
  color: rgba(var(--brand-rgb), 0.95);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stack-layer strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.stack-layer p {
  margin-top: 6px;
  font-size: 14px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.35), rgba(var(--brand-2-rgb), 0.28), transparent);
  pointer-events: none;
}

.timeline-card {
  min-height: 305px;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
}

.timeline-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.06);
}

.timeline-card small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 452px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-wide {
  grid-column: span 2;
}

.bento-stat {
  margin-bottom: auto;
  color: transparent;
  background: linear-gradient(110deg, #ffffff 0%, #e9ff9c 42%, #8ffbe0 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 122px);
  font-weight: 780;
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.bento-large h3 {
  max-width: 520px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.bento-large p {
  max-width: 560px;
  font-size: 17px;
}

.flat-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 90px;
  margin-top: 26px;
}

.flat-chart span {
  flex: 1 1 0;
  min-width: 0;
  height: var(--h);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.62), rgba(var(--brand-2-rgb), 0.16));
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
}

.price-card.featured {
  border-color: rgba(var(--brand-rgb), 0.34);
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(var(--brand-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.featured-badge {
  margin-bottom: 18px;
  border-color: rgba(var(--brand-rgb), 0.28);
  background: rgba(var(--brand-rgb), 0.08);
  color: #f3ffd6;
}

.price-top span {
  display: block;
  margin: 0;
}

.price-top p {
  min-height: 78px;
}

.price {
  margin-top: 26px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.7vw, 60px);
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.custom-price {
  font-size: clamp(40px, 4vw, 54px);
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  min-width: 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.014em;
  padding-left: 25px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(var(--brand-rgb), 0.32);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.cta-section {
  padding-bottom: clamp(94px, 11vw, 165px);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.cta-notes {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 30px);
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-row.full,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 17px;
  background: rgba(4, 5, 6, 0.58);
  color: var(--text);
  outline: none;
  padding: 0 15px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.018em;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 124px;
  resize: vertical;
  padding-top: 14px;
}

.form-row select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.68) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68) 50%, transparent 50%);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(197, 204, 210, 0.45);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(var(--brand-rgb), 0.42);
  background: rgba(4, 5, 6, 0.78);
  box-shadow: 0 0 0 5px rgba(var(--brand-rgb), 0.075);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  position: relative;
  background: #040506;
  padding: 0 0 calc(36px + env(safe-area-inset-bottom));
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding-top: 34px;
}

.footer p,
.footer small,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

[data-spotlight] {
  --spotlight-x: 50%;
  --spotlight-y: 0%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.thanks-main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(30px + env(safe-area-inset-top)) var(--page-pad) calc(30px + env(safe-area-inset-bottom));
}

.thanks-card {
  width: min(100%, 720px);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 6vw, 58px);
  text-align: center;
}

.thanks-card .brand {
  justify-content: center;
  margin-bottom: 34px;
}

.thanks-card h1 {
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 72px);
}

.thanks-card p {
  max-width: 560px;
  margin: 20px auto 32px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading.align-left,
  .cta-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero h1,
  .hero-subtitle,
  .hero-actions,
  .trust-row,
  .section-heading.align-left p,
  .cta-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .solution-points,
  .cta-notes {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-panel,
  .stack-card,
  .contact-form {
    justify-self: center;
    max-width: 760px;
    width: 100%;
  }

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

@media (max-width: 940px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: var(--page-pad);
    right: var(--page-pad);
    top: calc(var(--header-height) + env(safe-area-inset-top) + 10px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 22px;
    background: rgba(4, 5, 6, 0.95);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 190ms ease, transform 190ms ease;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 14px;
  }

  .card-grid.three,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 30px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(var(--brand-rgb), 0.35), rgba(var(--brand-2-rgb), 0.28), transparent);
  }

  .timeline-card {
    min-height: auto;
    padding-left: 62px;
  }

  .timeline-card > span {
    position: absolute;
    left: 18px;
    top: 24px;
  }

  .price-card {
    min-height: auto;
  }

  .price-top p {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 16px;
    --header-height: 70px;
  }

  .section,
  .section-safe {
    padding: 76px 0;
  }

  .section-safe {
    padding-top: 50px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(46px, 13.4vw, 64px);
    line-height: 0.93;
    letter-spacing: -0.07em;
  }

  .hero-subtitle {
    font-size: 17px;
  }

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

  .trust-row {
    align-items: stretch;
  }

  .trust-row span,
  .trust-row strong {
    min-height: 34px;
  }

  .hero-panel {
    border-radius: 28px;
  }

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

  .system-status strong {
    font-size: 56px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(36px, 10.8vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.064em;
  }

  .section-heading p,
  .cta-copy p {
    font-size: 16px;
  }

  .stack-layer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-large {
    min-height: 360px;
  }

  .bento-stat {
    font-size: clamp(58px, 20vw, 86px);
  }

  .contact-form {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .form-row.full,
  .form-button,
  .form-note {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .eyebrow,
  .section-kicker,
  .featured-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-subtitle {
    line-height: 1.62;
  }

  .problem-card,
  .timeline-card,
  .bento-card,
  .price-card,
  .stack-card,
  .contact-form {
    border-radius: 24px;
    padding: 20px;
  }

  .timeline-card {
    padding-left: 58px;
  }

  .hero-panel {
    padding: 16px;
  }

  .panel-bar,
  .ledger-row {
    align-items: flex-start;
  }

  .ledger-row {
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (hover: none) {
  .hero-panel:hover,
  .problem-card:hover,
  .stack-card:hover,
  .timeline-card:hover,
  .bento-card:hover,
  .price-card:hover,
  .contact-form:hover,
  .btn:hover,
  .nav-cta:hover {
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.map-board {
  position: relative;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.026);
  padding: 18px;
  overflow: hidden;
}

.map-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.35));
  pointer-events: none;
}

.map-grid,
.map-flow {
  position: relative;
  z-index: 1;
}

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

.map-module {
  position: relative;
  min-width: 0;
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.map-module span {
  color: rgba(var(--brand-rgb), 0.95);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.map-module strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.map-module p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.map-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.map-flow strong {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}

.flow-pill,
.flow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}

.flow-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.flow-arrow {
  color: rgba(var(--brand-rgb), 0.94);
  font-size: 12px;
  font-weight: 700;
}

.deliverables-grid {
  grid-auto-rows: minmax(190px, auto);
}

.deliverables-grid .bento-card h3,
.trust-diff-grid .bento-card h3 {
  margin-top: 0;
  font-size: clamp(22px, 2vw, 28px);
}

.trust-diff-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

#difference .section-heading {
  max-width: 820px;
}

@media (max-width: 1120px) {
  .card-grid.four,
  .trust-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .card-grid.four {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .system-points,
  .map-grid,
  .trust-diff-grid {
    grid-template-columns: 1fr;
  }

  .map-flow {
    gap: 8px;
  }
}


/* --- User-requested refinements --- */
.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero.section-safe {
  padding-top: clamp(26px, 4vw, 42px);
  padding-bottom: clamp(56px, 8vw, 84px);
}

.hero-grid,
.hero-grid--single {
  grid-template-columns: 1fr !important;
  justify-items: start;
  gap: 0;
}

.hero {
  min-height: auto;
  align-items: flex-start;
}

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

.hero h1 {
  margin-top: 4px;
  max-width: 900px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 18px;
}

.nav-menu {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  background: rgba(255,255,255,0.032);
  color: var(--muted-strong);
  font-family: "Instrument Sans", var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  animation: navSwim 4.5s ease-in-out infinite;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.nav-menu a:nth-child(2) { animation-delay: .5s; }
.nav-menu a:nth-child(3) { animation-delay: 1s; }
.nav-menu a:nth-child(4) { animation-delay: 1.5s; }

.nav-menu a::before {
  content: "";
  position: absolute;
  inset: auto auto 6px 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.9);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.45), 0 0 16px rgba(var(--brand-rgb), 0.22);
  opacity: 0.45;
  transition: opacity 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--brand-rgb),0.14) 40%, transparent 75%);
  transform: translateX(-125%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
  border-color: rgba(var(--brand-rgb), 0.26);
  background: rgba(var(--brand-rgb), 0.08);
}

.nav-menu a.is-active {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px rgba(var(--brand-rgb), 0.12);
}

.nav-menu a.is-active::before,
.nav-menu a:hover::before {
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 10px rgba(var(--brand-rgb), 0.65), 0 0 24px rgba(var(--brand-rgb), 0.32);
}

.nav-menu a.is-active::after,
.nav-menu a:hover::after {
  opacity: 1;
  animation: navGlowSweep 1.5s ease;
}

.btn {
  overflow: hidden;
  transform-origin: center;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 40%, transparent 72%);
  transform: translateX(-130%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn:hover::after {
  opacity: 1;
  animation: btnSweep 900ms ease;
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(var(--brand-rgb), 0.28);
}

.btn-secondary:hover {
  box-shadow: 0 20px 44px rgba(0,0,0,0.28);
}

#problem .card-grid.four {
  position: relative;
  padding-top: 22px;
}

#problem .card-grid.four::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb),0.18) 0%, rgba(var(--brand-rgb),0.42) 50%, rgba(var(--brand-rgb),0.18) 100%);
}

#problem .card-grid.four::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb),0.96), rgba(var(--brand-2-rgb),0.92), transparent);
  filter: blur(0.4px);
  animation: problemPulse 4.8s linear infinite;
}

.problem-card .card-index {
  display: none;
}

.stack-title span,
.stack-layer > span {
  display: none !important;
}

.stack-layer {
  grid-template-columns: 1fr;
  gap: 8px;
}

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

.timeline::before {
  left: 6%;
  right: 6%;
}

.timeline-card {
  min-height: 270px;
  padding: 20px;
}

.timeline-card h3 {
  margin-top: 20px;
  font-size: clamp(22px, 2.1vw, 28px);
}

.timeline-card p {
  font-size: 14px;
  line-height: 1.58;
}

.deliverables-deck {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.deliverables-deck.is-dragging {
  cursor: grabbing;
}

.deliverables-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 20px 16px 10px;
}

.deliverables-track::-webkit-scrollbar {
  display: none;
}

.deliverable-card {
  flex: 0 0 min(320px, 78vw);
  min-height: 258px;
  margin-left: -18px;
  padding: 24px;
  scroll-snap-align: start;
  transform-origin: center bottom;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.deliverable-card:first-child {
  margin-left: 0;
}

.deliverable-card:nth-child(3n+1) { transform: rotate(-2.1deg); }
.deliverable-card:nth-child(3n+2) { transform: rotate(1.35deg) translateY(6px); }
.deliverable-card:nth-child(3n) { transform: rotate(-0.9deg) translateY(10px); }

.deliverable-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  z-index: 3;
  box-shadow: 0 26px 56px rgba(0,0,0,0.34);
}

.deliverable-card h3 {
  font-size: clamp(24px, 2.1vw, 30px);
}

.deliverable-card p {
  font-size: 14px;
  line-height: 1.6;
}

@keyframes navSwim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

@keyframes navGlowSweep {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes btnSweep {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes problemPulse {
  0% { transform: translateX(0%); opacity: 0; }
  8% { opacity: 1; }
  46% { opacity: 1; }
  56% { opacity: 0; }
  100% { transform: translateX(470%); opacity: 0; }
}

@media (max-width: 1120px) {
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline-card {
    min-height: 292px;
    padding: 18px;
  }

  .timeline-card p {
    font-size: 13px;
  }
}

@media (max-width: 940px) {
  .nav-menu {
    background: rgba(4,5,6,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 10px;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 46px;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero.section-safe {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 0.96;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 16px;
  }

  .deliverable-card {
    flex-basis: 80vw;
    min-height: 240px;
  }

  #problem .card-grid.four::before,
  #problem .card-grid.four::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .timeline-card > span {
    position: static;
  }

  .timeline-card {
    padding: 18px;
  }

  .timeline-card h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .timeline-card small {
    margin-top: 16px;
  }

  .deliverables-track {
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu a,
  #problem .card-grid.four::after {
    animation: none !important;
  }

  .btn::after,
  .nav-menu a::after {
    display: none;
  }
}


/* --- Requested refinement pass v3 --- */
.hero-grid.hero-grid--single {
  justify-items: center;
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.hero-subtitle {
  margin-inline: auto;
}

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

.nav-menu a {
  font-family: "Plus Jakarta Sans", "Instrument Sans", var(--font-body);
}

.nav-menu a::before {
  display: none;
}

.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-family: "Plus Jakarta Sans", "Instrument Sans", var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: bodySwim 5.5s ease-in-out infinite;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.section-kicker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--brand-rgb),0.08) 42%, transparent 78%);
  transform: translateX(-130%);
  opacity: 0;
}

.section-kicker::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb),0.72);
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb),0.14), 0 0 10px rgba(var(--brand-rgb),0.28);
}

.section-kicker.is-active {
  color: var(--text);
  border-color: rgba(var(--brand-rgb),0.18);
  background: rgba(var(--brand-rgb),0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 22px rgba(var(--brand-rgb),0.08);
}

.section-kicker.is-active::before {
  opacity: 1;
  animation: navGlowSweep 1.35s ease;
}

.section-kicker.is-active::after {
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb),0.18), 0 0 14px rgba(var(--brand-rgb),0.42), 0 0 30px rgba(var(--brand-rgb),0.18);
}

.timeline {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px;
  padding-top: 22px;
}

.timeline::before {
  display: block !important;
  left: 8px;
  right: 8px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb),0.18) 0%, rgba(var(--brand-rgb),0.42) 50%, rgba(var(--brand-rgb),0.18) 100%);
}

.timeline::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb),0.96), rgba(var(--brand-2-rgb),0.92), transparent);
  filter: blur(0.4px);
  animation: problemPulse 4.8s linear infinite;
}

.timeline-card > span {
  display: none !important;
}

.timeline-card h3 {
  margin-top: 0;
}

#deliverables.benefits,
#deliverables .container,
.deliverables-deck,
.deliverables-track {
  background: transparent !important;
}

.deliverables-deck {
  overflow: visible;
  cursor: grab;
  user-select: none;
}

.deliverables-deck::before {
  content: "Swipe or drag";
  position: absolute;
  top: -16px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.78);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.deliverables-deck.is-hinted::before {
  opacity: 1;
  transform: translateY(0);
}

.deliverables-track {
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 8px 6px 12px 0;
}

.deliverable-card {
  position: relative;
  flex: 0 0 min(330px, 80vw);
  margin-left: -230px;
  min-height: 250px;
  border-color: rgba(255,255,255,0.075);
  background: linear-gradient(180deg, rgba(19,21,26,0.95), rgba(12,14,18,0.95));
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 240ms ease;
  will-change: transform;
}

.deliverable-card:first-child {
  margin-left: 0;
}

.deliverable-card:nth-child(1) { z-index: 12; transform: translateY(0) rotate(-2.4deg); }
.deliverable-card:nth-child(2) { z-index: 11; transform: translateY(6px) rotate(1.8deg); }
.deliverable-card:nth-child(3) { z-index: 10; transform: translateY(12px) rotate(-1.2deg); }
.deliverable-card:nth-child(4) { z-index: 9; transform: translateY(18px) rotate(1deg); }
.deliverable-card:nth-child(n+5) { z-index: 8; transform: translateY(20px) rotate(-0.6deg); }

.deliverables-deck.is-hinted .deliverable-card:nth-child(1) { animation: deckHint1 950ms ease; }
.deliverables-deck.is-hinted .deliverable-card:nth-child(2) { animation: deckHint2 950ms ease 80ms; }
.deliverables-deck.is-hinted .deliverable-card:nth-child(3) { animation: deckHint3 950ms ease 140ms; }

.deliverable-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  border-color: rgba(var(--brand-rgb), 0.22);
  z-index: 20;
}

@keyframes bodySwim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes deckHint1 {
  0%,100% { transform: translateY(0) rotate(-2.4deg); }
  50% { transform: translateX(20px) translateY(-8px) rotate(-5deg); }
}

@keyframes deckHint2 {
  0%,100% { transform: translateY(6px) rotate(1.8deg); }
  50% { transform: translateX(28px) translateY(-2px) rotate(4deg); }
}

@keyframes deckHint3 {
  0%,100% { transform: translateY(12px) rotate(-1.2deg); }
  50% { transform: translateX(36px) translateY(2px) rotate(-3.4deg); }
}

@media (max-width: 940px) {
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .timeline-card {
    min-height: 250px;
    padding: 14px;
  }

  .timeline-card h3 {
    font-size: 18px;
  }

  .timeline-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .timeline-card small {
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .section-kicker {
    padding: 7px 10px;
    font-size: 11px;
  }

  .deliverable-card {
    flex-basis: 80vw;
    margin-left: -58vw;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    max-width: 100%;
  }

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

  .timeline {
    gap: 8px;
  }

  .timeline-card {
    min-height: 228px;
    padding: 10px;
  }

  .timeline-card h3 {
    font-size: 16px;
  }

  .timeline-card p {
    font-size: 11px;
    line-height: 1.38;
  }

  .timeline-card small {
    margin-top: 12px;
    font-size: 10px;
  }

  .deliverable-card {
    flex-basis: 82vw;
    margin-left: -61vw;
    min-height: 232px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-kicker,
  .timeline::after,
  .deliverables-deck.is-hinted .deliverable-card {
    animation: none !important;
  }
}

.hero { min-height: min(84svh, 760px); align-items: center; }
@media (max-width: 720px) { .hero { min-height: auto; align-items: flex-start; } }

/* --- Final requested fixes: header blur, body labels, deliverables frame, mobile logo --- */
.site-header {
  background: rgba(4, 5, 6, 0.58) !important;
  backdrop-filter: blur(36px) saturate(170%) contrast(110%) !important;
  -webkit-backdrop-filter: blur(36px) saturate(170%) contrast(110%) !important;
}

.site-header.is-scrolled {
  background: rgba(4, 5, 6, 0.74) !important;
  backdrop-filter: blur(44px) saturate(180%) contrast(112%) !important;
  -webkit-backdrop-filter: blur(44px) saturate(180%) contrast(112%) !important;
}

.brand .brand-mark,
.site-header .brand-mark,
.footer .brand-mark,
.thanks-card .brand-mark {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

.brand-mark img {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
}

#deliverables,
#deliverables::before,
#deliverables::after,
#deliverables .container,
.deliverables-deck,
.deliverables-track {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#deliverables {
  overflow-x: clip;
}

#deliverables .container {
  overflow: visible;
}

.deliverables-deck {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  isolation: isolate;
  padding: 0 !important;
}

.deliverables-track {
  position: relative;
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  padding: 24px 0 30px !important;
  margin: 0 !important;
  min-height: 310px;
  contain: layout;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.deliverables-track::-webkit-scrollbar {
  display: none;
}

.deliverable-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.034)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  margin-left: -180px !important;
}

.deliverable-card:first-child {
  margin-left: 0 !important;
}

@media (max-width: 720px) {
  .brand .brand-mark,
  .site-header .brand-mark,
  .footer .brand-mark,
  .thanks-card .brand-mark {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .deliverable-card {
    flex-basis: 82vw !important;
    margin-left: -54vw !important;
  }
}

@media (max-width: 520px) {
  .deliverable-card {
    margin-left: -56vw !important;
  }
}

/* --- Final refinement pass: compact process, readable deliverables, PWA logo polish --- */
.site-header {
  background: rgba(4, 5, 6, 0.62);
  backdrop-filter: blur(34px) saturate(160%);
  -webkit-backdrop-filter: blur(34px) saturate(160%);
}

.site-header.is-scrolled {
  background: rgba(4, 5, 6, 0.76);
  backdrop-filter: blur(38px) saturate(170%);
  -webkit-backdrop-filter: blur(38px) saturate(170%);
}


.brand-mark {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.brand-mark img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
}

#deliverables .section-kicker,
#difference .section-kicker {
  display: none !important;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb),0.16), rgba(var(--brand-rgb),0.45), rgba(var(--brand-2-rgb),0.24), rgba(var(--brand-rgb),0.16));
}

.process-flow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb),0.92), rgba(var(--brand-2-rgb),0.86), transparent);
  animation: processSignal 5.2s linear infinite;
}

.process-node {
  position: relative;
  min-width: 0;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.038);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-node::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spotlight-x,50%) var(--spotlight-y,0%), rgba(255,255,255,0.08), transparent 38%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-node:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--brand-rgb),0.2);
  background: rgba(255,255,255,0.052);
}

.process-node:hover::before {
  opacity: 1;
}

.process-node h3,
.process-node p,
.process-node small {
  position: relative;
  z-index: 1;
}

.process-node h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.process-node p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.process-node small {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.deliverables-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.deliverables-system::before,
.deliverables-system::after {
  display: none !important;
}

.deliverable-group {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 26px;
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.deliverable-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb),0.44), transparent);
  opacity: 0.55;
}

.deliverable-group::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--brand-rgb),0.045) 45%, transparent 80%);
  transform: translateX(-120%);
  opacity: 0;
}

.deliverable-group:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb),0.18);
  background: rgba(255,255,255,0.048);
}

.deliverable-group:hover::after,
.deliverables-system.is-visible .deliverable-group::after {
  opacity: 1;
  animation: groupSweep 1.7s ease;
}

.deliverable-group-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deliverable-group-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb),0.18);
  color: rgba(var(--brand-rgb),0.92);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.deliverable-group h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.deliverable-group ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-group li {
  position: relative;
  padding-left: 16px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.deliverable-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 1px;
  background: rgba(var(--brand-rgb),0.8);
}

@keyframes processSignal {
  0% { transform: translateX(0); opacity: 0; }
  9% { opacity: 1; }
  52% { opacity: 1; }
  62% { opacity: 0; }
  100% { transform: translateX(470%); opacity: 0; }
}

@keyframes groupSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 1120px) {
  .process-flow,
  .deliverables-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .process-flow,
  .deliverables-system {
    grid-template-columns: 1fr;
  }

  .process-flow::after {
    width: 34%;
    animation-name: processSignalMobile;
  }

  .process-node,
  .deliverable-group {
    padding: 18px;
    border-radius: 22px;
  }

  .process-node p {
    font-size: 13px;
  }
}

@keyframes processSignalMobile {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  58% { opacity: 1; }
  68% { opacity: 0; }
  100% { transform: translateX(215%); opacity: 0; }
}

@media (max-width: 460px) {
  .brand-mark {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .brand-mark img {
    width: 36px !important;
    height: 36px !important;
  }

  .process-node,
  .deliverable-group {
    padding: 16px;
  }
}

/* --- Fixed compact Process + Deliverables v4 --- */
.process-section .section-heading,
.deliverables-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.process-console,
.deliverables-orbit {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
  isolation: isolate;
}

.process-console {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 30px;
  padding: clamp(16px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 24% 0%, rgba(var(--brand-rgb),0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  overflow: hidden;
}

.process-signal-line {
  position: relative;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb),0.38), transparent);
  overflow: hidden;
}

.process-signal-line span {
  display: block;
  position: absolute;
  inset: -3px auto -3px -22%;
  width: 24%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.96), rgba(var(--brand-2-rgb),0.86), transparent);
  filter: blur(1px);
  animation: processSignalV4 4.4s linear infinite;
}

@keyframes processSignalV4 {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(520%); opacity: 0; }
}

.process-stage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.process-stage {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  padding: 14px 14px 13px;
  text-align: left;
  min-height: 76px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.process-stage span {
  display: block;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 760;
  letter-spacing: -0.03em;
}

.process-stage small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.process-stage:hover,
.process-stage:focus-visible,
.process-stage.is-active {
  transform: translateY(-2px);
  border-color: rgba(var(--brand-rgb),0.34);
  background: rgba(var(--brand-rgb),0.075);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  outline: none;
}

.process-detail-wrap {
  position: relative;
  min-height: 230px;
}

.process-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: 18px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.process-detail.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.process-detail-main,
.process-detail-grid div {
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 24px;
  background: rgba(255,255,255,0.032);
  padding: clamp(18px, 2vw, 24px);
}

.mini-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted-strong);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-detail-main h3,
.deliverable-detail h3 {
  margin: 14px 0 10px;
  color: var(--text);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.process-detail-main p,
.deliverable-detail p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.7;
  max-width: 62ch;
}

.process-detail-grid {
  display: grid;
  gap: 12px;
}

.process-detail-grid div {
  display: grid;
  align-content: center;
}

.process-detail-grid span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-detail-grid strong {
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}

/* Deliverables: compact rotating module display */
.deliverables-orbit {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 32px;
  padding: clamp(16px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 86% 10%, rgba(var(--brand-2-rgb),0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  overflow: hidden;
}

.orbit-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    rgba(255,255,255,0.025);
  background-size: 34px 34px;
  overflow: hidden;
}

.orbit-ring {
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 999px;
  animation: orbitFloatV4 8s ease-in-out infinite;
}

@keyframes orbitFloatV4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(.4deg); }
}

.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(8,10,15,.88);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(0,0,0,.25);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

.orbit-node:nth-child(1) { left: 50%; top: -23px; transform: translateX(-50%); }
.orbit-node:nth-child(2) { right: -23px; top: 50%; transform: translateY(-50%); }
.orbit-node:nth-child(3) { left: 50%; bottom: -23px; transform: translateX(-50%); }
.orbit-node:nth-child(4) { left: -23px; top: 50%; transform: translateY(-50%); }

.orbit-node.is-active {
  border-color: rgba(var(--brand-rgb),0.48);
  background: rgba(var(--brand-rgb),0.14);
  color: var(--text);
  box-shadow: 0 0 0 8px rgba(var(--brand-rgb),0.06), 0 18px 44px rgba(0,0,0,.32);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(230px, 72%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px;
  background: rgba(4,5,6,0.82);
  padding: 22px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.orbit-core span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.orbit-core strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.deliverables-content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-width: 0;
}

.deliverables-switcher {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.deliverable-switch {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--muted-strong);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.deliverable-switch:hover,
.deliverable-switch:focus-visible,
.deliverable-switch.is-active {
  transform: translateY(-1px);
  border-color: rgba(var(--brand-rgb),0.34);
  background: rgba(var(--brand-rgb),0.085);
  color: var(--text);
  outline: none;
}

.deliverable-detail-wrap {
  position: relative;
  min-height: 310px;
}

.deliverable-detail {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 28px;
  background: rgba(255,255,255,0.032);
  padding: clamp(20px, 2.4vw, 30px);
}

.deliverable-detail.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.deliverable-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted-strong);
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.2;
}

.deliverable-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}

.deliverable-progress span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb),0.24), rgba(var(--brand-rgb),0.95), rgba(var(--brand-2-rgb),0.7));
  transition: transform .32s ease;
}

@media (max-width: 980px) {
  .process-stage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-detail-wrap {
    min-height: 340px;
  }

  .deliverables-orbit {
    grid-template-columns: 1fr;
  }

  .orbit-visual {
    min-height: 280px;
  }

  .deliverable-detail-wrap {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .process-console,
  .deliverables-orbit {
    border-radius: 24px;
    padding: 14px;
  }

  .process-stage-list,
  .deliverables-switcher {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .process-stage-list::-webkit-scrollbar,
  .deliverables-switcher::-webkit-scrollbar {
    display: none;
  }

  .process-stage {
    flex: 0 0 72%;
    scroll-snap-align: start;
    min-height: 76px;
  }

  .process-detail-wrap {
    min-height: 392px;
  }

  .process-detail-main,
  .process-detail-grid div,
  .deliverable-detail {
    border-radius: 20px;
    padding: 16px;
  }

  .orbit-visual {
    min-height: 220px;
  }

  .orbit-ring {
    inset: 32px;
  }

  .orbit-node {
    width: 38px;
    height: 38px;
  }

  .orbit-node:nth-child(1) { top: -19px; }
  .orbit-node:nth-child(2) { right: -19px; }
  .orbit-node:nth-child(3) { bottom: -19px; }
  .orbit-node:nth-child(4) { left: -19px; }

  .orbit-core {
    width: min(200px, 72%);
    padding: 18px;
  }

  .deliverables-switcher {
    flex-wrap: nowrap;
  }

  .deliverable-switch {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .deliverable-detail-wrap {
    min-height: 430px;
  }

  .deliverable-tags {
    display: grid;
    gap: 8px;
  }

  .deliverable-tags span {
    border-radius: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 390px) {
  .process-detail-wrap {
    min-height: 430px;
  }

  .deliverable-detail-wrap {
    min-height: 470px;
  }

  .process-stage {
    flex-basis: 80%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-signal-line span,
  .orbit-ring {
    animation: none !important;
  }
}

/* === FOVELON FINAL PATCH: scoped, cache-busted process + deliverables === */
#process.process-section,
#deliverables.deliverables-section {
  position: relative;
}

#process .process-console,
#deliverables .deliverables-orbit {
  max-width: 1080px;
  margin-inline: auto;
}

#process .process-console {
  display: grid;
  gap: 22px;
}

#process .process-signal-line {
  position: relative;
  height: 2px;
  width: 100%;
  margin: 4px 0 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 224, 174, 0.06), rgba(184, 224, 174, 0.38), rgba(184, 224, 174, 0.06));
  overflow: hidden;
}

#process .process-signal-line span {
  position: absolute;
  inset: -2px auto -2px -18%;
  width: 24%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(240, 255, 232, 0.96), rgba(157, 203, 143, 0.78), transparent);
  filter: blur(1px);
  animation: fovelonSignal 4.8s linear infinite;
}

#process .process-stage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#process .process-stage {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 224, 174, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.026));
  color: rgba(247,248,243,0.84);
  border-radius: 18px;
  padding: 16px 16px 14px;
  text-align: left;
  min-height: 90px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  cursor: pointer;
}

#process .process-stage span,
#process .process-stage small {
  display: block;
}

#process .process-stage span {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -0.03em;
}

#process .process-stage small {
  margin-top: 7px;
  color: rgba(247,248,243,0.56);
  font-size: 12px;
  line-height: 1.3;
}

#process .process-stage:hover,
#process .process-stage:focus-visible,
#process .process-stage.is-active {
  transform: translateY(-3px);
  border-color: rgba(184, 224, 174, 0.36);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 224, 174, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.034));
  box-shadow: 0 18px 42px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}

#process .process-detail-wrap {
  position: relative;
  min-height: 250px;
}

#process .process-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 16px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .30s ease, transform .30s ease;
}

#process .process-detail.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#process .process-detail-main,
#process .process-detail-grid {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.024));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

#process .process-detail-main {
  padding: 24px;
}

#process .process-detail-main .mini-label,
#deliverables .mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(184, 224, 174, 0.10);
  color: rgba(220, 241, 211, 0.90);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

#process .process-detail-main h3 {
  margin: 16px 0 10px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

#process .process-detail-main p {
  color: rgba(247,248,243,0.66);
  font-size: 16px;
  line-height: 1.7;
  max-width: 66ch;
}

#process .process-detail-grid {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

#process .process-detail-grid div {
  padding: 22px;
}

#process .process-detail-grid div + div {
  border-top: 1px solid rgba(255,255,255,0.09);
}

#process .process-detail-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(247,248,243,0.42);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

#process .process-detail-grid strong {
  display: block;
  color: rgba(247,248,243,0.88);
  font-size: 15px;
  line-height: 1.4;
}

/* Deliverables: readable rotating module, not stacked cards */
#deliverables .deliverables-orbit {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

#deliverables .orbit-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 224, 174, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.050), rgba(255,255,255,0.022));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

#deliverables .orbit-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}

#deliverables .orbit-ring {
  position: absolute;
  inset: 0;
}

#deliverables .orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: rgba(247,248,243,0.56);
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 700;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

#deliverables .orbit-node:nth-child(1) { top: 42px; left: 50%; transform: translateX(-50%); }
#deliverables .orbit-node:nth-child(2) { top: 50%; right: 36px; transform: translateY(-50%); }
#deliverables .orbit-node:nth-child(3) { bottom: 42px; left: 50%; transform: translateX(-50%); }
#deliverables .orbit-node:nth-child(4) { top: 50%; left: 36px; transform: translateY(-50%); }

#deliverables .orbit-node.is-active {
  color: rgba(247,248,243,0.96);
  border-color: rgba(184, 224, 174, 0.42);
  background: rgba(184, 224, 174, 0.12);
  box-shadow: 0 0 22px rgba(184, 224, 174, 0.16);
}

#deliverables .orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70%, 245px);
  transform: translate(-50%, -50%);
  text-align: center;
}

#deliverables .orbit-core span {
  display: block;
  margin-bottom: 8px;
  color: rgba(247,248,243,0.44);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

#deliverables .orbit-core strong {
  display: block;
  color: rgba(247,248,243,0.94);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

#deliverables .deliverables-content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

#deliverables .deliverables-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#deliverables .deliverable-switch {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.040);
  color: rgba(247,248,243,0.60);
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  cursor: pointer;
}

#deliverables .deliverable-switch:hover,
#deliverables .deliverable-switch:focus-visible,
#deliverables .deliverable-switch.is-active {
  color: rgba(247,248,243,0.94);
  border-color: rgba(184, 224, 174, 0.30);
  background: rgba(184, 224, 174, 0.095);
  transform: translateY(-1px);
}

#deliverables .deliverable-detail-wrap {
  position: relative;
  min-height: 285px;
}

#deliverables .deliverable-detail {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 6% 0%, rgba(184, 224, 174, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.024));
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(14px) scale(.992);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
}

#deliverables .deliverable-detail.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#deliverables .deliverable-detail h3 {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: .98;
  letter-spacing: -0.07em;
  max-width: 12ch;
}

#deliverables .deliverable-detail p {
  color: rgba(247,248,243,0.66);
  font-size: 16px;
  line-height: 1.68;
  max-width: 58ch;
}

#deliverables .deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

#deliverables .deliverable-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: rgba(247,248,243,0.72);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  font-weight: 650;
}

#deliverables .deliverable-progress {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

#deliverables .deliverable-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(184, 224, 174, 0.22), rgba(184, 224, 174, 0.92), rgba(184, 224, 174, 0.22));
  transform: translateX(0);
  transition: transform .30s ease;
}

@keyframes fovelonSignal {
  0% { transform: translateX(0); opacity: .1; }
  10% { opacity: .95; }
  100% { transform: translateX(560%); opacity: .18; }
}

@media (max-width: 920px) {
  #process .process-stage-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  #process .process-stage-list::-webkit-scrollbar,
  #deliverables .deliverables-switcher::-webkit-scrollbar { display: none; }
  #process .process-stage {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  #process .process-detail {
    grid-template-columns: 1fr;
  }
  #process .process-detail-wrap {
    min-height: 430px;
  }
  #deliverables .deliverables-orbit {
    grid-template-columns: 1fr;
  }
  #deliverables .orbit-visual {
    min-height: 220px;
  }
  #deliverables .orbit-visual::before {
    inset: 22px;
  }
  #deliverables .orbit-node:nth-child(1) { top: 24px; left: 50%; }
  #deliverables .orbit-node:nth-child(2) { top: 50%; right: 24px; }
  #deliverables .orbit-node:nth-child(3) { bottom: 24px; left: 50%; }
  #deliverables .orbit-node:nth-child(4) { top: 50%; left: 24px; }
  #deliverables .deliverable-detail-wrap {
    min-height: 350px;
  }
}

@media (max-width: 560px) {
  #process .process-stage {
    flex-basis: 74vw;
    min-height: 82px;
  }
  #process .process-detail-wrap {
    min-height: 470px;
  }
  #process .process-detail-main,
  #process .process-detail-grid div,
  #deliverables .deliverable-detail {
    padding: 18px;
  }
  #deliverables .deliverables-switcher {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  #deliverables .deliverable-switch {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  #deliverables .deliverable-detail-wrap {
    min-height: 390px;
  }
  #deliverables .deliverable-detail h3 {
    max-width: 13ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  #process .process-signal-line span {
    animation: none;
  }
}


/* === FOVELON PRODUCTION V7 PATCH: Cloudflare-safe, compact motion modules === */
#problem .card-grid.four,
#process .process-console {
  --fovelon-line-glow: rgba(240, 255, 232, 0.94);
  --fovelon-line-accent: rgba(200, 212, 139, 0.70);
}

/* Match the footer line shape: faded edges, calm center, animated glint only on problem/process. */
#problem .card-grid.four::before,
#process .process-signal-line {
  left: 50%;
  right: auto;
  width: min(1120px, 100%);
  transform: translateX(-50%);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  overflow: hidden;
}

#problem .card-grid.four::before {
  top: 0;
}

#problem .card-grid.four::after,
#process .process-signal-line span {
  top: -2px;
  left: 0;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--fovelon-line-glow), var(--fovelon-line-accent), transparent);
  filter: blur(.45px);
  box-shadow: 0 0 18px rgba(200,212,139,.20);
  animation: fovelonFooterLineSpark 5.4s linear infinite;
}

#process .process-signal-line {
  position: relative;
  margin: 3px auto 2px;
}

#process .process-signal-line span {
  display: block;
  position: absolute;
  inset: -2px auto auto 0;
}

@keyframes fovelonFooterLineSpark {
  0% { transform: translateX(-112%); opacity: 0; }
  10% { opacity: .86; }
  52% { opacity: .96; }
  64% { opacity: 0; }
  100% { transform: translateX(650%); opacity: 0; }
}

/* Remove the Build-plan badge even if older HTML is cached momentarily. */
.featured-badge { display: none !important; }
.price-card.featured .price-top { margin-top: 0; }

/* Process: compact editorial rail with one active detail, no long stacked cards. */
#process .process-console {
  max-width: 1040px;
  gap: 18px;
  padding: clamp(15px, 2vw, 24px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(200,212,139,.085), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(134,183,170,.055), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.044), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 30px 80px rgba(0,0,0,.22);
}

#process .process-stage-list {
  gap: 8px;
}

#process .process-stage {
  position: relative;
  min-height: 68px;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,.028);
  overflow: hidden;
}

#process .process-stage::after {
  content: "";
  position: absolute;
  inset: auto 12px 9px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.16), rgba(255,255,255,0));
  opacity: .55;
}

#process .process-stage span {
  font-size: clamp(14px, 1.3vw, 16px);
}

#process .process-stage small {
  margin-top: 5px;
  font-size: 11px;
}

#process .process-stage:hover,
#process .process-stage:focus-visible,
#process .process-stage.is-active {
  transform: translateY(-2px);
  border-color: rgba(200,212,139,.30);
  background: rgba(200,212,139,.070);
}

#process .process-console.is-hinted .process-stage.is-active,
#deliverables .deliverables-orbit.is-hinted .deliverable-switch.is-active,
#deliverables .deliverables-orbit.is-hinted .orbit-core {
  animation: fovelonReachHint .82s cubic-bezier(.2,.8,.2,1);
}

@keyframes fovelonReachHint {
  0%, 100% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-4px) scale(1.015); }
  68% { transform: translateY(1px) scale(.998); }
}

#process .process-detail-wrap {
  min-height: 218px;
}

#process .process-detail {
  grid-template-columns: minmax(0, 1.38fr) minmax(220px, .62fr);
  gap: 12px;
}

#process .process-detail-main,
#process .process-detail-grid {
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(200,212,139,.070), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.020));
}

#process .process-detail-main {
  display: grid;
  align-content: center;
  padding: clamp(18px, 2vw, 23px);
}

#process .process-detail-main h3 {
  margin: 13px 0 8px;
  font-size: clamp(23px, 2.25vw, 32px);
}

#process .process-detail-main p {
  font-size: 15px;
  line-height: 1.62;
}

#process .process-detail-grid div {
  display: grid;
  align-content: center;
  min-height: 88px;
  padding: 17px 18px;
}

/* Deliverables: one animated module, chips for the rest, light bubbles instead of stacked cards. */
#deliverables .deliverables-orbit {
  position: relative;
  max-width: 1040px;
  grid-template-columns: minmax(210px, .58fr) minmax(0, 1.42fr);
  gap: 18px;
  padding: clamp(15px, 2vw, 24px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 8%, rgba(134,183,170,.070), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(200,212,139,.065), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.044), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 30px 80px rgba(0,0,0,.22);
}

#deliverables .orbit-visual {
  min-height: 298px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,212,139,.10), transparent 39%),
    linear-gradient(180deg, rgba(255,255,255,.043), rgba(255,255,255,.018));
}

#deliverables .orbit-visual::before {
  inset: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 56%, rgba(255,255,255,.035) 57%, transparent 58%);
}

#deliverables .orbit-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 120deg, transparent, rgba(200,212,139,.16), transparent 32%, rgba(134,183,170,.12), transparent 62%);
  filter: blur(1px);
  opacity: .65;
  animation: fovelonQuietRotate 12s linear infinite;
}

@keyframes fovelonQuietRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

#deliverables .orbit-node {
  width: 38px;
  height: 38px;
  background: rgba(4,5,6,.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
}

#deliverables .orbit-node.is-active {
  transform: translateY(-50%) scale(1.06);
}

#deliverables .orbit-node:nth-child(1).is-active,
#deliverables .orbit-node:nth-child(3).is-active {
  transform: translateX(-50%) scale(1.06);
}

#deliverables .orbit-core {
  z-index: 2;
  width: min(76%, 230px);
  padding: 21px 18px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 26px;
  background: rgba(4,5,6,.76);
  box-shadow: 0 22px 54px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
}

#deliverables .orbit-core::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  transform: skewX(-18deg);
  animation: fovelonCoreSweep 5.8s ease-in-out infinite;
}

@keyframes fovelonCoreSweep {
  0%, 54% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  62% { opacity: .85; }
  82%, 100% { transform: translateX(330%) skewX(-18deg); opacity: 0; }
}

#deliverables .deliverables-switcher {
  gap: 7px;
}

#deliverables .deliverable-switch {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  background: rgba(255,255,255,.032);
}

#deliverables .deliverable-detail-wrap {
  min-height: 258px;
}

#deliverables .deliverable-detail {
  align-content: center;
  border-radius: 24px;
  padding: clamp(18px, 2.1vw, 25px);
  background:
    radial-gradient(circle at var(--spotlight-x, 8%) var(--spotlight-y, 0%), rgba(200,212,139,.075), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.019));
}

#deliverables .deliverable-detail.is-active {
  animation: fovelonModuleIn .46s cubic-bezier(.2,.8,.2,1);
}

@keyframes fovelonModuleIn {
  0% { opacity: 0; transform: translateY(12px) scale(.986); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

#deliverables .deliverable-detail h3 {
  max-width: 16ch;
  font-size: clamp(25px, 3vw, 38px);
}

#deliverables .deliverable-detail p {
  font-size: 15px;
  line-height: 1.62;
}

#deliverables .deliverable-tags {
  gap: 8px;
  margin-top: 16px;
}

#deliverables .deliverable-tags span {
  min-height: 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(200,212,139,.10), transparent 48%),
    rgba(255,255,255,.043);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  opacity: .86;
  transition: transform .24s ease, opacity .24s ease, border-color .24s ease;
}

#deliverables .deliverable-detail.is-active .deliverable-tags span {
  animation: fovelonTagAppear .62s cubic-bezier(.2,.8,.2,1) both;
}

#deliverables .deliverable-detail.is-active .deliverable-tags span:nth-child(2) { animation-delay: .07s; }
#deliverables .deliverable-detail.is-active .deliverable-tags span:nth-child(3) { animation-delay: .14s; }

@keyframes fovelonTagAppear {
  0% { opacity: 0; transform: translateY(8px) scale(.96); }
  100% { opacity: .90; transform: translateY(0) scale(1); }
}

#deliverables .deliverable-progress {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
}

#deliverables .deliverable-progress span {
  height: 3px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, rgba(240,255,232,.90), rgba(200,212,139,.72), transparent);
  box-shadow: 0 0 16px rgba(200,212,139,.22);
}

/* Thanks page: remove raw capsule/button feel, center a larger animated Fovelon mark. */
.thanks-card-final {
  display: grid;
  place-items: center;
  width: min(100%, 760px);
  min-height: min(72svh, 620px);
  padding: clamp(30px, 6vw, 64px);
  overflow: hidden;
}

.thanks-card-final::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,212,139,.10), transparent 66%);
  pointer-events: none;
}

.thanks-brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 380px);
  min-height: 190px;
  margin-inline: auto;
  isolation: isolate;
}

.thanks-brand-large {
  position: relative;
  z-index: 2;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.thanks-brand-large .brand-mark {
  width: clamp(74px, 12vw, 98px);
  height: clamp(74px, 12vw, 98px);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.09);
}

.thanks-brand-large .brand-mark img {
  width: 100%;
  height: 100%;
}

.thanks-brand-large .brand-name {
  font-size: clamp(34px, 6vw, 54px);
  line-height: .92;
  letter-spacing: -.075em;
  color: rgba(247,248,243,.96);
}

.thanks-light-wave {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 -54%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), rgba(200,212,139,.18), transparent);
  filter: blur(.5px);
  transform: skewX(-18deg);
  animation: thanksWave 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes thanksWave {
  0%, 46% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  55% { opacity: .88; }
  82%, 100% { transform: translateX(430%) skewX(-18deg); opacity: 0; }
}

.thanks-spark {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,255,232,.92);
  box-shadow: 0 0 18px rgba(200,212,139,.55), 0 0 2px rgba(255,255,255,.9);
  opacity: 0;
  pointer-events: none;
}

.thanks-spark-one { left: 27%; top: 26%; }
.thanks-spark-two { right: 22%; bottom: 30%; }
.thanks-brand-stage.is-sparkling .thanks-spark-one { animation: thanksSpark .72s ease-out; }
.thanks-brand-stage.is-sparkling .thanks-spark-two { animation: thanksSpark .72s ease-out .16s; }

@keyframes thanksSpark {
  0% { opacity: 0; transform: scale(.2); }
  34% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(.35) translateY(-8px); }
}

.thanks-card-final h1 {
  margin: clamp(18px, 3vw, 28px) 0 0;
  font-size: clamp(32px, 5vw, 58px);
}

.thanks-card-final p {
  margin: 18px auto 0;
}

@media (max-width: 920px) {
  #problem .card-grid.four::before,
  #problem .card-grid.four::after {
    display: block;
  }
  #process .process-detail-wrap { min-height: 332px; }
  #process .process-detail { grid-template-columns: 1fr; }
  #process .process-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #process .process-detail-grid div + div { border-top: 0; border-left: 1px solid rgba(255,255,255,.09); }
  #deliverables .deliverables-orbit { grid-template-columns: 1fr; }
  #deliverables .orbit-visual { min-height: 202px; }
  #deliverables .deliverable-detail-wrap { min-height: 314px; }
}

@media (max-width: 560px) {
  #problem .card-grid.four { padding-top: 18px; }
  #process .process-console,
  #deliverables .deliverables-orbit { border-radius: 24px; }
  #process .process-stage-list {
    display: flex;
    overflow-x: auto;
    gap: 9px;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  #process .process-stage-list::-webkit-scrollbar { display: none; }
  #process .process-stage {
    flex: 0 0 168px;
    min-height: 66px;
    scroll-snap-align: start;
  }
  #process .process-detail-wrap { min-height: 360px; }
  #process .process-detail-grid { grid-template-columns: 1fr; }
  #process .process-detail-grid div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  #deliverables .orbit-visual { min-height: 178px; }
  #deliverables .orbit-node { width: 34px; height: 34px; }
  #deliverables .deliverables-switcher {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  #deliverables .deliverables-switcher::-webkit-scrollbar { display: none; }
  #deliverables .deliverable-switch { flex: 0 0 auto; scroll-snap-align: start; }
  #deliverables .deliverable-detail-wrap { min-height: 360px; }
  #deliverables .deliverable-tags { display: grid; grid-template-columns: 1fr; }
  #deliverables .deliverable-tags span { border-radius: 14px; padding: 9px 11px; }
  .thanks-card-final { min-height: min(78svh, 620px); }
}

@media (max-width: 390px) {
  #process .process-detail-wrap { min-height: 394px; }
  #deliverables .deliverable-detail-wrap { min-height: 402px; }
}

@media (prefers-reduced-motion: reduce) {
  #problem .card-grid.four::after,
  #process .process-signal-line span,
  #deliverables .orbit-visual::after,
  #deliverables .orbit-core::after,
  .thanks-light-wave,
  .thanks-spark,
  #deliverables .deliverable-detail.is-active,
  #deliverables .deliverable-detail.is-active .deliverable-tags span {
    animation: none !important;
  }
}


/* === FOVELON PRODUCTION V8 PATCH: simpler floating sequences + refined thanks page === */
#system .floating-sequence,
#process .floating-sequence,
#deliverables .floating-sequence {
  position: relative;
  overflow: hidden;
}

.floating-sequence {
  width: 100%;
  min-height: 300px;
  padding: clamp(10px, 2vw, 14px) 0 0;
}

.floating-sequence .sequence-title {
  margin-bottom: 14px;
}

.floating-sequence .sequence-title strong {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.04em;
  font-weight: 640;
}

.floating-sequence .sequence-view {
  position: relative;
  min-height: 236px;
}

.floating-sequence .sequence-item {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  align-items: start;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px) scale(.992);
  pointer-events: none;
  transition: opacity .42s ease, transform .42s ease;
}

.floating-sequence .sequence-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-sequence .sequence-item::before {
  content: "";
  position: absolute;
  inset: auto auto 100% 0;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(var(--brand-rgb),0.85), rgba(255,255,255,0));
  opacity: .72;
  transform: translateY(14px);
  transition: transform .44s ease, opacity .44s ease;
}

.floating-sequence .sequence-item.is-active::before {
  transform: translateY(0);
  opacity: 1;
}

.floating-sequence .sequence-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(210,218,201,0.76);
}

.floating-sequence .sequence-label::before {
  content: "";
  width: 26px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(200,212,139,0.82), rgba(255,255,255,0));
  box-shadow: 0 0 14px rgba(200,212,139,0.22);
}

.floating-sequence h3 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(31px, 4.5vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.floating-sequence p {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(15px, 1.65vw, 17px);
  line-height: 1.7;
  color: var(--muted);
}

.floating-sequence .sequence-footnote {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 60ch;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(231,236,226,0.72);
}

.floating-sequence .sequence-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.floating-sequence .sequence-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(213,220,206,0.56);
  font: inherit;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease, opacity .22s ease;
}

.floating-sequence .sequence-trigger span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 4px 0 0;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.floating-sequence .sequence-trigger::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.floating-sequence .sequence-trigger:hover {
  color: rgba(241,244,238,0.84);
}

.floating-sequence .sequence-trigger.is-active {
  color: rgba(247,248,243,0.96);
}

.floating-sequence .sequence-trigger.is-active::before {
  background: rgba(200,212,139,0.86);
  box-shadow: 0 0 18px rgba(200,212,139,0.24), inset 0 0 0 1px rgba(255,255,255,0.12);
  transform: scale(1.12);
}

.floating-sequence.is-hinted .sequence-item.is-active {
  animation: sequenceNudge .72s cubic-bezier(.2,.8,.2,1);
}

@keyframes sequenceNudge {
  0% { transform: translateY(0) scale(1); }
  34% { transform: translateY(-4px) scale(1.004); }
  100% { transform: translateY(0) scale(1); }
}

#system .floating-sequence {
  min-height: 340px;
  padding-left: clamp(8px, 1.5vw, 12px);
}

#system .floating-sequence .sequence-view {
  min-height: 248px;
}

#system .floating-sequence .sequence-item {
  padding: 28px 0 0;
}

#system .floating-sequence .sequence-item::after {
  content: "";
  position: absolute;
  inset: 22px 14% 14px 0;
  border-radius: 36px;
  background: radial-gradient(circle at 24% 18%, rgba(255,255,255,0.05), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0));
  z-index: -1;
  opacity: .68;
}

#system .floating-sequence h3 {
  max-width: 16ch;
  font-size: clamp(30px, 3.8vw, 42px);
}

#process .floating-sequence {
  max-width: 980px;
}

#process .sequence-line {
  position: relative;
  margin: 2px 0 18px;
  width: min(100%, 980px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  overflow: hidden;
}

#process .sequence-line span {
  position: absolute;
  inset: -2px auto auto 0;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(240,255,232,0.96), rgba(200,212,139,0.78), transparent);
  box-shadow: 0 0 18px rgba(200,212,139,0.22);
  animation: fovelonFooterLineSpark 5.4s linear infinite;
}

#process .floating-sequence .sequence-view {
  min-height: 250px;
}

#process .floating-sequence .sequence-footnote {
  margin-top: 4px;
}

#deliverables .floating-sequence {
  min-height: 352px;
}

#deliverables .floating-sequence .sequence-view {
  min-height: 270px;
}

#deliverables .floating-sequence .sequence-item {
  padding-top: 8px;
}

#deliverables .sequence-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
  max-width: 780px;
}

#deliverables .sequence-tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, rgba(200,212,139,0.08), transparent 48%), rgba(255,255,255,0.038);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  color: rgba(241,244,238,0.88);
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
}

#deliverables .sequence-item.is-active .sequence-tag-cloud span {
  animation: sequenceTagReveal .56s cubic-bezier(.2,.8,.2,1) forwards;
}

#deliverables .sequence-item.is-active .sequence-tag-cloud span:nth-child(2) { animation-delay: .07s; }
#deliverables .sequence-item.is-active .sequence-tag-cloud span:nth-child(3) { animation-delay: .14s; }

@keyframes sequenceTagReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: .92; transform: translateY(0); }
}

.thanks-card-final {
  width: min(100%, 780px);
  min-height: min(74svh, 660px);
  padding: clamp(32px, 6vw, 68px);
}

.thanks-card-final::before {
  width: min(82%, 560px);
}

.thanks-brand-stage {
  width: 100%;
  min-height: 120px;
  margin-inline: auto;
}

.thanks-brand-large {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 18px);
}

.thanks-brand-large .brand-mark {
  width: clamp(72px, 10vw, 84px);
  height: clamp(72px, 10vw, 84px);
  border-radius: 26px;
}

.thanks-brand-large .brand-name {
  font-size: clamp(28px, 4.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.thanks-light-wave {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto -24%;
  width: 28%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), rgba(200,212,139,0.18), transparent);
  filter: blur(.5px);
  transform: translateY(-50%) skewX(-18deg);
  animation: thanksWaveWide 5.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes thanksWaveWide {
  0%, 42% { transform: translate(-10%, -50%) skewX(-18deg); opacity: 0; }
  50% { opacity: .86; }
  84%, 100% { transform: translate(430%, -50%) skewX(-18deg); opacity: 0; }
}

.thanks-card-final h1 {
  margin: clamp(22px, 3vw, 28px) 0 0;
  font-size: clamp(30px, 5vw, 54px);
}

.thanks-card-final p {
  margin: 18px auto 0;
  max-width: 55ch;
}

.thanks-actions {
  margin-top: 26px;
}

.thanks-home-btn {
  min-width: 176px;
}

@media (max-width: 920px) {
  #system .floating-sequence .sequence-item::after { inset: 24px 6% 8px 0; }
}

@media (max-width: 640px) {
  .floating-sequence { min-height: 326px; }
  .floating-sequence .sequence-view { min-height: 262px; }
  .floating-sequence h3 { font-size: clamp(28px, 9vw, 38px); max-width: 13ch; }
  .floating-sequence .sequence-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .floating-sequence .sequence-nav::-webkit-scrollbar { display: none; }
  .floating-sequence .sequence-trigger { flex: 0 0 auto; scroll-snap-align: start; }
  #deliverables .sequence-tag-cloud { display: grid; grid-template-columns: 1fr; }
  #deliverables .sequence-tag-cloud span { border-radius: 16px; min-height: 0; padding: 11px 12px; }
  .thanks-brand-large { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  #process .sequence-line span,
  .thanks-light-wave { animation: none !important; }
}
