@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400 600; font-display: swap; src: url(/assets/fonts/dm-sans.woff2) format('woff2'); }
@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url(/assets/fonts/dm-serif-display.woff2) format('woff2'); }
@font-face { font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url(/assets/fonts/dm-serif-display-italic.woff2) format('woff2'); }

:root {
  --paper: #FAF6F0;
  --paper-2: #F3EDE6;
  --surface: #FFFFFF;
  --line: #E8E0D8;
  --line-strong: #D6CCC2;
  --ink: #2D2926;
  --ink-2: #44403C;
  --ink-soft: #5C5752;
  --ink-mute: #736E69;
  --terra: #A45B44;
  --terra-deep: #8B4A37;
  --terra-deeper: #6E3A2B;
  --blush: #F2D6CC;
  --blush-50: #FBF0EC;
  --sage: #557055;
  --sage-deep: #3F5440;
  --sage-50: #F0F5EF;
  --sage-100: #DAE7D8;
  --sage-200: #C0D6BD;
  --amber: #B57A20;
  --amber-50: #FEF7E8;
  --error: #B4463F;
  --error-50: #FBEDEC;
  --band: #3F5440;
  --band-ink: #DAE7D8;
  --cta: #A45B44;
  --shadow: 0 24px 60px rgba(45, 41, 38, 0.12);
  --radius: 24px;
  --gutter: clamp(20px, 5vw, 96px);
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1C1917;
    --paper-2: #2A2420;
    --surface: #25201D;
    --line: #3A342F;
    --line-strong: #4A433C;
    --ink: #F3EDE6;
    --ink-2: #E8E0D8;
    --ink-soft: #D6CCC2;
    --ink-mute: #B8AFA6;
    --terra: #E4AD99;
    --terra-deep: #E4AD99;
    --terra-deeper: #F2D6CC;
    --blush: #4A332C;
    --blush-50: #3A2824;
    --sage: #A8C4A5;
    --sage-deep: #C0D6BD;
    --sage-50: #243028;
    --sage-100: #2E3B30;
    --amber: #F0C478;
    --amber-50: #3A3018;
    --error: #E08A86;
    --error-50: #3A2422;
    --band: #243028;
    --band-ink: #C0D6BD;
    --cta: #8B4A37;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color-scheme: dark;
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

main { flex: 1; }
img, svg { max-width: 100%; display: block; }

a { color: var(--terra-deep); text-underline-offset: 3px; }
a:hover { color: var(--terra-deeper); }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
.accent { font-style: italic; color: var(--terra); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 10px;
  background: var(--ink); color: var(--paper); text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--paper); }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }

/* Cabecera */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: 36px; }
.brand span { font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; border-radius: 999px;
}
.nav a:not(.btn):hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.nav .btn { margin-left: 8px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--paper-2); color: var(--ink); cursor: pointer;
  align-items: center; justify-content: center;
}

@media (max-width: 760px) {
  .site-header .wrap { min-height: 64px; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(45, 41, 38, 0.08);
  }
  .nav[data-open="false"] { display: none; }
  .nav a:not(.btn) { min-height: 52px; font-size: 17px; border-radius: 12px; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
}

/* Botones */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font: inherit; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}
.btn:hover { color: var(--paper); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-store { min-height: 60px; padding: 0 26px 0 22px; border-radius: 16px; text-align: left; }
.btn-store svg { width: 26px; height: 26px; }
.btn-store small { display: block; font-size: 12px; font-weight: 500; opacity: .8; line-height: 1.1; }
.btn-store strong { display: block; font-size: 19px; line-height: 1.15; }

.btn-light { background: #FFFFFF; color: #2D2926; }
.btn-light:hover { color: #2D2926; }

.btn-primary { background: var(--terra-deep); color: #FFFFFF; border-radius: 16px; min-height: 54px; font-size: 17px; width: 100%; }
.btn-primary:hover { color: #FFFFFF; background: var(--terra-deeper); }
@media (prefers-color-scheme: dark) { .btn-primary { background: #A45B44; } .btn-primary:hover { background: #8B4A37; } }
.btn-primary[disabled] { opacity: .6; cursor: progress; transform: none; }

.link-arrow { display: inline-flex; align-items: center; min-height: 48px; padding: 0 8px; font-weight: 600; text-decoration: none; }

/* Hero */

.hero { padding-block: clamp(40px, 8vw, 104px) clamp(48px, 9vw, 128px); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 72px); align-items: center; }

.pill { display: inline-flex; align-self: flex-start; padding: 7px 14px; border-radius: 999px; background: var(--sage-50); color: var(--sage-deep); font-size: 14px; font-weight: 600; }

.hero-copy { display: flex; flex-direction: column; gap: clamp(18px, 2.4vw, 28px); }
.hero h1 { font-size: clamp(46px, 5.6vw, 78px); line-height: 1; }
.lede { max-width: 34ch; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding-top: 4px; }
.fine { font-size: 14px; color: var(--ink-mute); }

.hero-art { position: relative; min-height: 640px; }
.hero-art .blob { position: absolute; inset: 20px 0 20px 40px; border-radius: 48px; background: var(--blush); }

.mock {
  position: absolute; background: var(--surface); border-radius: 28px; box-shadow: var(--shadow);
  padding: 26px; display: flex; flex-direction: column; gap: 18px;
}
.mock-checkin { left: 0; top: 16px; width: min(400px, 86%); z-index: 1; }
.mock-cal { right: 0; bottom: 0; z-index: 2; width: min(300px, 70%); padding: 22px; gap: 14px; border-radius: 24px; }

.mock-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.mock-head .serif { font-size: 27px; }
.mock-head small { font-size: 13px; color: var(--ink-mute); }

.emotions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.emotion { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; border-radius: 18px; background: var(--paper); border: 2px solid transparent; font-size: 13px; color: var(--ink-soft); }
.emotion img { width: 44px; height: 44px; }
.emotion.is-on { background: var(--sage-50); border-color: #6B8B6A; color: var(--sage-deep); font-weight: 600; }
.emotion.more { justify-content: center; border: 1.5px dashed var(--line-strong); background: transparent; color: var(--ink-mute); }

.meter-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.meter-row b { color: var(--ink); }
.meter { height: 8px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.meter span { display: block; width: 60%; height: 100%; border-radius: inherit; background: #8BA888; }

.mock-cal .serif { font-size: 22px; }
.dots { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.dots i { aspect-ratio: 1; border-radius: 50%; background: var(--paper-2); }
.dots .g { background: #A8C4A5; } .dots .y { background: #F0C478; } .dots .b { background: #A9C3D4; } .dots .r { background: #E4AD99; }
.dots .today { background: transparent; box-shadow: inset 0 0 0 2px var(--terra); }
.streak { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 14px; background: var(--amber-50); color: var(--ink-2); font-size: 14px; }
.streak svg { width: 18px; height: 18px; stroke: var(--amber); flex-shrink: 0; }

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .lede { max-width: 42ch; }
  .hero-art { min-height: 0; padding: 28px 20px; border-radius: 32px; background: var(--blush); }
  .hero-art .blob, .mock-cal { display: none; }
  .mock { position: static; width: 100%; max-width: 440px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .hero-actions .btn-store { width: 100%; justify-content: center; }
  .hero-actions .link-arrow { display: none; }
  .hero-copy .fine { text-align: center; }
  .mock { padding: 20px; gap: 14px; border-radius: 22px; }
  .mock-head .serif { font-size: 22px; }
  .emotion img { width: 36px; height: 36px; }
  .emotions { gap: 8px; }
}

/* Secciones */

.section { padding-block: clamp(64px, 10vw, 128px); }
.section-white { background: var(--surface); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 48px; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 64px); }
.section-head h2 { max-width: 20ch; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; }
.section-head p { max-width: 38ch; color: var(--ink-soft); }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); margin: 0; padding: 0; list-style: none; }
.feature { display: flex; flex-direction: column; gap: 12px; padding: clamp(22px, 2.6vw, 32px); border-radius: var(--radius); background: var(--paper); }
.feature h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
.feature p { color: var(--ink-soft); font-size: 16px; }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0; }
.icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-terra { background: var(--blush-50); } .icon-terra svg { stroke: var(--terra); }
.icon-sage { background: var(--sage-50); } .icon-sage svg { stroke: var(--sage); }
.icon-amber { background: var(--amber-50); } .icon-amber svg { stroke: var(--amber); }

@media (max-width: 960px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .features { grid-template-columns: minmax(0, 1fr); }
  .feature { flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px; border-radius: 20px; }
  .feature .icon { width: 44px; height: 44px; border-radius: 14px; }
  .feature .icon svg { width: 22px; height: 22px; }
  .feature h3 { font-size: 17px; margin-bottom: 4px; }
  .feature p { font-size: 15px; }
}

/* Banda de privacidad */

.band { background: var(--band); color: var(--band-ink); }
.band .wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 80px); align-items: center; }
.band-copy { display: flex; flex-direction: column; gap: 22px; }
.band .eyebrow { color: #C0D6BD; }
.band h2 { font-size: clamp(36px, 4.6vw, 56px); line-height: 1.05; color: #FFFFFF; }
.band p { font-size: 18px; }
.band a { color: #FFFFFF; font-weight: 600; }
.band a:hover { color: #F0F5EF; }
.checks { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.checks li { display: flex; gap: 16px; padding: 20px 22px; border-radius: 20px; background: rgba(255, 255, 255, 0.08); font-size: 17px; line-height: 1.5; }
.checks svg { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: #C0D6BD; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.checks strong { color: #FFFFFF; }
@media (max-width: 860px) { .band .wrap { grid-template-columns: minmax(0, 1fr); } }

/* Premium */

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.split h2 { font-size: clamp(34px, 4vw, 48px); line-height: 1.08; margin-bottom: 18px; }
.split > div > p { color: var(--ink-soft); }
.perks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 0; padding: clamp(24px, 3vw, 36px); list-style: none; border-radius: 28px; background: var(--blush-50); }
.perks li { display: flex; flex-direction: column; gap: 4px; }
.perks strong { font-size: 17px; }
.perks span { font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 480px) { .perks { grid-template-columns: minmax(0, 1fr); gap: 18px; } }

/* Aviso de crisis */

.care { display: flex; gap: 20px; align-items: flex-start; padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 40px); border-radius: var(--radius); border: 1.5px solid #E4AD99; color: var(--ink-2); }
.care svg { width: 30px; height: 30px; flex-shrink: 0; fill: none; stroke: var(--terra); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 480px) { .care svg { display: none; } .care { font-size: 15px; } }

/* CTA final */

.cta { margin-top: clamp(56px, 8vw, 96px); padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 88px); border-radius: clamp(28px, 4vw, 40px); background: var(--cta); display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.cta img { width: 72px; height: 72px; padding: 12px; border-radius: 22px; background: #FAF6F0; }
.cta h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; color: #FFFFFF; max-width: 16ch; }
@media (max-width: 480px) { .cta .btn { width: 100%; } .cta img { width: 60px; height: 60px; } }

/* Pie */

.site-footer { margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom, 0px); }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px 32px; flex-wrap: wrap; padding-block: 32px; font-size: 14px; color: var(--ink-mute); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.site-footer nav a { color: var(--ink-soft); display: inline-flex; min-height: 44px; align-items: center; }

/* Páginas de texto (privacidad, términos, soporte) */

.doc { padding-block: clamp(40px, 7vw, 80px) 0; }
.doc .wrap { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.toc { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 2px; font-size: 15px; }
.toc .eyebrow { color: var(--ink-mute); padding: 0 14px 10px; }
.toc a { padding: 8px 14px; border-radius: 10px; color: var(--ink-soft); text-decoration: none; line-height: 1.4; }
.toc a:hover { background: var(--paper-2); color: var(--ink); }
.toc a.is-active { background: var(--blush-50); color: var(--terra-deeper); font-weight: 600; }

.prose { max-width: 720px; }
.prose .updated { font-size: 14px; color: var(--ink-mute); margin-bottom: 14px; }
.prose h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.02; margin-bottom: 28px; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 32px); line-height: 1.2; margin: 48px 0 14px; letter-spacing: -0.01em; }
.prose h3 { font-size: 18px; font-weight: 600; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--ink-2); line-height: 1.75; }
.prose p + p, .prose ul + p { margin-top: 14px; }
.prose ul { margin: 12px 0 0; padding-left: 22px; }
.prose li + li { margin-top: 6px; }
.prose li::marker { color: var(--terra); }
.summary { padding: 22px 26px; border-radius: 20px; background: var(--sage-50); color: var(--sage-deep) !important; }
.summary strong { color: var(--sage-deep); }

@media (max-width: 900px) {
  .doc .wrap { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; padding: 18px 10px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
}

/* Soporte */

.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.faq details { border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 60px; padding: 14px 20px; cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 10px; height: 10px; flex-shrink: 0; border-right: 2px solid var(--ink-mute); border-bottom: 2px solid var(--ink-mute); transform: rotate(45deg) translateY(-3px); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq details > div { padding: 0 20px 18px; }

.contact-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; padding: 24px; border-radius: 22px; background: var(--blush-50); }
.contact-card strong { display: block; font-size: 18px; color: var(--ink); overflow-wrap: anywhere; }
.contact-card span { color: var(--ink-soft); font-size: 15px; }

.lines { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; padding: 0; list-style: none; }
.lines li { margin: 0; padding: 18px 20px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); line-height: 1.45; }
.lines .country { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.lines .name { display: block; color: var(--ink); font-weight: 600; margin-top: 2px; }
.lines a { display: inline-flex; align-items: center; min-height: 40px; font-size: 20px; font-weight: 600; text-decoration: none; }
.lines .hours { display: block; font-size: 14px; color: var(--ink-mute); }
@media (max-width: 600px) { .lines { grid-template-columns: minmax(0, 1fr); } }

/* Acciones de cuenta (restablecer contraseña) */

.auth { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(32px, 8vw, 80px) 20px; }
.auth-card { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: 24px; }
.auth-card > section { display: flex; flex-direction: column; gap: 24px; }
.auth-head { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.auth-head h1 { font-size: clamp(30px, 6vw, 38px); line-height: 1.1; }
.auth-head p { color: var(--ink-soft); font-size: 16px; overflow-wrap: anywhere; }
.auth-head strong { color: var(--ink); }
.panel { display: flex; flex-direction: column; gap: 18px; padding: 24px clamp(20px, 5vw, 28px); border-radius: 24px; background: var(--surface); box-shadow: 0 12px 32px rgba(45, 41, 38, 0.08); }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.input-wrap { position: relative; }
.field input {
  width: 100%; min-height: 54px; padding: 0 56px 0 16px; border-radius: 14px;
  border: 1.5px solid var(--line-strong); background: var(--paper);
  font: inherit; font-size: 16px; font-weight: 400; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--terra); background: var(--surface); box-shadow: 0 0 0 4px color-mix(in srgb, var(--terra) 18%, transparent); }
.field input[aria-invalid="true"] { border-color: var(--error); }
.reveal { position: absolute; right: 5px; top: 5px; width: 44px; height: 44px; border: 0; border-radius: 10px; background: transparent; color: var(--ink-mute); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.reveal:hover { background: var(--paper-2); color: var(--ink); }
.reveal svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hint { font-size: 13px; color: var(--ink-mute); font-weight: 400; }
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 16px; font-size: 15px; line-height: 1.5; }
.notice svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.notice-ok { background: var(--sage-50); color: var(--sage-deep); }
.notice-error { background: var(--error-50); color: var(--error); }
.notice-info { background: var(--paper-2); color: var(--ink-2); }
.auth-foot { text-align: center; font-size: 15px; }
.spinner { width: 28px; height: 28px; margin: 12px auto; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--terra); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2.4s; } }

/* 404 */

.lost { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 80px 20px; text-align: center; }
.lost img { width: 88px; height: 88px; opacity: .9; }
.lost h1 { font-size: clamp(36px, 6vw, 56px); line-height: 1.05; }
.lost p { color: var(--ink-soft); max-width: 36ch; }
