/* ===== Onboarding Page ===== */
.page-onboarding { background: #faf7f0; color: var(--ink); }

/* ===== Hero ===== */
.onb-hero {
  position: relative;
  min-height: 90vh;
  padding: 140px 24px 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(58,107,255,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(110,255,210,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #050813 0%, #0a1638 100%);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.onb-hero-inner { max-width: 880px; position: relative; z-index: 2; }
.onb-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}
.onb-hero h1 em {
  color: var(--blue-bright);
  font-style: italic;
}
.onb-hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 auto;
}
.onb-hero-meta {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-align: left;
}
.onb-hero-meta span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.onb-hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.onb-hero-meta .sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.18);
}
.onb-hero-arrow {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.onb-hero-arrow span {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: arrowDrop 2s ease-in-out infinite;
}
@keyframes arrowDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== Timeline ===== */
.timeline-section {
  position: relative;
  padding: 80px 24px;
  background: #faf7f0;
}
.timeline-progress {
  position: absolute;
  top: 80px; bottom: 80px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-line {
  position: absolute;
  inset: 0;
  background: rgba(20,42,92,0.1);
}
.timeline-line-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to bottom, var(--blue-bright), #6effd2);
  box-shadow: 0 0 20px rgba(58,107,255,0.5);
}

.phase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  grid-template-rows: auto;
  grid-auto-flow: dense;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
  min-height: 720px;
  z-index: 2;
}
.phase .phase-content { grid-column: 1; grid-row: 1; align-self: center; }
.phase .phase-marker  { grid-column: 2; grid-row: 1; align-self: center; justify-self: center; }
.phase .phase-mockup  { grid-column: 3; grid-row: 1; align-self: center; }
.phase.phase-alt .phase-content { grid-column: 3; grid-row: 1; }
.phase.phase-alt .phase-mockup  { grid-column: 1; grid-row: 1; }
.phase.phase-alt .phase-marker  { grid-column: 2; grid-row: 1; }

/* Giant ghost phase number behind content */
.phase-content {
  position: relative;
}
.phase-content::before {
  content: attr(data-num);
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14rem;
  line-height: 0.9;
  color: rgba(58, 107, 255, 0.05);
  letter-spacing: -0.05em;
  z-index: -1;
  pointer-events: none;
}
.phase.phase-alt .phase-content::before {
  left: auto;
  right: -20px;
}

/* Phase-specific accent orbs (drama in the background) */
.phase::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
.phase[data-phase="0"]::before { background: #6effd2; left: -15%; }
.phase[data-phase="1"]::before { background: #3a6bff; right: -15%; }
.phase[data-phase="2"]::before { background: #9b6eff; left: -15%; }
.phase[data-phase="3"]::before { background: #ff8a1f; right: -15%; }
.phase[data-phase="4"]::before { background: #22c55e; left: -15%; }

/* Second orb for layered depth */
.phase::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  top: 30%;
}
.phase[data-phase="0"]::after { background: #3a6bff; right: 10%; }
.phase[data-phase="1"]::after { background: #6effd2; left: 10%; }
.phase[data-phase="2"]::after { background: #ff8acc; right: 10%; }
.phase[data-phase="3"]::after { background: #ffd070; left: 10%; }
.phase[data-phase="4"]::after { background: #00d59a; right: 10%; }

.phase-marker {
  position: relative;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(20,42,92,0.12);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(20,42,92,0.08);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 auto;
}
.phase-marker::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(58,107,255,0.2);
  animation: markerRing 30s linear infinite;
  opacity: 0;
  transition: opacity 0.6s;
}
.phase.in-view .phase-marker {
  background: linear-gradient(135deg, var(--blue-bright), #6effd2);
  color: #fff;
  border-color: #fff;
  box-shadow:
    0 16px 40px rgba(58,107,255,0.5),
    0 0 0 12px rgba(58,107,255,0.1),
    0 0 60px rgba(110,255,210,0.4);
  transform: scale(1.12);
}
.phase.in-view .phase-marker::after { opacity: 1; }
@keyframes markerRing {
  to { transform: rotate(360deg); }
}

.phase-content { padding: 0 8px; }
.phase-meta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}
.free-badge {
  background: #6effd2;
  color: #051030;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.phase-content h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phase-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444;
  margin-bottom: 22px;
}
.phase-list {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.phase-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
  border-bottom: 1px solid rgba(20,42,92,0.06);
}
.phase-list li:last-child { border-bottom: none; }
.phase-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 8px;
  color: var(--blue-bright);
  font-weight: 700;
}
.phase-list li b { color: var(--ink); }
.phase-deliverable {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(58,107,255,0.1), rgba(110,255,210,0.1));
  border-left: 4px solid var(--blue-bright);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2a3149;
  box-shadow: 0 8px 24px rgba(58,107,255,0.08);
}
.del-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.phase-mockup {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Mockups ===== */
.mock {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  box-shadow:
    0 30px 70px rgba(20,42,92,0.18),
    0 0 0 1px rgba(20,42,92,0.04),
    0 60px 100px -30px rgba(58,107,255,0.25);
  overflow: hidden;
  background: #fff;
  transform: rotate(-2deg) translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.mock::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.phase:hover .mock { transform: rotate(0deg) translateY(-8px) scale(1.02); }
.phase.phase-alt .mock { transform: rotate(2deg) translateY(0); }
.phase.phase-alt:hover .mock { transform: rotate(0deg) translateY(-8px) scale(1.02); }

/* Zoom mockup */
.mock-zoom { background: #1a1a2e; color: #fff; padding: 0; }
.mock-zoom-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #2a2a3e;
  font-size: 0.75rem;
}
.zoom-dot { width: 10px; height: 10px; border-radius: 50%; }
.zoom-dot.red { background: #ff5f56; }
.zoom-dot.yellow { background: #ffbd2e; }
.zoom-dot.green { background: #27c93f; }
.zoom-title { margin-left: 10px; opacity: 0.75; flex: 1; }
.zoom-rec { color: #ff4060; font-weight: 600; font-size: 0.7rem; }
.mock-zoom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px;
  background: #0d0d1a;
}
.zoom-tile {
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
}
.zoom-tile-you { background: linear-gradient(135deg, #2d4a7d, #1d2e5f); }
.zoom-tile-bts { background: linear-gradient(135deg, #142a5c, #08113a); }
.zoom-avatar { font-size: 1.6rem; }
.zoom-avatar-img { width: 36px; height: 36px; }
.zoom-name {
  position: absolute; bottom: 6px; left: 8px;
  font-size: 0.7rem; color: rgba(255,255,255,0.85);
}
.mock-zoom-roi {
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
.roi-mini-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  padding: 4px 0;
  color: #555;
}
.roi-mini-row.big {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  padding: 6px 0;
}
.roi-mini-row b { font-variant-numeric: tabular-nums; }
.roi-mini-bar {
  height: 6px;
  background: rgba(58,107,255,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.roi-mini-bar-fill {
  height: 100%; width: 70%;
  background: linear-gradient(90deg, var(--blue-bright), #6effd2);
  animation: barGrow 2s ease-out infinite alternate;
}
@keyframes barGrow {
  from { width: 30%; }
  to { width: 75%; }
}

/* PDF mockup */
.mock-pdf {
  background: #fff;
  padding: 18px 18px 0;
  position: relative;
}
.pdf-page { font-size: 0.7rem; }
.pdf-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}
.pdf-logo {
  background: var(--navy); color: #fff;
  padding: 4px 8px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700;
}
.pdf-title { font-size: 0.65rem; letter-spacing: 0.1em; color: #666; font-weight: 600; }
.pdf-line {
  height: 6px;
  background: #ececec;
  border-radius: 2px;
  margin: 7px 0;
}
.pdf-line.w-90 { width: 90%; }
.pdf-line.w-85 { width: 85%; }
.pdf-line.w-80 { width: 80%; }
.pdf-line.w-75 { width: 75%; }
.pdf-line.w-70 { width: 70%; }
.pdf-line.w-60 { width: 60%; }
.pdf-line.w-95 { width: 95%; }
.pdf-section { margin: 16px 0; }
.pdf-section-h {
  height: 10px; width: 50%;
  background: var(--navy);
  border-radius: 2px;
  margin-bottom: 8px;
}
.pdf-quote-box {
  background: linear-gradient(135deg, rgba(58,107,255,0.08), rgba(110,255,210,0.08));
  border: 1px solid rgba(58,107,255,0.2);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
  margin: 16px 0;
  font-size: 0.78rem;
}
.pdf-quote-box b {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--blue);
}
.pdf-stamp {
  position: absolute;
  top: 30px; right: -10px;
  background: #6effd2;
  color: #051030;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 14px;
  letter-spacing: 0.15em;
  border-radius: 4px;
  transform: rotate(8deg);
  box-shadow: 0 4px 12px rgba(110,255,210,0.4);
}

/* Loom mockup */
.mock-loom { background: #f5f3ed; padding: 14px; }
.loom-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #4d3a96, #6e4ec9);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.loom-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(110,255,210,0.18), transparent 40%);
}
.loom-play {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.loom-overlay {
  position: absolute;
  top: 10px; left: 12px;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #fff;
}
.loom-time {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.loom-caption {
  display: flex; align-items: center; gap: 10px;
  padding: 4px;
  font-size: 0.82rem;
}
.loom-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); padding: 3px; }
.loom-caption b { display: block; }
.loom-caption span { color: #666; font-size: 0.78rem; }
.staging-pill {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(20,42,92,0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
  color: #444;
}
.staging-dot {
  width: 7px; height: 7px;
  background: #6effd2;
  border-radius: 50%;
  box-shadow: 0 0 8px #6effd2;
  animation: liveBlink 1.4s infinite;
}
.staging-arrow { color: var(--blue-bright); margin-left: auto; }

/* Launch mockup */
.mock-launch {
  background: linear-gradient(135deg, #142a5c, #2547a8);
  color: #fff;
  padding: 30px 24px;
  text-align: center;
  position: relative;
}
.launch-celebrate { position: relative; }
.celebrate-burst {
  position: absolute;
  width: 4px; height: 4px;
  background: #6effd2;
  border-radius: 50%;
  box-shadow: 0 0 12px #6effd2;
}
.celebrate-burst:nth-child(1) { top: 0; left: 20%; animation: confetti 2s ease-out infinite; }
.celebrate-burst:nth-child(2) { top: 10px; right: 25%; animation: confetti 2.4s ease-out infinite 0.5s; background: #ffd070; box-shadow: 0 0 12px #ffd070; }
.celebrate-burst:nth-child(3) { top: 30px; left: 70%; animation: confetti 1.9s ease-out infinite 1s; background: #ff8acc; box-shadow: 0 0 12px #ff8acc; }
@keyframes confetti {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(80px) scale(0.3); opacity: 0; }
}
.launch-icon { font-size: 3rem; margin-bottom: 8px; animation: launchBob 2s ease-in-out infinite; }
@keyframes launchBob {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}
.launch-celebrate h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.launch-celebrate p {
  font-family: 'Courier New', monospace;
  color: #6effd2;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.launch-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  padding: 5px 12px;
  background: rgba(110,255,210,0.15);
  border-radius: 999px;
  margin-bottom: 16px;
}
.status-dot.green { width: 7px; height: 7px; background: #6effd2; border-radius: 50%; box-shadow: 0 0 8px #6effd2; }
.launch-handover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.launch-handover span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

/* Dashboard mockup */
.mock-dashboard {
  background: #fff;
  padding: 16px 18px;
}
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}
.dash-title { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.dash-period { font-size: 0.78rem; color: #888; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.dash-stat {
  background: linear-gradient(135deg, rgba(58,107,255,0.06), rgba(110,255,210,0.06));
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.dash-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 4px;
}
.dash-stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.dash-trend {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 4px;
}
.dash-trend.up { color: #16a34a; }
.dash-chart {
  display: flex;
  align-items: flex-end;
  height: 80px;
  gap: 6px;
  padding-top: 8px;
}
.dash-chart .bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, rgba(58,107,255,0.25), rgba(58,107,255,0.6));
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease-out;
}
.dash-chart .bar.tall {
  background: linear-gradient(to top, #6effd2, #00d59a);
  box-shadow: 0 0 12px rgba(110,255,210,0.5);
}

/* ===== A week ===== */
.week-section {
  background: linear-gradient(180deg, #faf7f0 0%, #f5f1e6 100%);
  padding: 100px 24px;
  text-align: center;
}
.week-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.week-section .lede { max-width: 600px; margin: 0 auto 50px; }
.week-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.week-card {
  background: #fff;
  border: 1px solid rgba(20,42,92,0.08);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  transition: all 0.3s;
}
.week-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,42,92,0.1);
}
.week-day {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--blue);
  background: rgba(58,107,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.week-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.week-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}

/* ===== Guarantees ===== */
.guarantees-section {
  background: linear-gradient(135deg, #050813 0%, #0a1638 100%);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
}
.guarantees-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  margin: 8px 0 50px;
  letter-spacing: -0.02em;
}
.guarantees-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guarantee {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.guarantee:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(110,255,210,0.4);
}
.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.guarantee h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.guarantee p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

/* ===== CTA ===== */
.onb-cta {
  position: relative;
  background: #000;
  padding: 120px 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.onb-cta .warp-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.onb-cta .warp-copy { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.onb-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.onb-cta .lede.light { color: rgba(255,255,255,0.78); }
.onb-cta .warp-btn { margin-top: 32px; }
.onb-cta .micro {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .timeline-section { padding: 40px 20px; }
  .timeline-progress { left: 40px; right: auto; }

  .phase {
    grid-template-columns: 60px 1fr;
    grid-auto-flow: row;
    gap: 20px;
    padding: 50px 0;
    min-height: 0;
    max-width: 100%;
  }
  .phase .phase-marker,
  .phase.phase-alt .phase-marker {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
    width: 60px; height: 60px;
    font-size: 1.2rem;
    border-width: 2px;
  }
  .phase .phase-marker::after,
  .phase.phase-alt .phase-marker::after { display: none; }

  .phase .phase-content,
  .phase.phase-alt .phase-content {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 0;
  }
  .phase .phase-mockup,
  .phase.phase-alt .phase-mockup {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0;
    margin-top: 24px;
    align-self: start;
  }

  /* Hide ghost numbers + simplify orbs on mobile */
  .phase-content::before,
  .phase.phase-alt .phase-content::before { display: none; }
  .phase::before {
    width: 360px; height: 360px;
    filter: blur(80px);
    opacity: 0.18;
    left: -30%;
  }
  .phase[data-phase="1"]::before,
  .phase[data-phase="3"]::before { left: auto; right: -30%; }
  .phase::after { display: none; }

  .phase-content h2 {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  .phase-lede { font-size: 0.95rem; }
  .phase-list li { font-size: 0.9rem; padding: 7px 0 7px 22px; }
  .phase-deliverable { padding: 14px 16px; font-size: 0.88rem; }

  .mock { max-width: 100%; transform: rotate(0deg) !important; }

  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .onb-hero-meta { flex-direction: column; gap: 14px; padding: 16px 20px; }
  .onb-hero-meta .sep { width: 32px; height: 1px; }
}
@media (max-width: 560px) {
  .week-grid, .guarantees-grid { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 50px 1fr; gap: 16px; }
  .phase .phase-marker { width: 50px; height: 50px; font-size: 1rem; }
  .phase-content h2 { font-size: 1.6rem; }
}
