:root {
  --ink: #071525;
  --ink-2: #0E2438;
  --teal: #0ABAB5;
  --teal-deep: #087F7B;
  --mint: #5EEAD4;
  --sand: #E8C39E;
  --rose: #FB7185;
  --sky: #38BDF8;
  --lime: #A3E635;
  --page: #F4F7FB;
  --panel: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --line: #E2E8F0;
  --shadow: 0 18px 50px rgba(7, 21, 37, 0.12);
  --radius: 22px;
  --font: "Cairo", system-ui, sans-serif;
  --display: "Sora", "Cairo", sans-serif;
  --brand: "Sora", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .wrap { width: min(1140px, calc(100% - 1.25rem)); }
}

html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }

/* —— Trust rail: contained card under nav —— */
.trust-rail {
  background: #F7FAFC;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-width: 100%;
}
.trust-rail-inner {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 0;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.trust-rail-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 100%;
  min-width: 0;
  text-align: center;
}
.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.18);
  flex: none;
}
.trust-chips {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.trust-chips li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem 0.55rem 0.6rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.chip-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #E6F7F6;
  color: var(--teal-deep);
  flex: none;
}
.chip-ico svg { width: 15px; height: 15px; }
@media (min-width: 720px) {
  .trust-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust-chips li {
    border-radius: 999px;
    justify-content: center;
    text-align: center;
  }
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244,247,251,.82);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.site-nav .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  min-width: 0;
  max-width: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  flex: none;
  min-width: 0;
}
.brand img {
  width: 40px; height: 40px; border-radius: 11px;
  box-shadow: 0 8px 20px rgba(7,21,37,.18);
}
.bn {
  font-family: var(--brand);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.bn-p { font-weight: 600; color: inherit; }
.bn-s {
  font-weight: 700;
  color: var(--teal-deep);
}
.site-nav .bn { font-size: 1.12rem; }
.brand-hero {
  margin-bottom: 1rem;
}
.brand-hero .bn {
  display: block;
  font-size: clamp(2.75rem, 8vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #F8FAFC;
  text-shadow: 0 2px 28px rgba(0,0,0,.2);
}
.brand-hero .bn-s {
  color: var(--mint);
  font-weight: 700;
}
footer .bn { font-size: 0.95rem; }
footer .bn-s { color: var(--mint); }
footer .bn-p { color: #F8FAFC; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: .3rem .9rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted);
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
}
.nav-links a { padding: .35rem .2rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-deep); }

.nav-check { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle {
  display: none;
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}
@media (max-width: 860px) {
  .site-nav .bar {
    min-height: 60px;
    position: relative;
    flex-wrap: nowrap;
  }
  .site-nav .bn { font-size: 1rem; }
  .brand img { width: 36px; height: 36px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    inset-inline-start: auto;
    width: min(280px, calc(100vw - 2rem));
    padding: 0.75rem;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: none;
    gap: 0.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(7, 21, 37, 0.14);
    z-index: 50;
  }
  .nav-check:checked ~ .nav-links { display: flex; }
  .nav-links a {
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    color: var(--ink);
  }
  .nav-links a:hover { background: #F1F5F9; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none !important; }
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88svh, 760px);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  color: #F8FAFC;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 37, 0.92) 0%, rgba(7, 21, 37, 0.72) 42%, rgba(7, 21, 37, 0.28) 72%, rgba(7, 21, 37, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 21, 37, 0.35) 0%, transparent 28%, rgba(7, 21, 37, 0.55) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.hero-copy {
  max-width: min(34rem, 100%);
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 860px) {
  .hero { min-height: 72svh; align-items: center; }
  .hero-bg img { object-position: 70% center; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 21, 37, 0.55) 0%, rgba(7, 21, 37, 0.78) 45%, rgba(7, 21, 37, 0.92) 100%);
  }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1.1rem;
}
.hero-kicker i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(94,234,212,.25);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(94,234,212,0); }
}
.hero-line {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  max-width: 22ch;
  margin-bottom: .7rem;
}
.hero-sub {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 38ch;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .75rem 1.25rem;
  border-radius: 14px;
  font-weight: 800;
  border: 0;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(10,186,181,.35);
}

/* Hero visual / phone */
.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  inset: 8% 12%;
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 30% 30%, rgba(94,234,212,.35), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(232,195,158,.28), transparent 40%);
  filter: blur(2px);
  animation: float 10s ease-in-out infinite;
}
@keyframes float {
  50% { transform: translateY(-10px) scale(1.03); }
}
.phone {
  position: relative;
  width: min(250px, 70%);
  aspect-ratio: 9/18.2;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(160deg, #123B3A, #071525);
  border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 40px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
  animation: phone 1s cubic-bezier(.22,1,.36,1) both;
}
@keyframes phone {
  from { opacity: 0; transform: translateY(30px) rotate(4deg); }
  to { opacity: 1; transform: translateY(0) rotate(-3deg); }
}
.phone-notch {
  width: 36%; height: 9px; margin: 4px auto 10px;
  border-radius: 999px; background: rgba(0,0,0,.4);
}
.phone-ui {
  height: calc(100% - 24px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  padding: 12px;
  display: grid;
  gap: 8px;
  grid-template-rows: auto auto 1fr auto;
}
.phone-ui .row { height: 10px; border-radius: 6px; background: rgba(255,255,255,.22); }
.phone-ui .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.phone-ui .tile {
  border-radius: 12px; min-height: 48px;
  background: rgba(94,234,212,.2);
  border: 1px solid rgba(255,255,255,.1);
}
.phone-ui .tile:nth-child(2) { background: rgba(232,195,158,.22); }
.phone-ui .tile:nth-child(3) { background: rgba(56,189,248,.22); }
.phone-ui .tile:nth-child(4) { background: rgba(251,113,133,.2); }
.phone-ui .bar {
  height: 36px; border-radius: 14px;
  background: rgba(255,255,255,.1);
}

/* —— Sections —— */
.section {
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
}
.section.alt { background: #EEF3F8; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.kicker {
  color: var(--teal-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Trust board (big) */
.trust-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .trust-board { grid-template-columns: repeat(3, 1fr); }
}
.trust-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.trust-card:hover { transform: translateY(-4px); }
.trust-card .ico {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: #fff;
}
.trust-card .ico svg { width: 26px; height: 26px; }
.trust-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .35rem;
}
.trust-card p {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
}
.bg-teal { background: linear-gradient(145deg, #0ABAB5, #0F766E); }
.bg-ink { background: linear-gradient(145deg, #0E2438, #071525); }
.bg-sand { background: linear-gradient(145deg, #D4A574, #A66B3A); }
.bg-sky { background: linear-gradient(145deg, #38BDF8, #0284C7); }
.bg-rose { background: linear-gradient(145deg, #FB7185, #E11D48); }
.bg-lime { background: linear-gradient(145deg, #84CC16, #4D7C0F); }

/* Feature grid — full properties */
.feat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .feat-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.25rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.feat:hover {
  border-color: rgba(10,186,181,.45);
  box-shadow: 0 14px 34px rgba(7,21,37,.08);
  transform: translateY(-3px);
}
.feat-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .55rem;
}
.feat-ico {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  color: #fff; flex: none;
}
.feat-ico svg { width: 22px; height: 22px; }
.feat h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.feat p {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}

/* —— Download premium panel —— */
.download {
  padding: clamp(3rem, 7vw, 5rem) 0;
  overflow: hidden;
}
.download .wrap {
  width: min(1140px, calc(100% - 2rem));
  max-width: 100%;
}
.download-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: #071525;
  color: #F8FAFC;
  box-shadow: 0 30px 70px rgba(7,21,37,.35);
  border: 1px solid rgba(255,255,255,.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.download-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.download-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.download-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7,21,37,.92) 0%, rgba(7,21,37,.78) 55%, rgba(15,61,58,.7) 100%);
}
.download-panel::before { display: none; }
.download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

/* People lifestyle strip */
.people {
  display: block;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(0.5rem, 2vw, 1rem);
  overflow: hidden;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: min(1140px, calc(100% - 2rem));
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-inline: 0;
}
@media (min-width: 760px) {
  .people-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
.people-shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: #0E2438;
  width: 100%;
  max-width: 100%;
}
.people-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.people-shot:hover img { transform: scale(1.04); }
.people-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.2rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(7,21,37,.78));
  color: #F8FAFC;
  font-weight: 800;
  font-size: 1.05rem;
}

/* hide unfinished devices block if present */
.devices { display: none !important; }
.devices-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.devices-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  color: var(--ink);
  line-height: 1.2;
  margin: 0.4rem 0 0.65rem;
  letter-spacing: -0.02em;
}
.devices-head p {
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
}
.devices-showcase {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .devices-showcase {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.1rem;
    align-items: stretch;
  }
}
.device-feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  background: #0E2438;
  box-shadow: 0 24px 60px rgba(7, 21, 37, 0.14);
}
.device-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}
.device-feature figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1.35rem 1.25rem;
  background: linear-gradient(transparent, rgba(7, 21, 37, 0.82));
  color: #F8FAFC;
  display: grid;
  gap: 0.35rem;
}
.device-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.2);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.device-feature strong {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
}
.device-cards {
  display: grid;
  gap: 0.85rem;
}
.device-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.device-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 21, 37, 0.1);
}
.device-card-media {
  min-height: 112px;
  background: #0E2438;
}
.device-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.device-card-body {
  padding: 0.95rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.device-brand {
  font-family: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.2rem;
}
.device-card h3 {
  font-family: var(--brand);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.device-card p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 979px) {
  .device-feature { min-height: 260px; border-radius: 22px; }
  .device-feature img { min-height: 260px; }
}
@media (max-width: 560px) {
  .device-card {
    grid-template-columns: 1fr;
  }
  .device-card-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}
@media (min-width: 860px) {
  .download-grid { grid-template-columns: 1fr 1.05fr; gap: 2.5rem; }
}
.download-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: .4rem 0 .8rem;
}
.download-copy p {
  opacity: .88;
  font-weight: 500;
  max-width: 36ch;
}
.store-stack {
  display: grid;
  gap: 1rem;
}
.store-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.store-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.store-logo {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.store-logo svg { width: 28px; height: 28px; }
.store-meta small {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  opacity: .7;
  letter-spacing: .04em;
}
.store-meta {
  min-width: 0;
}
.store-meta strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 2px;
  overflow-wrap: anywhere;
}
.soon-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: .55rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(94,234,212,.15);
}
@media (max-width: 520px) {
  .download-panel { border-radius: 24px; padding: 1.35rem 1.1rem; }
  .download-copy h2 { font-size: 1.55rem; }
  .download-copy p { max-width: none; font-size: 0.95rem; }
  .store-card {
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo meta" "seal seal";
    gap: 0.75rem 0.9rem;
    padding: 1rem;
  }
  .store-logo { grid-area: logo; width: 48px; height: 48px; border-radius: 14px; }
  .store-meta { grid-area: meta; }
  .soon-seal { grid-area: seal; width: 100%; min-width: 0; }
  .hero { padding: 2rem 0 2.75rem; min-height: 68svh; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; min-width: min(100%, 160px); }
  .brand-hero .bn { font-size: clamp(2.2rem, 11vw, 3rem); }
  .section { padding: 2.6rem 0; }
  .feat { padding: 1rem; }
  .people-shot { border-radius: 18px; aspect-ratio: 16 / 11; }
  .people-shot figcaption { font-size: 0.95rem; padding: 1.8rem 0.9rem 0.85rem; }
  footer .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Legal pages */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(180deg, #E8F5F4, var(--page));
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: .4rem;
}
.page-hero p { color: var(--muted); font-weight: 500; }
.prose {
  padding: 1rem 0 3.5rem;
  max-width: 48rem;
}
.prose h2 {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.8rem 0 .6rem;
  font-weight: 800;
}
.prose p, .prose li {
  color: #334155;
  font-weight: 500;
  margin-bottom: .7rem;
}
.prose ul { padding-inline-start: 1.3rem; margin-bottom: 1rem; }
.prose a { color: var(--teal-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose .meta {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.contact-card h2 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .5rem;
}
.contact-card p { color: var(--muted); margin-bottom: .9rem; }
.contact-card a.mail {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  color: var(--teal-deep);
  font-size: 1.05rem;
}

footer {
  background: var(--ink);
  color: rgba(248,250,252,.75);
  padding: 2rem 0 2.4rem;
  font-size: .92rem;
}
footer .foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
footer a { color: #fff; font-weight: 700; }
footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-links { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
