:root {
  --navy: #1a2e3b;
  --navy-deep: #132531;
  --navy-mid: #1b3342;
  --navy-light: #243d4d;
  --navy-surface: rgba(255, 255, 255, 0.025);
  --navy-border: rgba(255, 255, 255, 0.06);
  --orange: #e8952f;
  --orange-glow: #f0a040;
  --orange-dim: rgba(232, 149, 47, 0.12);
  --white: #f0f2f4;
  --white-dim: #b8c4cc;
  --white-muted: #7a8f9e;
  --green: #9dd7a6;
}

* {
  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%),
    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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

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

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

nav {
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(19, 37, 49, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  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.85rem;
  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.72rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 0.42rem 0.95rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: var(--orange-glow);
}

.nav-spacer {
  height: 72px;
}

.hero {
  padding: 9rem 0 6rem;
  position: relative;
  overflow-x: clip;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 149, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

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

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

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 0.72rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

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

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-light), transparent);
  margin: 0;
}

section {
  padding: 5.5rem 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.75rem;
}

section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

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

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

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.problem-card {
  padding: 1.5rem;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(232, 149, 47, 0.15);
}

.problem-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

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

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

.steps {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.step {
  padding: 2rem;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.step:hover {
  border-color: rgba(232, 149, 47, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.975rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 0;
}

.fit-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
}

.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;
}

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

.fit-text {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.book-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.book-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

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

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

.multi-step-form {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
}

.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(--navy-border);
  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(--navy-border);
}

.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.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.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(--navy-border);
  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(--navy-border);
  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(--navy-border);
  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: 8px;
  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(--navy-border);
}

.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-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.audit-report {
  margin: 0 0 1.75rem;
  padding: 1.5rem;
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.audit-report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.audit-report-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

.audit-score {
  flex-shrink: 0;
  min-width: 84px;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--orange-dim);
  border: 1px solid rgba(232, 149, 47, 0.25);
}

.audit-overview {
  margin-bottom: 1.25rem;
  color: var(--white-dim);
}

.audit-snapshot,
.audit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.audit-snapshot {
  margin-bottom: 1rem;
}

.audit-snapshot-card,
.audit-block {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--navy-border);
  background: rgba(255, 255, 255, 0.02);
}

.audit-snapshot-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-family: 'Sora', sans-serif;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-snapshot-value {
  display: block;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.audit-block h4 {
  margin-bottom: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
}

.audit-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.audit-block li {
  color: var(--white-dim);
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

.audit-block li:last-child {
  margin-bottom: 0;
}

.audit-block--full {
  margin-top: 1rem;
}

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

footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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: 700px) {
  .container,
  .container-wide {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  section {
    padding: 4rem 0;
  }

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

  .step,
  .multi-step-form {
    padding: 1.5rem;
  }

  .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;
  }

  .audit-report-head,
  .audit-snapshot,
  .audit-columns,
  .form-actions,
  .form-actions--split {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .audit-score,
  .form-submit,
  .form-secondary {
    width: 100%;
  }
}
