:root {
  --navy: #1a2e3b;
  --navy-deep: #132531;
  --navy-mid: #1b3342;
  --navy-light: #243d4d;
  --navy-soft: #223848;
  --surface-dark: rgba(255, 255, 255, 0.025);
  --surface-mid: rgba(255, 255, 255, 0.045);
  --surface-light: rgba(255, 255, 255, 0.06);
  --surface-tint: rgba(255, 255, 255, 0.03);
  --border-soft: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --orange: #e8952f;
  --orange-glow: #f0a040;
  --orange-dim: rgba(232, 149, 47, 0.12);
  --orange-soft: rgba(232, 149, 47, 0.18);
  --white: #f0f2f4;
  --white-dim: #c4d0d8;
  --white-muted: #89a0b0;
  --green: #9dd7a6;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 24px 60px rgba(3, 10, 16, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'DM Sans', sans-serif;
  max-width: 100%;
  background:
    radial-gradient(circle at 85% 10%, rgba(232, 149, 47, 0.08) 0%, transparent 32%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.035) 0%, transparent 28%),
    linear-gradient(180deg, #172a36 0%, var(--navy-deep) 100%);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav {
  padding: 1.15rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(19, 37, 49, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: fadeDown 0.8s ease forwards;
}

nav .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 13px;
  width: auto;
  display: block;
  opacity: 0.98;
}

.nav-logo--icon {
  height: 28px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-cta {
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--orange-glow);
  transform: translateY(-1px);
}

.nav-spacer {
  height: 76px;
}

.section-shell {
  position: relative;
}

.section-shell--hero {
  padding: 4.2rem 0 4rem;
}

.section-shell--plain {
  padding: 3rem 0;
}

.section-shell--tint {
  padding: 2rem 0;
}

.section-shell--tint::before,
.section-shell--accent::before,
.section-shell--book::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.section-shell--tint::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015));
}

.section-shell--accent {
  padding: 2rem 0;
}

.section-shell--accent::before {
  background:
    radial-gradient(circle at 90% 15%, rgba(232, 149, 47, 0.09) 0%, transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
}

.section-shell--book {
  padding: 2rem 0 0;
}

.section-shell--book::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
}

.hero-grid,
.split-feature,
.book-layout,
.section-intro {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

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

.hero-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.4rem;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero p {
  font-size: 1.08rem;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-subhook {
  margin-bottom: 0.9rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.78s forwards;
}

.hero-meta-item {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.hero-meta-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
  box-shadow: 0 10px 30px rgba(232, 149, 47, 0.18);
}

.hero-cta:hover {
  background: var(--orange-glow);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin: 0;
}

.hero-note::before {
  content: '•';
  color: var(--orange);
  margin-right: 0.45rem;
}

.hero-visual {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-frame {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(19, 37, 49, 0.55);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.hero-frame--primary::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -30px;
  top: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 149, 47, 0.22), transparent 70%);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orbit--one {
  inset: 72px 58px auto 58px;
  height: 180px;
}

.hero-orbit--two {
  left: 95px;
  right: 92px;
  bottom: 78px;
  height: 150px;
}

.hero-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 240px;
  padding: 1.2rem 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-panel strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--white);
}

.hero-panel span {
  color: var(--white-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-panel .eyebrow {
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel--top {
  top: 72px;
  left: 44px;
}

.hero-panel--mid {
  top: 210px;
  right: 46px;
}

.hero-panel--accent {
  left: 84px;
  bottom: 84px;
  background: linear-gradient(180deg, rgba(232,149,47,0.2), rgba(255,255,255,0.05));
  border-color: rgba(232, 149, 47, 0.22);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
  padding: 4.25rem 0 2rem;
}

.section-intro--compact {
  grid-template-columns: 1fr;
  padding-bottom: 1rem;
}

.section-intro-copy p:last-child {
  margin-bottom: 0;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.15rem;
}

section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.15rem;
  max-width: 720px;
}

section p {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}

section p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: var(--white);
  font-weight: 500;
}

.shape-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.022));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.shape-card::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,149,47,0.11), rgba(255,255,255,0.02));
  opacity: 0.95;
}

.shape-card--soft::before {
  width: 62px;
  height: 62px;
  border-radius: 22px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1rem 0 4.4rem;
}

.problem-card {
  padding: 1.6rem;
  transition: border-color 0.3s ease, transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(232, 149, 47, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(3, 10, 16, 0.16);
}

.problem-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.problem-card p {
  font-size: 0.94rem;
  color: var(--white-muted);
  line-height: 1.68;
  margin-bottom: 0;
  max-width: 94%;
  position: relative;
  z-index: 1;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: start;
  padding: 4.4rem 0;
}

.split-feature--reverse {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.1fr);
}

.split-feature--reverse .split-copy {
  order: 2;
}

.split-feature--reverse .split-aside {
  order: 1;
}

.split-copy {
  max-width: 700px;
}

.split-aside {
  padding: 1.75rem;
}

.aside-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.aside-intro {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.steps {
  display: grid;
  gap: 1.35rem;
  padding: 1rem 0 4.4rem;
}

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

.step {
  padding: 1.8rem;
  min-height: 100%;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.step:hover {
  border-color: rgba(232, 149, 47, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(3, 10, 16, 0.14);
}

.step--highlight {
  border-color: rgba(232, 149, 47, 0.16);
  background: linear-gradient(180deg, rgba(232,149,47,0.11), rgba(255,255,255,0.03));
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 0.96rem;
  color: var(--white-dim);
  line-height: 1.72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.fit-indicators {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.5rem 0 4.4rem;
}

.fit-indicators--stacked .fit-item {
  min-height: 100%;
}

.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
}

.fit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.fit-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.fit-text {
  font-size: 0.96rem;
  color: var(--white-dim);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.quote-block {
  border-left: 2px solid var(--orange);
  padding-left: 1.35rem;
  margin: 1.75rem 0;
}

.quote-block p {
  font-size: 1.08rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.split-aside--quote {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.aside-statement {
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.book-section {
  border: none;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 4.5rem;
}

.book-intro {
  max-width: 620px;
}

.book-intro p {
  color: var(--white-dim);
}

.book-form {
  max-width: 680px;
  margin: 0 auto;
}

.multi-step-form {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white-muted);
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--white);
}

.progress-index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
}

.progress-step.is-active .progress-index,
.progress-step.is-complete .progress-index {
  border-color: rgba(232, 149, 47, 0.35);
  background: var(--orange-dim);
  color: var(--white);
}

.progress-text {
  font-size: 0.85rem;
  white-space: nowrap;
}

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
}

.form-panel-intro {
  margin-bottom: 1.75rem;
}

.form-panel-intro h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.form-panel-intro p {
  color: var(--white-muted);
  font-size: 0.98rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-label-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--white-muted);
  margin-top: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(232, 149, 47, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-muted);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a8f9e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-deep);
  color: var(--white);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.radio-group {
  display: grid;
  gap: 0.6rem;
}

.radio-group--inline {
  grid-template-columns: 1fr 1fr;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.radio-option--compact {
  min-height: 56px;
}

.radio-option:hover {
  border-color: rgba(232, 149, 47, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.radio-option input {
  display: none;
}

.radio-option input:checked + .radio-custom {
  border-color: var(--orange);
  background: var(--orange);
}

.radio-option input:checked + .radio-custom::after {
  opacity: 1;
}

.radio-option input:checked ~ .radio-label {
  color: var(--white);
}

.radio-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.radio-custom::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-deep);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.radio-label {
  font-size: 0.92rem;
  color: var(--white-dim);
  transition: color 0.2s ease;
  line-height: 1.5;
}

.summary-card {
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.summary-content p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.8;
}

.summary-pulse {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  margin-bottom: 0.75rem;
}

.summary-pulse--short {
  width: 72%;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.form-actions--split {
  justify-content: space-between;
  gap: 1rem;
}

.form-submit,
.form-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.2rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.form-submit {
  color: var(--navy-deep);
  background: var(--orange);
  border: none;
}

.form-submit:hover {
  background: var(--orange-glow);
  transform: translateY(-1px);
}

.form-submit--inline {
  width: auto;
}

.form-secondary {
  color: var(--white-dim);
  background: transparent;
  border: 1px solid var(--border-soft);
}

.form-secondary:hover {
  border-color: rgba(232, 149, 47, 0.2);
  color: var(--white);
}

.book-form.is-submitted .form-submit[type='submit'] {
  background: var(--green);
}

.form-secondary--link {
  text-decoration: none;
}

.audit-page {
  min-height: calc(100vh - 72px);
}

.audit-intro {
  margin-bottom: 2rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.why-followup {
  margin-top: 1.35rem;
}

footer {
  padding: 2.5rem 0 3rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text,
.footer-ttm {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-ttm a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-ttm a:hover {
  color: var(--orange);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .section-intro,
  .split-feature,
  .split-feature--reverse,
  .book-layout,
  .steps--three-up {
    grid-template-columns: 1fr;
  }

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

  .split-feature--reverse .split-copy,
  .split-feature--reverse .split-aside {
    order: initial;
  }

  .hero-frame {
    min-height: 420px;
  }

  .hero-panel--mid {
    top: 180px;
  }
}

@media (max-width: 700px) {
  .container,
  .container-wide {
    padding: 0 1.1rem;
  }

  .section-shell--hero {
    padding: 2.4rem 0 2rem;
  }

  .section-shell--plain,
  .section-shell--tint,
  .section-shell--accent,
  .section-shell--book {
    padding: 1rem 0;
  }

  .section-shell--tint::before,
  .section-shell--accent::before,
  .section-shell--book::before {
    left: 0.55rem;
    right: 0.55rem;
    border-radius: 24px;
  }

  .section-shell--accent::before,
  .section-shell--book::before {
    display: none;
  }

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

  .hero-frame {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 28px;
    display: grid;
    gap: 0.9rem;
  }

  .hero-frame::before,
  .hero-orbit {
    display: none;
  }

  .hero-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    width: 100%;
    padding: 1rem;
  }

  .hero-panel--top,
  .hero-panel--mid,
  .hero-panel--accent {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

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

  .section-intro,
  .split-feature,
  .book-layout {
    gap: 1.25rem;
    padding: 2.6rem 0.7rem;
  }

  .problem-grid,
  .steps,
  .fit-indicators {
    padding: 0 0.7rem 3.25rem;
  }

  .problem-grid,
  .fit-indicators,
  .radio-group--inline,
  .steps--three-up {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-intro > div,
  .section-intro-copy,
  .split-copy,
  .book-intro {
    max-width: 100%;
    padding-inline: 0.2rem;
  }

  .step,
  .multi-step-form,
  .split-aside,
  .split-aside--quote,
  .problem-card,
  .fit-item {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .split-aside--quote,
  .multi-step-form,
  .step {
    box-shadow: none;
  }

  .quote-block {
    padding-left: 1rem;
    margin-right: 0.2rem;
  }

  .shape-card::before {
    width: 38px;
    height: 38px;
    top: 12px;
    right: 12px;
    border-radius: 14px;
  }

  section h2,
  section p,
  .fit-text,
  .problem-card p,
  .step p,
  .quote-block p,
  .benefit-list li,
  .aside-statement,
  .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .nav-right {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .nav-logo {
    height: 11px;
  }

  .nav-logo--icon {
    height: 22px;
  }

  .form-progress {
    gap: 0.55rem;
  }

  .progress-text {
    display: none;
  }

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

  .hero-cta,
  .form-submit,
  .form-secondary {
    width: 100%;
  }
}
