/* SaludBot landing — editorial design (see design handoff). Plain CSS, no build step. */
:root {
  --cream: #F5F1EA;
  --surface: #FBF8F2;
  --ink: #141A2E;
  --blue: #1F3A93;
  --blue-hover: #162B70;
  --coral: #F26B4E;
  --muted: #4E5566;
  --subtle: #8A8F9C;
  --line: rgba(20, 26, 46, .12);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: 'Newsreader', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --gutter: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
em { font-style: italic; }
.display { font-family: var(--display); font-weight: 400; }
.container { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 120px 0; scroll-margin-top: 64px; }
.deco { position: absolute; border-radius: 9999px; pointer-events: none; will-change: transform; }
.glow-blue { background: radial-gradient(circle, rgba(31, 58, 147, var(--a, .2)), rgba(31, 58, 147, 0) 60%); }
.glow-coral { background: radial-gradient(circle, rgba(242, 107, 78, var(--a, .26)), rgba(242, 107, 78, 0) 60%); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 300px)), 1fr)); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--coral); }
.eyebrow.coral { color: var(--coral); }
.micro { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); }
.h2 { margin-top: 24px; font-family: var(--display); font-weight: 400; font-size: clamp(38px, 4.2vw, 64px); line-height: 1; letter-spacing: -.03em; text-wrap: balance; }
.lead { font-size: 18px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.arrow { font-family: var(--display); font-size: 22px; line-height: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px; border: 0; border-radius: 2px; cursor: pointer;
  font-size: 15px; font-weight: 600;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn-shimmer {
  color: var(--cream);
  background: linear-gradient(110deg, #1F3A93, #2B4DB8, #1F3A93);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
.btn-shimmer:hover { box-shadow: 0 22px 40px -18px rgba(31, 58, 147, .8); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--cream); color: var(--blue); box-shadow: 0 22px 40px -18px rgba(0, 0, 0, .6); }
.btn-ink { background: var(--ink); color: var(--cream); padding: 20px 32px; font-size: 16px; }
.btn-ink:hover { background: var(--blue); box-shadow: 0 22px 40px -18px rgba(20, 26, 46, .7); }
.link-underline { font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: all .25s; }
.link-underline:hover { color: var(--coral); border-color: var(--coral); }

/* ---------- Progress + nav ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 50;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transform-origin: left; transform: scaleX(0);
}
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  background: rgba(245, 241, 234, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 26, 46, .1);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height .4s var(--ease), box-shadow .4s;
}
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo span:first-child { font-family: var(--display); font-size: 26px; letter-spacing: -.02em; }
.logo-dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--coral); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { font-weight: 600 !important; padding: 9px 16px; border: 1px solid var(--ink); border-radius: 2px; white-space: nowrap; transition: all .25s; }
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 140px 0 96px; }
.hero-grid { --min: 320px; gap: 64px 48px; align-items: center; }
.hero h1 { margin-top: 28px; font-family: var(--display); font-weight: 400; font-size: clamp(46px, 5.4vw, 80px); line-height: 1; letter-spacing: -.03em; text-wrap: balance; }
.rise { display: block; overflow: hidden; padding-bottom: .08em; }
.rise > span { display: block; animation: rise 1.1s var(--ease) both; }
.hero .lead { margin-top: 28px; max-width: 500px; }
.hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.fade-in { animation: fade 1s var(--ease) both; }

.mock { position: relative; min-height: 760px; transform-style: preserve-3d; animation: fade 1.2s var(--ease) .5s both; }
.panel-wrap { position: absolute; right: 0; top: 0; width: min(100%, 380px); }
.panel {
  transform: rotate(1.5deg); background: var(--surface); border: 1px solid rgba(20, 26, 46, .1); border-radius: 6px;
  padding: 22px; box-shadow: 0 30px 60px -40px rgba(20, 26, 46, .4);
}
.panel-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid rgba(20, 26, 46, .1); }
.panel-head .display { font-size: 22px; }
.panel-count { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.panel-rows { display: grid; gap: 4px; margin-top: 10px; font-size: 13px; }
.row { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding: 10px 8px; border-radius: 3px; transition: background .8s; }
.row b { font-weight: 600; color: var(--muted); }
.row small { font-size: inherit; color: var(--subtle); }
.row .state { font-size: 11px; font-weight: 600; color: var(--blue); }
.row .state.ok { color: #0F6B45; }
.row .pill { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 2px; transition: all .8s; color: #8A2E18; background: #FDE3DB; }
.row.confirmed { background: #E3E8F7; }
.row.confirmed .pill { color: var(--blue); background: rgba(31, 58, 147, .12); }

.chat-wrap { position: absolute; left: 0; top: 230px; width: min(78%, 320px); }
.phone { background: var(--ink); border-radius: 22px; padding: 8px; box-shadow: 0 50px 80px -40px rgba(20, 26, 46, .6); animation: float 7s ease-in-out infinite; }
.screen { background: #ECE5DD; border-radius: 16px; overflow: hidden; }
.chat-head { background: var(--blue); padding: 12px 14px; display: flex; align-items: center; gap: 10px; color: #fff; }
.avatar { width: 30px; height: 30px; border-radius: 9999px; background: rgba(255, 255, 255, .25); display: grid; place-items: center; font-family: var(--display); font-size: 15px; }
.chat-head p { font-size: 13px; font-weight: 600; }
.chat-head p + p { font-size: 11px; font-weight: 400; color: rgba(255, 255, 255, .7); }
.chat { padding: 14px 12px; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.msg { display: flex; animation: pop .5s var(--ease) both; transform-origin: bottom left; }
.msg.me { justify-content: flex-end; transform-origin: bottom right; }
.msg p { max-width: 82%; padding: 8px 12px; font-size: 13px; line-height: 1.45; color: #1f2937; background: #fff; border-radius: 12px 12px 12px 2px; box-shadow: 0 1px 2px rgba(0, 0, 0, .06); }
.msg.me p { background: #DCF8C6; border-radius: 12px 12px 2px 12px; }
.typing { display: flex; gap: 4px; padding: 10px 14px; background: #fff; border-radius: 12px 12px 12px 2px; }
.typing span { width: 6px; height: 6px; border-radius: 9999px; background: #6b7280; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

/* ---------- Facts ---------- */
.facts { padding-bottom: 96px; }
.rule { height: 1px; background: var(--ink); }
.facts-grid { --min: 200px; gap: 24px; padding-top: 28px; }
.facts-grid .display { margin-top: 8px; font-size: 30px; letter-spacing: -.02em; }
.facts-grid .dot { color: var(--coral); }

/* ---------- Product ---------- */
.product { position: relative; overflow: hidden; background: linear-gradient(180deg, #FBF8F2, #F5F1EA 60%, #FBF8F2); border-block: 1px solid rgba(20, 26, 46, .08); }
.product-grid { gap: 64px; align-items: start; }
.sticky { position: sticky; top: 110px; }
.product .lead { margin-top: 24px; max-width: 420px; font-size: 17px; }
.specs { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.specs span { font-family: var(--display); font-style: italic; font-size: 20px; display: inline-flex; align-items: center; gap: 20px; }
.specs span::after { content: "✱"; font-style: normal; font-size: 12px; color: var(--coral); }
.features { border-top: 1px solid var(--ink); }
.feature { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.feature:hover { padding-left: 12px; }
.feature .num { font-family: var(--display); font-size: 32px; color: var(--blue); line-height: 1; }
.feature:last-child .num { color: var(--coral); }
.feature h3 { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: -.02em; }
.feature p, .step p { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }

/* ---------- How it works ---------- */
/* Specialty cards (home → one page per specialty) */
.verticals-grid { --min: 260px; gap: 20px; }
.vertical { display: flex; flex-direction: column; gap: 14px; padding: 32px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.vertical h3 { font-family: var(--display); font-weight: 400; font-size: 30px; letter-spacing: -.02em; }
.vertical p { font-size: 15px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.vertical .link-underline { margin-top: auto; align-self: flex-start; }
.vertical.active { background: var(--ink); border-color: var(--ink); color: var(--cream); transition: transform .4s var(--ease); }
.vertical.active:hover { transform: translateY(-4px); }
.vertical.active p { color: rgba(245, 241, 234, .72); }
.vertical.active .micro { color: var(--coral); }
.vertical.active .link-underline { border-color: var(--cream); }
.vertical.soon { border-style: dashed; background: transparent; }

.how-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 56px; }
.how-head > p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 300px; }
.steps { position: relative; }
.steps .rule { position: absolute; top: 28px; left: 0; right: 0; }
.steps-grid { --min: 240px; gap: 40px; }
.step { position: relative; padding-top: 64px; }
.step-num { position: absolute; top: 0; left: 0; width: 56px; height: 56px; border-radius: 9999px; background: var(--cream); border: 1px solid var(--ink); display: grid; place-items: center; font-family: var(--display); font-size: 24px; }
.step:last-child .step-num { background: var(--coral); border-color: var(--coral); color: #fff; }
.step h3 { font-family: var(--display); font-weight: 400; font-size: 28px; letter-spacing: -.02em; }

/* ---------- Founding clinics ---------- */
.founders { position: relative; overflow: hidden; color: var(--cream); background: linear-gradient(160deg, #1F3A93 0%, #182E78 55%, #141A2E 100%); }
.founders-grid { gap: 64px; align-items: center; }
.founders h2 { font-size: clamp(40px, 4.6vw, 72px); line-height: .98; }
.founders .lead { margin-top: 28px; max-width: 520px; color: rgba(245, 241, 234, .8); }
.founders .btn { margin-top: 40px; }
.founders .lead .link-underline { border-color: var(--cream); white-space: nowrap; }
.founders .micro { color: rgba(245, 241, 234, .6); }
.slots { margin-top: 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.slot {
  aspect-ratio: 1; border-radius: 3px; display: grid; place-items: center; overflow: hidden; padding: 6px; text-align: center;
  font-family: var(--display); font-size: 22px; color: rgba(245, 241, 234, .5);
  border: 1px dashed rgba(245, 241, 234, .4); background: none; cursor: pointer; transition: all .3s;
}
.slot:hover, .slot:focus-visible { border-style: solid; border-color: var(--coral); color: var(--coral); outline: none; }
.slot.taken { cursor: default; border-style: solid; border-color: rgba(245, 241, 234, .25); background: rgba(245, 241, 234, .08); color: rgba(245, 241, 234, .75); }
.slot.taken:hover { border-color: rgba(245, 241, 234, .25); color: rgba(245, 241, 234, .75); }
.slot.approved { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.slot img { width: 100%; height: 100%; object-fit: contain; }
.slot .slot-name { font-family: var(--body); font-size: 10px; font-weight: 600; line-height: 1.2; overflow-wrap: anywhere; }
.slot .slot-tag { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
.slots-note { margin-top: 14px; font-size: 13px; color: rgba(245, 241, 234, .6); }
.perks { margin-top: 36px; border-top: 1px solid rgba(245, 241, 234, .2); }
.perks li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(245, 241, 234, .2); font-size: 15px; line-height: 1.5; }
.perks li::before { content: "✓"; color: var(--coral); font-family: var(--display); font-size: 20px; line-height: 1.1; }

/* ---------- FAQ ---------- */
.faq-grid { gap: 48px; align-items: start; }
.faq-grid .h2 { font-size: clamp(38px, 4.2vw, 56px); }
.faq { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid rgba(20, 26, 46, .15); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left; }
.faq-q span:first-child { font-family: var(--display); font-size: 23px; line-height: 1.25; letter-spacing: -.01em; }
.faq-plus { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9999px; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 20px; font-weight: 300; transition: transform .4s var(--ease); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 56px 24px 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

/* ---------- Final CTA + footer ---------- */
.closing { position: relative; overflow: hidden; padding: 140px 0 120px; border-top: 1px solid rgba(20, 26, 46, .1); text-align: center; }
.closing .container { max-width: 1000px; }
.closing h2 { font-family: var(--display); font-weight: 400; font-size: clamp(44px, 6.2vw, 96px); line-height: .96; letter-spacing: -.035em; text-wrap: balance; }
.closing .btn { margin-top: 48px; }
.footer { border-top: 1px solid var(--ink); padding: 32px 0; }
.footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); }
.footer .display { font-size: 20px; color: var(--ink); }
.footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer nav a:hover { color: var(--coral); }
.footer nav a { color: var(--ink); }

/* ---------- Application form (dialog) ---------- */
.apply { width: min(560px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: 6px; background: var(--surface); color: var(--ink); box-shadow: 0 50px 80px -40px rgba(20, 26, 46, .6); }
.apply::backdrop { background: rgba(20, 26, 46, .55); backdrop-filter: blur(4px); }
.apply[open] { animation: pop .4s var(--ease) both; }
.apply form { padding: 32px; display: grid; gap: 18px; }
.apply-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.apply h2 { font-family: var(--display); font-weight: 400; font-size: 32px; line-height: 1.05; letter-spacing: -.02em; }
.apply-sub { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.apply-close { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9999px; border: 1px solid var(--ink); background: none; cursor: pointer; font-size: 18px; line-height: 1; }
.field { display: grid; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; }
.field > span small { font-weight: 400; color: var(--subtle); }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(20, 26, 46, .2); border-radius: 3px;
  background: #fff; font: inherit; font-size: 15px; color: var(--ink);
}
.field input:focus, .field select:focus { outline: 2px solid var(--blue); outline-offset: -1px; border-color: var(--blue); }
.was-validated .field :invalid { border-color: #C2412A; background: #FFF7F5; }
.was-validated .check input:invalid { outline: 2px solid #C2412A; outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.logo-picker { display: flex; align-items: center; gap: 14px; }
.logo-preview { width: 56px; height: 56px; border-radius: 3px; border: 1px dashed rgba(20, 26, 46, .3); display: grid; place-items: center; overflow: hidden; background: #fff; font-size: 11px; color: var(--subtle); flex-shrink: 0; }
.logo-preview img { width: 100%; height: 100%; object-fit: contain; }
.logo-button { position: relative; display: inline-flex; padding: 10px 16px; border: 1px solid var(--ink); border-radius: 2px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; }
.logo-button:hover, .logo-button:focus-within { background: var(--ink); color: var(--cream); }
.logo-button input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.check a { color: var(--blue); text-decoration: underline; }
.form-error { font-size: 14px; color: #8A2E18; background: #FDE3DB; padding: 10px 12px; border-radius: 3px; }
.apply .btn { justify-content: center; }
.apply .btn:disabled { opacity: .6; cursor: wait; }
.apply-done { padding: 40px 32px; display: grid; gap: 14px; text-align: center; justify-items: center; }
.apply-done .big { font-family: var(--display); font-size: 56px; color: var(--coral); line-height: 1; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Legal pages ---------- */
.legal-nav { border-bottom: 1px solid rgba(20, 26, 46, .1); }
.legal-nav .container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.legal-nav a:last-child { font-size: 14px; font-weight: 600; }
.legal-nav a:last-child:hover { color: var(--coral); }
.legal { max-width: 720px; margin: 0 auto; padding: 80px 24px 120px; }
.legal h1 { margin-top: 16px; font-family: var(--display); font-weight: 400; font-size: clamp(38px, 5vw, 56px); line-height: 1; letter-spacing: -.03em; }
.legal .updated { margin-top: 16px; font-size: 14px; color: var(--subtle); }
.legal-body { margin-top: 48px; display: grid; gap: 40px; font-size: 16px; line-height: 1.7; color: var(--muted); }
.legal-body h2 { margin-bottom: 12px; font-family: var(--display); font-weight: 400; font-size: 24px; letter-spacing: -.02em; color: var(--ink); }
.legal-body ul { list-style: disc; padding-left: 20px; display: grid; gap: 8px; }
.legal-body a { color: var(--blue); }

/* ---------- Scroll reveals (set up by app.js; only when JS runs) ---------- */
.js [data-reveal], .js [data-stagger] > * {
  opacity: 0; filter: blur(6px); transform: translateY(22px);
  transition: opacity 1s var(--ease) var(--d, 0ms), transform 1.1s var(--ease) var(--d, 0ms), filter .9s var(--ease) var(--d, 0ms);
}
.js [data-reveal].is-in, .js [data-stagger].is-in > * { opacity: 1; filter: none; transform: none; }
.js [data-grow] { transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease); }
.js [data-grow].is-in { transform: scaleX(1); }

/* ---------- Keyframes ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(110%) rotate(2deg); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-8px) rotate(-1.5deg); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(40px, -30px) scale(1.06); } 66% { transform: translate(-20px, 20px) scale(.97); } }
@keyframes shimmer { from { background-position: 0% 50%; } to { background-position: 200% 50%; } }
.drift { animation: drift var(--dur, 16s) ease-in-out infinite; }
.drift.rev { animation-direction: reverse; }

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  :root { --gutter: 16px; }
  .hero { padding-top: 120px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .mock { min-height: 0; display: flex; flex-direction: column; gap: 32px; }
  .panel-wrap, .chat-wrap { position: relative; top: auto; right: auto; left: auto; width: 100%; }
  .chat-wrap { max-width: 320px; margin: 0 auto; }
  /* Fixed height so the growing conversation doesn't shift the page below */
  .chat { height: 480px; min-height: 0; overflow: hidden; }
  .sticky { position: static; }
  .apply form { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise > span, .msg, .apply[open] { animation: fade .4s ease both; }
  .phone, .drift, .btn-shimmer, .typing span { animation: none; }
  .js [data-reveal], .js [data-stagger] > * { filter: none; transform: none; transition: opacity .4s ease; }
  .js [data-grow] { transform: none; transition: none; }
}
