/* ─────────────────────────────────────────────────
   AiMei Aproape · v3 — repositioned for the family
   Sora (headlines) · Manrope (body) · Geist Mono fallback removed
   Palette: Earth Beige · Serene Blue · Honey · Coral
   ───────────────────────────────────────────────── */

:root{
  /* Brand colours (per notes) */
  --blue:#2C5E8A;            /* Serene Blue — text & structure */
  --blue-deep:#1F4264;
  --blue-darker:#163050;
  --blue-50:#e6edf3;
  --blue-100:#cfdde9;

  --coral:#D95D50;           /* Terracotta — CTAs, accents */
  --coral-soft:#f3c8c2;
  --coral-50:#faeae6;
  --coral-deep:#C14949;

  --gold:#F4D068;            /* Honey */
  --gold-soft:#F7E5A9;
  --gold-50:#fbf3d8;

  --paper:#EFE9DB;           /* Earth Beige — main canvas */
  --paper-2:#EADFC9;
  --paper-3:#e2d3b8;
  --paper-card:#FAF5F0;      /* Linen — modules */

  --ink:#152238;
  --ink-soft:#2a3548;
  --muted:#6f7588;

  --line:rgba(31,66,100,.10);
  --line-strong:rgba(31,66,100,.20);

  /* Type — two families only */
  --display:'Sora',system-ui,sans-serif;
  --sans:'Manrope',system-ui,sans-serif;
  --mono:'Sora',system-ui,sans-serif;  /* monospaced look via uppercase+letterspacing */

  /* Sizing */
  --wrap:1240px;
  --radius:18px;
  --radius-s:10px;
  --radius-l:28px;
  --shadow-card:0 24px 60px -32px rgba(31,66,100,.28), 0 2px 8px -4px rgba(31,66,100,.10);
  --shadow-float:0 40px 90px -40px rgba(31,66,100,.36);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;background:var(--paper)}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
input,select{font:inherit;color:inherit}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 32px;position:relative}
@media (max-width:640px){ .wrap{padding:0 22px} }

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* utility */
.mono{
  font-family:var(--display);font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;font-size:.72rem;
}
.mono.small{font-size:.66rem}
.kicker{
  font-family:var(--display);font-weight:600;
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--coral);display:inline-block;
}

/* ─────────────────────────────────────────────────
   ROMANIAN MOTIF BAND (subtle dotted)
   ───────────────────────────────────────────────── */
.ro-band{
  height:22px;width:100%;
  position:relative;z-index:10;
  background-color:#1F4264;
  background-image:
    radial-gradient(circle at 9px 50%,  #F4D068 4px, transparent 4.6px),
    radial-gradient(circle at 27px 50%, #D95D50 4px, transparent 4.6px);
  background-size:36px 100%;
  background-repeat:repeat-x;
}
.ro-band-svg{display:none}

/* ─────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────── */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(239,233,219,.85);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex;align-items:center;gap:24px;
  padding:14px 0;
}
.brand{display:inline-flex;align-items:center;gap:11px;color:var(--ink)}
.brand-mark{width:46px;height:46px;border-radius:50%;flex:none;display:block}
@media (max-width:640px){ .brand-mark{width:40px;height:40px} }

.site-nav{display:none;margin-left:18px;gap:26px}
.site-nav a{
  font-family:var(--sans);font-size:.92rem;color:var(--ink-soft);font-weight:500;
  transition:color .2s;
}
.site-nav a:hover{color:var(--coral)}
@media (min-width:1080px){ .site-nav{display:flex} }

.header-right{margin-left:auto;display:flex;align-items:center;gap:14px}

/* language pill — segmented control (active button fills) */
.lang-pill{
  position:relative;display:inline-flex;align-items:center;gap:2px;
  background:rgba(31,66,100,.06);border:1px solid var(--line);
  border-radius:999px;padding:3px;
}
.lang-opt{
  position:relative;z-index:2;width:44px;padding:7px 0;font-size:.72rem;font-weight:600;
  color:var(--muted);border-radius:999px;letter-spacing:.05em;text-align:center;
  transition:background-color .28s ease,color .28s ease;font-family:var(--display);
}
.lang-opt[aria-pressed="true"]{
  background:var(--blue-deep);color:#fff;
}

/* buttons */
.btn{
  display:inline-flex;align-items:center;gap:10px;justify-content:center;
  font-family:var(--sans);font-weight:600;font-size:.98rem;
  padding:14px 24px;border-radius:999px;
  transition:transform .2s cubic-bezier(.2,.7,.2,1),box-shadow .25s,background .2s,color .2s;
  white-space:nowrap;
}
.btn-sm{padding:10px 18px;font-size:.88rem}
.btn:hover{transform:translateY(-1.5px)}
.btn-ink{background:var(--ink);color:var(--paper)}
.btn-ink:hover{background:var(--blue-deep)}
.btn-coral{
  background:var(--coral);color:#fff;
  box-shadow:0 10px 26px -10px rgba(217,93,80,.55);
}
.btn-coral:hover{box-shadow:0 16px 32px -12px rgba(217,93,80,.7);background:var(--coral-deep)}
.btn-ghost{
  background:transparent;color:var(--blue-deep);
  border:1.5px solid var(--blue-deep);
}
.btn-ghost:hover{background:var(--blue-deep);color:#fff}
.btn-full{width:100%}

/* ─────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────── */
.hero{
  position:relative;
  background:var(--blue-deep);
  color:#fff;
  overflow:hidden;
  isolation:isolate;
}
.hero-photo{
  position:absolute;inset:0;z-index:0;
}
.hero-photo image-slot{
  width:100%;height:100%;display:block;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(105deg, rgba(31,66,100,.96) 0%, rgba(31,66,100,.82) 36%, rgba(31,66,100,.35) 60%, rgba(31,66,100,.05) 100%),
    radial-gradient(circle at 30% 80%, rgba(217,93,80,.18), transparent 60%);
}
@media (max-width:880px){
  .hero-overlay{
    background:linear-gradient(180deg, rgba(31,66,100,.92), rgba(31,66,100,.78) 60%, rgba(31,66,100,.86)),
               radial-gradient(circle at 30% 80%, rgba(217,93,80,.18), transparent 60%);
  }
}
.hero-inner{
  position:relative;z-index:2;
  padding:140px 32px 130px;
  max-width:1064px;
}
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(244,208,104,.22);
  border:1px solid rgba(244,208,104,.5);
  color:var(--gold-soft);
  padding:8px 16px;border-radius:999px;
  margin-bottom:34px;
}
.hero-title{
  font-family:var(--display);font-weight:700;
  font-size:clamp(2.6rem, 6.5vw, 5rem);
  line-height:1.06;letter-spacing:-.035em;
  color:#fff;max-width:18ch;
  margin-bottom:30px;
}
.hero-title .line{display:block;line-height:1.06}
.hero-title em{
  font-style:italic;color:var(--gold);font-family:var(--display);
  font-weight:600;letter-spacing:-.03em;line-height:1.06;
}
.hero-lead{
  font-family:var(--sans);font-size:clamp(1rem,1.45vw,1.18rem);
  line-height:1.55;color:rgba(255,255,255,.86);
  max-width:54ch;margin-bottom:38px;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px}
.hero-ctas .btn-ghost{color:#fff;border-color:rgba(255,255,255,.6)}
.hero-ctas .btn-ghost:hover{background:#fff;color:var(--blue-deep)}

.scroll-cue{
  position:absolute;left:50%;bottom:30px;transform:translateX(-50%);
  z-index:3;color:rgba(255,255,255,.7);
  display:inline-flex;flex-direction:column;align-items:center;gap:6px;
}
.cue-dot{ animation:cue 1.8s ease-in-out infinite }
@keyframes cue{
  0%,100%{ transform:translateY(0);opacity:.6 }
  50%{ transform:translateY(6px);opacity:1 }
}

/* ─────────────────────────────────────────────────
   SECTION COMMON
   ───────────────────────────────────────────────── */
section{position:relative}
.section-head{margin-bottom:50px;max-width:780px}
.section-head .kicker{margin-bottom:18px}
.section-title{
  font-family:var(--display);font-weight:700;
  font-size:clamp(1.9rem,3.8vw,2.9rem);
  line-height:1.08;letter-spacing:-.03em;
  color:var(--blue-deep);
}
.section-title em{
  display:block;
  font-style:italic;font-family:var(--display);font-weight:600;letter-spacing:-.03em;
  color:var(--coral);
}
/* Titles stack span / em on two lines and wrap naturally within their column —
   long Romanian headers stay on the page instead of overflowing. */
.section-sub{
  margin-top:18px;color:var(--ink-soft);
  font-family:var(--sans);font-size:1.05rem;line-height:1.6;
  max-width:60ch;
}

.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity .85s cubic-bezier(.2,.6,.2,1), transform .85s cubic-bezier(.2,.6,.2,1);
}
.reveal.in{ opacity:1;transform:none }

/* ─────────────────────────────────────────────────
   INVISIBLE PROBLEM
   ───────────────────────────────────────────────── */
.problem{padding:140px 0 120px;background:var(--paper)}
.problem-grid{
  display:grid;gap:60px;
  grid-template-columns:1fr;
  align-items:start;
}
@media (min-width:980px){
  .problem-grid{ grid-template-columns:1.1fr .9fr;gap:80px }
}
.problem-copy .kicker{display:block;margin-bottom:16px}
.problem-body{
  margin-top:28px;color:var(--ink-soft);
  font-size:1.08rem;line-height:1.65;max-width:54ch;
}
.problem-pull{
  margin-top:28px;
  font-family:var(--display);font-weight:600;font-size:1.5rem;line-height:1.3;
  color:var(--blue-deep);letter-spacing:-.01em;
  padding-left:18px;border-left:3px solid var(--coral);
  max-width:30ch;
}

.problem-list{
  list-style:none;display:flex;flex-direction:column;gap:14px;
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 26px;
  box-shadow:var(--shadow-card);
}
.problem-list li{display:flex;gap:14px;align-items:flex-start}
.p-dot{
  width:10px;height:10px;border-radius:50%;background:var(--coral);
  margin-top:8px;flex:none;
  box-shadow:0 0 0 3px var(--coral-50);
}
.problem-list strong{
  display:block;font-family:var(--display);font-weight:600;color:var(--blue-deep);
  font-size:1rem;margin-bottom:2px;letter-spacing:-.01em;
}
.problem-list span{color:var(--ink-soft);font-size:.92rem;line-height:1.5}

/* ─────────────────────────────────────────────────
   WHAT AIMEI IS — 4 ecosystem cards
   ───────────────────────────────────────────────── */
.what{padding:120px 0;background:var(--paper-2);position:relative}
.what-head{max-width:820px}
.what-grid{
  display:grid;gap:18px;
  grid-template-columns:1fr;
}
@media (min-width:680px){ .what-grid{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1080px){ .what-grid{grid-template-columns:repeat(4,1fr)} }
.what-card{
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  display:flex;flex-direction:column;gap:14px;
  transition:transform .3s,box-shadow .3s;
}
.what-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-card)}
.what-glyph{
  width:54px;height:54px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
}
.what-card-pharma .what-glyph{background:var(--blue-50);color:var(--blue)}
.what-card-instr  .what-glyph{background:var(--coral-50);color:var(--coral)}
.what-card-rem    .what-glyph{background:var(--gold-soft);color:#8a6320}
.what-card-fam    .what-glyph{background:var(--blue-50);color:var(--blue-deep)}
.what-card h3{
  font-family:var(--display);font-weight:700;font-size:1.25rem;line-height:1.2;
  color:var(--blue-deep);letter-spacing:-.02em;
}
.what-card p{color:var(--ink-soft);font-size:.95rem;line-height:1.55}

/* ─────────────────────────────────────────────────
   HOW IT WORKS — 3 photo cards
   ───────────────────────────────────────────────── */
.how{padding:140px 0;background:var(--paper)}
.how-steps{
  list-style:none;display:grid;gap:24px;
  grid-template-columns:1fr;
  margin-top:30px;
}
@media (min-width:880px){ .how-steps{grid-template-columns:repeat(3,1fr)} }
.how-step{
  display:flex;flex-direction:column;gap:22px;
}
.how-photo{
  position:relative;
  aspect-ratio:4/5;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--paper-2);
  border:1px solid var(--line);
}
.how-photo image-slot{display:block;width:100%;height:100%}
.step-num{
  position:absolute;top:18px;left:18px;z-index:2;
  width:44px;height:44px;border-radius:50%;
  background:var(--gold);color:var(--blue-deep);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:700;font-size:1.2rem;
  box-shadow:0 8px 18px -8px rgba(31,66,100,.4);
}
.how-text{display:flex;flex-direction:column;gap:8px}
.how-text .kicker{color:var(--coral)}
.how-text h3{
  font-family:var(--display);font-weight:700;font-size:1.5rem;line-height:1.15;
  color:var(--blue-deep);letter-spacing:-.02em;
}
.how-text p{color:var(--ink-soft);font-size:.98rem;line-height:1.55}

/* ─────────────────────────────────────────────────
   PHARMACIST INSTRUCTIONS — differentiator + device
   ───────────────────────────────────────────────── */
.instructions{padding:140px 0;background:var(--paper-2)}
.instructions-grid{
  display:grid;gap:60px;
  grid-template-columns:1fr;
  align-items:center;
}
@media (min-width:980px){
  .instructions-grid{ grid-template-columns:1.1fr .9fr;gap:80px }
}
.instructions-copy .kicker{display:block;margin-bottom:18px}
.instructions-body{
  margin-top:24px;color:var(--ink-soft);
  font-size:1.05rem;line-height:1.65;max-width:54ch;
}
.instr-tags{
  list-style:none;display:flex;flex-wrap:wrap;gap:7px;
  margin-top:32px;
}
@media (min-width:980px){
  /* keep all five tags on one line within the copy column */
  .instr-tags{flex-wrap:nowrap}
}
.instr-tags li{
  background:var(--paper-card);
  border:1px solid var(--line);
  color:var(--blue-deep);
  white-space:nowrap;
  padding:7px 12px;border-radius:999px;
  font-family:var(--display);font-weight:600;font-size:.74rem;
  letter-spacing:-.01em;
}

/* device frame */
.instructions-device{display:flex;justify-content:center}
.device-frame{
  width:330px;
  background:#0e1622;
  border-radius:46px;
  padding:14px;
  box-shadow:0 60px 80px -40px rgba(31,66,100,.45), 0 0 0 1.5px rgba(255,255,255,.06) inset;
  position:relative;
}
.device-notch{
  position:absolute;top:18px;left:50%;transform:translateX(-50%);
  width:108px;height:28px;background:#0e1622;border-radius:0 0 16px 16px;z-index:2;
}
.device-screen{
  background:var(--paper-card);
  border-radius:34px;
  overflow:hidden;
  min-height:600px;
}
.instr-screen{
  padding:50px 22px 22px;
  display:flex;flex-direction:column;gap:14px;
}
.s-top{display:flex;justify-content:space-between;color:var(--muted)}
.instr-greeting .kicker{display:block;color:var(--coral);font-size:.6rem;margin-bottom:2px}
.instr-greeting h4{
  font-family:var(--display);font-weight:700;font-size:1.25rem;line-height:1.2;
  color:var(--blue-deep);letter-spacing:-.02em;
}
.instr-card{
  background:var(--paper);
  border:1px solid var(--line);border-radius:14px;
  padding:14px;display:flex;flex-direction:column;gap:10px;
}
.instr-head{
  display:flex;justify-content:space-between;align-items:center;
  padding-bottom:8px;border-bottom:1px solid var(--line);
}
.instr-med{
  font-family:var(--display);font-weight:700;font-size:1rem;color:var(--blue-deep);
  letter-spacing:-.02em;
}
.instr-head .mono.small{color:var(--blue);font-weight:600}
.instr-list{list-style:none;display:flex;flex-direction:column;gap:6px}
.instr-list li{
  display:flex;gap:10px;align-items:baseline;
  font-size:.84rem;color:var(--ink-soft);
}
.instr-list .mono.small{
  min-width:80px;color:var(--coral);font-size:.58rem;letter-spacing:.15em;
}
.instr-warn{
  display:flex;gap:8px;align-items:flex-start;
  background:var(--gold-soft);border-radius:10px;padding:10px 12px;
  font-size:.78rem;color:#6a4f10;line-height:1.4;
}
.warn-dot{
  width:8px;height:8px;border-radius:50%;background:#c79018;flex:none;margin-top:5px;
}
.reminder-card{
  background:var(--blue-50);
  border:1px solid rgba(44,94,138,.2);
  border-radius:14px;padding:14px;
  display:flex;flex-direction:column;gap:4px;
}
.reminder-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}
.reminder-head .kicker{font-size:.58rem;color:var(--blue)}
.reminder-pill{
  font-family:var(--display);font-weight:600;font-size:.58rem;
  background:var(--coral);color:#fff;
  padding:3px 8px;border-radius:99px;letter-spacing:.06em;text-transform:uppercase;
}
.reminder-card strong{
  font-family:var(--display);font-weight:600;font-size:.95rem;color:var(--blue-deep);
  letter-spacing:-.01em;
}

/* ─────────────────────────────────────────────────
   ROLES — two photo cards side-by-side
   ───────────────────────────────────────────────── */
.roles{padding:140px 0;background:var(--paper)}
.roles-grid{
  display:grid;gap:24px;
  grid-template-columns:1fr;
}
@media (min-width:880px){
  .roles-grid{ grid-template-columns:1fr 1fr;gap:30px }
}
.role-card{
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:var(--shadow-card);
}
.role-photo{
  aspect-ratio:16/10;
  background:var(--paper-2);
  position:relative;
}
.role-photo image-slot{display:block;width:100%;height:100%}
.role-body{
  padding:30px;display:flex;flex-direction:column;gap:14px;
}
.role-tag{
  letter-spacing:.16em;color:var(--muted);
}
.role-loved .role-tag{color:var(--coral)}
.role-caregiver .role-tag{color:var(--blue)}
.role-body h3{
  font-family:var(--display);font-weight:700;font-size:1.55rem;line-height:1.15;
  color:var(--blue-deep);letter-spacing:-.02em;
}
.role-list{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:6px}
.role-list li{
  position:relative;padding-left:22px;
  color:var(--ink-soft);font-size:.96rem;line-height:1.5;
}
.role-list li::before{
  content:"";position:absolute;left:0;top:.7em;
  width:12px;height:1.5px;background:var(--coral);
}
.role-caregiver .role-list li::before{background:var(--blue)}

/* ─────────────────────────────────────────────────
   TRUST
   ───────────────────────────────────────────────── */
.trust{padding:140px 0;background:var(--paper-2)}
.trust-grid{
  display:grid;gap:60px;
  grid-template-columns:1fr;
  align-items:start;
}
@media (min-width:980px){
  .trust-grid{ grid-template-columns:1fr 1fr;gap:80px }
}
.trust-copy .kicker{display:block;margin-bottom:18px}
.trust-body{
  margin-top:28px;color:var(--ink-soft);
  font-size:1.05rem;line-height:1.65;max-width:46ch;
}
.trust-disclaimer{
  margin-top:30px;
  padding:18px 20px;
  background:var(--paper-card);
  border:1px solid var(--line);
  border-left:3px solid var(--coral);
  border-radius:var(--radius-s);
  color:var(--ink-soft);font-size:.95rem;line-height:1.55;
}
.trust-disclaimer strong{
  color:var(--blue-deep);font-family:var(--display);font-weight:700;letter-spacing:-.01em;
  display:block;margin-bottom:4px;
}

.trust-list{
  list-style:none;display:flex;flex-direction:column;gap:14px;
  background:var(--paper-card);border:1px solid var(--line);
  border-radius:var(--radius);padding:24px;
  box-shadow:var(--shadow-card);
}
.trust-list li{display:flex;gap:16px;align-items:flex-start}
.trust-ico{
  width:40px;height:40px;border-radius:10px;
  background:var(--blue-50);color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.trust-list li:nth-child(2) .trust-ico{background:var(--gold-soft);color:#8a6320}
.trust-list li:nth-child(3) .trust-ico{background:var(--coral-50);color:var(--coral)}
.trust-list li:nth-child(4) .trust-ico{background:var(--blue-50);color:var(--blue-deep)}
.trust-list strong{
  display:block;font-family:var(--display);font-weight:600;color:var(--blue-deep);
  font-size:1rem;margin-bottom:2px;letter-spacing:-.01em;
}
.trust-list span{color:var(--ink-soft);font-size:.92rem;line-height:1.5}

/* ─────────────────────────────────────────────────
   WAITLIST — two cards
   ───────────────────────────────────────────────── */
.waitlist{padding:140px 0 100px;background:var(--paper)}
.waitlist-head{max-width:860px;text-align:center;margin:0 auto 50px}
.waitlist-head .kicker{margin-bottom:18px}
.waitlist-head .section-sub{margin-left:auto;margin-right:auto;text-align:center}
/* The waitlist title is short enough to read as one line — keep span + em inline. */
.waitlist-head .section-title{margin-left:auto;margin-right:auto;text-align:center}
.waitlist-head .section-title em{display:inline}
.wl-grid{
  display:grid;gap:24px;
  grid-template-columns:1fr;
  max-width:1080px;margin:0 auto;
}
@media (min-width:880px){ .wl-grid{grid-template-columns:1fr 1fr} }

.wl-card{
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:32px;
  display:flex;flex-direction:column;gap:18px;
  box-shadow:var(--shadow-card);
}
.wl-family{
  border-top:4px solid var(--coral);
}
.wl-partner{
  border-top:4px solid var(--blue-deep);
  background:linear-gradient(180deg,var(--paper-card),var(--blue-50) 250%);
}
.wl-head{display:flex;gap:16px;align-items:flex-start}
.wl-glyph{
  width:50px;height:50px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.wl-glyph-family{background:var(--coral-50);color:var(--coral)}
.wl-glyph-partner{background:var(--blue-50);color:var(--blue-deep)}
.wl-tag{
  display:block;letter-spacing:.16em;color:var(--muted);margin-bottom:4px;
}
.wl-family .wl-tag{color:var(--coral)}
.wl-partner .wl-tag{color:var(--blue-deep)}
.wl-head h3{
  font-family:var(--display);font-weight:700;font-size:1.35rem;line-height:1.15;
  color:var(--blue-deep);letter-spacing:-.02em;
}
.wl-sub{
  color:var(--ink-soft);font-size:.95rem;line-height:1.5;
}
/* Reserve equal height for the description so both cards' fields and
   submit buttons line up even when one description wraps to two lines. */
@media (min-width:880px){
  .wl-sub{ min-height:2.85rem; }
}
.wl-field{display:block}
.wl-field input,
.wl-field select{
  width:100%;
  background:var(--paper);
  border:1px solid var(--line-strong);
  border-radius:12px;
  padding:13px 16px;
  font-size:.96rem;color:var(--ink);
  transition:border-color .2s,box-shadow .2s;
}
.wl-field input:focus,
.wl-field select:focus{
  outline:none;
  border-color:var(--coral);
  box-shadow:0 0 0 4px var(--coral-50);
}
.wl-field select{appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231F4264' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/></svg>");background-repeat:no-repeat;background-position:right 18px center}
.wl-note{
  color:var(--muted);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;
  text-align:center;font-weight:500;
}
.wl-success{
  display:none;align-items:center;gap:10px;
  color:var(--blue-deep);font-weight:600;
  background:var(--gold-soft);
  padding:14px 16px;border-radius:12px;
}
.wl-card.is-sent .wl-field,
.wl-card.is-sent button[type="submit"],
.wl-card.is-sent .wl-note,
.wl-card.is-sent .wl-sub{display:none}
.wl-card.is-sent .wl-success{display:flex}

/* ─────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────── */
.site-footer{
  background:var(--blue-darker);color:rgba(255,255,255,.7);
  padding:0 0 30px;
  position:relative;
}
.ro-band-foot{
  height:22px;margin-bottom:50px;
}
.foot-grid{
  display:grid;gap:40px;
  grid-template-columns:1fr;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
@media (min-width:760px){ .foot-grid{ grid-template-columns:1.4fr repeat(3,1fr) } }
.brand-light{margin-bottom:18px}
.brand-light .brand-mark{
  background:#fff;
}
.foot-tag{
  color:rgba(255,255,255,.5);font-size:.95rem;max-width:32ch;line-height:1.5;
}
.foot-col{display:flex;flex-direction:column;gap:10px}
.foot-col .kicker{color:rgba(255,255,255,.5);margin-bottom:8px}
.foot-col a{
  font-size:.92rem;color:rgba(255,255,255,.7);transition:color .2s;
}
.foot-col a:hover{color:#fff}
.foot-legal{
  margin-top:24px;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:14px;
  font-size:.7rem;color:rgba(255,255,255,.45);
  letter-spacing:.08em;text-transform:uppercase;
}
.foot-pill{
  background:rgba(255,255,255,.06);border-radius:999px;padding:5px 12px;
}

/* ─────────────────────────────────────────────────
   IMAGE SLOT — placeholder appearance
   ───────────────────────────────────────────────── */
image-slot{
  background:linear-gradient(135deg,var(--paper-2),var(--paper-3));
}
image-slot:not([filled])::part(label){
  color:var(--blue-deep);
  font-family:var(--display);
  font-weight:500;
  font-size:.85rem;
  letter-spacing:-.01em;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE TIDY-UP
   ───────────────────────────────────────────────── */
@media (max-width:760px){
  .hero-inner{padding:90px 22px 110px}
  .problem,.what,.how,.instructions,.roles,.trust,.waitlist{padding:80px 0}
  .role-body{padding:24px 22px}
  .wl-card{padding:26px 22px}
  .device-frame{width:300px}
  .device-screen{min-height:560px}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001s !important;transition-duration:.001s !important}
  .reveal{opacity:1;transform:none}
}
