/* ============================================================
   EVERGREEN LAKE QUOTE REQUEST (built on Ascension intake v2).
   Brand: pine green #10804a on deep pine #0c3924, teal lake
   accents, Montserrat display + Inter body, evergreen-lake hero.
   ============================================================ */

:root {
  --pine: #10804a;
  --pine-dark: #0d6b39;
  --pine-darker: #0a4a2c;
  --pine-light: #4cbb78;
  --ink: #0f2b1b;
  --charcoal: #1a1a1a;
  --grey: #bbbcbb;
  --grey-mid: #6b7682;
  --grey-light: #f1f8f3;
  --white: #ffffff;
  --danger: #c0392b;
  --success: #1e8a4c;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(6, 30, 20, 0.16);
  --shadow-sm: 0 6px 18px rgba(6, 30, 20, 0.08);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0; min-height: 100%;
  font-family: var(--font-body);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
button { font-family: inherit; }
img { max-width: 100%; }

/* ------------------------------------------------------------
   Fixed evergreen-lake background (poster + optional video + scrim).
   Visible full-strength on choice screens; veiled during the
   wizard so forms sit on a light lakeside-mist surface.
   ------------------------------------------------------------ */
.hero-media {
  position: fixed; inset: 0; z-index: -3; overflow: hidden;
  background: linear-gradient(180deg, #0c3924 0%, #12503a 100%);
}
.hero-media .hero-video,
.hero-media .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 36s ease-in-out infinite alternate;
  transform-origin: center;
}
.hero-media .hero-video { opacity: 0; transition: opacity .8s ease; }
.hero-media .hero-video.is-playing { opacity: 1; }
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (max-width: 767px) {
  .hero-media .hero-video, .hero-media .hero-poster { animation-name: heroDriftSm; animation-duration: 28s; }
}
@keyframes heroDriftSm { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero-scrim {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(at 18% 26%, rgba(10, 168, 184, .2) 0px, transparent 52%),
    linear-gradient(180deg, rgba(5, 18, 12, .55) 0%, rgba(5, 18, 12, .32) 45%, rgba(6, 22, 15, .7) 100%);
}

/* Light veil that fades in over the video during form screens. */
.hero-veil {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0; transition: opacity .6s var(--ease);
  background: linear-gradient(180deg,
    rgba(235, 246, 239, .96) 0%,
    rgba(243, 249, 245, .99) 220px,
    #f1f8f3 420px);
}
body.mode-light .hero-veil { opacity: 1; }
body.mode-light .hero-scrim { opacity: 0; transition: opacity .6s var(--ease); }

/* ------------------------------------------------------------
   App shell
   ------------------------------------------------------------ */
#app { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.shell {
  width: 100%; max-width: 1060px; margin: 0 auto;
  padding: 0 22px; flex: 1; display: flex; flex-direction: column;
}

/* Top bar — white logo over the lake scene, color logo over light surface */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 10px; gap: 14px;
}
.topbar .logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.topbar img { height: 44px; display: block; }
.topbar .logo-color { display: none; }
body.mode-light .topbar .logo-white { display: none; }
body.mode-light .topbar .logo-color { display: block; }
@media (max-width: 560px) { .topbar img { height: 36px; } }

.top-actions { display: flex; align-items: center; gap: 10px; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: none; border-radius: 8px; padding: 14px 26px; cursor: pointer;
  transition: background .18s, transform .18s var(--ease), box-shadow .18s, border-color .18s, color .18s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--pine); color: #fff; position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--pine-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16, 128, 74, .3); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg); transition: left .55s ease; pointer-events: none;
}
.btn-primary:hover::after { left: 135%; }

.btn-ghost {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid #d4d4d4; padding: 12.5px 22px;
}
.btn-ghost:hover { border-color: var(--charcoal); }

.btn-glass {
  color: #fff; border: 1.5px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px; font-size: 14px; border-radius: 8px;
}
.btn-glass:hover { background: rgba(255, 255, 255, .2); border-color: #fff; transform: translateY(-1px); }
body.mode-light .btn-glass { color: var(--charcoal); border-color: #d4d4d4; background: rgba(255,255,255,.7); }
body.mode-light .btn-glass:hover { border-color: var(--charcoal); }

.btn-link {
  background: none; border: none; color: var(--pine); font-weight: 600;
  cursor: pointer; font-size: 14px; padding: 6px 8px; font-family: var(--font-display);
}
.btn-link:hover { color: var(--pine-dark); text-decoration: underline; }

/* ------------------------------------------------------------
   Choice screens (role + line of business) — glass over video
   ------------------------------------------------------------ */
.choice-screen {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 34px 0 60px; text-align: center;
}
.eyebrow {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; font-size: .72rem;
  color: rgba(255, 255, 255, .85);
}
.eyebrow .accent { color: var(--pine-light); }
.choice-screen h1 {
  color: #fff; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  margin: 14px 0 10px; text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.choice-screen .sub {
  color: rgba(255, 255, 255, .88); font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 560px; margin: 0 auto 38px; line-height: 1.6;
}
.choice-grid {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; width: 100%;
}
.choice-card {
  flex: 1 1 240px; max-width: 300px; text-align: left; cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px; padding: 26px 24px 24px;
  box-shadow: 0 10px 40px rgba(5, 24, 16, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
  transition: transform .28s var(--ease), background .28s, box-shadow .28s, border-color .28s;
  color: var(--ink); font-family: inherit;
  position: relative; overflow: hidden;
}
.choice-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--pine); transition: width .45s var(--ease);
}
.choice-card:hover, .choice-card:focus-visible {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 50px rgba(5, 24, 16, .3), inset 0 1px 0 rgba(255, 255, 255, .6);
  outline: none;
}
.choice-card:hover::before { width: 100%; }
.choice-card .chip {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(16, 128, 74, .14); color: var(--pine-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.choice-card .chip svg { width: 24px; height: 24px; }
.choice-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.choice-card p { font-size: .88rem; line-height: 1.55; color: #223a2c; }
.choice-card .go {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--pine-dark);
}
.choice-card .go svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.choice-card:hover .go svg { transform: translateX(4px); }
.choice-card .badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--pine); color: #fff; border-radius: 99px; padding: 4px 10px;
}

/* Self-drawing ridge line pinned to the base of choice screens */
.ridge-line {
  position: fixed; bottom: 0; left: 0; width: 100%; height: 110px;
  z-index: 0; pointer-events: none; opacity: .9;
  transition: opacity .5s var(--ease);
}
body.mode-light .ridge-line { opacity: 0; }

/* Back link on choice screens */
.choice-back { margin-top: 34px; }
.choice-back .btn-link { color: rgba(255, 255, 255, .85); }
.choice-back .btn-link:hover { color: #fff; }

/* ------------------------------------------------------------
   Wizard chrome — light surface
   ------------------------------------------------------------ */
.wizard { flex: 1; display: flex; flex-direction: column; padding-bottom: 70px; }
.wizard-head { padding: 8px 0 22px; }
.step-eyebrow {
  font-family: var(--font-display); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .68rem; color: var(--grey-mid);
  display: flex; align-items: center; gap: 10px;
}
.step-eyebrow .accent-bar { width: 34px; height: 3px; background: var(--pine); border-radius: 2px; }

/* Trail progress — a winding path with a dot and finish flag */
.ascent-progress { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.ascent-track { flex: 1; position: relative; height: 34px; }
.ascent-track svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ascent-track .track-ghost { stroke: rgba(16, 128, 74, .16); stroke-width: 2.5; fill: none; }
.ascent-track .track-fill {
  stroke: var(--pine); stroke-width: 3; fill: none;
  stroke-linecap: round; transition: stroke-dashoffset .7s var(--ease);
}
.ascent-track .track-dot {
  fill: var(--pine); stroke: #fff; stroke-width: 2;
  transition: transform .7s var(--ease);
}
.ascent-track .track-flag {
  stroke: var(--pine); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  fill: none; opacity: 0; transition: opacity .4s ease .3s;
}
.ascent-track.summit .track-flag { opacity: 1; }
.ascent-count {
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  color: var(--pine-dark); white-space: nowrap;
}

/* Step panel */
.panel { animation: rise .5s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.panel > h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.panel > .lede { color: var(--grey-mid); font-size: .98rem; line-height: 1.6; margin-bottom: 26px; max-width: 640px; }

.card {
  background: #fff; border: 1px solid #e6eaef; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px; margin-bottom: 18px;
}
.card h3 {
  font-size: 1rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 9px; margin-bottom: 4px;
}
.card h3 svg { width: 18px; height: 18px; color: var(--pine); flex: none; }
.card .card-sub { font-size: .85rem; color: var(--grey-mid); margin-bottom: 18px; line-height: 1.5; }

/* Selectable big cards (coverage type, home type) */
.select-grid { display: grid; gap: 14px; }
.select-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.select-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .select-grid.cols-3, .select-grid.cols-2 { grid-template-columns: 1fr; } }
.select-card {
  position: relative; text-align: left; cursor: pointer; font-family: inherit;
  background: #fff; border: 1.5px solid #e2e6eb; border-radius: 14px; padding: 20px 18px;
  transition: transform .28s var(--ease), border-color .2s, box-shadow .28s, background .2s;
  overflow: hidden;
}
.select-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--pine); transition: width .45s var(--ease);
}
.select-card:hover { transform: translateY(-3px); border-color: rgba(16, 128, 74, .4); box-shadow: 0 14px 34px rgba(8, 30, 20, .1); }
.select-card:hover::before { width: 100%; }
.select-card.selected { border-color: var(--pine); background: rgba(16, 128, 74, .05); box-shadow: 0 8px 24px rgba(16, 128, 74, .12); }
.select-card.selected::before { width: 100%; }
.select-card .chip {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(16, 128, 74, .1); color: var(--pine);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.select-card .chip svg { width: 22px; height: 22px; }
.select-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.select-card p { font-size: .82rem; color: var(--grey-mid); line-height: 1.5; }
.select-card .badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: .58rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--pine); color: #fff; border-radius: 99px; padding: 3px 9px;
}

/* ------------------------------------------------------------
   Form fields
   ------------------------------------------------------------ */
.grid { display: grid; gap: 16px; }
.grid.cols-2 { grid-template-columns: 1fr 1fr; }
.grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; color: #31473a; margin-bottom: 7px;
}
.field label .req { color: var(--pine); }
.field input, .field select, .field textarea {
  /* 16px minimum stops iOS Safari from auto-zooming on focus */
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 16px;
  border: 1.5px solid #dde3e9; border-radius: 8px; background: #fff; color: var(--charcoal);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(16, 128, 74, .13);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(192, 57, 43, .1);
}
.field .err-msg { color: var(--danger); font-size: .75rem; margin-top: 5px; font-weight: 600; }
.field .hint { color: var(--grey-mid); font-size: .78rem; margin-top: 5px; line-height: 1.45; }
.field textarea { resize: vertical; min-height: 90px; }

/* Checkbox / toggle rows */
.check-row {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  font-size: .92rem; color: #2a4033; line-height: 1.5;
  -webkit-user-select: none; user-select: none;
}
.check-row input {
  width: 19px; height: 19px; margin-top: 1px; accent-color: var(--pine); cursor: pointer; flex: none;
}
.check-row .check-title { font-weight: 600; color: var(--ink); display: block; }
.check-row .check-sub { font-size: .82rem; color: var(--grey-mid); display: block; margin-top: 2px; }

/* Pill toggles (yes/no, contact method) */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  font-family: var(--font-display); font-weight: 600; font-size: .86rem;
  padding: 10px 20px; border-radius: 99px; cursor: pointer;
  border: 1.5px solid #dde3e9; background: #fff; color: #45564a;
  transition: all .18s var(--ease); text-transform: capitalize;
}
.pill:hover { border-color: var(--pine-light); }
.pill.selected { border-color: var(--pine); background: var(--pine); color: #fff; box-shadow: 0 6px 16px rgba(16, 128, 74, .28); }

/* Repeating items (drivers, vehicles, losses) */
.repeat-item {
  border: 1.5px solid #e2e6eb; border-radius: 12px; padding: 20px;
  margin-bottom: 14px; position: relative; background: #fafdfb;
}
.repeat-item .repeat-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.repeat-item .repeat-title {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--pine-dark);
  display: flex; align-items: center; gap: 8px;
}
.repeat-item .repeat-title .num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--pine); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; letter-spacing: 0;
}
.btn-remove {
  background: none; border: none; color: var(--grey-mid); font-size: .8rem;
  font-family: var(--font-display); font-weight: 600; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: color .15s, background .15s;
}
.btn-remove:hover { color: var(--danger); background: rgba(192, 57, 43, .07); }
.btn-add {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16, 128, 74, .07); color: var(--pine-dark);
  border: 1.5px dashed rgba(16, 128, 74, .45); border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: 12px 20px; cursor: pointer; width: 100%; justify-content: center;
  transition: background .18s, border-color .18s;
}
.btn-add:hover { background: rgba(16, 128, 74, .12); border-color: var(--pine); }
.btn-add svg { width: 16px; height: 16px; }

/* Upload zones */
.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .upload-grid { grid-template-columns: 1fr; } }
.dropzone {
  border: 1.5px dashed #c8d2db; border-radius: 12px; padding: 20px 16px;
  text-align: center; cursor: pointer; background: #fafdfb;
  transition: border-color .18s, background .18s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--pine); background: rgba(16, 128, 74, .05); }
.dropzone .dz-icon { color: var(--pine); margin-bottom: 8px; }
.dropzone .dz-icon svg { width: 22px; height: 22px; }
.dropzone .dz-label { font-family: var(--font-display); font-weight: 600; font-size: .86rem; color: var(--ink); }
.dropzone .dz-sub { font-size: .74rem; color: var(--grey-mid); margin-top: 3px; }
.dropzone.has-file { border-style: solid; border-color: var(--success); background: rgba(30, 138, 76, .05); }
.dropzone.has-file .dz-icon { color: var(--success); }
.dropzone .dz-file { font-size: .8rem; color: var(--ink); font-weight: 600; word-break: break-all; margin-top: 4px; }
.dropzone .dz-clear { color: var(--danger); font-size: .74rem; font-weight: 600; margin-top: 6px; display: inline-block; }

/* Wizard footer nav */
.wizard-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 30px;
}
.wizard-nav .spacer { flex: 1; }

/* Error banner */
.banner {
  border-radius: 12px; padding: 14px 18px; margin-bottom: 18px;
  font-size: .9rem; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start;
}
.banner svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.banner-error { background: rgba(192, 57, 43, .08); border: 1.5px solid rgba(192, 57, 43, .3); color: #8e2b20; }
.banner-info { background: rgba(16, 128, 74, .07); border: 1.5px solid rgba(16, 128, 74, .25); color: var(--pine-darker); }

/* Resume-draft banner */
.draft-bar {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 60; display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: 13px 18px; box-shadow: var(--shadow); font-size: .88rem;
  width: max-content; max-width: min(calc(100vw - 28px), 560px);
  animation: rise .5s var(--ease) both;
}
.draft-bar > div { flex: 1 1 200px; line-height: 1.5; }
.draft-bar .btn { padding: 8px 16px; font-size: .82rem; }
.draft-bar .btn-link { color: #8edcae; }

/* ------------------------------------------------------------
   Success screen
   ------------------------------------------------------------ */
.success-screen {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 40px 0 80px;
}
.success-card {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px; padding: 46px 40px;
  box-shadow: 0 20px 60px rgba(5, 24, 16, .3);
  max-width: 560px; width: 100%; animation: rise .6s var(--ease) both;
}
.summit-glyph { margin: 0 auto 18px; width: 84px; height: 84px; }
.summit-glyph .draw { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawIn 1.4s var(--ease) .3s forwards; }
.summit-glyph .dot { opacity: 0; animation: fadeIn .5s ease 1.5s forwards; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
.success-card h1 { font-size: 1.7rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.success-card .ref {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  background: var(--ink); color: #fff; border-radius: 10px;
  padding: 10px 22px; letter-spacing: .06em; margin: 14px 0 6px; font-size: 1.02rem;
}
.success-card .sub { color: #2a4033; font-size: .93rem; line-height: 1.6; }
.next-steps { text-align: left; margin: 26px 0 8px; display: grid; gap: 12px; }
.next-steps .ns {
  display: flex; gap: 13px; align-items: flex-start; font-size: .89rem; color: #223a2c; line-height: 1.5;
}
.next-steps .ns .n {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--pine); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: .78rem; display: inline-flex; align-items: center; justify-content: center;
}
.next-steps .ns b { color: var(--ink); }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  text-align: center; padding: 20px 22px 26px; font-size: .78rem;
  color: rgba(255, 255, 255, .75); position: relative; z-index: 1;
}
.site-footer a { color: rgba(255, 255, 255, .9); text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; }
body.mode-light .site-footer { color: var(--grey-mid); }
body.mode-light .site-footer a { color: var(--pine-dark); }

/* Reveal-on-scroll for long commercial page */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Submitting spinner */
.spin {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Crash fallback */
.fallback {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.fallback .card { max-width: 460px; padding: 40px 32px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media .hero-video, .hero-media .hero-poster { animation: none; }
  .panel, .success-card, .draft-bar { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .choice-card, .select-card, .btn { transition: none; }
  .btn-primary::after { display: none; }
  .summit-glyph .draw { animation: none; stroke-dashoffset: 0; }
  .summit-glyph .dot { animation: none; opacity: 1; }
  .ascent-track .track-fill, .ascent-track .track-dot { transition: none; }
}

/* ------------------------------------------------------------
   Evergreen additions
   ------------------------------------------------------------ */
.choice-screen h1 .accent-word { color: #8edcae; font-style: italic; }
.site-footer .powered { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 9px; }
.site-footer .powered img { display: inline-block; filter: brightness(0) invert(1); opacity: .8; }
.site-footer .asc-i { height: 13px; width: auto; }
.site-footer .asc-w { height: 9px; width: auto; }
body.mode-light .site-footer .powered img { filter: none; opacity: .65; }

/* Hero "have these handy" checklist */
.handy { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; align-items: center; }
.handy-label {
  font-family: var(--font-display); font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; font-size: .64rem; color: #8edcae;
}
.handy-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .78); font-size: .9rem; }
.handy-item svg { width: 16px; height: 16px; color: #8edcae; flex: none; }
.handy-note { margin-top: 12px; color: rgba(255, 255, 255, .8); font-size: .8rem; }
.site-footer .foot-line { display: block; line-height: 1.6; }
