:root {
  color-scheme: light;
  --ink: #08283a;
  --ink-2: #0d3d51;
  --muted: #526159;
  --line: #d9e3dc;
  --paper: #f6f8f5;
  --soft: #eef5f1;
  --white: #ffffff;
  --teal: #075c6c;
  --cyan: #20a2b6;
  --green: #1f7a4b;
  --lime: #b7d95b;
  --yellow: #f2c94c;
  --rose: #d66b73;
  --shadow: 0 24px 70px rgba(8, 40, 58, 0.12);
  --logo-hue: 0deg;
  --logo-saturation: 1;
  --logo-brightness: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 162, 182, 0.12), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(183, 217, 91, 0.14), transparent 28%),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(246, 248, 245, 0.94), rgba(238, 245, 241, 0.94)),
    rgba(246, 248, 245, 0.94);
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  isolation: isolate;
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(32, 162, 182, 0.22);
  background:
    linear-gradient(105deg, rgba(246, 248, 245, 0.96), rgba(232, 244, 240, 0.96)),
    rgba(246, 248, 245, 0.96);
  box-shadow: 0 18px 52px rgba(8, 40, 58, 0.08);
}

.topbar[data-logo-tone="teal"] {
  --logo-hue: 0deg;
  --logo-saturation: 1.04;
  --logo-brightness: 1;
}

.topbar[data-logo-tone="cyan"] {
  --logo-hue: 18deg;
  --logo-saturation: 1.2;
  --logo-brightness: 1.08;
}

.topbar[data-logo-tone="green"] {
  --logo-hue: -34deg;
  --logo-saturation: 1.18;
  --logo-brightness: 1.04;
}

.topbar[data-logo-tone="gold"] {
  --logo-hue: -112deg;
  --logo-saturation: 1.32;
  --logo-brightness: 1.12;
}

.topbar::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(32, 162, 182, 0.14) 22%, transparent 42%),
    linear-gradient(245deg, transparent 10%, rgba(183, 217, 91, 0.16) 34%, transparent 56%);
  background-size: 220% 100%, 180% 100%;
  content: "";
  opacity: 0.74;
  animation: topbarWave 9s ease-in-out infinite;
}

.topbar::after {
  position: absolute;
  right: -12%;
  bottom: -38px;
  left: -12%;
  z-index: -1;
  height: 78px;
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(32, 162, 182, 0.16), transparent 64%),
    radial-gradient(60% 60% at 24% 10%, rgba(183, 217, 91, 0.13), transparent 60%);
  content: "";
  filter: blur(2px);
  opacity: 0.9;
  transform: translateX(-4%);
  animation: topbarTide 7s ease-in-out infinite alternate;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 116px;
  max-width: min(620px, calc(100vw - 420px));
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: max-width 360ms ease, color 180ms ease;
  outline: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 26px rgba(8, 40, 58, 0.09);
  overflow: hidden;
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.brand-mark::after {
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  content: "";
  transform: translateX(-58%) rotate(16deg);
  animation: logoShine 4.8s ease-in-out infinite;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  animation: brandDrift 5.4s ease-in-out infinite;
  filter: hue-rotate(var(--logo-hue)) saturate(var(--logo-saturation)) brightness(var(--logo-brightness));
  transition: filter 420ms ease, transform 260ms ease;
}

.brand-name {
  flex: 0 0 auto;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-full {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width 460ms ease, opacity 280ms ease, transform 360ms ease;
  white-space: nowrap;
}

.topbar:hover .brand,
.topbar:focus-within .brand,
.brand:hover,
.brand:focus-visible,
.brand.is-open {
  max-width: min(760px, calc(100vw - 300px));
}

.topbar:hover .brand-full,
.topbar:focus-within .brand-full,
.brand:hover .brand-full,
.brand:focus-visible .brand-full,
.brand.is-open .brand-full {
  max-width: 360px;
  opacity: 1;
  transform: translateX(0);
}

.topbar:hover .brand-mark,
.topbar:focus-within .brand-mark,
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark,
.brand.is-open .brand-mark {
  box-shadow: 0 14px 34px rgba(32, 162, 182, 0.18);
}

.topbar.is-scrolled .brand-mark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(238, 245, 241, 0.66)),
    rgba(255, 255, 255, 0.68);
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 66px);
  padding: clamp(32px, 4vw, 42px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(7, 92, 108, 0.10), rgba(31, 122, 75, 0.08)),
    var(--paper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 10vw, 118px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 76px);
  background:
    linear-gradient(120deg, rgba(7, 92, 108, 0.10), rgba(31, 122, 75, 0.08)),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  right: -8%;
  bottom: -44%;
  width: 52%;
  height: 76%;
  border: 1px solid rgba(7, 92, 108, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
  transform: rotate(-9deg);
}

.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow {
  position: relative;
  z-index: 1;
}

.hero::after {
  position: absolute;
  inset: auto -12% -38% 38%;
  height: 56%;
  border: 1px solid rgba(7, 92, 108, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(-7deg);
}

.signal-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.signal-field span {
  position: absolute;
  width: 28vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(32, 162, 182, 0.7), transparent);
  opacity: 0.5;
  animation: signalMove 7s linear infinite;
}

.signal-field span:nth-child(1) {
  top: 18%;
  left: -24%;
}

.signal-field span:nth-child(2) {
  top: 38%;
  left: -30%;
  animation-delay: 1.3s;
}

.signal-field span:nth-child(3) {
  top: 62%;
  left: -20%;
  animation-delay: 2.6s;
}

.signal-field span:nth-child(4) {
  top: 78%;
  left: -36%;
  animation-delay: 3.8s;
}

.hero-copy,
.system-panel {
  position: relative;
  z-index: 1;
}

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

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

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 4.7vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: 0 14px 34px rgba(8, 40, 58, 0.14);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.primary {
  background: var(--ink);
  color: var(--white);
}

.secondary {
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
}

.hero-metrics div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(8, 40, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
}

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

.hero-metrics strong {
  font-size: 26px;
  line-height: 1;
}

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

.system-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.logo-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.logo-card img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  animation: sailFloat 5s ease-in-out infinite;
}

.logo-card strong,
.logo-card span {
  display: block;
}

.logo-card strong {
  font-size: 26px;
}

.logo-card span {
  margin-top: 4px;
  color: var(--muted);
}

.live-console {
  overflow: hidden;
  border: 1px solid rgba(8, 40, 58, 0.12);
  border-radius: 8px;
  background: #071f2e;
  color: var(--white);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.console-top span:nth-child(2) {
  background: var(--yellow);
}

.console-top span:nth-child(3) {
  background: var(--lime);
}

.console-top strong {
  margin-left: 8px;
  font-size: 13px;
}

.console-line {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-line:last-child {
  border-bottom: 0;
}

.console-line span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.console-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.console-line.active p::after {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 4px;
  background: var(--lime);
  content: "";
  vertical-align: -2px;
  animation: cursorBlink 1s steps(2, start) infinite;
}

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

.flow div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  animation: flowPulse 3.6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.flow div::before {
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(32, 162, 182, 0.16), transparent);
  content: "";
  animation: scan 4.2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.flow span {
  color: var(--teal);
}

.band,
.split,
.philosophy,
.journey,
.pricing,
.brief-section,
.faq,
.fit-section,
.owner-outcomes,
.decision-section {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 920px;
  margin-bottom: 28px;
}

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

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

article,
.pilot-card,
.product-copy,
.module-card,
.price-card,
.brief-form,
.brief-result,
details,
.fit-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

article:hover {
  border-color: rgba(32, 162, 182, 0.45);
  box-shadow: 0 16px 34px rgba(8, 40, 58, 0.10);
  transform: translateY(-4px);
}

.module-grid,
.pricing-grid,
.faq-grid,
.fit-grid {
  display: grid;
  gap: 14px;
}

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

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

.module-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--yellow));
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.module-card:hover {
  border-color: rgba(32, 162, 182, 0.45);
  box-shadow: 0 18px 38px rgba(8, 40, 58, 0.10);
  transform: translateY(-4px);
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card span,
.price-card span,
.brief-result span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

article p,
.split p,
.product-copy,
.philosophy p,
.steps {
  color: var(--muted);
  line-height: 1.55;
}

.owner-strip {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(8, 40, 58, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(183, 217, 91, 0.18), rgba(32, 162, 182, 0.12));
}

.owner-strip span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-strip strong {
  font-size: 16px;
}

.fit-section {
  background: var(--paper);
}

.fit-card {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(32, 162, 182, 0.05), transparent 34%),
    var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fit-card:hover {
  border-color: rgba(31, 122, 75, 0.38);
  box-shadow: 0 16px 34px rgba(8, 40, 58, 0.09);
  transform: translateY(-4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--soft);
}

.journey {
  background: var(--soft);
}

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

.timeline-item {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-item::after {
  position: absolute;
  top: 44px;
  right: -14px;
  width: 14px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline-item p,
.module-card p,
.fit-card p,
.price-card p,
.brief-copy p,
.brief-form,
.brief-result p,
details p {
  color: var(--muted);
  line-height: 1.55;
}

.owner-outcomes {
  background: #08283a;
  color: var(--white);
}

.owner-outcomes .eyebrow {
  color: var(--lime);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.outcome-board,
.outcome-list {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.outcome-board {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.board-row {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.board-row.active {
  border-color: rgba(183, 217, 91, 0.7);
  background: rgba(183, 217, 91, 0.12);
}

.board-row span,
.board-row em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
}

.board-row strong {
  font-size: 20px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.outcome-list div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.outcome-list div:nth-child(2n) {
  border-right: 0;
}

.outcome-list div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.outcome-list p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.operating-map {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
  background: #08283a;
  color: var(--white);
}

.operating-map .eyebrow {
  color: var(--lime);
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(300px, 1.4fr) minmax(220px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.map-column,
.map-core {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.map-column span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  text-transform: uppercase;
}

.map-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.45;
}

.map-column.result {
  background: rgba(183, 217, 91, 0.13);
}

.map-core {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.map-core::before {
  position: absolute;
  top: 50%;
  right: 32px;
  left: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 162, 182, 0.16), rgba(183, 217, 91, 0.76));
  content: "";
}

.map-node {
  position: relative;
  z-index: 1;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #10394c;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.map-node:hover,
.map-node.active {
  border-color: rgba(183, 217, 91, 0.82);
  background: #0f5968;
  transform: translateY(-3px);
}

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

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: stretch;
}

.pricing {
  background:
    linear-gradient(120deg, rgba(8, 40, 58, 0.04), rgba(31, 122, 75, 0.08)),
    var(--paper);
}

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

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.price-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.price-card.featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  display: block;
  margin: 12px 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.price-card.featured {
  background: #08283a;
  color: var(--white);
  transform: translateY(-8px);
}

.price-card.featured span,
.price-card.featured strong {
  color: var(--lime);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-note {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 60px);
  align-items: center;
  background: var(--white);
}

.decision-copy {
  max-width: 820px;
}

.decision-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr) minmax(280px, 0.7fr);
  gap: 16px;
  align-items: start;
  background: var(--soft);
}

.brief-form {
  display: grid;
  gap: 12px;
}

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.brief-form input,
.brief-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.brief-form input:focus,
.brief-form select:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(32, 162, 182, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.brief-result {
  position: sticky;
  top: 96px;
  min-height: 320px;
  background: #071f2e;
  color: var(--white);
}

.brief-result span {
  color: var(--lime);
}

.brief-result p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-preview {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lead-preview div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-preview dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  text-transform: uppercase;
}

.lead-preview dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.preview-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

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

details {
  min-height: 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

details[open] {
  border-color: rgba(32, 162, 182, 0.48);
  box-shadow: 0 14px 30px rgba(8, 40, 58, 0.08);
}

.product-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.pilot-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink), #075c6c 78%);
  color: var(--white);
}

.pilot-card::before {
  position: absolute;
  inset: -40% auto auto -18%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.pilot-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.pilot-card strong {
  display: block;
  margin: 16px 0;
  font-size: 48px;
  line-height: 1;
}

.pilot-card p {
  color: rgba(255, 255, 255, 0.78);
}

.philosophy {
  max-width: 1120px;
}

.philosophy p {
  max-width: 860px;
  font-size: 20px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

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

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

@keyframes signalMove {
  0% {
    transform: translateX(0) rotate(-10deg);
  }
  100% {
    transform: translateX(150vw) rotate(-10deg);
  }
}

@keyframes sailFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

@keyframes flowPulse {
  0%,
  100% {
    border-color: var(--line);
  }
  50% {
    border-color: rgba(32, 162, 182, 0.45);
  }
}

@keyframes scan {
  0%,
  45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(380%);
  }
}

@keyframes topbarWave {
  0%,
  100% {
    background-position: 0% 50%, 100% 50%;
  }
  50% {
    background-position: 100% 50%, 0% 50%;
  }
}

@keyframes topbarTide {
  0% {
    transform: translateX(-5%) translateY(0);
  }
  100% {
    transform: translateX(5%) translateY(-5px);
  }
}

@keyframes brandDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-1.5deg);
  }
}

@keyframes logoShine {
  0%,
  44% {
    transform: translateX(-62%) rotate(16deg);
  }
  74%,
  100% {
    transform: translateX(62%) rotate(16deg);
  }
}

footer strong,
footer span {
  display: block;
}

footer strong {
  color: var(--ink);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .brand {
    max-width: calc(100vw - 40px);
  }

  .topbar:hover .brand,
  .topbar:focus-within .brand,
  .brand:hover,
  .brand:focus-visible,
  .brand.is-open {
    max-width: calc(100vw - 40px);
  }

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

  .topbar:hover .brand-full,
  .topbar:focus-within .brand-full,
  .brand:hover .brand-full,
  .brand:focus-visible .brand-full,
  .brand.is-open .brand-full {
    max-width: calc(100vw - 128px);
  }

  .hero,
  .split,
  .product,
  .map-grid,
  .brief-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .module-grid,
  .pricing-grid,
  .packages-grid,
  .timeline,
  .faq-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcomes-layout,
  .decision-section {
    grid-template-columns: 1fr;
  }

  .decision-actions {
    justify-content: flex-start;
  }

  .timeline-item::after {
    display: none;
  }

  .brief-result {
    position: static;
  }

  .map-core {
    grid-template-columns: 1fr;
  }

  .map-core::before {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 50%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(32, 162, 182, 0.16), rgba(183, 217, 91, 0.76));
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

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

  .module-grid,
  .pricing-grid,
  .packages-grid,
  .timeline,
  .faq-grid,
  .fit-grid,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-list div,
  .outcome-list div:nth-child(2n),
  .outcome-list div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .outcome-list div:last-child {
    border-bottom: 0;
  }

  .price-card.featured {
    transform: none;
  }

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

  .logo-card {
    grid-template-columns: 64px 1fr;
  }

  .logo-card img {
    width: 64px;
    height: 64px;
  }

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

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

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

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