/* ================================================================
   Espelho Meu — premium quiz prototype
   ================================================================ */

:root {
  --bg: #F4F7FB;
  --bg-2: #EAF1F8;
  --surface: #FFFFFF;
  --ink: #0F1B2D;
  --ink-2: #2A3A52;
  --ink-3: #6B7A8C;
  --ink-4: #98A4B5;
  --line: #E4ECF4;
  --line-2: #EEF3F8;

  --brand: #1FA4E0;          /* cyan accent (per reference) */
  --brand-2: #0E73C2;         /* deeper blue */
  --brand-3: #0A4F8F;
  --brand-deep: #07172A;
  --brand-glow: rgba(31, 164, 224, 0.16);

  --grad-button: linear-gradient(180deg, #2DB6F0 0%, #0E73C2 100%);
  --grad-button-hi: linear-gradient(180deg, #4FC4F5 0%, #1083D6 100%);
  --grad-splash: radial-gradient(120% 80% at 50% 0%, #154A78 0%, #0B2A4A 45%, #061222 100%);

  --shadow-card: 0 1px 2px rgba(14,27,44,0.03), 0 6px 18px rgba(14,27,44,0.04);
  --shadow-card-hover: 0 1px 3px rgba(14,27,44,0.05), 0 12px 28px rgba(14,27,44,0.07);
  --shadow-selected: 0 0 0 1.5px var(--brand), 0 14px 32px rgba(31,164,224,0.18);
  --shadow-button: 0 12px 28px rgba(14,115,194,0.32), 0 2px 6px rgba(14,115,194,0.18);

  --r-card: 18px;
  --r-card-lg: 22px;
  --r-pill: 999px;

  --easing: cubic-bezier(.22,.61,.36,1);
  --easing-bounce: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  background: #0a0f1a;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(60% 60% at 50% 30%, #122844 0%, #0a1424 60%, #060b16 100%);
}
.stage-fit {
  transform-origin: center center;
}
.stage::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(1px 1px at 75% 65%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

/* ─────────── App canvas inside phone ─────────── */
.screen {
  position: absolute; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.screen-scroll {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.screen-scroll::-webkit-scrollbar { display: none; }

/* Screen transition shell */
.shell {
  position: absolute; inset: 0;
  perspective: 1200px;
}
.scene {
  position: absolute; inset: 0;
  will-change: transform, opacity;
  opacity: 1;
  transition: transform .42s cubic-bezier(.22,.61,.36,1), opacity .42s cubic-bezier(.22,.61,.36,1);
}
.scene.exit-fwd  { transform: translate3d(-28px,0,0); opacity: 0; pointer-events: none; }
.scene.exit-back { transform: translate3d(28px,0,0);  opacity: 0; pointer-events: none; }
.scene.enter-fwd, .scene.enter-back { transform: translate3d(0,0,0); opacity: 1; }

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg);
}
.splash-hero {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  height: 430px;
  padding-top: 50px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  background: var(--grad-splash);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}
.splash-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 50% -20%, rgba(80,180,255,0.35), transparent 60%),
    radial-gradient(60% 40% at 50% 100%, rgba(31,164,224,0.18), transparent 70%);
  pointer-events: none;
}
.splash-orbit {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.splash-orbit svg { width: 100%; height: 100%; opacity: .35; }

.splash-logo {
  width: 104px; height: 104px; border-radius: 28px;
  background: linear-gradient(180deg, #5BC6F2 0%, #1885CC 70%, #0E5DA0 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 24px 48px rgba(8,80,140,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,30,80,0.25);
  position: relative;
  animation: logoFloat 3.6s var(--easing) infinite;
}
.splash-logo::before {
  content: ""; position: absolute; inset: 4px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%);
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.splash-title {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.01em;
  margin-top: 24px;
  position: relative; z-index: 1;
  font-variation-settings: "SOFT" 50;
}
.splash-sub {
  margin-top: 10px;
  color: rgba(220,235,250,0.7);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.splash-body {
  flex: 1; padding: 28px 24px 26px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.splash-headline {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  font-variation-settings: "SOFT" 50;
}
.splash-desc {
  margin-top: 14px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
  max-width: 320px;
  margin-left: auto; margin-right: auto;
}
.splash-actions { display: flex; flex-direction: column; gap: 12px; }
.splash-tiny {
  text-align: center; font-size: 11px;
  letter-spacing: 0.22em; color: var(--ink-4);
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  appearance: none; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700;
  font-size: 12.5px; letter-spacing: 0.13em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 18px;
  border-radius: 14px;
  transition: transform .18s var(--easing), box-shadow .18s var(--easing), filter .18s;
  user-select: none;
}
.btn-primary {
  background: var(--grad-button);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover { background: var(--grad-button-hi); }
.btn-primary:active { transform: scale(0.985); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
  font-weight: 500; letter-spacing: 0.02em; text-transform: none;
  font-size: 14px; padding: 16px;
}
.btn-ghost .accent { color: var(--brand-2); font-weight: 700; margin-left: 4px; }

/* ============================================================
   ONBOARDING
   ============================================================ */
.onb { height: 100%; display: flex; flex-direction: column; padding: 78px 28px 28px; gap: 24px; }
.onb-dots { display: flex; gap: 6px; justify-content: center; }
.onb-dot { width: 8px; height: 4px; border-radius: 2px; background: #D6E2EE; transition: all .3s var(--easing); }
.onb-dot.active { width: 22px; background: var(--brand); }
.onb-title {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50;
}
.onb-sub { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin-top: 6px; }
.fields { display: flex; flex-direction: column; gap: 12px; }
.field {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  transition: all .25s var(--easing);
}
.field.focused {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(31,164,224,0.10), 0 6px 18px rgba(31,164,224,0.10);
}
.field input {
  width: 100%;
  border: 0; outline: 0; background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 20px 20px;
  border-radius: 16px;
}
.field input::placeholder { color: var(--ink-4); font-weight: 400; }
.onb-spacer { flex: 1; }

/* ============================================================
   QUIZ HEADER
   ============================================================ */
.qhead {
  padding: 70px 28px 0;
}
.qhead-row {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--brand); text-transform: uppercase;
  white-space: nowrap;
}
.qcount {
  margin-top: 4px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "SOFT" 50;
}
.qcount .of {
  color: var(--ink-4);
  font-size: 16px;
  margin-left: 6px;
  letter-spacing: 0.06em;
}
.skip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--ink-4); text-transform: uppercase;
  background: none; border: 0; cursor: pointer;
  padding: 8px 0;
}
.skip:hover { color: var(--ink-2); }

.progress {
  margin: 18px 0 0;
  height: 3px;
  background: #DCE7F1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.progress-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 5%;
  background: linear-gradient(90deg, #2DB6F0, #0E73C2);
  border-radius: 999px;
  transition: width .6s var(--easing);
}

.qbody {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.qtitle {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  font-weight: 300;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.011em;
  color: var(--ink);
  margin: 0 0 6px;
  font-variation-settings: "SOFT" 50;
  text-wrap: pretty;
}
.qhint {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 22px;
}

/* ============================================================
   OPTION CARDS
   ============================================================ */
.opts { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.opt {
  position: relative;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: var(--r-card);
  padding: 18px 18px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform .2s var(--easing), box-shadow .2s var(--easing), border-color .2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 64px;
}
.opt:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-1px); }
.opt:active { transform: scale(0.985); }
.opt.selected {
  border-color: var(--brand);
  box-shadow: var(--shadow-selected);
  animation: optPulse .5s var(--easing-bounce);
}
@keyframes optPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.opt-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #EDF2F8;
  display: flex; align-items: center; justify-content: center;
  color: #6E8499;
  transition: all .35s var(--easing);
}
.opt.selected .opt-icon {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(31,164,224,0.4);
  transform: rotate(-2deg) scale(1.04);
}
.opt-label {
  flex: 1;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  text-align: left;
  text-wrap: pretty;
}
.opt.selected .opt-label { color: var(--ink); }
.opt-arrow {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateX(-8px) scale(0.7);
  transition: all .3s var(--easing-bounce);
  box-shadow: 0 6px 14px rgba(31,164,224,0.45);
}
.opt.selected .opt-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* check variant — used when multi-select */
.opt-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid #C5D1DE;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .25s var(--easing);
}
.opt.selected .opt-check {
  background: var(--brand);
  border-color: var(--brand);
}

/* ============================================================
   BOTTOM NAV (back + next)
   ============================================================ */
.qfoot {
  padding: 4px 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.iconbtn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #C7D5E2;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #2A6BAA;
  cursor: pointer;
  transition: all .2s var(--easing);
}
.iconbtn:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.iconbtn.ghost { border-color: transparent; color: var(--ink-4); }
.iconbtn.ghost:hover { color: var(--ink-2); transform: none; }

.qnext {
  appearance: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--grad-button);
  color: #fff;
  font-family: inherit;
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--shadow-button);
  transition: all .2s var(--easing);
}
.qfoot .qnext { flex: 1; }
.qnext:disabled {
  background: #E2EAF2;
  color: #B4C2D0;
  box-shadow: none;
  cursor: not-allowed;
}
.qnext:not(:disabled):active { transform: scale(0.985); }

/* ============================================================
   NUMERIC INPUT (premium ruler)
   ============================================================ */
.numwrap {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
}
.numdisplay {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 92px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50;
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.numdisplay .unit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.numhint {
  color: var(--ink-3); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 22px;
}
.steppers {
  display: flex; align-items: center; gap: 16px; margin-top: 4px;
}
.step {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--brand-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  font-size: 26px; font-weight: 300;
  transition: all .15s var(--easing);
  user-select: none;
}
.step:hover { border-color: var(--brand); box-shadow: var(--shadow-card-hover); }
.step:active { transform: scale(0.92); }
.step.lg { width: 64px; height: 64px; font-size: 32px; }

.ruler {
  margin-top: 28px;
  width: 100%;
  height: 64px;
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.ruler-track {
  position: absolute; top: 28px; left: 50%;
  display: flex; align-items: flex-end; height: 32px;
  transition: transform .12s var(--easing);
  will-change: transform;
  pointer-events: none;
}
.ruler-tick {
  width: 12px;
  height: 32px;
  display: flex; justify-content: center; align-items: flex-end;
  flex: 0 0 12px;
}
.ruler-tick::before {
  content: ""; display: block;
  width: 2px; height: 10px; background: #A8B8CB; border-radius: 2px;
}
.ruler-tick.big::before { height: 18px; background: #6E8499; }
.ruler-tick.huge::before { height: 24px; width: 2.5px; background: #2A3A52; }
.ruler-cursor {
  position: absolute; top: 12px; left: 50%;
  width: 3px; height: 36px; border-radius: 4px;
  background: var(--brand);
  transform: translateX(-50%);
  box-shadow: 0 6px 14px rgba(31,164,224,0.5);
  pointer-events: none;
}
.ruler-cursor::after {
  content: ""; position: absolute;
  top: -4px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 4px 10px rgba(31,164,224,0.5);
}

/* ============================================================
   CHECKLIST (multi-select metabolic)
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 4px; }
.chip {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s var(--easing);
  display: flex; align-items: center; gap: 8px;
}
.chip:hover { border-color: #B8CADD; }
.chip.on { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 14px rgba(31,164,224,0.3); }
.chip-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid #C5D1DE;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.chip.on .chip-dot { background: #fff; border-color: #fff; }

/* ============================================================
   BODY MAP
   ============================================================ */
.bodywrap {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px;
}
.bodymap { width: 200px; height: 320px; position: relative; }
.bodymap svg { width: 100%; height: 100%; }
.bodyhint { color: var(--ink-3); font-size: 13px; margin-top: 14px; }
.zone-dot {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(31,164,224,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s var(--easing);
}
.zone-dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}
.zone-dot.on { background: rgba(31,164,224,0.18); transform: scale(1.2); }
.zone-dot.on::after { background: var(--brand); box-shadow: 0 0 0 3px rgba(31,164,224,0.25); }
.zone-pulse {
  position: absolute;
  border-radius: 50%; inset: -8px;
  border: 1.5px solid var(--brand);
  opacity: 0;
  animation: pulse 1.8s var(--easing) infinite;
}
.zone-dot.on .zone-pulse { opacity: 1; }
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   LOGIN / SIGNUP final screen
   ============================================================ */
.final {
  padding: 70px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 100%;
  gap: 16px;
}
.final-badge {
  display: inline-flex; align-self: flex-start;
  align-items: center; gap: 8px;
  background: rgba(31,164,224,0.12);
  color: var(--brand-2);
  padding: 7px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.final-title {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: 32px; line-height: 1.14;
  color: var(--ink); letter-spacing: -0.012em;
  font-variation-settings: "SOFT" 50;
}
.final-title em { font-style: italic; color: var(--brand-2); font-weight: 300; }
.final-sub { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; }
.summary {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px; margin-top: 4px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.summary-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
}
.summary-head .count { color: var(--brand-2); }
.summary-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.summary-row .pill {
  flex-shrink: 0;
  background: rgba(31,164,224,0.12);
  color: var(--brand-2);
  padding: 3px 10px; border-radius: 999px;
  font-weight: 700; font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.actions-stack { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.divider {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-4); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600;
  margin: 4px 0 2px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.social-row { display: flex; gap: 10px; }
.social {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: all .2s var(--easing);
}
.social:hover { border-color: #C7D5E2; background: #FAFCFE; }

.terms { font-size: 11px; color: var(--ink-4); text-align: center; line-height: 1.5; }
.terms a { color: var(--brand-2); text-decoration: none; font-weight: 600; }

/* ============================================================
   INTERSTITIAL (loading / analysing)
   ============================================================ */
.inter {
  flex: 1; padding: 40px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.inter-spinner {
  width: 110px; height: 110px;
  position: relative;
  margin-bottom: 28px;
}
.inter-spinner svg { width: 100%; height: 100%; animation: rotate 2.2s linear infinite; }
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.inter-title {
  font-family: 'Fraunces', serif; font-weight: 300; font-size: 26px;
  color: var(--ink); letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 50;
}
.inter-sub { color: var(--ink-3); margin-top: 8px; font-size: 14.5px; line-height: 1.5; max-width: 280px; }

.fadeline {
  margin-top: 22px; min-height: 22px;
  font-size: 13px; color: var(--brand-2); font-weight: 600;
  letter-spacing: 0.06em;
  animation: fadeLine .5s var(--easing);
}
@keyframes fadeLine {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
