/* ============================================================
   eAttendance — Landing page (welcome.php)
   Weststar Engineering · MOE Malaysia
   Self-contained styles; only loaded on the landing page.
   ============================================================ */

:root {
  --blue: #2f89df;
  --blue-600: #1f6fc0;
  --blue-700: #185aa0;
  --navy: #0a1f3c;
  --navy-800: #0d2748;
  --navy-700: #133360;
  --ink: #0f1a2b;
  --slate: #55627a;
  --slate-400: #8592a8;
  --line: #e6ebf3;
  --paper: #f5f8fc;
  --paper-2: #eef3fa;
  --white: #ffffff;
  --gold: #f5a524;
  --gold-soft: #ffd27a;
  --green: #17936b;
  --shadow-sm: 0 2px 8px rgba(15, 26, 43, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 26, 43, 0.12);
  --shadow-lg: 0 30px 70px rgba(10, 31, 60, 0.28);
  --radius: 18px;
  --radius-lg: 26px;
  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.eatt-landing {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -0.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 137, 223, 0.32);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(47, 137, 223, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(15, 26, 43, 0.06), var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--blue), var(--blue-700));
  box-shadow: 0 8px 18px rgba(47, 137, 223, 0.4);
  color: #fff;
  flex: none;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.brand-sub { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }
.nav.scrolled .brand-name { color: var(--ink); }
.nav.scrolled .brand-sub { color: var(--slate); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a.link {
  padding: 8px 14px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s, background 0.2s;
}
.nav-links a.link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.nav.scrolled .nav-links a.link { color: var(--slate); }
.nav.scrolled .nav-links a.link:hover { color: var(--blue); background: var(--paper); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: rgba(255, 255, 255, 0.14);
  border-radius: 11px; cursor: pointer;
  color: #fff;
}
.nav.scrolled .nav-toggle { background: var(--paper); color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(47, 137, 223, 0.28), transparent 60%),
    radial-gradient(900px 520px at -6% 12%, rgba(19, 51, 96, 0.55), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 46%, #0b2b52 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  margin: 20px 0 0;
  color: #fff;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: 1.14rem;
  color: rgba(233, 240, 250, 0.86);
  margin: 22px 0 32px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-meta .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; line-height: 1;
  color: #fff;
}
.hero-meta .stat span { font-size: 0.82rem; color: rgba(233, 240, 250, 0.7); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3.35;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10, 31, 60, 0) 40%, rgba(10, 31, 60, 0.55));
}

/* Face-scan reticle overlay */
.scan-frame {
  position: absolute;
  top: 16%; left: 12%;
  width: 88px; height: 108px;
  border: 2.5px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(245, 165, 36, 0.18);
  animation: scanpulse 3.2s var(--ease) infinite;
}
.scan-frame span {
  position: absolute; top: -24px; left: -2px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  color: #0f1a2b; background: var(--gold);
  padding: 3px 8px; border-radius: 6px;
  text-transform: uppercase;
}
@keyframes scanpulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-6px); }
}

/* Floating glass cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.float-card.checkin {
  left: -34px; bottom: 42px;
  display: flex; align-items: center; gap: 12px;
  width: 244px;
}
.avatar {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 0.98rem;
  background: linear-gradient(145deg, var(--blue), var(--blue-700));
}
.checkin .who { font-weight: 700; font-size: 0.9rem; line-height: 1.2; }
.checkin .meta { font-size: 0.72rem; color: var(--slate); }
.checkin .tick {
  margin-left: auto; width: 24px; height: 24px; flex: none;
  border-radius: 50%; background: rgba(23, 147, 107, 0.14);
  display: grid; place-items: center; color: var(--green);
}
.checkin .tick svg { width: 14px; height: 14px; }
.float-card.live {
  right: -22px; top: 42px;
  width: 150px;
}
.float-card.live .row { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 600; color: var(--slate); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(23, 147, 107, 0.5); animation: livedot 1.8s infinite; }
@keyframes livedot { 0% { box-shadow: 0 0 0 0 rgba(23, 147, 107, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(23, 147, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(23, 147, 107, 0); } }
.float-card.live b { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1.1; margin-top: 6px; }
.float-card.live small { font-size: 0.72rem; color: var(--slate); }
.mood-chip {
  position: absolute; right: -16px; bottom: -14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700;
  background: var(--navy); color: #fff;
  padding: 9px 14px; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.mood-chip .bars { display: flex; align-items: flex-end; gap: 3px; height: 15px; }
.mood-chip .bars i { width: 3px; border-radius: 2px; background: var(--gold-soft); animation: eq 1.1s ease-in-out infinite; }
.mood-chip .bars i:nth-child(1){ height: 40%; animation-delay: 0s; }
.mood-chip .bars i:nth-child(2){ height: 100%; animation-delay: .2s; }
.mood-chip .bars i:nth-child(3){ height: 65%; animation-delay: .4s; }
.mood-chip .bars i:nth-child(4){ height: 85%; animation-delay: .1s; }
@keyframes eq { 0%,100%{ transform: scaleY(.5);} 50%{ transform: scaleY(1);} }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; color: var(--white); }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ---------- Trust / partners ---------- */
.trust { padding: 44px 0 10px; background: var(--white); }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 18px 44px;
  text-align: center;
}
.trust-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-400); }
.trust-logos { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.trust-logos img { height: 40px; width: auto; opacity: 0.9; filter: saturate(1); }
.trust-logos img.ws { height: 26px; }
.trust-sep { width: 1px; height: 34px; background: var(--line); }

/* ---------- Section shell ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 16px 0 0; }
.section-head p { color: var(--slate); font-size: 1.08rem; margin: 16px 0 0; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }

.bg-paper { background: var(--paper); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.feature::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(47, 137, 223, 0.12), rgba(47, 137, 223, 0.05));
  color: var(--blue);
  margin-bottom: 20px;
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 9px; }
.feature p { color: var(--slate); font-size: 0.96rem; margin: 0; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 30px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.step .num {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  color: #fff; background: linear-gradient(150deg, var(--blue), var(--blue-700));
  box-shadow: 0 12px 26px rgba(47, 137, 223, 0.32);
  border: 4px solid #fff;
}
.step:nth-child(2) .num { background: linear-gradient(150deg, var(--navy-700), var(--navy)); box-shadow: 0 12px 26px rgba(10, 31, 60, 0.32); }
.step:nth-child(3) .num { background: linear-gradient(150deg, var(--gold), #e08d10); box-shadow: 0 12px 26px rgba(245, 165, 36, 0.3); }
.step:nth-child(4) .num { background: linear-gradient(150deg, var(--green), #0f6f50); box-shadow: 0 12px 26px rgba(23, 147, 107, 0.3); }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 0.94rem; margin: 0; }

/* ---------- Roles ---------- */
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.role:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.role .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(47, 137, 223, 0.1); color: var(--blue-600);
  margin-bottom: 18px;
}
.role:nth-child(2) .tag { background: rgba(245, 165, 36, 0.14); color: #b9760a; }
.role:nth-child(3) .tag { background: rgba(23, 147, 107, 0.12); color: var(--green); }
.role h3 { font-size: 1.28rem; margin-bottom: 14px; }
.role ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.role li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate); font-size: 0.95rem; }
.role li svg { width: 18px; height: 18px; flex: none; color: var(--blue); margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  background:
    radial-gradient(600px 300px at 88% 0%, rgba(245, 165, 36, 0.28), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-800) 60%, #0b2b52);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.05);
}
.cta-band .txt { position: relative; z-index: 1; max-width: 620px; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; }
.cta-band p { color: rgba(233, 240, 250, 0.82); margin: 14px 0 0; font-size: 1.05rem; }
.cta-band .acts { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.foot { background: var(--navy); color: rgba(233, 240, 250, 0.72); padding: 64px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot .brand-name { color: #fff; }
.foot .brand-sub { color: rgba(233, 240, 250, 0.6); }
.foot-about { max-width: 340px; margin-top: 18px; font-size: 0.94rem; }
.foot-logos { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.foot-logos .chip {
  background: #fff; border-radius: 10px; padding: 8px 10px;
  display: grid; place-items: center;
}
.foot-logos img { height: 30px; width: auto; }
.foot-logos img.ws { height: 18px; }
.foot-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot-col a { font-size: 0.94rem; transition: color 0.2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: 0.86rem;
}
.foot-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal (progressive enhancement) ----------
   Content is visible by default; only hidden once JS confirms it can
   animate them back in (html.reveal-ready set by welcome-boot.js). */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-ready .reveal { opacity: 0; transform: translateY(26px); }
.reveal-ready .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(10, 31, 60, 0.97);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.5rem; padding: 12px; }
.mobile-menu .btn { margin-top: 18px; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border: none; background: rgba(255,255,255,0.12); color: #fff; border-radius: 12px; cursor: pointer; }
.mobile-close svg { width: 24px; height: 24px; margin: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 620px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .features-grid, .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps::before { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .hero { padding: 122px 0 70px; }
  .section { padding: 68px 0; }
  .features-grid, .roles-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .float-card.checkin { left: -8px; width: 210px; }
  .float-card.live { right: -6px; }
  .cta-band { padding: 44px 26px; }
  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .trust-sep { display: none; }
  .hero-meta { gap: 20px; }
}

@media (max-width: 400px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .hero p.lede { font-size: 1rem; }
  .hero-meta { gap: 16px 22px; }
  .btn { padding: 12px 18px; font-size: 0.92rem; }
  .float-card.checkin { left: 0; bottom: 20px; width: 178px; padding: 10px 12px; gap: 9px; }
  .avatar { width: 34px; height: 34px; font-size: 0.82rem; }
  .checkin .who { font-size: 0.8rem; }
  .checkin .meta { font-size: 0.64rem; }
  .float-card.live { right: 0; top: 20px; width: 118px; padding: 9px 11px; }
  .float-card.live b { font-size: 1.5rem; }
  .mood-chip { right: 0; bottom: -10px; font-size: 0.68rem; padding: 7px 11px; }
  .cta-band { padding: 32px 20px; }
  .cta-band .acts { width: 100%; }
  .cta-band .acts .btn { flex: 1 1 auto; justify-content: center; }
  .foot-logos { flex-wrap: wrap; }
  .trust-logos { gap: 22px; }
  .scan-frame { width: 70px; height: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
