:root {
  --ink: #102b46;
  --ink-soft: #40576d;
  --navy: #173a5f;
  --navy-deep: #0a2138;
  --orange: #d94f18;
  --orange-dark: #a93a10;
  --cream: #f8f6f0;
  --paper: #fffdfa;
  --line: #cad3dc;
  --gold: #efb35f;
  --success: #1f6d4a;
  --error: #9f2f2f;
  --shadow-sm: 0 8px 24px rgba(15, 42, 69, 0.09);
  --shadow-md: 0 18px 55px rgba(15, 42, 69, 0.16);
  --shadow-lg: 0 30px 80px rgba(15, 42, 69, 0.24);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(45, 75, 105, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 75, 105, 0.065) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 52%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: var(--navy);
}

a:hover {
  color: var(--orange-dark);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid rgba(217, 79, 24, 0.28);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 43, 70, 0.12);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.045em;
  font-size: 1.65rem;
}

.wordmark span {
  color: var(--orange);
}

.wordmark small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.header-nav .header-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
}

.hero {
  padding: clamp(70px, 10vw, 130px) 0 clamp(58px, 8vw, 105px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-title,
.wheel-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 7.2rem);
}

.hero h1 em,
.wheel-title {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button,
.button-secondary,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

.button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(217, 79, 24, 0.24);
}

.button:hover {
  color: #fff;
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.button-secondary {
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid rgba(16, 43, 70, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  color: var(--orange-dark);
  border-color: rgba(217, 79, 24, 0.45);
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(16, 43, 70, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.92);
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(16, 43, 70, 0.18);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.hero-card strong {
  display: block;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1;
}

.hero-card p {
  position: relative;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-card ol {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.hero-card li span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
}

.trust-strip {
  border-block: 1px solid rgba(16, 43, 70, 0.13);
  background: rgba(255, 255, 255, 0.5);
}

.trust-strip .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink-soft);
  font-weight: 800;
  text-align: center;
}

.trust-strip strong {
  color: var(--ink);
}

.wheel-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.wheel-header {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.wheel-title {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.section-lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.stage-instruction {
  width: min(760px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 24px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-instruction::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(16, 43, 70, 0.22);
}

.stage-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 5px solid #fff1e6;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(217, 79, 24, 0.22);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.wheel-wrap {
  position: relative;
  width: min(700px, 92vw);
  margin-inline: auto;
}

.wheel-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(16px, 2.2vw, 25px);
  border: clamp(9px, 1.2vw, 14px) solid var(--navy);
  border-radius: 50%;
  background: linear-gradient(145deg, #f9fcff 0%, #a9bdd0 25%, #f9fcff 49%, #7a96b0 72%, #eef7ff 100%);
  box-shadow:
    inset 0 0 0 5px #dce6ef,
    inset 0 0 0 9px #294e74,
    0 28px 70px rgba(15, 42, 69, 0.27),
    0 0 44px rgba(46, 91, 133, 0.21);
}

.wheel-shell::before,
.wheel-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wheel-shell::before {
  inset: 11px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 3px rgba(10, 33, 56, 0.25);
}

.wheel-shell::after {
  inset: 8.5%;
  z-index: 2;
  box-shadow: inset 0 0 34px rgba(15, 42, 69, 0.22);
}

.wheel-pointer {
  position: absolute;
  z-index: 20;
  top: -4.2%;
  left: 50%;
  width: clamp(44px, 8vw, 66px);
  height: clamp(92px, 14vw, 132px);
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 9px rgba(15, 42, 69, 0.28));
  pointer-events: none;
}

.wheel-pointer::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 48%;
  height: 78%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(90deg, #a81912, #ef3527 52%, #a81912);
}

.wheel-pointer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(27px, 4vw, 38px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 5px solid #f4f8fc;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #f8ffff 0 17%, #7295b5 21%, #173a5f 58%, #081d31 100%);
  box-shadow: 0 0 0 3px #365d82;
}

.wheel-rotor {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.13, 0.58, 0.1, 0.99);
  will-change: transform;
}

.wheel-segment {
  stroke: rgba(255, 255, 255, 0.66);
  stroke-width: 4;
  transition: opacity 280ms ease, filter 280ms ease, stroke-width 280ms ease;
}

.wheel-segment.is-dimmed {
  opacity: 0.52;
}

.wheel-segment.is-selected {
  filter: url(#segment-shadow) saturate(1.18) brightness(1.06);
  stroke: #fff8e8;
  stroke-width: 8;
}

.wheel-label {
  color: var(--navy-deep);
  pointer-events: none;
  transition: opacity 280ms ease;
}

.wheel-label.is-dimmed {
  opacity: 0.46;
}

.wheel-label-number,
.wheel-label-name {
  fill: currentColor;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 2px;
  stroke-linejoin: round;
}

.wheel-label-number {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.wheel-label-name {
  font-size: 17px;
  font-weight: 900;
}

.wheel-label.is-selected {
  color: #fff;
}

.wheel-center {
  position: absolute;
  z-index: 15;
  top: 50%;
  left: 50%;
  width: 25%;
  min-width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: clamp(7px, 1vw, 10px) solid #eaf2f8;
  border-radius: 50%;
  background: linear-gradient(145deg, #f9fcff, #98b2ca);
  box-shadow:
    0 0 0 3px var(--navy),
    0 0 0 9px #e9f1f7,
    0 0 0 12px var(--navy),
    var(--shadow-md);
}

.spin-button {
  width: 78%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 38% 30%, #f13d31 0, #c70808 53%, #920000 100%);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.24), inset 0 -8px 14px rgba(78, 0, 0, 0.3), 0 8px 16px rgba(15, 42, 69, 0.22);
  cursor: pointer;
}

.spin-button:hover:not(:disabled) {
  filter: brightness(1.07);
  transform: scale(1.025);
}

.spin-button:active:not(:disabled) {
  transform: scale(0.985);
}

.spin-button:disabled {
  cursor: wait;
}

.spin-button small {
  display: block;
  font-size: clamp(0.5rem, 1.2vw, 0.68rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.spin-button strong {
  display: block;
  margin-top: -2px;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  line-height: 1;
}

.spin-button span:last-child {
  margin-top: 4px;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
}

.wheel-bulb {
  --angle: calc(var(--bulb-index) * (360deg / 14));
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: clamp(9px, 1.5vw, 15px);
  aspect-ratio: 1;
  border: 1px solid #637d96;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 22%, #d8e6f1 32%, #7793ad 67%, #2f5272 100%);
  box-shadow: 0 2px 5px rgba(10, 33, 56, 0.42);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * min(45.1vw, 330px))) rotate(calc(-1 * var(--angle)));
}

.wheel-note {
  max-width: 690px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

.wheel-status {
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 800;
}

.dynamic-section {
  scroll-margin-top: 96px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 380ms ease, transform 380ms ease;
}

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

.pain-section,
.plan-section,
.conversation-section,
.systems-section,
.ecosystem-section {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(16, 43, 70, 0.13);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

.section-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.pain-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  border: 1px solid rgba(16, 43, 70, 0.16);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow-sm);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 79, 24, 0.46);
  box-shadow: var(--shadow-md);
}

.pain-card.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 79, 24, 0.12), var(--shadow-md);
}

.pain-card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: #fff0e6;
  font-size: 0.73rem;
  font-weight: 900;
}

.pain-card-title {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
}

.pain-card-action {
  margin-top: auto;
  padding-top: 30px;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-shell {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(16, 43, 70, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow-md);
}

.plan-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 43, 70, 0.14);
}

.plan-header h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.03;
}

.text-button {
  padding: 10px 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.86rem;
}

.text-button:hover {
  color: var(--orange-dark);
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.plan-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-content: start;
}

.plan-step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.plan-step h3 {
  margin: 3px 0 8px;
  font-size: 1.12rem;
}

.plan-step p {
  margin: 0;
  color: var(--ink-soft);
}

.plan-prompt-box,
.ai-callout {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
}

.plan-prompt-box {
  border-left: 5px solid var(--orange);
  background: #fff1e7;
}

.plan-prompt-box strong {
  display: block;
  color: var(--orange-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-prompt-box p {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.24;
}

.ai-callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border: 1px solid rgba(23, 58, 95, 0.18);
  background: #edf5fb;
}

.ai-callout-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.ai-callout h3,
.ai-callout p {
  margin: 0;
}

.ai-callout p {
  margin-top: 5px;
  color: var(--ink-soft);
}

.accuracy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.accuracy-row > strong {
  margin-right: 8px;
}

.accuracy-row button {
  padding: 9px 14px;
  border: 1px solid rgba(16, 43, 70, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.accuracy-row button:hover,
.accuracy-row button.is-selected {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.plan-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-deep);
}

.plan-contact strong {
  font-size: 1.08rem;
}

.plan-contact p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.plan-contact .button {
  flex: 0 0 auto;
  border-color: #fff;
  color: var(--navy-deep);
  background: #fff;
}

.conversation-section {
  background: linear-gradient(145deg, rgba(10, 33, 56, 0.97), rgba(23, 58, 95, 0.97));
  color: #fff;
}

.conversation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 8vw, 90px);
  align-items: start;
}

.conversation-section .section-kicker {
  color: #f5b175;
}

.conversation-section .section-title,
.conversation-section .section-copy {
  color: #fff;
}

.conversation-section .section-copy {
  opacity: 0.76;
}

.conversation-promise {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.conversation-promise div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
}

.conversation-promise span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: #fff;
  font-weight: 900;
}

.conversation-form {
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.84rem;
  font-weight: 900;
}

.form-field small {
  color: rgba(255, 255, 255, 0.67);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
}

.form-field input {
  min-height: 48px;
  padding: 11px 13px;
}

.form-field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.form-actions .button {
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.form-note a {
  color: #fff;
}

.form-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  font-weight: 800;
}

.form-status a {
  color: #fff;
}

.form-status.is-success {
  color: #9ee9c8;
}

.form-status.is-error {
  color: #ffc3c3;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

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

.system-card {
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(16, 43, 70, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.88);
  box-shadow: var(--shadow-sm);
}

.system-card:last-child {
  grid-column: 2 / span 2;
}

.system-card-number {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.system-card h3 {
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.system-card p {
  margin: 0;
  color: var(--ink-soft);
}

.ecosystem-section {
  background: rgba(255, 255, 255, 0.55);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ecosystem-card {
  padding: 28px;
  border: 1px solid rgba(16, 43, 70, 0.15);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ecosystem-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.ecosystem-card p {
  margin: 10px 0 22px;
  color: var(--ink-soft);
}

.ecosystem-card .button-secondary {
  min-height: 44px;
  padding-block: 9px;
}

.contact-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(46px, 7vw, 76px);
}

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

.contact-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(3.2rem, 7.5vw, 7.3rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-hero h1 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.contact-hero-copy > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.contact-section {
  padding: 0 0 clamp(82px, 10vw, 132px);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid rgba(16, 43, 70, 0.12);
  border-radius: var(--radius-lg);
  background: #e9f1f6;
  box-shadow: var(--shadow-md);
}

.contact-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.contact-intro > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.contact-principles {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-principles div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-principles span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-context {
  margin-top: 30px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.72);
}

.contact-context span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-context strong {
  display: block;
  margin-top: 4px;
}

.contact-context p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.contact-form-card {
  position: relative;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(16, 43, 70, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-form-card .form-field label {
  color: var(--ink);
}

.contact-form-card .form-field input,
.contact-form-card .form-field textarea {
  border-color: rgba(16, 43, 70, 0.22);
  background: #fffefa;
}

.contact-form-card .form-field input:focus,
.contact-form-card .form-field textarea:focus {
  border-color: var(--orange);
}

.optional {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.contact-form-card .form-note {
  color: var(--ink-soft);
}

.contact-form-card .form-status.is-success {
  color: var(--success);
}

.contact-form-card .form-status.is-error {
  color: var(--error);
}

.properties-section {
  padding: clamp(80px, 10vw, 132px) 0;
  background: rgba(255, 255, 255, 0.56);
}

.properties-heading {
  max-width: 850px;
}

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

.property-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(16, 43, 70, 0.14);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.property-card-wide {
  grid-column: 1 / -1;
  min-height: 230px;
}

.property-card > span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-card h3 {
  margin: 18px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.property-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.property-card p {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--ink-soft);
}

.property-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.outcome-strip {
  padding: clamp(64px, 8vw, 96px) 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.outcome-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.outcome-strip .section-kicker {
  color: #f5b175;
}

.outcome-strip h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.outcome-strip .button {
  border-color: #fff;
  color: var(--navy-deep);
  background: #fff;
}

.site-footer {
  padding: 62px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #061a2c;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px 9px 9px;
  border-radius: 12px;
  color: var(--navy-deep);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-mark:hover {
  color: var(--orange-dark);
}

.footer-mark img {
  border-radius: 8px;
}

.footer-identity p,
.footer-group p {
  margin: 18px 0 0;
}

.footer-identity strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 0.84rem;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-group h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-group a:hover {
  color: #f5b175;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.privacy-main {
  min-height: 70vh;
  padding: 90px 0;
}

.privacy-copy {
  max-width: 780px;
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid rgba(16, 43, 70, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: var(--shadow-md);
}

.privacy-copy h1 {
  margin-top: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
}

.privacy-copy h2 {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .header-nav a:not(.header-cta) {
    display: none;
  }

  .hero-grid,
  .conversation-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    max-width: 620px;
    transform: none;
  }

  .pain-options,
  .plan-steps {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 200px;
  }

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

  .system-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .container {
    width: min(100% - 26px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

  .wordmark small {
    display: none;
  }

  .header-cta {
    font-size: 0.75rem !important;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-strip .container {
    padding-block: 14px;
    font-size: 0.84rem;
  }

  .wheel-section {
    overflow: hidden;
  }

  .wheel-wrap {
    width: min(106vw, 610px);
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .wheel-label-number {
    font-size: 10px;
  }

  .wheel-label-name {
    font-size: 14px;
  }

  .wheel-bulb {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * min(52.5vw, 286px))) rotate(calc(-1 * var(--angle)));
  }

  .plan-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plan-step {
    grid-template-columns: 42px 1fr;
  }

  .plan-step-number {
    width: 42px;
    height: 42px;
  }

  .plan-contact,
  .outcome-strip-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .plan-contact {
    display: grid;
  }

  .form-row,
  .systems-grid,
  .ecosystem-grid,
  .property-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .property-card-wide {
    grid-column: auto;
  }

  .contact-panel {
    width: min(100% - 22px, 1180px);
    padding: 26px 18px;
  }

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

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

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

@media print {
  .site-header,
  .hero,
  .trust-strip,
  .wheel-section,
  .pain-section,
  .conversation-section,
  .systems-section,
  .ecosystem-section,
  .site-footer,
  .plan-header .text-button,
  .accuracy-row {
    display: none !important;
  }

  .plan-section {
    border: 0;
    padding: 0;
  }

  .plan-shell {
    border: 0;
    box-shadow: none;
  }
}
