/* ============================================================
   ParkHere SG — styles
   Pinned clone of supplied SaaS reference. Inter throughout.
   ============================================================ */

:root {
  /* brand — aligned to the real app UI */
  --brand: #2338cc;          /* royal blue — primary action (Navigate / active) */
  --brand-strong: #1c2ba8;
  --brand-tint: #eaeeff;

  --green: #1f9d57;          /* available */
  --green-tint: #e4f6ec;
  --amber: #e6a10a;          /* moderate */
  --amber-tint: #fbf1d8;
  --red: #e0463f;            /* full */
  --red-tint: #fbe6e5;

  /* ink & surfaces */
  --ink: #10151d;            /* display / primary text */
  --ink-soft: #1b2430;
  --navy: #16324e;           /* logo ink */
  --muted: #5b6472;          /* body text */
  --muted-2: #8a909b;
  --paper: #ffffff;
  --surface: #f5f6f8;        /* card fill */
  --surface-2: #eef0f3;
  --line: #e7eaee;
  --black-pill: #0c0f14;

  /* hero sky */
  --sky-top: #cadcf6;
  --sky-mid: #e4eefb;
  --sky-bot: #f6f9fd;

  --radius: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(16, 21, 29, 0.05);
  --shadow: 0 18px 40px -18px rgba(16, 21, 29, 0.22);
  --shadow-lg: 0 40px 80px -30px rgba(16, 21, 29, 0.35);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  zoom: 0.9; /* render the whole site ~10% smaller */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--black-pill); color: #fff; }
.btn--dark:hover { box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.6); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-strong); box-shadow: 0 14px 30px -12px rgba(35, 56, 204, 0.6); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #cfd4db; }

.pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 var(--pad);
  margin-top: 16px;
}
.nav {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  height: 62px;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 34px -16px rgba(16, 21, 29, 0.28);
  transition: box-shadow 0.25s ease;
}
.nav.is-stuck { box-shadow: 0 16px 40px -14px rgba(16, 21, 29, 0.38); }

.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.03em; color: var(--navy); }
.brand__name span { color: var(--brand); }

/* absolutely centered in the bar, independent of logo / CTA widths */
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { background: var(--surface); }

.nav__cta { margin-left: auto; height: 44px; padding: 0 20px; font-size: 0.95rem; }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0; background: var(--black-pill);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.nav__toggle span { width: 16px; height: 2px; background: #fff; border-radius: 2px; transition: 0.2s; }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  max-width: 1080px;
  margin: 10px auto 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-menu a:hover { background: var(--surface); }
.mobile-menu .btn { margin-top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: -84px;
  padding: 150px var(--pad) 40px;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.9) 100%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 34%, var(--sky-bot) 68%, #fff 100%);
  overflow: hidden;
}
/* soft cloud shapes */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.hero::before { width: 620px; height: 620px; left: -160px; top: 220px; }
.hero::after { width: 680px; height: 680px; right: -180px; top: 260px; }

.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; z-index: 1; }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero__sub {
  max-width: 560px;
  margin: 22px auto 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
}

/* --- phone stage --- */
.hero__stage {
  position: relative;
  margin: 40px auto 0;
  width: min(320px, 78vw);
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 100%;
  background: #0b0d10;
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.06) inset;
  z-index: 2;
}
.phone__notch {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0b0d10;
  border-radius: 999px;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  aspect-ratio: 1177 / 2560; /* match the real screenshot so nothing is cropped/zoomed */
  border-radius: 36px;
  overflow: hidden;
  background: #f3f4f6;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* floating cards */
.float {
  position: absolute;
  z-index: 4;
  will-change: transform;
}
.float--pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--black-pill);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.float--card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  box-shadow: var(--shadow);
  min-width: 168px;
}
.float__label { font-size: 0.86rem; color: var(--muted); font-weight: 500; }
.float__big { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; color: var(--ink); }
.float__big span { font-size: 0.9rem; font-weight: 600; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
.float__big--blue { color: var(--brand); }
.float__foot { margin-top: 8px; font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

.chip {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.76rem; font-weight: 700;
}
.chip--amber { background: var(--amber-tint); color: #9a6a00; }

.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--green { background: #37d98a; box-shadow: 0 0 0 4px rgba(55, 217, 138, 0.25); }

.ic-compare {
  width: 15px; height: 15px; display: inline-block;
  background:
    linear-gradient(#fff, #fff) 0 3px / 11px 2px no-repeat,
    linear-gradient(#fff, #fff) 4px 8px / 11px 2px no-repeat;
}

.float--tl { top: 40px; left: -6px; }
.float--l  { top: 190px; left: -70px; }
.float--r  { top: 120px; right: -70px; }
.float--br { top: 320px; right: -12px; }

/* desktop: fan the floating cards out to flank the phone */
@media (min-width: 900px) {
  .hero__stage { width: 340px; margin-top: 54px; }
  .float--tl { top: 70px; left: -180px; }
  .float--l  { top: 250px; left: -230px; }
  .float--r  { top: 150px; right: -220px; }
  .float--br { top: 360px; right: -170px; }
}

.hero__cta {
  margin: 46px auto 0;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero__beta { margin-top: 18px; font-size: 0.9rem; color: var(--muted-2); font-weight: 500; }

/* ---------- store badges ---------- */
.store-badges { margin: 46px auto 0; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 56px;
  padding: 0 20px 0 16px;
  background: var(--black-pill);
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.55); }
.store-badge__ic { width: 26px; height: 26px; flex: none; border-radius: 6px; }
.store-badge__ic--play { border-radius: 0; }
.store-badge__t { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge__t small { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.01em; opacity: 0.82; text-transform: none; }
.store-badge__t strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
/* variant on the dark download card */
.store-badges--dark .store-badge { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); }
.store-badges--dark .store-badge:hover { background: rgba(255, 255, 255, 0.1); }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(46px, 6vw, 78px) var(--pad); }
.section__head { text-align: center; margin-bottom: 42px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.section__title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.04em; }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.feat { display: flex; flex-direction: column; }
.feat h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; }
.feat p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; max-width: 34ch; }
.feat__viz { margin-top: auto; padding-top: 30px; }
.feat--wide { grid-column: span 3; display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: center; }
.feat--wide:nth-of-type(4) { grid-column: span 2; grid-template-columns: 1fr; }
.feat--wide:nth-of-type(5) { grid-column: span 1; grid-template-columns: 1fr; }
.feat--wide .feat__viz { padding-top: 24px; }

/* mini visuals */
.mini-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 13px 18px;
  color: var(--muted-2); font-size: 0.92rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.mini-search__ic { width: 15px; height: 15px; border: 2px solid var(--muted-2); border-radius: 50%; position: relative; flex: none; }
.mini-search__ic::after { content: ""; position: absolute; width: 6px; height: 2px; background: var(--muted-2); bottom: -2px; right: -4px; transform: rotate(45deg); border-radius: 2px; }
.mini-tags { display: flex; gap: 8px; margin-top: 12px; }
.mini-tags span { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.mini-tags .is-on { background: var(--brand); color: #fff; border-color: var(--brand); }

.avail-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; font-weight: 600; font-size: 0.95rem; }
.avail-row + .avail-row { margin-top: 8px; }
.num { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.num--green { color: var(--green); }
.num--amber { color: var(--amber); }
.num--red { color: var(--red); }

.cost-plan { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.cost-plan__t { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.cost-plan__opts { display: flex; gap: 6px; margin-top: 10px; }
.cost-plan__opts span { padding: 6px 12px; border-radius: 999px; background: var(--surface); font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.cost-plan__opts .is-on { background: var(--brand); color: #fff; }
.cost-out { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding: 0 4px; }
.cost-out span { color: var(--muted); font-weight: 600; }
.cost-out strong { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }

.sort-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.sort-tabs span { padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.sort-tabs .is-on { background: var(--brand); color: #fff; border-color: var(--brand); }

.feat__viz--nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nav-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--brand); color: #fff; padding: 13px 24px; border-radius: 999px; font-weight: 700; box-shadow: 0 12px 26px -12px rgba(35,56,204,0.6); }
.nav-btn__ic { width: 15px; height: 15px; background: #fff; clip-path: polygon(0 0, 100% 45%, 42% 55%, 55% 100%); }
.nav-apps { color: var(--muted); font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.how__intro { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 22px; }
.how__lead { color: var(--muted); font-size: 1.08rem; max-width: 36ch; }
.how__steps { display: flex; flex-direction: column; gap: 20px; }
.step { position: relative; padding: 28px 30px; }
.step__head { display: flex; align-items: center; gap: 14px; }
.step h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; }
.step p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; max-width: 46ch; }
.step__num { position: absolute; top: 24px; right: 28px; font-size: 0.9rem; font-weight: 700; color: var(--muted-2); background: var(--surface-2); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; }
.step__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--brand); flex: none; position: relative; }
.step__ic::after { content: ""; position: absolute; inset: 0; background-repeat: no-repeat; background-position: center; }
.ic-search::after { background:
    radial-gradient(circle at center, transparent 5px, #fff 5px, #fff 7px, transparent 7px) center/ 18px 18px no-repeat; }
.ic-list::after {
  background:
    linear-gradient(#fff,#fff) 12px 14px / 18px 2.5px no-repeat,
    linear-gradient(#fff,#fff) 12px 20px / 18px 2.5px no-repeat,
    linear-gradient(#fff,#fff) 12px 26px / 12px 2.5px no-repeat; }
.ic-coin::after { background: radial-gradient(circle at center, #fff 7px, transparent 7px) center / 30px 30px no-repeat; }
.ic-nav::after { content: ""; background: #fff; width: 15px; height: 15px; margin: auto; inset: 0; position: absolute; clip-path: polygon(0 0, 100% 45%, 42% 55%, 55% 100%); }

/* ============================================================
   USE CASES
   ============================================================ */
.uses__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 36px; flex-wrap: wrap; }
.uses__sub { max-width: 42ch; color: var(--muted); font-size: 1.08rem; }
.uses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.use { display: flex; flex-direction: column; min-height: 320px; }
.use__tag { align-self: flex-start; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.use h3 { margin-top: 22px; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; }
.use p { margin-top: 14px; color: var(--muted); font-size: 1.04rem; }
.use--dark { background: var(--black-pill); border-color: var(--black-pill); }
.use--dark .use__tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #cfd3da; }
.use--dark h3 { color: #fff; }
.use--dark p { color: #a9b0bb; }

/* ============================================================
   NOTICES (disclaimer + beta)
   ============================================================ */
.notices { display: flex; justify-content: center; padding-top: 0; }
.notice { max-width: 820px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start; }
.notice p { color: var(--muted); font-size: 1rem; }
.notice__badge { flex: none; padding: 6px 12px; border-radius: 999px; background: var(--amber-tint); color: #8a6300; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; }
.notice__badge--beta { background: var(--brand-tint); color: var(--brand); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__head { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; margin-bottom: 30px; }
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 24px 44px 24px 4px;
  font-size: 1.18rem; font-weight: 600; letter-spacing: -0.02em;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; margin-top: -7px;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 14px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 14px no-repeat;
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 44px 26px 4px; color: var(--muted); font-size: 1.05rem; max-width: 62ch; }
.faq__item a { color: var(--brand); font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__card {
  background: linear-gradient(160deg, #16213f 0%, #101726 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact__card::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(35,56,204,0.55) 0%, rgba(35,56,204,0) 70%);
  top: -160px; right: -120px;
}
.contact__card h2 { position: relative; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; }
.contact__card p { position: relative; max-width: 46ch; margin: 18px auto 0; color: #b8c0d4; font-size: 1.1rem; }
.contact__actions { position: relative; margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.contact__mail { color: #cfd6e8; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.contact__mail:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black-pill); color: #fff; padding: clamp(56px, 8vw, 90px) var(--pad) 34px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name span { color: #7f93ff; }
.footer__tagline { margin-top: 20px; color: #9aa1ad; font-size: 1.02rem; }
.footer__h { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #6d7480; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; color: #c7ccd4; font-weight: 500; transition: color 0.15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bar { max-width: var(--maxw); margin: 24px auto 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: #7b818d; font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat--wide, .feat--wide:nth-of-type(4), .feat--wide:nth-of-type(5) { grid-column: span 2; grid-template-columns: 1fr; }

  .how__grid { grid-template-columns: 1fr; }
  .how__intro { position: static; }

  .uses__grid { grid-template-columns: 1fr; }
  .notices { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 620px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat--wide, .feat--wide:nth-of-type(4), .feat--wide:nth-of-type(5) { grid-column: span 1; }
  .hero__stage { width: min(270px, 74vw); margin-top: 30px; }
  /* declutter: drop the big value-cards, keep the two pills framing the phone */
  .float--l, .float--r { display: none; }
  .float--tl { left: -12px; top: 34px; }
  .float--br { right: -12px; top: auto; bottom: 60px; }
  .uses__head { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .btn { width: 100%; }
  .hero__cta .btn { width: auto; }
}

/* ============================================================
   ANIMATION LAYER  (Apple-style, restrained)
   Entrance states apply only under html.anim (JS on, motion allowed).
   Only opacity / transform / clip-path animate — no layout shift.
   ============================================================ */

:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);   /* expo-ish out */
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* GPU hints + 3D context for the scroll-driven showcase */
.phone { will-change: transform; }
.hero__stage { perspective: 1500px; }

/* --- refined interaction: premium easing + press feedback --- */
.btn { transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s var(--ease-out); }
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.12s; }
.store-badge { transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s var(--ease-out); }
.store-badge:active { transform: translateY(0) scale(0.97); transition-duration: 0.12s; }
.nav__links a { transition: background 0.25s var(--ease-out), color 0.2s var(--ease-out); }
.faq__item summary { transition: color 0.2s var(--ease-out); }
.faq__item summary:hover { color: var(--brand); }

/* card lift on hover (subtle, pointer devices only) */
.feat, .use, .step { transition: opacity 0.7s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.5s var(--ease-out); }
@media (hover: hover) {
  .feat:hover, .step:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(16, 21, 29, 0.30); }
  .use:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -30px rgba(16, 21, 29, 0.35); }
  .use--dark:hover { box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.55); }
}

/* nav: refine as it sticks */
.nav { transition: height 0.45s var(--ease-out), background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out); }
.nav.is-stuck {
  height: 56px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px -18px rgba(16, 21, 29, 0.42);
}

/* ---------- page-load sequence (hero) ---------- */
html.anim .nav-wrap { opacity: 0; transform: translateY(-14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
html.anim .hero__title,
html.anim .hero__sub,
html.anim .store-badges,
html.anim .hero__beta { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
html.anim .phone { opacity: 0; transition: opacity 1s var(--ease-out); }
html.anim .phone__screen { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); }
html.anim .float { opacity: 0; transition: opacity 0.8s var(--ease-out); }

html.anim.loaded .nav-wrap { opacity: 1; transform: none; }
html.anim.loaded .hero__title { opacity: 1; transform: none; transition-delay: 0.15s; }
html.anim.loaded .hero__sub { opacity: 1; transform: none; transition-delay: 0.28s; }
html.anim.loaded .phone { opacity: 1; transition-delay: 0.40s; }
html.anim.loaded .phone__screen { clip-path: inset(0 0 0 0); transition-delay: 0.52s; }
html.anim.loaded .store-badges { opacity: 1; transform: none; transition-delay: 0.72s; }
html.anim.loaded .hero__beta { opacity: 1; transform: none; transition-delay: 0.86s; }
html.anim.loaded .float--tl { opacity: 1; transition-delay: 0.80s; }
html.anim.loaded .float--l  { opacity: 1; transition-delay: 0.92s; }
html.anim.loaded .float--r  { opacity: 1; transition-delay: 1.00s; }
html.anim.loaded .float--br { opacity: 1; transition-delay: 1.08s; }

/* ---------- scroll reveals (IntersectionObserver adds .in) ---------- */
html.anim .features .section__head,
html.anim .feat,
html.anim .how__intro,
html.anim .step,
html.anim .uses__head,
html.anim .use,
html.anim .notice,
html.anim .faq__head,
html.anim .faq__item,
html.anim .contact__card,
html.anim .footer__inner,
html.anim .footer__bar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
html.anim .features .section__head.in,
html.anim .feat.in,
html.anim .how__intro.in,
html.anim .step.in,
html.anim .uses__head.in,
html.anim .use.in,
html.anim .notice.in,
html.anim .faq__head.in,
html.anim .faq__item.in,
html.anim .contact__card.in,
html.anim .footer__inner.in,
html.anim .footer__bar.in {
  opacity: 1;
  transform: none;
}

/* ---------- accessibility: honour reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
