/* ============================================================
   ד"ר תמרה נפתלי — רפואה אסתטית · תל אביב
   Design system: Minimal Luxury · ivory + champagne gold
   Fonts: Bellefair (display) · Assistant (body) · Playpen Sans Hebrew (voice)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: oklch(0.972 0.012 85);
  --card: oklch(0.995 0.006 90);
  --fg: oklch(0.235 0.028 55);
  --fg-soft: oklch(0.33 0.03 55);
  --muted: oklch(0.44 0.034 55);
  --faint: oklch(0.52 0.028 55);
  --primary: oklch(0.42 0.055 50);
  --primary-fg: oklch(0.98 0.01 90);
  --accent: oklch(0.68 0.105 82);
  --accent-hover: oklch(0.62 0.11 80);
  --accent-fg: oklch(0.2 0.03 55);
  --accent-soft: oklch(0.68 0.105 82 / .14);
  --accent-strong: oklch(0.68 0.105 82 / .38);
  --band: oklch(0.941 0.019 80);
  --band-deep: oklch(0.915 0.023 78);
  --border: oklch(0.878 0.02 78);
  --border-soft: oklch(0.878 0.02 78 / .6);
  --gold-line: oklch(0.7 0.09 82 / .55);
  --shadow-card: 0 22px 60px -22px oklch(0.32 0.045 55 / .22);
  --shadow-soft: 0 6px 24px oklch(0.32 0.045 55 / .08);
  --header-bg: oklch(0.972 0.012 85 / .84);
  --wa: #25d366;
  --overlay-a: oklch(0.2 0.03 55 / .58);
  --overlay-b: oklch(0.2 0.03 55 / .18);
  --r-s: 4px; --r-m: 10px; --r-l: 16px;
  --tr: cubic-bezier(.2,.7,.2,1);
  --font-display: 'Bellefair', 'Frank Ruhl Libre', serif;
  --font-body: 'Assistant', -apple-system, sans-serif;
  --font-voice: 'Playpen Sans Hebrew', cursive;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: oklch(0.19 0.018 55);
    --card: oklch(0.233 0.02 55);
    --fg: oklch(0.93 0.014 85);
    --fg-soft: oklch(0.86 0.015 85);
    --muted: oklch(0.75 0.02 80);
    --faint: oklch(0.62 0.02 80);
    --primary: oklch(0.78 0.06 82);
    --primary-fg: oklch(0.18 0.02 55);
    --accent: oklch(0.76 0.115 84);
    --accent-hover: oklch(0.81 0.115 84);
    --accent-fg: oklch(0.18 0.03 55);
    --accent-soft: oklch(0.76 0.115 84 / .16);
    --accent-strong: oklch(0.76 0.115 84 / .4);
    --band: oklch(0.222 0.02 55);
    --band-deep: oklch(0.245 0.021 55);
    --border: oklch(0.33 0.02 60);
    --border-soft: oklch(0.33 0.02 60 / .6);
    --gold-line: oklch(0.72 0.1 84 / .5);
    --shadow-card: 0 24px 60px -20px oklch(0 0 0 / .55);
    --shadow-soft: 0 6px 24px oklch(0 0 0 / .35);
    --header-bg: oklch(0.19 0.018 55 / .84);
    --overlay-a: oklch(0.14 0.02 55 / .66);
    --overlay-b: oklch(0.14 0.02 55 / .24);
  }
}
:root[data-theme="dark"] {
  --bg: oklch(0.19 0.018 55);
  --card: oklch(0.233 0.02 55);
  --fg: oklch(0.93 0.014 85);
  --fg-soft: oklch(0.86 0.015 85);
  --muted: oklch(0.75 0.02 80);
  --faint: oklch(0.62 0.02 80);
  --primary: oklch(0.78 0.06 82);
  --primary-fg: oklch(0.18 0.02 55);
  --accent: oklch(0.76 0.115 84);
  --accent-hover: oklch(0.81 0.115 84);
  --accent-fg: oklch(0.18 0.03 55);
  --accent-soft: oklch(0.76 0.115 84 / .16);
  --accent-strong: oklch(0.76 0.115 84 / .4);
  --band: oklch(0.222 0.02 55);
  --band-deep: oklch(0.245 0.021 55);
  --border: oklch(0.33 0.02 60);
  --border-soft: oklch(0.33 0.02 60 / .6);
  --gold-line: oklch(0.72 0.1 84 / .5);
  --shadow-card: 0 24px 60px -20px oklch(0 0 0 / .55);
  --shadow-soft: 0 6px 24px oklch(0 0 0 / .35);
  --header-bg: oklch(0.19 0.018 55 / .84);
  --overlay-a: oklch(0.14 0.02 55 / .66);
  --overlay-b: oklch(0.14 0.02 55 / .24);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.a11y-big1 { font-size: 112.5%; }
html.a11y-big2 { font-size: 125%; }
html.a11y-small { font-size: 90%; }
body {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.1vw, 1.1875rem);
  line-height: 1.68;
  color: var(--fg-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* אסור transform על body — הוא הופך לעוגן של position:fixed ושובר תפריט/כפתורים צפים */
body.pagefade { opacity: 0; }
body.pagefade.pagein { opacity: 1; transition: opacity .45s var(--tr); }
body.pagefade main { transform: translateY(10px); }
body.pagefade.pagein main { transform: none; transition: transform .5s var(--tr); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--fg); line-height: 1.14; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); line-height: 1.18; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { max-width: 68ch; }
a { color: inherit; text-decoration: none; }
img, svg, video, canvas { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--accent-soft); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.container { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.band { background: var(--band); }
.band-deep { background: var(--band-deep); }

.eyebrow {
  display: inline-block; font-size: .86rem; font-weight: 600;
  letter-spacing: .34em; margin-inline-end: -.34em;
  color: var(--primary); text-transform: none; margin-bottom: 1.1rem;
}
.sec-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.sec-head p { margin-top: 1rem; color: var(--muted); }
.center { text-align: center; }
.center p, .center .voice { margin-inline: auto; }
.hl { color: oklch(0.55 0.115 80); position: relative; white-space: nowrap; }
:root[data-theme="dark"] .hl { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .hl { color: var(--accent); } }
.hl svg.hl-stroke { position: absolute; inset-inline: -2%; bottom: -.18em; width: 104%; height: .34em; }
.hl svg.hl-stroke path { stroke: var(--accent); fill: none; stroke-width: 3.2; stroke-linecap: round; opacity: .85; }
.voice { font-family: var(--font-voice); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.65; color: var(--primary); max-width: 34ch; }
.voice-sig { display: block; font-size: .82em; margin-top: .5rem; opacity: .78; }
.gold-rule { width: 64px; height: 1px; background: var(--gold-line); border: 0; margin-block: 1.4rem; }
.center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--accent); color: var(--accent-fg);
  font-weight: 700; font-size: 1.02rem; letter-spacing: .01em;
  padding: .95rem 2rem; border-radius: var(--r-s);
  overflow: hidden; white-space: nowrap;
  transition: transform .25s var(--tr), box-shadow .25s var(--tr), background .25s;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 14px 34px -12px var(--accent-strong); }
.btn:active { transform: translateY(0); transition-duration: .08s; }
.btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  inset-inline-start: -60%; transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / .35), transparent);
  transition: inset-inline-start .6s ease; pointer-events: none;
}
.btn:hover::after { inset-inline-start: 130%; }
.btn-sm { padding: .6rem 1.25rem; font-size: .92rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }
.btn-ghost {
  background: transparent; color: var(--fg); border: 1px solid var(--border);
  font-weight: 600;
}
.btn-ghost:hover { background: var(--card); border-color: var(--accent); box-shadow: none; }
.btn-ghost::after { display: none; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--primary);
  transition: border-color .25s, transform .25s var(--tr);
}
.icon-btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
/* blur על ::before ולא על ההדר עצמו — backdrop-filter על ההורה היה כולא את התפריט הנייד (position:fixed) בתוך ההדר */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.site-header.scrolled { border-bottom-color: var(--border-soft); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-txt { line-height: 1.2; }
.brand-txt strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.22rem; color: var(--fg); letter-spacing: .02em; }
.brand-txt small { display: block; font-size: .68rem; letter-spacing: .28em; margin-inline-end: -.28em; color: var(--faint); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.main-nav > a, .sub-trigger {
  position: relative; font-weight: 600; font-size: .98rem; color: var(--fg-soft);
  padding-block: .4rem; display: inline-flex; align-items: center; gap: .35rem;
}
.main-nav > a::after, .sub-trigger::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -2px; height: 2px;
  background: var(--accent); transform: scaleX(0); transition: transform .3s var(--tr);
}
.main-nav > a:hover::after, .sub-trigger:hover::after { transform: scaleX(1); }
.main-nav > a[aria-current="page"], .sub-trigger.active { color: var(--fg); }
.main-nav > a[aria-current="page"]::after, .sub-trigger.active::after { transform: scaleX(1); }
.sub-trigger .car { transition: transform .25s var(--tr); width: 10px; height: 10px; }
.has-sub { position: relative; }
.has-sub.open .sub-trigger .car { transform: rotate(180deg); }
.sub-panel {
  position: absolute; top: calc(100% + 14px); inset-inline-start: 50%; transform: translateX(50%) scale(.97);
  min-width: 250px; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--r-m); box-shadow: var(--shadow-card); padding: .55rem;
  opacity: 0; visibility: hidden; transition: opacity .18s var(--tr), transform .18s var(--tr), visibility .18s;
  z-index: 95;
}
.has-sub.open .sub-panel { opacity: 1; visibility: visible; transform: translateX(50%) scale(1); }
.sub-panel a {
  display: block; padding: .62rem .9rem; border-radius: var(--r-s);
  font-weight: 600; font-size: .95rem; color: var(--fg-soft);
  transition: background .18s, color .18s;
}
.sub-panel a:hover, .sub-panel a:focus-visible { background: var(--accent-soft); color: var(--fg); }
.sub-panel a[aria-current="page"] { color: var(--fg); background: var(--accent-soft); }
.sub-panel a small { display: block; font-weight: 400; font-size: .78rem; color: var(--faint); }
.header-cta { display: flex; align-items: center; gap: .7rem; }
.burger { display: none; position: relative; width: 44px; height: 44px; z-index: 120; }
.burger span, .burger span::before, .burger span::after {
  content: ''; position: absolute; inset-inline-start: 10px; width: 24px; height: 2px;
  background: var(--fg); border-radius: 2px; transition: transform .3s var(--tr), top .3s var(--tr), opacity .2s;
}
.burger span { top: 21px; }
.burger span::before { inset-inline-start: 0; top: -7px; }
.burger span::after { inset-inline-start: 0; top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: var(--bg);
  display: flex; flex-direction: column; padding: 96px 2rem 2.2rem;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--tr), visibility .3s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link, .mobile-menu .mm-group-title {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--fg);
  padding-block: .55rem; display: block;
}
.mobile-menu .mm-group { border-block: 1px solid var(--border-soft); margin-block: .55rem; padding-block: .55rem; }
.mobile-menu .mm-group-title { color: var(--faint); font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .22em; }
.mobile-menu .mm-group a { font-size: 1.28rem; font-family: var(--font-display); color: var(--fg); display: block; padding-block: .45rem; }
.mobile-menu a[aria-current="page"] { color: oklch(0.55 0.115 80); }
.mobile-menu .mm-item { opacity: 0; transform: translateY(14px); transition: opacity .4s var(--tr), transform .4s var(--tr); }
body.menu-open .mobile-menu .mm-item { opacity: 1; transform: none; }
.mm-foot { margin-top: auto; padding-top: 1.6rem; display: grid; gap: .8rem; }
body.menu-open { overflow: hidden; }

@media (max-width: 960px) {
  .main-nav, .header-cta .btn, .header-cta .icon-btn { display: none; }
  .burger { display: block; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .88rem; color: var(--faint); margin-bottom: 1.2rem; }
.crumbs a { color: var(--faint); transition: color .2s; }
.crumbs a:hover { color: var(--fg); }
.crumbs .sep { opacity: .55; }
.crumbs .here { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; display: flex; align-items: flex-end; min-height: 92svh; padding-block: 0 clamp(3rem, 7vh, 5rem); }
.hero--video { min-height: 100svh; }
.hero-vid, .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-fallback { overflow: hidden; }
.hero-fallback::before, .hero-fallback::after {
  content: ''; position: absolute; width: 65vmax; height: 65vmax; border-radius: 50%;
  filter: blur(90px); opacity: .5;
}
.hero-fallback::before {
  background: radial-gradient(circle, oklch(0.82 0.07 82 / .8), transparent 65%);
  top: -18%; inset-inline-start: -12%;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.hero-fallback::after {
  background: radial-gradient(circle, oklch(0.7 0.06 45 / .65), transparent 65%);
  bottom: -22%; inset-inline-end: -14%;
  animation: drift-b 32s ease-in-out infinite alternate;
}
.hero-fallback .fb-mid {
  position: absolute; width: 48vmax; height: 48vmax; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.9 0.04 90 / .55), transparent 60%);
  top: 22%; inset-inline-start: 30%; filter: blur(80px); opacity: .55;
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(9vmax, 7vmax) scale(1.12); } }
@keyframes drift-b { from { transform: translate(0, 0) scale(1.08); } to { transform: translate(-8vmax, -6vmax) scale(.95); } }
@keyframes drift-c { from { transform: translate(0, 0); } to { transform: translate(-10vmax, 8vmax); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 20%, transparent 30%, oklch(0.2 0.03 55 / .2) 100%),
    linear-gradient(to top, oklch(0.2 0.03 55 / .74) 0%, oklch(0.2 0.03 55 / .36) 48%, oklch(0.2 0.03 55 / .1) 78%);
}
.hero--video .hero-content h1, .hero--video .hero-content .hero-sub, .hero--video .hero-content .eyebrow, .hero--video .trust-strip, .hero--video .crumbs {
  text-shadow: 0 1px 26px oklch(0.18 0.03 55 / .5), 0 1px 3px oklch(0.18 0.03 55 / .35);
}
.hero--calm .hero-overlay { background: linear-gradient(to top, oklch(0.2 0.03 55 / .07), transparent 55%); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-content .eyebrow { color: var(--primary); }
.hero--video .hero-content { color: oklch(0.97 0.01 90); }
.hero--video .hero-content .eyebrow { color: oklch(0.87 0.07 84); }
.hero--video .hero-content h1 { color: oklch(0.985 0.008 90); text-wrap: balance; }
.hero--video .hero-content .hero-sub { color: oklch(0.93 0.012 88); }
.hero--video .hero-content .hl { color: oklch(0.85 0.11 84); }
.hero-sub { font-size: clamp(1.12rem, 1.6vw, 1.3rem); max-width: 56ch; margin-top: 1.3rem; color: var(--fg-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; align-items: center; }
.hero--video .btn-ghost { color: oklch(0.97 0.01 90); border-color: oklch(1 0 0 / .35); }
.hero--video .btn-ghost:hover { background: oklch(1 0 0 / .1); border-color: var(--accent); }
.trust-strip { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid oklch(1 0 0 / .22); font-size: .98rem; }
.hero--calm .trust-strip { border-top-color: var(--border-soft); }
.trust-strip span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.trust-strip svg { width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }
.scroll-cue {
  position: absolute; bottom: 1.1rem; inset-inline-start: 50%; transform: translateX(50%);
  z-index: 3; width: 26px; height: 42px; border: 1.5px solid oklch(1 0 0 / .5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero--calm .scroll-cue { border-color: var(--border); }
.scroll-cue::before { content: ''; width: 3px; height: 8px; border-radius: 3px; background: var(--accent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: .2; } }
.vid-toggle {
  position: absolute; bottom: 1.2rem; inset-inline-end: 1.2rem; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: oklch(0.2 0.03 55 / .45); color: oklch(0.98 0.01 90);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid oklch(1 0 0 / .28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .2s;
}
.vid-toggle:hover { background: oklch(0.2 0.03 55 / .7); }
.vid-toggle svg { width: 16px; height: 16px; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1020px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-m);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform .3s var(--tr), box-shadow .3s var(--tr), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: 1.02rem; color: var(--muted); }
.card .ic {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
  color: oklch(0.55 0.115 80); background: var(--accent-soft);
}
:root[data-theme="dark"] .card .ic { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .card .ic { color: var(--accent); } }
.card .ic svg { width: 21px; height: 21px; }

a.tcard { display: flex; flex-direction: column; }
a.tcard .tc-num { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-line); line-height: 1; margin-bottom: .9rem; }
a.tcard .tc-more { margin-top: auto; padding-top: 1.1rem; font-weight: 700; font-size: .92rem; color: oklch(0.55 0.115 80); display: inline-flex; align-items: center; gap: .4rem; }
:root[data-theme="dark"] a.tcard .tc-more { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) a.tcard .tc-more { color: var(--accent); } }
a.tcard .tc-more svg { width: 15px; height: 15px; transition: transform .25s var(--tr); }
a.tcard:hover .tc-more svg { transform: translateX(-4px); }

/* ---------- Stats ---------- */
.stats { text-align: center; }
.stats .grid { align-items: start; }
.stat b { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 5.5vw, 4.2rem); color: var(--fg); display: block; line-height: 1; min-height: 1.05em; }
.stat b .unit { font-size: .6em; color: oklch(0.55 0.115 80); }
:root[data-theme="dark"] .stat b .unit { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .stat b .unit { color: var(--accent); } }
.stat b span { font-size: inherit; display: inline; margin: 0; }
.stat b .unit { font-size: .6em; }
.stat > span { display: block; margin-top: .6rem; font-size: 1.08rem; color: var(--fg-soft); font-weight: 600; line-height: 1.45; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--border-soft); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.15rem; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.05rem; color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pl { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq summary .pl::before, .faq summary .pl::after {
  content: ''; position: absolute; background: oklch(0.55 0.115 80); border-radius: 2px;
  transition: transform .3s var(--tr);
}
.faq summary .pl::before { top: 10px; inset-inline: 3px; height: 2px; }
.faq summary .pl::after { inset-inline-start: 10px; top: 3px; width: 2px; height: 16px; }
.faq details[open] summary .pl::after { transform: rotate(90deg); }
.faq .fa { padding-block: 0 1.3rem; color: var(--muted); font-size: 1.04rem; max-width: 64ch; }
.faq .fa a { color: oklch(0.55 0.115 80); font-weight: 700; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--tr), transform .65s var(--tr); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; } .rv-d5 { transition-delay: .4s; } .rv-d6 { transition-delay: .48s; }
.mask-rv { clip-path: inset(0 100% 0 0); transition: clip-path .9s var(--tr); }
.mask-rv.in { clip-path: inset(0 0 0 0); }

/* ---------- Aurora (legal/contact/404) ---------- */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .2; }
.aurora i:nth-child(1) { width: 46vmax; height: 46vmax; background: oklch(0.8 0.08 82); top: -16%; inset-inline-start: -10%; animation: drift-a 30s ease-in-out infinite alternate; }
.aurora i:nth-child(2) { width: 38vmax; height: 38vmax; background: oklch(0.72 0.06 45); bottom: -18%; inset-inline-end: -12%; animation: drift-b 36s ease-in-out infinite alternate; }

/* ---------- Doctor strip ---------- */
.doc-strip { display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 2.6rem); flex-wrap: wrap; }
.doc-avatar { width: 108px; height: 108px; border-radius: 50%; flex: 0 0 auto; border: 1px solid var(--gold-line); background: var(--accent-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.doc-avatar svg { width: 62%; height: 62%; }
.doc-strip .voice { max-width: 46ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--band-deep); border-top: 1px solid var(--border-soft); padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 2.6rem; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.f-brand .brand-mark { width: 52px; height: 52px; margin-bottom: .9rem; }
.f-brand strong { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; color: var(--fg); display: block; }
.f-brand .tag { color: var(--muted); margin-top: .3rem; font-size: .92rem; }
.f-brand .voice { font-size: 1.02rem; margin-top: 1.1rem; color: var(--primary); }
.f-col h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .3em; color: var(--faint); margin-bottom: 1rem; }
.f-col a { display: block; padding-block: .34rem; color: var(--fg-soft); font-weight: 600; transition: color .2s; }
.f-col a:hover { color: oklch(0.55 0.115 80); }
.f-contact p { color: var(--muted); margin-bottom: .5rem; font-size: .98rem; }
.f-contact a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--fg); padding-block: .3rem; }
.f-contact svg { width: 15px; height: 15px; color: oklch(0.55 0.115 80); }
.legal-bar {
  border-top: 1px solid var(--border-soft); padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; align-items: center;
  font-size: .86rem; color: var(--faint);
}
.legal-bar a { color: var(--faint); text-decoration: underline; text-underline-offset: 3px; }
.legal-bar a:hover { color: var(--fg); }

/* ---------- Floating: WhatsApp + a11y + sticky bar ---------- */
.wa-float {
  position: fixed; bottom: 1.2rem; inset-inline-start: 1.2rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgb(37 211 102 / .55);
  transition: transform .25s var(--tr), bottom .25s var(--tr);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.a11y-fab {
  position: fixed; bottom: 1.2rem; inset-inline-end: 1.2rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--tr), bottom .25s var(--tr);
}
.a11y-fab:hover { transform: translateY(-3px); }
.a11y-fab svg { width: 24px; height: 24px; }
.sticky-cta {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 85;
  display: none; gap: .6rem; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: var(--header-bg); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-soft);
  transform: translateY(110%); transition: transform .35s var(--tr);
}
.sticky-cta.on { transform: none; }
.sticky-cta .btn { flex: 1; }
.sticky-cta .icon-btn { width: 48px; height: 48px; flex: 0 0 auto; background: var(--card); }
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  body.bar-on .wa-float { bottom: calc(4.9rem + env(safe-area-inset-bottom)); }
  body.bar-on .a11y-fab { bottom: calc(4.9rem + env(safe-area-inset-bottom)); }
}

/* ---------- A11y widget panel ---------- */
.a11y-panel {
  position: fixed; bottom: 5.6rem; inset-inline-end: 1.2rem; z-index: 100;
  width: min(340px, calc(100vw - 2rem));
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-l);
  box-shadow: var(--shadow-card); padding: 1.2rem;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98);
  transition: opacity .22s var(--tr), transform .22s var(--tr), visibility .22s;
  max-height: min(72vh, 560px); overflow-y: auto;
}
.a11y-panel.open { opacity: 1; visibility: visible; transform: none; }
.a11y-panel h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: .9rem; display: flex; justify-content: space-between; align-items: center; }
.a11y-panel .close-x { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.a11y-panel .close-x:hover { background: var(--band); color: var(--fg); }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.a11y-grid button {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .7rem .4rem; border: 1px solid var(--border-soft); border-radius: var(--r-m);
  font-size: .8rem; font-weight: 600; color: var(--fg-soft); text-align: center;
  transition: border-color .2s, background .2s;
}
.a11y-grid button:hover { border-color: var(--accent); }
.a11y-grid button[aria-pressed="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--fg); }
.a11y-grid button svg { width: 20px; height: 20px; color: oklch(0.55 0.115 80); }
.a11y-grid .a11y-reset { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
.a11y-foot { margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--border-soft); font-size: .8rem; color: var(--faint); }
.a11y-foot a { color: oklch(0.55 0.115 80); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- A11y effect classes ---------- */
html.a11y-contrast {
  --bg: oklch(0.99 0.002 90); --card: oklch(1 0 0);
  --fg: oklch(0.13 0.01 55); --fg-soft: oklch(0.15 0.01 55);
  --muted: oklch(0.24 0.015 55); --faint: oklch(0.3 0.015 55);
  --primary: oklch(0.28 0.05 55); --accent: oklch(0.45 0.12 80);
  --accent-fg: oklch(0.99 0.002 90); --accent-soft: oklch(0.45 0.12 80 / .14);
  --band: oklch(0.95 0.005 90); --band-deep: oklch(0.93 0.005 90);
  --border: oklch(0.4 0.01 60); --border-soft: oklch(0.4 0.01 60 / .8);
  --gold-line: oklch(0.4 0.09 80);
}
html.a11y-gray img, html.a11y-gray video, html.a11y-gray canvas,
html.a11y-gray .hero-fallback, html.a11y-gray .aurora, html.a11y-gray .doc-avatar { filter: grayscale(1); }
html.a11y-gray { --accent: oklch(0.6 0 0); --accent-hover: oklch(0.52 0 0); --accent-soft: oklch(0.6 0 0 / .14); --accent-strong: oklch(0.6 0 0 / .35); --primary: oklch(0.42 0 0); --gold-line: oklch(0.6 0 0 / .5); --star: oklch(0.6 0 0); --wa: #6a6a6a; }
html.a11y-links a:not(.btn) { text-decoration: underline !important; text-underline-offset: 3px; background: var(--accent-soft); }
html.a11y-font body, html.a11y-font h1, html.a11y-font h2, html.a11y-font h3, html.a11y-font h4,
html.a11y-font .voice, html.a11y-font .brand-txt strong { font-family: var(--font-body) !important; letter-spacing: .01em !important; }
html.a11y-cursor, html.a11y-cursor body, html.a11y-cursor a, html.a11y-cursor button {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24'><path d='M5 2l14 9-6.5 1.5L16 20l-3 1.5-3.5-7.5L5 18z' fill='black' stroke='white' stroke-width='1.4'/></svg>") 4 2, auto;
}
#readGuide {
  position: fixed; inset-inline: 0; height: 46px; z-index: 200; pointer-events: none;
  border-block: 2px solid oklch(0.55 0.115 80 / .85);
  background: oklch(0.68 0.105 82 / .1); display: none;
}
html.a11y-guide #readGuide { display: block; }

/* ---------- Motion kill ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv, .mask-rv { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  html { scroll-behavior: auto; }
}
html.a11y-still *, html.a11y-still *::before, html.a11y-still *::after { animation: none !important; transition: none !important; }
html.a11y-still .rv, html.a11y-still .mask-rv { opacity: 1 !important; transform: none !important; clip-path: none !important; }
html.a11y-still { scroll-behavior: auto; }

/* ---------- Articles ---------- */
.art-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.art-card .art-cover { height: 190px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--band), var(--band-deep)); }
.art-card .art-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-card .art-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.chip {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  padding: .28rem .8rem; border-radius: 100px; border: 1px solid var(--gold-line);
  color: oklch(0.5 0.1 78); background: var(--accent-soft); width: fit-content;
}
:root[data-theme="dark"] .chip { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .chip { color: var(--accent); } }
.art-card h3 { margin-top: .85rem; font-size: 1.3rem; }
.art-card .meta { margin-top: .5rem; font-size: .88rem; color: var(--faint); }
.art-card p { margin-top: .6rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.2rem; }
.filter-row button {
  font-size: .86rem; font-weight: 700; padding: .5rem 1.15rem; border-radius: 100px;
  border: 1px solid var(--border); color: var(--fg-soft); transition: all .2s;
}
.filter-row button:hover { border-color: var(--accent); }
.filter-row button.on { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* Article page */
.art-hero { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2rem, 5vw, 3rem); }
.art-content { max-width: 720px; margin-inline: auto; }
.art-content h2 { margin-top: 2.6rem; margin-bottom: .9rem; }
.art-content h3 { margin-top: 1.9rem; margin-bottom: .6rem; }
.art-content p { margin-bottom: 1.1rem; }
.art-content ul, .art-content ol { padding-inline-start: 1.3rem; margin-bottom: 1.1rem; }
.art-content li { margin-bottom: .45rem; }
.art-content .pull {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; color: var(--fg);
  border-inline-start: 2px solid var(--accent); padding-inline-start: 1.3rem; margin-block: 2rem;
}
.disclaimer {
  background: var(--band); border: 1px solid var(--border-soft); border-radius: var(--r-m);
  padding: 1.1rem 1.3rem; font-size: .9rem; color: var(--muted); margin-block: 2.2rem;
  display: flex; gap: .8rem; align-items: flex-start;
}
.disclaimer svg { width: 20px; height: 20px; flex: 0 0 auto; color: oklch(0.55 0.115 80); margin-top: .15rem; }
.author-box { display: flex; gap: 1.2rem; align-items: center; background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-m); padding: 1.3rem 1.5rem; margin-block: 2.4rem; flex-wrap: wrap; }
#progressBar { position: fixed; top: 0; inset-inline-start: 0; height: 2.5px; background: var(--accent); width: 0; z-index: 99; }

/* ---------- Legal pages ---------- */
.legal-doc { max-width: 780px; margin-inline: auto; position: relative; z-index: 1; }
.legal-doc h2 { font-size: 1.5rem; margin-top: 2.6rem; margin-bottom: .8rem; }
.legal-doc p, .legal-doc li { font-size: 1.04rem; color: var(--fg-soft); margin-bottom: .8rem; }
.legal-doc ul { padding-inline-start: 1.3rem; }
.legal-doc table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-block: 1rem; }
.legal-doc th, .legal-doc td { border: 1px solid var(--border-soft); padding: .6rem .8rem; text-align: start; vertical-align: top; }
.legal-doc th { background: var(--band); font-weight: 700; color: var(--fg); }
.legal-updated { font-size: .85rem; color: var(--faint); margin-top: .6rem; }
.coord-card {
  background: var(--card); border: 1px solid var(--gold-line); border-radius: var(--r-m);
  padding: 1.3rem 1.5rem; margin-block: 1.4rem;
}
.coord-card strong { color: var(--fg); }

/* ---------- Forms ---------- */
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .9rem; font-weight: 700; color: var(--fg); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--fg); background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r-s);
  padding: .8rem 1rem; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field small { color: var(--faint); font-size: .8rem; }

/* ---------- Journey line (biostimulators) ---------- */
.journey { position: relative; }
.journey-svg { position: absolute; top: 0; inset-inline-start: 26px; height: 100%; width: 4px; overflow: visible; pointer-events: none; }
.journey-svg path { stroke: var(--accent); stroke-width: 2.5; fill: none; }
.journey-svg .jbase { stroke: var(--border); }
.j-step { position: relative; padding-inline-start: 74px; padding-block: 1.3rem; max-width: 640px; }
.j-step .j-dot {
  position: absolute; inset-inline-start: 15px; top: 1.55rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--faint);
  transition: border-color .4s, color .4s, background .4s, box-shadow .4s;
}
.j-step.lit .j-dot { border-color: var(--accent); color: var(--accent-fg); background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.j-step h3 { margin-bottom: .4rem; }
.j-step p { font-size: 1.02rem; color: var(--muted); }

/* ---------- Scrollytelling (face-sculpting) ---------- */
.scrolly { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.scrolly-visual { position: sticky; top: 110px; height: min(66vh, 520px); border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--border-soft); background: var(--band); }
.scrolly-pane { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--tr); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.scrolly-pane.on { opacity: 1; }
.scrolly-pane svg { width: min(78%, 360px); height: auto; }
.scrolly-steps .s-step { padding-block: clamp(2.2rem, 6vh, 4rem); border-bottom: 1px solid var(--border-soft); opacity: .38; transition: opacity .4s; }
.scrolly-steps .s-step.on { opacity: 1; }
.scrolly-steps .s-step:last-child { border-bottom: 0; }
.s-step .s-num { font-family: var(--font-display); font-size: 1rem; color: oklch(0.55 0.115 80); letter-spacing: .3em; margin-bottom: .5rem; display: block; }
@media (max-width: 860px) {
  .scrolly { grid-template-columns: 1fr; }
  .scrolly-visual { position: sticky; top: 84px; height: 38vh; z-index: 5; }
  .scrolly-steps .s-step { opacity: 1; }
}

/* ---------- Blob (lips) ---------- */
.blobwrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute; background: linear-gradient(135deg, oklch(0.85 0.06 45 / .5), oklch(0.8 0.09 82 / .45));
  filter: blur(46px); opacity: .55;
  animation: blobmorph 26s ease-in-out infinite alternate;
}
@keyframes blobmorph {
  0% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; transform: rotate(14deg) scale(1.08); }
  100% { border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%; transform: rotate(-10deg) scale(.96); }
}

/* ---------- Before/After simulation slider ---------- */
.ba-slider{position:relative;border-radius:var(--r-l);overflow:hidden;border:1px solid var(--border-soft);box-shadow:var(--shadow-card);aspect-ratio:4/3;max-width:640px;cursor:ew-resize;touch-action:none;user-select:none;-webkit-user-select:none;background:var(--band)}
.ba-slider:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.ba-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;pointer-events:none}
.ba-before{clip-path:inset(0 calc(100% - var(--ba,50%)) 0 0)}
.ba-handle{position:absolute;top:0;bottom:0;left:var(--ba,50%);width:2px;margin-left:-1px;background:oklch(1 0 0/.92);box-shadow:0 0 14px oklch(0 0 0/.4)}
.ba-handle::after{content:'⇄';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:46px;height:46px;border-radius:50%;background:var(--card);border:1px solid var(--gold-line);box-shadow:var(--shadow-soft);display:flex;align-items:center;justify-content:center;font-size:1.15rem;color:oklch(0.5 0.1 78)}
.ba-tag{position:absolute;top:.85rem;font-size:.88rem;font-weight:700;letter-spacing:.1em;padding:.32rem .85rem;border-radius:100px;background:oklch(0.2 0.03 55/.58);color:oklch(0.98 0.01 90);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);pointer-events:none}
.ba-tag-a{left:.85rem}
.ba-tag-b{right:.85rem}
.ba-badge{position:absolute;bottom:.85rem;inset-inline-start:.85rem;font-size:.74rem;font-weight:700;background:oklch(0.2 0.03 55/.62);color:oklch(0.98 0.01 90);padding:.32rem .75rem;border-radius:var(--r-s);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);pointer-events:none}
.ba-note{font-size:.94rem;color:var(--faint);margin-top:.8rem;max-width:640px}

/* ---------- 404 ---------- */
.nf-wrap { min-height: 72svh; display: flex; align-items: center; text-align: center; position: relative; }
.nf-code { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 9rem); color: var(--gold-line); line-height: 1; }

/* ---------- Utilities ---------- */
.mt1 { margin-top: 1rem; } .mt2 { margin-top: 2rem; } .mt3 { margin-top: 3rem; }
.tiny { font-size: .9rem; color: var(--faint); }
.urgency { display: inline-flex; align-items: center; gap: .5rem; font-size: .98rem; font-weight: 600; color: var(--muted); }
.urgency .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s ease-in-out infinite; flex: 0 0 auto; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-strong); } 55% { box-shadow: 0 0 0 7px transparent; } }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.check-list { list-style: none; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .99rem; }
.check-list svg { width: 18px; height: 18px; flex: 0 0 auto; color: oklch(0.55 0.115 80); margin-top: .28rem; }
.skip-link { position: fixed; top: -60px; inset-inline-start: 1rem; z-index: 300; background: var(--fg); color: var(--bg); padding: .6rem 1.2rem; border-radius: var(--r-s); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 1rem; }
