@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Syne:wght@500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --ink-950: #080706;
  --ink-900: #0d0b0a;
  --ink-850: #13100e;
  --ink-800: #191512;
  --ink-750: #211b17;
  --ivory-50: #fffaf5;
  --ivory-100: #f6eee7;
  --ivory-200: #ddcfc4;
  --ivory-300: #b8a89d;
  --ivory-400: #8d8077;
  --orange-500: #ff4a18;
  --orange-400: #ff6539;
  --orange-glow: rgba(255, 74, 24, .18);
  --mint-400: #85d7bd;
  --line: rgba(255, 250, 245, .11);
  --line-soft: rgba(255, 250, 245, .065);
  --surface: rgba(25, 21, 18, .72);
  --surface-strong: rgba(33, 27, 23, .9);
  --shadow-1: 0 2px 4px rgba(8, 7, 6, .2), 0 12px 36px rgba(8, 7, 6, .24), 0 32px 80px rgba(8, 7, 6, .2);
  --radius: 4px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --section: clamp(88px, 11vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% -10%, rgba(255, 74, 24, .10), transparent 28rem),
    radial-gradient(circle at 8% 24%, rgba(109, 92, 80, .12), transparent 30rem),
    var(--ink-950);
  color: var(--ivory-100);
  font: 400 16px/1.65 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { touch-action: manipulation; }
img, svg { max-width: 100%; }
::selection { background: var(--orange-500); color: var(--ivory-50); }

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--ivory-50);
  color: var(--ink-950);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section); }
.section + .section { border-top: 1px solid var(--line-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--ivory-300);
  font: 600 11px/1 'Manrope', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange-500); }
.kicker { color: var(--orange-400); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Syne', sans-serif; }
h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--ivory-50);
  font-size: clamp(50px, 8.3vw, 126px);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 700;
}
h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 245, .48);
}
h1 .accent, h2 .accent { color: var(--orange-500); }
h2 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--ivory-50);
  font-size: clamp(38px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 650;
}
h3 { color: var(--ivory-50); font-size: 22px; line-height: 1.15; letter-spacing: -.025em; }
.lede {
  max-width: 680px;
  margin-bottom: 36px;
  color: var(--ivory-200);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.section-intro { max-width: 680px; color: var(--ivory-300); font-size: 18px; }
.micro { color: var(--ivory-400); font-size: 13px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 7, 6, .78);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; color: var(--ivory-50); text-decoration: none; }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--orange-500);
  color: var(--ink-950);
  font: 800 17px/1 'Syne', sans-serif;
}
.brand-copy { font: 700 13px/1.1 'Syne', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.brand-copy small { display: block; margin-top: 5px; color: var(--ivory-400); font: 600 8px/1 'Manrope', sans-serif; letter-spacing: .2em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ivory-300);
  font: 600 11px/1 'Manrope', sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--ivory-50); }
.nav-links .nav-cta { padding: 13px 17px; border: 1px solid rgba(255, 74, 24, .5); color: var(--ivory-50); }

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: flex;
  align-items: flex-end;
  padding-block: 150px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
  opacity: .42;
}
.hero-orb {
  position: absolute;
  width: min(65vw, 880px);
  aspect-ratio: 1;
  inset: -18% -10% auto auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.16), transparent 4%),
    radial-gradient(circle at 45% 40%, rgba(255,74,24,.38), transparent 21%),
    conic-gradient(from 90deg, rgba(255,74,24,.02), rgba(255,255,255,.13), rgba(255,74,24,.32), transparent 68%);
  filter: blur(2px);
  opacity: .55;
  animation: orb-breathe 14s var(--ease) infinite alternate;
}
.hero-orb::after {
  content: '';
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0,0,0,.72), 0 0 90px rgba(255,74,24,.1);
}
@keyframes orb-breathe { to { transform: translate(-3%, 5%) scale(1.08) rotate(8deg); opacity: .72; } }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: clamp(40px, 7vw, 96px); align-items: end; }
.hero-copy { min-width: 0; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ivory-50);
  font: 700 12px/1 'Manrope', sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.25) 50%, transparent 75%);
  transform: translateX(-115%);
  transition: transform 620ms var(--ease);
}
.button:hover::before { transform: translateX(115%); }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--orange-500); background: var(--orange-500); box-shadow: 0 12px 44px var(--orange-glow); }
.button-primary:hover { background: var(--orange-400); box-shadow: 0 18px 56px rgba(255, 74, 24, .24); }
.button-secondary { background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: var(--ivory-300); background: rgba(255,255,255,.05); }
.button svg { width: 17px; height: 17px; transition: transform 180ms ease; }
.button:hover svg { transform: translateX(3px); }
.button:focus-visible, .nav a:focus-visible, summary:focus-visible, .category-card:focus-visible { outline: 3px solid var(--ivory-50); outline-offset: 4px; }

.hero-panel, .spotlight-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(33,27,23,.9), rgba(13,11,10,.82));
  box-shadow: var(--shadow-1);
}
.spotlight-card::before, .hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mouse-x) var(--mouse-y), rgba(255, 101, 57, .15), transparent 55%);
  opacity: 0;
  transition: opacity 360ms ease;
}
.spotlight-card:hover::before, .spotlight-card:focus-within::before, .hero-panel:hover::before { opacity: 1; }
.hero-panel { padding: 28px; }
.panel-top { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.panel-label { color: var(--ivory-300); font: 600 10px/1.3 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--mint-400); }
.live-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 18px currentColor; }
.flow-visual { padding-block: 28px 12px; }
.flow-visual svg { width: 100%; height: auto; overflow: visible; }
.flow-path { stroke-dasharray: 8 8; animation: path-move 18s linear infinite; }
@keyframes path-move { to { stroke-dashoffset: -240; } }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 16px; background: var(--line); }
.panel-stat { min-width: 0; padding: 14px 12px; background: rgba(8,7,6,.74); }
.panel-stat b { display: block; margin-bottom: 4px; color: var(--ivory-50); font: 700 15px/1.2 'Syne', sans-serif; }
.panel-stat span { color: var(--ivory-400); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.proof-strip { border-block: 1px solid var(--line-soft); background: rgba(255,255,255,.018); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 28px 24px; border-inline-end: 1px solid var(--line-soft); }
.proof-item:last-child { border-inline-end: 0; }
.proof-item strong { display: block; color: var(--ivory-50); font: 700 19px/1.2 'Syne', sans-serif; }
.proof-item span { color: var(--ivory-400); font-size: 13px; }

.split { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 9vw, 128px); align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.signal-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.signal { position: relative; padding: 32px; background: var(--ink-900); }
.signal small { color: var(--orange-400); font: 700 10px/1 'Manrope', sans-serif; letter-spacing: .14em; }
.signal p { margin: 14px 0 0; color: var(--ivory-200); font-size: 18px; }

.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 56px; }
.category-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(33,27,23,.8), rgba(13,11,10,.92));
  color: inherit;
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}
.category-card:nth-child(1), .category-card:nth-child(4) { grid-column: span 7; }
.category-card:nth-child(2), .category-card:nth-child(3) { grid-column: span 5; }
.category-card:hover { transform: translateY(-5px); border-color: rgba(255,74,24,.55); background: linear-gradient(150deg, rgba(44,30,24,.92), rgba(13,11,10,.96)); }
.category-num { color: var(--ivory-400); font: 600 11px/1 'Manrope', sans-serif; letter-spacing: .16em; }
.category-card h3 { max-width: 430px; margin-bottom: 14px; font-size: clamp(28px, 3vw, 46px); }
.category-card p { max-width: 500px; margin-bottom: 0; color: var(--ivory-300); }
.category-link { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--orange-400); font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .1em; text-transform: uppercase; }

.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.deliverable { min-height: 280px; padding: 32px; }
.deliverable-wide { grid-column: span 2; }
.deliverable-index { display: block; margin-bottom: 64px; color: var(--orange-400); font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .12em; }
.deliverable p { margin-bottom: 0; color: var(--ivory-300); }
.icon-line { width: 42px; height: 42px; margin-bottom: 30px; color: var(--orange-400); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border-block: 1px solid var(--line); }
.process-step { position: relative; min-height: 360px; padding: 36px 28px; border-inline-end: 1px solid var(--line); }
.process-step:last-child { border-inline-end: 0; }
.process-step::after { content: ''; position: absolute; inset: auto 28px 0; height: 3px; background: var(--orange-500); transform: scaleX(0); transform-origin: left; transition: transform 420ms var(--ease); }
.process-step:hover::after { transform: scaleX(1); }
.step-num { color: var(--orange-400); font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .14em; }
.step-day { display: block; margin: 58px 0 12px; color: var(--ivory-400); font-size: 13px; }
.process-step p { color: var(--ivory-300); }

.price-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .65fr); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-1); }
.price-copy { padding: clamp(36px, 6vw, 80px); }
.price-copy h2 { font-size: clamp(46px, 6vw, 86px); }
.price-panel { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px, 5vw, 64px); border-inline-start: 1px solid var(--line); background: var(--ink-900); }
.price-overline { color: var(--orange-400); font: 700 10px/1 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.price { margin-block: 24px 10px; color: var(--ivory-50); font: 700 clamp(48px, 6vw, 78px)/.9 'Syne', sans-serif; letter-spacing: -.05em; }
.price small { font-size: 14px; letter-spacing: 0; color: var(--ivory-400); }
.price-list { list-style: none; margin: 28px 0 36px; padding: 0; }
.price-list li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line-soft); color: var(--ivory-200); }
.price-list li::before { content: ''; position: absolute; inset: 20px auto auto 0; width: 8px; height: 8px; border: 1px solid var(--orange-500); transform: rotate(45deg); }

.quote-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; margin-top: 56px; }
.quote { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: 36px; }
.quote blockquote { margin: 0; color: var(--ivory-100); font: 500 clamp(22px, 2.4vw, 34px)/1.35 'Syne', sans-serif; letter-spacing: -.025em; }
.quote cite { margin-top: 32px; color: var(--ivory-400); font-style: normal; font-size: 13px; }
.quote cite strong { display: block; color: var(--ivory-200); }

.faq-list { max-width: 900px; margin-top: 56px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; color: var(--ivory-50); cursor: pointer; font: 600 19px/1.35 'Syne', sans-serif; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; flex: 0 0 auto; color: var(--orange-400); font: 400 26px/1 'Manrope', sans-serif; transition: transform 180ms ease; }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 720px; padding: 0 0 28px; color: var(--ivory-300); }
.faq-answer p:last-child { margin-bottom: 0; }

.closing { text-align: center; overflow: hidden; }
.closing h2 { max-width: 1050px; margin-inline: auto; }
.closing .section-intro { margin-inline: auto; }
.closing .cta-row { justify-content: center; margin-top: 40px; }
.closing-ring { position: absolute; width: min(78vw, 960px); aspect-ratio: 1; inset: 15% auto auto 50%; transform: translateX(-50%); border: 1px solid rgba(255,74,24,.16); border-radius: 50%; pointer-events: none; }
.closing-ring::before, .closing-ring::after { content: ''; position: absolute; inset: 12%; border: inherit; border-radius: inherit; }
.closing-ring::after { inset: 25%; }

.site-footer { border-top: 1px solid var(--line); padding-block: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(2, .7fr); gap: 48px; }
.footer-brand p { max-width: 440px; margin: 20px 0 0; color: var(--ivory-400); }
.footer-col h3 { margin-bottom: 18px; color: var(--ivory-300); font: 700 10px/1 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin-block: 12px; color: var(--ivory-300); text-decoration: none; }
.footer-col a:hover { color: var(--ivory-50); }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--ivory-400); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 680ms var(--ease), transform 680ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay='1'] { transition-delay: 80ms; }
.reveal[data-delay='2'] { transition-delay: 160ms; }
.reveal[data-delay='3'] { transition-delay: 240ms; }

.dentist-theme { --orange-500: #5ee0c2; --orange-400: #8aecd5; --orange-glow: rgba(94, 224, 194, .16); }
.dentist-theme .hero-orb { background: radial-gradient(circle at 38% 34%, rgba(255,255,255,.23), transparent 4%), radial-gradient(circle at 48% 44%, rgba(94,224,194,.34), transparent 22%), conic-gradient(from 90deg, rgba(94,224,194,.03), rgba(255,255,255,.14), rgba(94,224,194,.25), transparent 68%); }
.smile-console { padding: 26px; }
.smile-stage { position: relative; min-height: 340px; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.smile-stage::before { content: ''; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(94,224,194,.22); border-radius: 50%; box-shadow: 0 0 80px rgba(94,224,194,.08); }
.smile-stage svg { position: relative; width: 260px; overflow: visible; }
.smile-line { stroke-dasharray: 420; stroke-dashoffset: 420; animation: smile-draw 3.2s var(--ease) forwards .5s; }
@keyframes smile-draw { to { stroke-dashoffset: 0; } }
.console-note { position: absolute; max-width: 145px; padding: 10px 12px; border: 1px solid var(--line); background: rgba(8,7,6,.88); color: var(--ivory-300); font-size: 10px; line-height: 1.4; }
.note-a { inset: 24px auto auto 8px; }
.note-b { inset: auto 0 28px auto; }
.care-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.care-card { min-height: 250px; padding: 30px; }
.care-card span { color: var(--orange-400); font: 700 10px/1 'Manrope', sans-serif; letter-spacing: .12em; }
.care-card h3 { margin-top: 56px; }
.care-card p { color: var(--ivory-300); margin-bottom: 0; }
.answer-block { max-width: 880px; margin-top: 40px; padding-inline-start: 28px; border-inline-start: 2px solid var(--orange-500); }
.answer-block p { color: var(--ivory-200); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.55; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .split, .price-shell { grid-template-columns: 1fr; }
  .hero-grid { align-items: start; }
  .hero-panel { max-width: 680px; }
  .sticky-copy { position: static; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-inline-end: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .price-panel { border-inline-start: 0; border-top: 1px solid var(--line); }
  .proof-grid, .care-paths { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-inline-end: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 720px) {
  :root { --section: 88px; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { position: absolute; background: rgba(8,7,6,.5); }
  .nav { min-height: 68px; }
  .brand-copy small, .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 8px; }
  .nav-links .nav-cta { padding: 12px; }
  .hero { padding-block: 118px 64px; }
  .hero-orb { width: 100vw; inset: -5% -42% auto auto; opacity: .4; }
  h1 { font-size: clamp(48px, 16vw, 76px); line-height: .91; }
  .panel-stats { grid-template-columns: 1fr; }
  .category-grid, .deliverable-grid, .quote-grid, .care-paths { grid-template-columns: 1fr; }
  .category-card:nth-child(n), .deliverable-wide { grid-column: span 1; }
  .category-card { min-height: 280px; }
  .price-shell, .price-copy, .price-panel { min-width: 0; width: 100%; }
  .price-copy, .price-panel { padding: 32px; }
  .price { font-size: clamp(44px, 15vw, 62px); overflow-wrap: anywhere; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 280px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(3) { border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-inline-end: 0; border-bottom: 1px solid var(--line-soft); }
  .proof-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal { flex-direction: column; }
  .smile-stage { min-height: 290px; }
  .console-note { max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
