/* Mad Murph Lead Discovery Funnel — design tokens + base styles */

:root {
  --teal: #1ac1dd;
  --teal-deep: #0097b2;
  --teal-glow: rgba(26, 193, 221, 0.18);
  --cream: #fffbf4;
  --cream-dim: rgba(255, 251, 244, 0.72);
  --cream-faint: rgba(255, 251, 244, 0.45);
  --cream-ghost: rgba(255, 251, 244, 0.14);
  --cream-line: rgba(255, 251, 244, 0.10);

  --navy: #0d2644;
  --navy-deep: #0c294b;
  --black: #000000;
  --charcoal: #231f20;

  --bg: #07172b;          /* deeper than navy for funnel canvas */
  --bg-2: #0d2644;
  --surface: rgba(255, 251, 244, 0.04);
  --surface-2: rgba(255, 251, 244, 0.07);

  --serif: 'Prata', 'Cormorant Garamond', Georgia, serif;
  --serif-alt: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 1px 0 rgba(255, 251, 244, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(26, 193, 221, 0.3), 0 20px 50px -20px rgba(26, 193, 221, 0.4);

  --type-scale: 1;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26, 193, 221, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(13, 38, 68, 0.6), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

button:focus-visible,
input:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

input, textarea {
  font-family: inherit;
  color: inherit;
}

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.muted { color: var(--cream-dim); }
.faint { color: var(--cream-faint); }

/* ---------- App shell ---------- */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  border-bottom: 1px solid var(--cyan);
  box-shadow: 0 1px 16px var(--cyan-glow);
  position: sticky;
  top: 0;
  background: var(--bg-header);
  z-index: 50;
}

.top-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.top-nav .brand img { width: 28px; height: 28px; opacity: 0.95; }
.top-nav .brand .wordmark {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}

.top-nav .center {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  color: var(--cream);
}
.top-nav .center {
  gap: 14px;
  white-space: nowrap;
}
.top-nav .brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.top-nav .brand-mark.brand-mark-hidden {
  visibility: hidden;
  pointer-events: none;
}
.top-nav .brand-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.top-nav .back-label {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--cream);
}

.skip-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 10px 18px;
  border: 1px solid var(--cream-ghost);
  border-radius: 999px;
  transition: all 160ms ease;
  text-decoration: none;
  cursor: pointer;
  background: none;
}
.skip-link:hover {
  color: var(--cream);
  border-color: var(--teal);
  background: rgba(26, 193, 221, 0.06);
}

/* ---------- Progress indicator ---------- */
.progress-wrap {
  padding: 22px 48px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.progress-step-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}
.progress-step-label .num { color: var(--teal); }

.progress-track {
  flex: 1;
  height: 2px;
  background: var(--cream-ghost);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  border-radius: inherit;
  box-shadow: 0 0 12px var(--teal-glow);
  transition: width 600ms cubic-bezier(0.7, 0, 0.2, 1);
}

.progress-segments {
  display: flex; gap: 6px; flex: 1;
}
.progress-segments .seg {
  flex: 1; height: 3px;
  background: var(--cream-ghost);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.progress-segments .seg.done { background: var(--teal); box-shadow: 0 0 12px var(--teal-glow); }
.progress-segments .seg.active::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--teal), transparent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Page container ---------- */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 64px 80px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  opacity: 1;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.page-head { margin-bottom: 56px; max-width: 900px; }
.page-head .eyebrow { margin-bottom: 18px; display: inline-block; }

/* ---------- Step 5 — compact ad intent cards ---------- */
.step5-page .page-head { margin-bottom: 28px; max-width: 1000px; }
.step5-page .page-head h1 { font-size: clamp(38px, 4.6vw, 60px); margin-bottom: 12px; }
.step5-page .page-head .lede { font-size: 15px; line-height: 1.45; }
.step5-ad-grid { gap: 14px !important; margin-bottom: 24px !important; }
.step5-ad-grid .tile { padding: 16px 20px; min-height: 0; gap: 6px; }
.step5-ad-grid .tile h3 { font-size: 22px; margin: 0; }
.step5-ad-grid .tile p { font-size: 13px; line-height: 1.45; }
.step5-ad-grid .tile .num { margin-bottom: 2px; }
.step5-ad-grid .tile .tile-marker { top: 16px; right: 16px; }

/* Collapsed state — once an option is chosen, shrink cards so the budget
   question fits on the same locked screen (no scroll). */
.step5-ad-grid.is-compact { gap: 10px !important; margin-bottom: 18px !important; }
.step5-ad-grid.is-compact .tile {
  padding: 10px 16px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: padding 220ms ease;
}
.step5-ad-grid.is-compact .tile p { display: none; }
.step5-ad-grid.is-compact .tile .num {
  margin: 0;
  flex: 0 0 auto;
  opacity: 0.7;
  font-size: 10px;
}
.step5-ad-grid.is-compact .tile h3 { font-size: 16px; }
.step5-ad-grid.is-compact .tile:not(.selected) { opacity: 0.5; }
.step5-ad-grid.is-compact .tile .tile-marker { top: 50%; transform: translateY(-50%); right: 14px; }

/* Reality-check collapsible dropdown */
.ads-dropdown {
  background: var(--surface);
  border: 1px solid var(--cream-ghost);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ads-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
}
.ads-dropdown summary::-webkit-details-marker { display: none; }
.ads-dropdown summary .eyebrow { margin: 0; flex: 0 0 auto; }
.ads-dropdown-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  flex: 1;
}
.ads-dropdown-chev {
  color: var(--teal);
  font-size: 16px;
  transition: transform 200ms ease;
}
.ads-dropdown[open] .ads-dropdown-chev { transform: rotate(180deg); }
.ads-dropdown-body { padding: 0 28px 24px; }

/* ---------- Corporate enterprise form — fixed single viewport ---------- */
.corporate-page {
  flex: 0 0 auto;
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.corporate-page .page-head { margin-bottom: 20px; max-width: 1000px; }
.corporate-page .page-head h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 14px; }
.corporate-page .page-head .lede { font-size: 15px; line-height: 1.45; max-width: 760px; }
.corporate-page .field input { font-size: 16px; padding: 9px 0; }
.corporate-page .actions { margin-top: 22px; }

/* ---------- Step 4 — fixed viewport goals page + live goal-split bar ---------- */
.step4-page {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 16px !important;
}
.step4-page .actions { margin-top: 18px; }
.step4-page .page-head { margin-bottom: 18px; max-width: none; }
.step4-page .page-head h1 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 10px; white-space: nowrap; }
.step4-page .page-head .lede { font-size: 14px; line-height: 1.4; max-width: none; }
.step4-page .goalsplit { margin-bottom: 16px; padding: 12px 18px; }
.step4-page .grid-3 { gap: 16px; margin-bottom: 0 !important; }
.step4-page .bucket-col { padding: 18px 18px; gap: 4px; }
.step4-page .bucket-col h2 { font-size: 26px; }
.step4-page .bucket-col .bucket-explainer { font-size: 12px; line-height: 1.4; margin-bottom: 8px; }
.step4-page .bucket-col .bucket-top { padding: 10px 0; margin-bottom: 6px; }
.step4-page .bucket-col .sub-label { margin: 4px 0 2px; }
.step4-page .subcat-row { padding: 7px 0; gap: 4px; }
.step4-page .subcat-row .head .label { font-size: 12px; line-height: 1.25; }
.step4-page .subcat-row .nim { font-size: 9px; }
.step4-page .slider-row { padding: 4px 0; }

/* Refine sub-goals expander */
.bucket-refine {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 1px solid var(--cream-ghost);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all 180ms ease;
}
.bucket-refine:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.bucket-refine:disabled { opacity: 0.35; cursor: not-allowed; }
.bucket-refine-count {
  font-size: 10px;
  color: var(--teal);
  border: 1px solid currentColor;
  border-radius: 999px;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
/* Sub-goal pop-over overlay */
.bucket-subpop {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(10, 26, 46, 0.97);
  backdrop-filter: blur(8px);
  border-radius: inherit;
  border: 1px solid var(--teal);
  padding: 18px 20px;
  overflow-y: auto;
  cursor: default;
  animation: subpopIn 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes subpopIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: none; } }
.bucket-subpop-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-line);
}
.bucket-subpop-head h3 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin: 0; }
.bucket-subpop-close {
  background: var(--teal); color: var(--navy-deep);
  border: none; border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
}

.goalsplit {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 18px;
  flex: 0 0 auto;
}
.goalsplit-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 10px;
}
.goalsplit-bar {
  display: flex;
  width: 100%;
  height: 26px;
  border-radius: 7px;
  overflow: hidden;
  gap: 3px;
}
.goalsplit-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--cream);
  border-radius: 5px;
  transition: width 200ms ease;
  min-width: 0;
  overflow: hidden;
}
.goalsplit-seg.gs-exposure { background: rgba(26, 193, 221, 0.55); color: var(--navy-deep); }
.goalsplit-seg.gs-brand    { background: rgba(255, 251, 244, 0.18); }
.goalsplit-seg.gs-sales    { background: rgba(255, 179, 122, 0.30); }
.goalsplit-legend { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.goalsplit-leg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-dim);
}
.goalsplit-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.goalsplit-dot.gs-exposure { background: rgba(26, 193, 221, 0.7); }
.goalsplit-dot.gs-brand    { background: rgba(255, 251, 244, 0.45); }
.goalsplit-dot.gs-sales    { background: rgba(255, 179, 122, 0.55); }

/* ---------- Step 3 — fixed single-viewport intro form ---------- */
.step3-page {
  flex: 0 0 auto;
  height: calc(100vh - 152px);
  max-height: calc(100vh - 152px);
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.step3-page .page-head { margin-bottom: 20px; max-width: 1100px; }
.step3-page .page-head h1 { font-size: clamp(32px, 3.8vw, 50px); margin-bottom: 14px; }
.step3-page .page-head .lede { font-size: 15px; line-height: 1.45; max-width: 760px; }
.step3-page .step3-social { margin-top: 24px; }
.step3-page .actions { margin-top: auto; padding-top: 18px; }
.step3-page .field input { font-size: 15px; padding: 9px 0; }
.step3-page .field-row { padding: 7px 0; }


/* ---------- Step 1 v2 — tiles dominate ---------- */
.step1-page {
  height: calc(100vh - 90px);
  min-height: 560px;
  padding: 20px 6% 16px !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Ambient "million-dollar" background — layered teal glows */
.step1-page .step1-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.step1-page .step1-ambient-glow {
  display: none;
}
.step1-page .step1-ambient-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(244, 234, 213, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(244, 234, 213, 0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
  opacity: 0.6;
}
@keyframes ambientFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.step1-v2 .step1-bg {
  position: absolute;
  top: 0px;
  right: 32px;
  width: 46%;
  max-width: 600px;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.step1-v2 .step1-bg img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transform: translate(var(--phone-px, 0px), var(--phone-py, 0px)) rotate(-59deg);
  transform-origin: center center;
  filter: drop-shadow(0 24px 60px rgba(26, 193, 221, 0.25));
  transition: transform 80ms linear;
}
@keyframes step1BgIn {
  from { opacity: 0; transform: translateX(80%) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.step1-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex: 1;
  min-height: 0;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.step1-eyebrow {
  margin: 0;
  max-width: 56%;
}
.step1-eyebrow .apple-reveal {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.step1-eyebrow .apple-reveal .line { display: block; }

.step1-tiles-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
  min-height: 0;
  max-height: 56vh;
}
.step1-tiles-v2 .tile {
  display: flex;
  flex-direction: column;
  padding: 40px 44px;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  background: rgba(13, 38, 68, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--cream-line);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  text-align: left;
}
.step1-tiles-v2 .tile:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 193, 221, 0.55);
  background: rgba(13, 38, 68, 0.92);
}
.step1-tiles-v2 .tile:hover .tile-cta {
  color: var(--teal);
  transform: translateX(4px);
}
.step1-tiles-v2 .tile.selected {
  border-color: var(--teal);
  background: rgba(26, 193, 221, 0.06);
}
.step1-tiles-v2 .tile-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 24px;
  white-space: nowrap;
}
.step1-tiles-v2 .tile h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--cream);
}
.step1-tiles-v2 .tile p {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-dim);
  margin: 0 0 auto;
  max-width: 42ch;
}
.step1-tiles-v2 .tile-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 220ms ease, transform 220ms ease;
}
.step1-tiles-v2 .tile-cta::after {
  content: "→";
  font-size: 14px;
}

.step1-footnote {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream-dim);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 24px;
  position: relative;
  z-index: 2;
  opacity: 1;
}
@keyframes footnoteIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step1-footnote span:empty {
  display: none;
}

@media (max-width: 820px) {
  .step1-page { height: auto; overflow: visible; padding: 32px !important; }
  .step1-tiles-v2 { grid-template-columns: 1fr; max-height: none; }
  .step1-tiles-v2 .tile { min-height: 220px; }
  .step1-v2 .step1-bg { width: 70%; right: 20px; top: 20px; opacity: 0.85; max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .step1-v2 .step1-bg { animation: none; opacity: 1; }
}

/* ---------- /Step 1 v2 ---------- */
/* (legacy step1 layout removed — see consolidated .step1-page rule above) */

/* Logo flight clone — animates from page position into nav slot */
.logo-flight {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.65, 0, 0.35, 1), filter 700ms ease;
  will-change: transform;
}
.logo-flight img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .step1-logo img { animation: none; opacity: 1; }
}

/* ---------- Apple-style reveal animation ---------- */
.apple-reveal {
  font-family: var(--serif);
  font-size: calc(96px * var(--type-scale));
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  text-wrap: pretty;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0;
}
.apple-reveal .line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.22em;
}
.apple-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.apple-reveal .line {
  word-spacing: -0.12em;
}
.apple-reveal .word > span {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
@keyframes appleReveal {
  0%   { transform: translateY(110%); opacity: 0; filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.apple-reveal .line:nth-child(1) .word:nth-of-type(1) > span,
.apple-reveal .line:nth-child(2) .word:nth-of-type(1) > span,
.apple-reveal .line:nth-child(2) .word:nth-of-type(2) > span,
.apple-reveal .line:nth-child(2) .word:nth-of-type(3) > span,
.apple-reveal .line:nth-child(3) .word:nth-of-type(1) > span,
.apple-reveal .line:nth-child(3) .word:nth-of-type(2) > span,
.apple-reveal .line:nth-child(3) .word:nth-of-type(3) > span { animation-delay: 0ms; }
.reveal-eyebrow {
  display: inline-block;
  opacity: 1;
  transform: none;
  animation: appleFade 1100ms cubic-bezier(0.16, 1, 0.3, 1) 0ms forwards;
  margin-bottom: 18px;
}
.reveal-lede {
  opacity: 1;
  transform: none;
  animation: appleFade 1400ms cubic-bezier(0.16, 1, 0.3, 1) 0ms forwards;
}
.reveal-tiles {
  opacity: 1;
  transform: none;
  animation: appleFade 1600ms cubic-bezier(0.16, 1, 0.3, 1) 0ms forwards;
}
@keyframes appleFade {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .apple-reveal .word > span,
  .reveal-eyebrow, .reveal-lede, .reveal-tiles {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

.page-head h1 {
  font-family: var(--serif);
  font-size: calc(72px * var(--type-scale));
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  text-wrap: pretty;
  word-spacing: 0.06em;
  font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "opsz" 144;
}
.page-head .lede {
  font-size: calc(20px * var(--type-scale));
  line-height: 1.5;
  color: var(--cream-dim);
  max-width: 640px;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  font-weight: 600;
}
.btn-primary:hover:not(:disabled) {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -12px var(--teal-glow);
}
.btn-primary:disabled {
  opacity: 0.4; cursor: not-allowed;
}
.btn-secondary {
  border-color: var(--cream-ghost);
  color: var(--cream);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(26, 193, 221, 0.04);
}
.btn-ghost {
  color: var(--cream-dim);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-ghost:hover { color: var(--teal); }

.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-back .arrow { transform: rotate(180deg); }
.btn-back:hover .arrow { transform: rotate(180deg) translateX(4px); }

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.actions.split { justify-content: space-between; }

/* ---------- Card / choice tiles ---------- */
.tile {
  background: var(--surface);
  border: 1px solid var(--cream-ghost);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.tile:hover {
  border-color: var(--teal);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.tile.selected {
  border-color: var(--teal);
  background: linear-gradient(180deg, rgba(26, 193, 221, 0.06), transparent 60%);
  box-shadow: var(--shadow-glow);
}
.tile h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.tile p {
  margin: 0;
  color: var(--cream-dim);
  line-height: 1.55;
  font-size: 15px;
}
.tile .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}

/* ---------- Form inputs ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-ghost);
  padding: 12px 0;
  font-size: 18px;
  color: var(--cream);
  transition: border-color 200ms ease;
  font-family: var(--sans);
}
.field input::placeholder { color: var(--cream-faint); font-family: var(--sans); }
.field input:focus {
  outline: none;
  border-bottom-color: var(--teal);
}

.field-row {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--cream-ghost);
  padding: 12px 0;
  transition: border-color 200ms ease;
}
.field-row:focus-within { border-bottom-color: var(--teal); }
.field-row .platform-icon {
  width: 18px; height: 18px;
  color: var(--cream-faint);
  flex: 0 0 auto;
}
.field-row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  width: 110px;
  flex: 0 0 110px;
}
.field-row input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 16px;
  color: var(--cream);
}
.field-row input:focus { outline: none; }

/* ---------- Slider ---------- */
.slider-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
}
.slider-row .slider-head {
  display: flex; align-items: baseline; justify-content: space-between;
}
.slider-row .slider-label { font-size: 14px; }
.slider-row .slider-val {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.08em;
}
.slider-row.disabled { opacity: 0.4; }
.slider-row.disabled .slider-val { color: var(--cream-faint); }

input[type=range].slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--cream-ghost);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--cream);
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(26, 193, 221, 0.18);
  transition: transform 120ms;
}
input[type=range].slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
input[type=range].slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--cream);
  cursor: grab;
}

/* Big slider for top-level buckets */
/* Big slider for top-level buckets — prominent master control */
.step4-page .bucket-top .slider-row .slider-label { font-size: 15px; font-weight: 500; }
.step4-page .bucket-top .slider-row .slider-val { font-size: 16px; font-weight: 600; }
input[type=range].slider.big { height: 10px; border-radius: 999px; }
input[type=range].slider.big::-webkit-slider-thumb {
  width: 30px; height: 30px;
  box-shadow: 0 0 0 6px rgba(26, 193, 221, 0.22), 0 2px 10px rgba(0,0,0,0.4);
}
input[type=range].slider.big::-moz-range-thumb {
  width: 30px; height: 30px;
  box-shadow: 0 0 0 6px rgba(26, 193, 221, 0.22), 0 2px 10px rgba(0,0,0,0.4);
}
.step4-page .bucket-top { padding: 14px 0 16px !important; }

/* ---------- Pill toggle / chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--cream-ghost);
  color: var(--cream-dim);
  background: transparent;
  transition: all 160ms ease;
  cursor: pointer;
}
.chip:hover { color: var(--cream); border-color: var(--cream-faint); }
.chip.active { background: var(--teal); color: var(--navy-deep); border-color: var(--teal); }
.chip.dim { font-size: 10px; }

/* ---------- Status badges (matching dashboard vibe) ---------- */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-teal { background: var(--teal); color: var(--navy-deep); }
.badge-cream { background: var(--cream); color: var(--navy-deep); }
.badge-outline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--cream-ghost);
  font-weight: 500;
}

/* ---------- Layout helpers ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.flex { display: flex; }
.col { flex-direction: column; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }

/* ---------- Step 4 sliders layout ---------- */
.bucket-col {
  background: var(--surface);
  border: 1px solid var(--cream-ghost);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 200ms ease;
}
.bucket-col:hover { border-color: var(--cream-faint); }
.bucket-col.zero { opacity: 0.5; }
.bucket-col h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.bucket-col .bucket-explainer {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.bucket-col .bucket-top {
  padding: 20px 0;
  border-bottom: 1px dashed var(--cream-ghost);
  margin-bottom: 12px;
}
.bucket-col .sub-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 8px 0 4px;
}
.subcat-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-line);
}
.subcat-row:last-child { border-bottom: none; }
.subcat-row.muted-row { opacity: 0.35; }
.subcat-row .head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.subcat-row .head .label { font-size: 13px; line-height: 1.35; }
.subcat-row .controls { display: flex; align-items: center; gap: 16px; }
.subcat-row .nim {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  cursor: pointer;
  white-space: nowrap;
  background: none; border: none;
  padding: 4px 0;
  transition: color 160ms;
}
.subcat-row .nim:hover { color: var(--cream); }
.subcat-row .nim.on { color: var(--teal); }

/* ---------- Pie / donut ---------- */
.pie-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}
.pie-wrap svg { width: 100%; height: 100%; }
.pie-legend {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px;
}
.pie-legend .legend-row {
  display: flex; align-items: center; gap: 14px;
}
.pie-legend .swatch {
  width: 14px; height: 14px; border-radius: 4px;
}
.pie-legend .label { flex: 1; font-size: 14px; }
.pie-legend .pct { font-family: var(--mono); font-size: 13px; color: var(--cream-dim); }

/* ---------- Detail blocks ---------- */
.panel {
  background: var(--surface);
  border: 1px solid var(--cream-ghost);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.panel h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* Content delivery table */
.delivery-table {
  display: flex;
  flex-direction: column;
}
.delivery-row {
  display: grid;
  grid-template-columns: 80px 1fr 90px;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-line);
  align-items: center;
}
.delivery-row:last-child { border-bottom: none; }
.delivery-row .count {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--teal);
}
.delivery-row .what { font-size: 14px; line-height: 1.45; }
.delivery-row .what .meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 4px;
}
.delivery-row .format {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: right;
}

.bucket-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--cream-ghost);
  margin-top: 8px;
}
.bucket-divider:first-child { border-top: none; padding-top: 0; }
.bucket-divider .dot { width: 10px; height: 10px; border-radius: 999px; }
.bucket-divider .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bucket-divider .pct {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-dim);
}

/* Package card */
.package-card {
  background: linear-gradient(180deg, rgba(26, 193, 221, 0.06), transparent 80%);
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--teal), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}
.package-card .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.package-card .price-block {
  text-align: right;
}
.package-card .price {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
}
.package-card .price-suffix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}
.package-card h2 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.package-card .package-note { color: var(--cream-dim); font-size: 16px; line-height: 1.55; max-width: 520px; }

.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-ghost);
}
.inclusion-list { display: flex; flex-direction: column; gap: 10px; }
.inclusion-list h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--cream-dim);
}
.inclusion-list h4 .marker { color: var(--teal); }
.inclusion-list .item {
  font-size: 14px; color: var(--cream); padding: 6px 0;
  display: flex; gap: 10px; align-items: baseline;
}
.inclusion-list .item .tick { color: var(--teal); font-family: var(--mono); font-size: 11px; }
.inclusion-list .item.excl .tick { color: var(--cream-faint); }
.inclusion-list .item.excl { color: var(--cream-dim); }

/* small dot indicator for selected status on tiles */
.tile-marker {
  position: absolute;
  top: 24px; right: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-ghost);
  background: transparent;
  transition: all 200ms ease;
}
.tile.selected .tile-marker {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26, 193, 221, 0.2);
}

/* freelance menu */
.menu-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-line);
  cursor: pointer;
  transition: padding-left 160ms ease;
}
.menu-row:hover { padding-left: 8px; }
.menu-row .lhs { display: flex; align-items: baseline; gap: 16px; }
.menu-row .check {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--cream-ghost);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  transition: all 160ms ease;
}
.menu-row.selected .check { background: var(--teal); border-color: var(--teal); }
.menu-row .item-name { font-size: 17px; font-family: var(--serif); }
.menu-row .item-meta {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 4px;
}
.menu-row .item-text { display: flex; flex-direction: column; }
.menu-row .price-col { text-align: right; }
.menu-row .price-col .reg { font-family: var(--mono); font-size: 14px; color: var(--cream); }
.menu-row .price-col .retainer {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}

.total-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--cream-ghost);
  margin-top: 12px;
}
.total-bar .label {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim);
}
.total-bar .amount {
  font-family: var(--serif); font-size: 56px;
  letter-spacing: -0.02em; color: var(--teal);
}

/* compact toggle */
.compact-toggle {
  display: flex; gap: 0;
  border: 1px solid var(--cream-ghost);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}
.compact-toggle button {
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: all 160ms ease;
}
.compact-toggle button:hover { color: var(--cream); }
.compact-toggle button.active { background: var(--teal); color: var(--navy-deep); }

/* responsive */
@media (max-width: 1024px) {
  .top-nav { padding: 18px 24px; }
  .progress-wrap { padding: 18px 24px 0; }
  .page { padding: 32px 24px 64px; }
  .page-head h1 { font-size: calc(56px * var(--type-scale)); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .package-card .row { grid-template-columns: 1fr; }
  .package-card .price-block { text-align: left; }
}


.step1-page.is-exiting .step1-content,
.step1-page.is-exiting .step1-ambient,
.step1-page.is-exiting .step1-bg {
  transition: opacity 360ms ease;
  opacity: 0;
}
.step1-page.is-exiting .step1-bg { opacity: 0 !important; }

/* ========================================================================
   STEP 2A — Build Your Quote
   ======================================================================== */
.step2a-quote {
  position: relative;
  padding: 0 !important;
  background: var(--bg);
  overflow-x: clip;
}

/* --- Header strip --- */
.quote-head {
  position: relative;
  z-index: 1;
  padding: 56px 64px 28px;
  border-bottom: 1px solid var(--cream-line);
  max-width: 1440px;
  margin: 0 auto;
}
.quote-head-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.quote-head-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--cream);
}
.quote-head-lede {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 56ch;
  margin: 0;
}

/* --- Shell layout --- */
.quote-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 64px 0;
  align-items: start;
}

.quote-rail {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: 28px 0 0;
  grid-row: 1;
}
.quote-rail-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 22px;
  padding-left: 14px;
}
.quote-rail-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--cream-ghost);
}
.quote-rail-item {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  margin-left: -1px;
  border-left: 1px solid transparent;
  text-align: left;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color 200ms ease, border-color 200ms ease;
}
.quote-rail-item:hover { color: var(--cream); }
.quote-rail-item.is-active {
  color: var(--teal);
  border-left-color: var(--teal);
}
.quote-rail-num {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  font-variant-numeric: tabular-nums;
}
.quote-rail-item.is-active .quote-rail-num { color: var(--teal); }
.quote-rail-text { white-space: nowrap; }
.quote-rail-tick {
  width: 6px; height: 6px; border-radius: 50%;
  background: transparent;
  transition: background 200ms ease;
}
.quote-rail-item.is-active .quote-rail-tick { background: var(--teal); box-shadow: 0 0 8px var(--teal-glow); }

.quote-rail-foot {
  margin-top: auto;
  padding-top: 28px;
  padding-left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.quote-rail-foot > span:first-child {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--cream-ghost);
  flex-shrink: 0;
}

/* --- Catalog scroller --- */
.quote-catalog {
  min-width: 0;
  padding-right: 12px;
  padding-bottom: 0;
  min-height: calc(100vh - 144px);
}

.quote-section {
  margin-bottom: 72px;
  scroll-margin-top: 24px;
}
.quote-section:last-child { margin-bottom: 0; }

/* Category header */
.cat-head {
  margin-bottom: 28px;
  position: relative;
}
.cat-head-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 12px;
}
.cat-head-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 10px;
}
.cat-head-lede {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 64ch;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.cat-head-rule {
  width: 48px;
  height: 1px;
  background: var(--cream-ghost);
}

/* Grids */
.quote-grid { display: grid; gap: 16px; }
.quote-grid-1 { grid-template-columns: 1fr; }
.quote-grid-2 { grid-template-columns: repeat(2, 1fr); }
.quote-grid-3 { grid-template-columns: repeat(3, 1fr); }
.quote-grid-hourly { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1100px) {
  .quote-grid-3, .quote-grid-hourly { grid-template-columns: repeat(2, 1fr); }
}

/* --- Product card --- */
.product-card {
  position: relative;
  background: rgba(13, 38, 68, 0.5);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 22px 22px 18px;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.product-card:hover {
  border-color: rgba(26, 193, 221, 0.4);
  background: rgba(13, 38, 68, 0.72);
}
.product-card.is-selected {
  border-color: var(--teal);
  background: rgba(26, 193, 221, 0.08);
  box-shadow: 0 0 0 1px var(--teal-glow), 0 12px 36px -16px var(--teal-glow);
}
.product-card.is-wide {
  flex-direction: row;
  align-items: center;
  gap: 36px;
  min-height: 140px;
  padding: 22px 28px;
}
.product-card.is-wide .product-name { flex: 0 0 auto; min-width: 180px; }
.product-card.is-wide .product-meta { flex: 1; max-width: 50ch; }
.product-card.is-wide .product-price { margin-left: auto; }
.product-card.is-wide .product-foot { flex: 0 0 auto; margin-top: 0; }

/* Brackets */
.product-bracket {
  position: absolute;
  width: 10px; height: 10px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 200ms ease, border-color 200ms ease;
}
.product-bracket-tl { top: 6px; left: 6px;  border-top: 1px solid var(--cream-faint); border-left: 1px solid var(--cream-faint); }
.product-bracket-tr { top: 6px; right: 6px; border-top: 1px solid var(--cream-faint); border-right: 1px solid var(--cream-faint); }
.product-bracket-bl { bottom: 6px; left: 6px;  border-bottom: 1px solid var(--cream-faint); border-left: 1px solid var(--cream-faint); }
.product-bracket-br { bottom: 6px; right: 6px; border-bottom: 1px solid var(--cream-faint); border-right: 1px solid var(--cream-faint); }
.product-card.is-selected .product-bracket {
  border-color: var(--teal);
  opacity: 1;
}

.product-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.product-meta {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--cream-dim);
}
.product-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--teal);
  margin-top: auto;
}
.product-price .suffix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  margin-left: 8px;
  text-transform: uppercase;
}
.product-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-line);
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  transition: color 200ms ease;
}
.product-card:hover .card-cta { color: var(--teal); }
.product-card.is-selected .card-cta { color: var(--teal); }

.product-tick {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--teal-glow);
}

/* --- Quantity stepper --- */
.qty-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.qty-stepper-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.qty-stepper-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--cream-ghost);
  border-radius: 999px;
  padding: 2px;
}
.qty-btn {
  appearance: none;
  background: transparent;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--cream);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.qty-btn:hover { background: rgba(26, 193, 221, 0.12); color: var(--teal); }
.qty-val {
  font-family: var(--mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--teal);
  min-width: 28px;
  text-align: center;
}

/* --- Ad Setup card --- */
.ad-setup-card {
  position: relative;
  background: rgba(13, 38, 68, 0.5);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 28px 28px 22px;
}
.ad-setup-bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  opacity: 0.6;
}
.ad-setup-bracket-tl { top: 8px; left: 8px;  border-top: 1px solid var(--cream-faint); border-left: 1px solid var(--cream-faint); }
.ad-setup-bracket-tr { top: 8px; right: 8px; border-top: 1px solid var(--cream-faint); border-right: 1px solid var(--cream-faint); }
.ad-setup-bracket-bl { bottom: 8px; left: 8px;  border-bottom: 1px solid var(--cream-faint); border-left: 1px solid var(--cream-faint); }
.ad-setup-bracket-br { bottom: 8px; right: 8px; border-bottom: 1px solid var(--cream-faint); border-right: 1px solid var(--cream-faint); }

.ad-setup-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .ad-setup-tiers { grid-template-columns: 1fr; }
}
.ad-setup-tier {
  position: relative;
  appearance: none;
  background: rgba(13, 38, 68, 0.4);
  border: 1px solid var(--cream-ghost);
  border-radius: 10px;
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 200ms ease, background 200ms ease;
}
.ad-setup-tier:hover {
  border-color: rgba(26, 193, 221, 0.45);
  background: rgba(13, 38, 68, 0.65);
}
.ad-setup-tier.is-selected {
  border-color: var(--teal);
  background: rgba(26, 193, 221, 0.08);
  box-shadow: 0 0 0 1px var(--teal-glow);
}
.ad-setup-tier-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.ad-setup-tier-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ad-setup-tier-price .suffix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  margin-left: 4px;
  text-transform: uppercase;
}
.ad-setup-tier-desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--cream-dim);
  margin: 0;
  text-wrap: pretty;
}
.ad-setup-tier-tick {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--cream-ghost);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 200ms ease;
}
.ad-setup-tier-tick.on {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy-deep);
}
.ad-setup-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.ad-setup-foot > span:first-child {
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--cream-ghost);
}

/* --- Influencer card --- */
.influencer-card {
  position: relative;
  background: rgba(13, 38, 68, 0.5);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 32px 36px;
}
.influencer-inner { max-width: 60ch; }
.influencer-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.influencer-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--cream);
}
.influencer-body {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--cream-dim);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.influencer-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.influencer-tag > span:first-child {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--teal);
}

/* --- Retainer nudge --- */
.retainer-nudge {
  position: relative;
  margin-top: 36px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(26, 193, 221, 0.07), rgba(13, 38, 68, 0.4));
  border: 1px solid rgba(26, 193, 221, 0.25);
  border-radius: 14px;
}
/* Full-width variant: spans both rail + catalog columns at page bottom */
.retainer-nudge-full {
  margin-top: 56px;
  margin-bottom: 8px;
  padding: 40px 48px;
}
.retainer-nudge-bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.retainer-nudge-bracket-tl { top: 8px; left: 8px;  border-top: 1px solid var(--teal); border-left: 1px solid var(--teal); }
.retainer-nudge-bracket-tr { top: 8px; right: 8px; border-top: 1px solid var(--teal); border-right: 1px solid var(--teal); }
.retainer-nudge-bracket-bl { bottom: 8px; left: 8px;  border-bottom: 1px solid var(--teal); border-left: 1px solid var(--teal); }
.retainer-nudge-bracket-br { bottom: 8px; right: 8px; border-bottom: 1px solid var(--teal); border-right: 1px solid var(--teal); }
.retainer-nudge-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.retainer-nudge-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--cream);
}
.retainer-nudge-body {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0 0 18px;
  max-width: 56ch;
}
.retainer-nudge-cta {
  appearance: none;
  background: transparent;
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 200ms ease, color 200ms ease;
}
.retainer-nudge-cta:hover {
  background: var(--teal);
  color: var(--navy-deep);
}

.quote-bottom-spacer { height: 0; }

/* --- Pathway switch band ---
   Full-bleed band that breaks out of the centered .page container to span
   the full viewport. Sits below the step list — visually signals "different
   pathway", not another step card. No brackets (those = step cards). */
.retainer-band {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
  padding: 56px 0 64px;th (vw >= 1240px): page is centered at 1240px, so main-left from
     viewport = (vw - 1240)/2 + 328. margin-left = -(that) = -50vw + 292px. */
  margin-left: calc(-50vw + 228px);
  margin-right: 0;
  margin-top: 20px;
  padding: 36px 0 44px;
  background:
    linear-gradient(180deg, rgba(26, 193, 221, 0.04) 0%, rgba(26, 193, 221, 0.02) 100%),
    rgba(255, 255, 255, 0.012);
  border-top: 1px solid rgba(26, 193, 221, 0.22);
}
.retainer-band::before {
  /* Soft top glow accenting the divider rule */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 193, 221, 0.55) 50%, transparent 100%);
  pointer-events: none;
}
.retainer-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.retainer-band-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.retainer-band-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.retainer-band-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--cream);
}
.retainer-band-body {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
  max-width: 60ch;
}
.retainer-band-cta {
  flex: 0 0 auto;
  appearance: none;
  background: transparent;
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.retainer-band-cta:hover {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 0 0 4px rgba(26, 193, 221, 0.15);
}
/* Below the page max-width (1240px), .step2a-quote becomes full-bleed,
   so main-left from viewport is just rail-width + gap = 328px (no page-centering offset). */
@media (max-width: 1239px) {
  .retainer-band {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .retainer-band {
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    padding: 32px 0 40px;
  }
  .retainer-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; padding: 0 24px; }
  .retainer-band-title { font-size: 28px; }
}

/* --- Sticky bottom cart bar --- */
/* --- Rail-mounted cart --- */
.quote-cart {
  position: relative;
  margin-top: 16px;
  padding: 20px 18px 18px;
  background: rgba(7, 23, 43, 0.6);
  border: 1px solid rgba(26, 193, 221, 0.28);
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--teal-glow), 0 12px 32px -16px rgba(0, 0, 0, 0.6);
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
  flex-shrink: 0;
}
.quote-cart.is-empty {
  border-color: var(--cream-ghost);
  box-shadow: none;
  background: transparent;
}
.quote-cart-bracket {
  position: absolute;
  width: 8px; height: 8px;
  pointer-events: none;
}
.quote-cart-bracket-tl { top: 4px; left: 4px;  border-top: 1px solid var(--teal); border-left: 1px solid var(--teal); }
.quote-cart-bracket-tr { top: 4px; right: 4px; border-top: 1px solid var(--teal); border-right: 1px solid var(--teal); }
.quote-cart-bracket-bl { bottom: 4px; left: 4px;  border-bottom: 1px solid var(--teal); border-left: 1px solid var(--teal); }
.quote-cart-bracket-br { bottom: 4px; right: 4px; border-bottom: 1px solid var(--teal); border-right: 1px solid var(--teal); }
.quote-cart.is-empty .quote-cart-bracket { border-color: var(--cream-faint); opacity: 0.5; }

.quote-cart-head { margin-bottom: 14px; }
.quote-cart-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote-cart-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.quote-cart.is-empty .quote-cart-count { color: var(--cream-dim); }
.quote-cart-total {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.quote-cart-total-empty { color: var(--cream-dim); }
.quote-cart-total .suffix {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  margin-left: 6px;
  text-transform: uppercase;
}

.quote-cart-mini-lines {
  list-style: none;
  margin: 0 0 14px;
  padding: 12px 0 0;
  border-top: 1px dashed var(--cream-ghost);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-cart-mini-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.quote-cart-mini-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--cream);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.quote-cart-mini-amount {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-faint);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.quote-cart-cta {
  appearance: none;
  background: var(--teal);
  border: none;
  border-radius: 999px;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.quote-cart-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px var(--teal-glow);
}
.quote-cart-cta-empty {
  background: transparent;
  border: 1px solid var(--cream-ghost);
  color: var(--cream-dim);
}
.quote-cart-cta-empty:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(26, 193, 221, 0.05);
  box-shadow: none;
}

/* Expanded panel */
.quote-cart-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-line);
  animation: cartPanelIn 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cartPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-cart-section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 12px;
}
.quote-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-ghost);
  gap: 16px;
}
.quote-line:last-of-type { border-bottom: none; }
.quote-line-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quote-line-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.quote-line-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-faint);
  letter-spacing: 0.04em;
}
.quote-line-amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.quote-line-total {
  margin-top: 8px;
  padding: 14px 0 4px !important;
  border-top: 1px solid var(--cream-ghost) !important;
  border-bottom: none !important;
}
.quote-line-total .quote-line-label { color: var(--teal); letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.quote-line-total .quote-line-amount { font-size: 22px; color: var(--teal); }

/* Form */
.quote-cart-form { }
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.quote-field { display: flex; flex-direction: column; gap: 6px; }
.quote-field-wide { grid-column: 1 / -1; }
.quote-field-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.quote-field-label .optional {
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--cream-faint);
  margin-left: 4px;
  font-size: 10px;
}
.quote-field input,
.quote-field textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-ghost);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  resize: vertical;
  transition: border-color 200ms ease;
}
.quote-field input:focus,
.quote-field textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}
.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: var(--cream-faint);
}

.quote-submit {
  appearance: none;
  background: var(--teal);
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
  width: 100%;
  justify-content: center;
}
.quote-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.quote-submit.is-ready:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -12px var(--teal-glow);
}

/* Empty CTA */
.quote-cart-empty {
  border-top: 1px solid var(--cream-line);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
}
.quote-cart-empty-cta {
  appearance: none;
  background: transparent;
  border: 1px solid var(--cream-ghost);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 200ms ease;
}
.quote-cart-empty-cta:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(26, 193, 221, 0.05);
}

/* Back button */
.quote-back {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 2;
}
.quote-back .btn-back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .quote-shell { grid-template-columns: 1fr; padding: 24px 24px 80px; }
  .quote-rail { position: static; padding: 0 0 12px; }
  .quote-rail-nav {
    flex-direction: row;
    border-left: none;
    border-bottom: 1px solid var(--cream-ghost);
    overflow-x: auto;
    gap: 0;
  }
  .quote-rail-item {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 12px 14px;
    flex-shrink: 0;
  }
  .quote-rail-item.is-active {
    border-left: none;
    border-bottom-color: var(--teal);
  }
  .quote-rail-foot { display: none; }
  .quote-head { padding: 36px 24px 20px; }
  .quote-grid-2, .quote-grid-3, .quote-grid-hourly { grid-template-columns: 1fr; }
  .product-card.is-wide { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-cart { left: 12px; right: 12px; transform: none; width: auto; max-width: none; }
  .quote-back { top: 12px; left: 12px; }
}


/* ========================================================================
   FANCY TILE — premium tile with cursor glow + bracket corners
   ======================================================================== */
.fancy-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  background: rgba(7, 22, 41, 0.55);
  border: 1px solid rgba(26, 193, 221, 0.40);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(26, 193, 221, 0.05), 0 0 32px -12px rgba(26, 193, 221, 0.18);
  padding: 36px 36px 32px;
  min-height: 260px;
  color: var(--cream);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --gx: 50%;
  --gy: 50%;
  font-family: inherit;
  text-align: left;
}
.fancy-tile:hover {
  border-color: rgba(26, 193, 221, 0.45);
  background: rgba(13, 38, 68, 0.55);
  transform: translateY(-3px);
}
.fancy-tile.selected {
  border-color: var(--teal);
  background: rgba(26, 193, 221, 0.06);
  box-shadow: 0 0 0 1px rgba(26, 193, 221, 0.4) inset;
}

/* Cursor-tracking glow */
.fancy-tile-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--gx) var(--gy),
    rgba(26, 193, 221, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
}
.fancy-tile:hover .fancy-tile-glow,
.fancy-tile.selected .fancy-tile-glow {
  opacity: 1;
}

/* Corner brackets */
.fancy-tile-bracket {
  position: absolute;
  opacity: 1;
  width: 18px;
  height: 18px;
  border-color: rgba(26, 193, 221, 0.85);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  transition: opacity 240ms ease, border-color 240ms ease;
}
.fancy-tile:hover .fancy-tile-bracket,
.fancy-tile.selected .fancy-tile-bracket {
  opacity: 1;
  border-color: var(--teal);
}
.fancy-tile-bracket-tl { top: 14px; left: 14px; border-top-width: 1.5px; border-left-width: 1.5px; width: 22px; height: 22px; }
.fancy-tile-bracket-tr { top: 14px; right: 14px; border-top-width: 1.5px; border-right-width: 1.5px; width: 22px; height: 22px; }
.fancy-tile-bracket-bl { bottom: 14px; left: 14px; border-bottom-width: 1.5px; border-left-width: 1.5px; width: 22px; height: 22px; }
.fancy-tile-bracket-br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; width: 22px; height: 22px; }

/* Content */
.fancy-tile-num {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.fancy-tile-title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--cream);
}
.fancy-tile-body {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
  max-width: 46ch;
}
.fancy-tile-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 240ms ease, transform 240ms ease;
}
.fancy-tile:hover .fancy-tile-cta,
.fancy-tile.selected .fancy-tile-cta {
  color: var(--teal);
  transform: translateX(4px);
}
.fancy-tile-cta-arrow {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 14px;
}
.fancy-tile-cta-arrow svg { width: 100%; height: 100%; }

/* Hero variant — bigger and more prominent */
.fancy-tile-hero {
  min-height: 320px;
  padding: 44px 44px 38px;
}
.fancy-tile-hero .fancy-tile-title {
  font-size: clamp(36px, 3.6vw, 50px);
}
.fancy-tile-hero .fancy-tile-body {
  font-size: 15px;
  max-width: 52ch;
}

/* Compact variant — for secondary tiles in a row */
.fancy-tile-compact {
  min-height: 220px;
  padding: 30px 30px 26px;
}
.fancy-tile-compact .fancy-tile-num { margin-bottom: 22px; }
.fancy-tile-compact .fancy-tile-title { font-size: clamp(22px, 2.2vw, 28px); }
.fancy-tile-compact .fancy-tile-body { font-size: 13px; }

/* Make Step 1 v2 grid use fancy-tile */
.step1-tiles-v2 .fancy-tile {
  width: 100%;
}

/* ========================================================================
   STEP 2B — Pathway selection (Tailor-made / Hospitality / Corporate)
   ======================================================================== */
.step2b-page {
  position: relative;
  height: calc(100vh - 72px);
  max-height: calc(100vh - 72px);
  padding: 32px 64px 28px !important;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}
.step2b-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-height: 0;
}
.step2b-eyebrow {
  max-width: none;
  flex: 0 0 auto;
}
.step2b-eyebrow .apple-reveal {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  word-spacing: 0.12em;
  margin: 0;
  color: var(--cream);
  white-space: nowrap;
}
.step2b-eyebrow .apple-reveal .word {
  margin-right: 0.16em;
}
.step2b-eyebrow .apple-reveal .line { display: block; }
.step2b-lede {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-dim);
  margin: 14px 0 0;
  max-width: none;
  white-space: nowrap;
}
.step2b-tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  min-height: 0;
}
.step2b-tiles-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1 1 auto;
  min-height: 0;
}

/* Thinner cards for the one-screen Step 2B layout */
.step2b-tiles .fancy-tile-hero {
  min-height: 0;
  padding: 24px 36px;
}
/* Tailor-made hero with right-side aside panel */
.step2b-tiles .fancy-tile-hero.fancy-tile-has-aside {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: stretch;
}
.fancy-tile-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.fancy-tile-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 52px;
  border-left: 1px solid var(--cream-line);
}
.tm-aside { display: flex; flex-direction: column; gap: 28px; }
.tm-aside-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.tm-aside-feats { display: flex; flex-direction: column; gap: 16px; }
.tm-aside-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.tm-aside-tick { color: var(--teal); font-size: 13px; flex: 0 0 auto; }
.tm-aside-split { display: flex; flex-direction: column; gap: 12px; }
.tm-aside-split-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.tm-aside-bar {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  gap: 3px;
}
.tm-seg { border-radius: 999px; }
.tm-seg-exposure { background: rgba(26, 193, 221, 0.55); }
.tm-seg-brand    { background: rgba(255, 251, 244, 0.16); }
.tm-seg-sales    { background: rgba(255, 179, 122, 0.28); }

.tm-aside-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.tm-leg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
}
.tm-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.tm-dot-exposure { background: rgba(26, 193, 221, 0.7); }
.tm-dot-brand    { background: rgba(255, 251, 244, 0.45); }
.tm-dot-sales    { background: rgba(255, 179, 122, 0.55); }

.step2b-tiles .fancy-tile-hero .fancy-tile-num { margin-bottom: 12px; }
.step2b-tiles .fancy-tile-hero .fancy-tile-title {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 10px;
}
.step2b-tiles .fancy-tile-hero .fancy-tile-body {
  font-size: 14px;
  margin-bottom: 0;
}
.step2b-tiles .fancy-tile-hero .fancy-tile-cta { margin-top: auto; }
.step2b-tiles-row .fancy-tile-compact {
  min-height: 0;
  padding: 22px 28px;
  justify-content: flex-start;
}
.step2b-tiles-row .fancy-tile-compact .fancy-tile-num { margin-bottom: 12px; }
.step2b-tiles-row .fancy-tile-compact .fancy-tile-title { margin-bottom: 8px; }
.step2b-tiles-row .fancy-tile-compact .fancy-tile-body { margin-bottom: 0; }
.step2b-tiles-row .fancy-tile-compact .fancy-tile-cta { margin-top: auto; }

@media (max-width: 1024px) {
  .step2b-page { height: auto; max-height: none; overflow: visible; padding: 40px 24px 64px !important; }
  .step2b-tiles-row { grid-template-columns: 1fr; }
  .step2b-lede { white-space: normal; }
}

/* ============================================================================
   STEP 1 — RESTORED SPEC (overrides everything above)
   Two-zone page: matte header / luminous body, glowing cyan seam.
   ========================================================================= */

/* ---- Token additions ---- */
:root {
  --bg-header: #0a1220;
  --bg-body: #0d1d33;
  --cyan: #1fb6c9;
  --cyan-glow: rgba(31, 182, 201, 0.45);
  --border-idle: rgba(255, 255, 255, 0.12);
  --text-muted-spec: rgba(255, 255, 255, 0.75);
  --text-faint-spec: rgba(255, 255, 255, 0.4);
}

/* ---- HEADER ZONE: matte plate + glowing cyan seam ---- */
body:has(.step1-page) .top-nav,
.app-shell:has(.step1-page) .top-nav {
  background: var(--bg-header) !important;
  border-bottom: 1px solid var(--cyan) !important;
  box-shadow: 0 1px 16px var(--cyan-glow);
  position: relative;
  z-index: 5;
}
body:has(.step1-page) .top-nav .brand .wordmark,
.app-shell:has(.step1-page) .top-nav .brand .wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
}

/* ---- BODY ZONE: luminous navy + radial glow under Option B ---- */
.step1-page {
  background:
    radial-gradient(ellipse 800px 600px at 30% 75%,
      rgba(31, 182, 201, 0.18) 0%,
      rgba(31, 182, 201, 0.08) 30%,
      transparent 65%),
    var(--bg-body) !important;
  height: calc(100vh - 72px) !important;
  min-height: 600px;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Kill the dot/grid pattern entirely */
.step1-page .step1-ambient-grain { display: none !important; }
.step1-page .step1-ambient-glow { display: none !important; }
.step1-page .step1-ambient::before,
.step1-page .step1-ambient::after { display: none !important; }

/* ---- ILLUSTRATION (top-right phone) ---- */
.step1-v2 .step1-bg {
  position: absolute;
  top: -20px;
  right: 80px;
  width: 460px;
  max-width: none;
  pointer-events: none;
  z-index: 1;
}
.step1-v2 .step1-bg img {
  width: 100%;
  height: auto;
  display: block;
  transform: translate(var(--phone-px, 0px), var(--phone-py, 0px)) rotate(-57deg);
  transform-origin: center center;
  filter: drop-shadow(0 12px 32px rgba(31, 182, 201, 0.18));
}

/* ---- CONTENT LAYOUT ---- */
.step1-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  padding: 56px 64px 28px 64px;
  gap: 0;
  justify-content: center !important;
}

/* ---- WELCOME HEADING ---- */
.step1-eyebrow {
  position: relative;
  margin: 0 0 56px 0;
  max-width: none;
}
.step1-dot {
  position: absolute;
  top: -20px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(31, 182, 201, 0.6);
}
.step1-eyebrow .apple-reveal {
  font-family: var(--serif) !important;
  font-weight: 500 !important;
  font-size: clamp(40px, 5vw, 68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.02em !important;
  word-spacing: normal !important;
  color: var(--cream) !important;
  margin: 0;
}
.step1-eyebrow .apple-reveal .line {
  display: block;
  word-spacing: 0.12em;
}

/* ---- CARDS ROW ---- */
.step1-tiles-v2 {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px !important;
  grid-template-columns: none !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  margin-top: 8px;
  margin-bottom: 40px;
  align-items: stretch;
  width: 100%;
  justify-content: stretch;
}

/* ---- CARD: idle state ---- */
.step1-tiles-v2 .fancy-tile {
  flex: 1 1 0;
  max-width: none;
  width: 100%;
  padding: 24px 28px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--border-idle) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: border-color 250ms ease-out, background 250ms ease-out, box-shadow 250ms ease-out !important;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Hide background glow + brackets on idle tiles */
.step1-tiles-v2 .fancy-tile .fancy-tile-glow {
  opacity: 0 !important;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(31, 182, 201, 0.12), transparent 70%) !important;
  transition: opacity 250ms ease-out !important;
}
.step1-tiles-v2 .fancy-tile .fancy-tile-bracket {
  opacity: 0 !important;
  border-color: var(--cyan) !important;
  transition: opacity 200ms ease-out !important;
}

/* ---- CARD: hover state ---- */
.step1-tiles-v2 .fancy-tile:hover {
  border-color: rgba(31, 182, 201, 0.5) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  transform: none !important;
  box-shadow: 0 0 32px rgba(31, 182, 201, 0.15) !important;
}
.step1-tiles-v2 .fancy-tile:hover .fancy-tile-glow {
  opacity: 1 !important;
}
/* Brackets stay HIDDEN on hover — only on selected */
.step1-tiles-v2 .fancy-tile:hover .fancy-tile-bracket {
  opacity: 0 !important;
}

/* ---- CARD: selected state ---- */
.step1-tiles-v2 .fancy-tile.selected {
  border: 2px solid var(--cyan) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow:
    0 20px 60px -10px rgba(31, 182, 201, 0.4),
    0 0 40px rgba(31, 182, 201, 0.25) !important;
  transform: none !important;
}
.step1-tiles-v2 .fancy-tile.selected .fancy-tile-glow {
  opacity: 1 !important;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(31, 182, 201, 0.20), transparent 65%) !important;
}
.step1-tiles-v2 .fancy-tile.selected .fancy-tile-bracket {
  opacity: 1 !important;
  border-color: var(--cyan) !important;
}

/* ---- CORNER BRACKETS (selected only) ---- */
.step1-tiles-v2 .fancy-tile-bracket {
  position: absolute;
  width: 20px !important;
  height: 20px !important;
  border-style: solid !important;
  border-width: 0 !important;
}
.step1-tiles-v2 .fancy-tile-bracket-tl {
  top: -6px !important; left: -6px !important;
  border-top-width: 2px !important;
  border-left-width: 2px !important;
}
.step1-tiles-v2 .fancy-tile-bracket-tr {
  top: -6px !important; right: -6px !important;
  border-top-width: 2px !important;
  border-right-width: 2px !important;
}
.step1-tiles-v2 .fancy-tile-bracket-bl {
  bottom: -6px !important; left: -6px !important;
  border-bottom-width: 2px !important;
  border-left-width: 2px !important;
}
.step1-tiles-v2 .fancy-tile-bracket-br {
  bottom: -6px !important; right: -6px !important;
  border-bottom-width: 2px !important;
  border-right-width: 2px !important;
}

/* ---- CARD CONTENT — strict spacing rhythm ---- */
.step1-tiles-v2 .fancy-tile-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--cyan) !important;
  margin: 0 0 12px 0 !important;
  font-weight: 400 !important;
}
.step1-tiles-v2 .fancy-tile-title {
  font-family: 'Cormorant Garamond', 'Prata', Georgia, serif !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
  white-space: nowrap !important;
  letter-spacing: normal !important;
}
.step1-tiles-v2 .fancy-tile-body {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.01em !important;
  color: var(--text-muted-spec) !important;
  margin: 0 0 20px 0 !important;
  max-width: none !important;
}
.step1-tiles-v2 .fancy-tile-cta {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transform: none !important;
  transition: color 250ms ease-out !important;
  margin-top: 0 !important;
}
.step1-tiles-v2 .fancy-tile-cta-arrow {
  width: 24px !important;
  height: 14px !important;
}
.step1-tiles-v2 .fancy-tile-cta-arrow svg path {
  stroke-width: 1.5 !important;
}
.step1-tiles-v2 .fancy-tile:hover .fancy-tile-cta {
  color: var(--cyan) !important;
  transform: none !important;
}
.step1-tiles-v2 .fancy-tile.selected .fancy-tile-cta {
  color: var(--cyan) !important;
  transform: none !important;
}
.step1-tiles-v2 .fancy-tile.selected .fancy-tile-cta-arrow {
  width: 32px !important;
}
.step1-tiles-v2 .fancy-tile.selected .fancy-tile-cta-arrow svg path {
  stroke-width: 2.5 !important;
}

/* ---- BOTTOM CAPTION ---- */
.step1-content .step1-footnote {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 0 96px 32px 96px !important;
  margin: 0 -96px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--text-faint-spec) !important;
  white-space: nowrap !important;
  position: relative;
  z-index: 2;
  flex: 0 0 auto !important;
}
.step1-content .step1-footnote span:empty {
  display: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .step1-content { padding: 48px 32px 0 32px; }
  .step1-content .step1-footnote { padding: 0 32px 32px 32px; margin: 0 -32px; }
  .step1-tiles-v2 { flex-direction: column !important; }
  .step1-v2 .step1-bg { display: none; }
}
