/* ============================================================
   AIRSPACE APPS — styles.css
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg:       #F6F5F2;
  --surface:  #FFFFFF;
  --surface2: #F0EDE8;
  --border:   rgba(0,0,0,.07);
  --border2:  rgba(0,0,0,.11);

  --ink:  #0D0D0C;
  --ink2: #3B3936;
  --ink3: #78756F;
  --ink4: #B0ADA7;

  --blue:    #1560F5;
  --blue-lt: #EAF0FF;
  --blue-dk: #0E44C0;
  --amber:   #F59E0B;
  --green:   #16A34A;

  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   28px;
  --r-2xl:  36px;
  --r-pill: 999px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.06), 0 0 1px rgba(0,0,0,.04);
  --sh-md: 0 4px 20px rgba(0,0,0,.08), 0 0 1px rgba(0,0,0,.05);
  --sh-lg: 0 12px 40px rgba(0,0,0,.10), 0 0 1px rgba(0,0,0,.05);
  --sh-xl: 0 24px 64px rgba(0,0,0,.14), 0 0 1px rgba(0,0,0,.06);

  --ease:  cubic-bezier(.4,0,.2,1);
  --nav-h: 58px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: 'Geist', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img  { display: block; max-width: 100%; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(246,245,242,.92);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 12px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Instrument Serif', serif;
  font-size: 17px; font-weight: 400; letter-spacing: -.2px;
  cursor: pointer; flex-shrink: 0;
}
.nav-logo-img {
  width: 32px; height: 32px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-tagline { margin-left: auto; font-size: 13px; color: var(--ink3); }
@media (max-width: 480px) { .nav-tagline { display: none; } }

/* ── PAGE SHELL ─────────────────────────────────────────── */
.page { display: none; min-height: 100svh; padding-top: var(--nav-h); }
.page.active { display: block; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 72px 24px 64px;
  background: linear-gradient(170deg, #FFFFFF 0%, #E9E6DF 100%);
  position: relative; overflow: hidden; text-align: center;
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(21,96,245,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: var(--r-pill);
  background: rgba(21,96,245,.08); border: 1px solid rgba(21,96,245,.14);
  font-size: 12.5px; font-weight: 600; color: var(--blue); margin-bottom: 22px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.25; } }

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 400; letter-spacing: -1.5px; line-height: 1.08;
  margin-bottom: 18px; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--ink3); }
.hero-sub {
  font-size: clamp(15px, 2.5vw, 17px); font-weight: 300;
  color: var(--ink3); max-width: 460px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 34px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-size: 16px; font-weight: 600;
  font-family: 'Geist', sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .18s, box-shadow .18s; cursor: pointer;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.26); }
.hero-btn:active { transform: scale(.97); }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.07); flex-wrap: wrap;
}
.hero-stat-n {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; letter-spacing: -.5px; color: var(--ink);
}
.hero-stat-l { font-size: 12.5px; color: var(--ink4); margin-top: 1px; }

/* ── SECTIONS ───────────────────────────────────────────── */
.section     { padding: 64px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-alt { background: var(--surface); padding: 64px 24px; }
.section-head { margin-bottom: 32px; }
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px, 4vw, 34px); font-weight: 400;
  letter-spacing: -.6px; line-height: 1.15; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ink3); }
.section-desc { font-size: 14px; color: var(--ink3); margin-top: 5px; }

/* ── FEATURED APP CARDS ─────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 18px;
}
@media (max-width: 680px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  border-radius: var(--r-2xl); padding: 28px 28px 24px;
  position: relative; overflow: hidden; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s;
}
.feat-card:hover  { transform: translateY(-5px); box-shadow: var(--sh-xl); }
.feat-card:active { transform: scale(.98); }

.fc-green  { background: linear-gradient(130deg, #052015 0%, #0B5E40 55%, #0EA36A 100%); }
.fc-blue   { background: linear-gradient(130deg, #030F2E 0%, #0A3A8A 55%, #1557D0 100%); }
.fc-violet { background: linear-gradient(130deg, #130828 0%, #4A18A0 55%, #7630E5 100%); }
.fc-amber  { background: linear-gradient(130deg, #1A0E02 0%, #8A4E08 55%, #C98010 100%); }

.feat-card::before {
  content: ''; position: absolute; top: -25%; right: -10%;
  width: 260px; height: 260px; border-radius: 50%;
  filter: blur(50px); opacity: .38; pointer-events: none;
}
.fc-green::before  { background: #34D399; }
.fc-blue::before   { background: #60A5FA; }
.fc-violet::before { background: #C084FC; }
.fc-amber::before  { background: #FCD34D; }

.feat-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.feat-icon-img {
  width: 58px; height: 58px; border-radius: 14px; object-fit: cover;
  flex-shrink: 0; box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.feat-icon-emoji {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); flex-shrink: 0;
}
.feat-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
}
.feat-body { position: relative; z-index: 1; }
.feat-name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; font-weight: 400; color: #fff; letter-spacing: -.3px; margin-bottom: 6px;
}
.feat-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
  line-height: 1.58; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.feat-footer { display: flex; align-items: center; justify-content: space-between; }
.feat-stars  { color: #FCD34D; font-size: 13px; letter-spacing: 1px; }
.feat-rating { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.btn-card {
  height: 33px; padding: 0 18px; font-size: 13px; font-weight: 700;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  transition: background .15s; display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; font-family: 'Geist', sans-serif;
}
.btn-card:hover { background: rgba(255,255,255,.28); }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { background: var(--ink); padding: 26px 24px; }
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap; row-gap: 14px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 13px;
}
.trust-item strong { color: #fff; font-weight: 600; }

/* ── COMING SOON ────────────────────────────────────────── */
.cs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 580px) { .cs-grid { grid-template-columns: 1fr; } }
.cs-card {
  background: var(--surface); border: 1.5px dashed var(--border2);
  border-radius: var(--r-xl); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px; opacity: .7;
}
.cs-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cs-name  { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.cs-tag   { font-size: 12px; color: var(--ink3); margin-top: 2px; }
.cs-pill  {
  display: inline-block; margin-top: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  padding: 2px 9px; border-radius: var(--r-pill);
  background: var(--surface2); color: var(--ink4); border: 1px solid var(--border2);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 48px 24px 36px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 28px; margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { max-width: 250px; }
.footer-logo  { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.footer-logo-img { width: 26px; height: 26px; border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.footer-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo-name { font-family: 'Instrument Serif', serif; font-size: 15px; color: #fff; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.32); line-height: 1.7; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.22); margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a,
.footer-links span {
  font-size: 13.5px; color: rgba(255,255,255,.42);
  transition: color .14s; cursor: pointer;
}
.footer-links a:hover,
.footer-links span:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy    { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-privacy { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.32); }
.privacy-dot    {
  width: 6px; height: 6px; background: #16A34A; border-radius: 50%;
  animation: blink 2s infinite;
}

/* ── DETAIL PAGE ────────────────────────────────────────── */
.detail-banner { padding: 44px 24px 36px; position: relative; overflow: hidden; }
.detail-banner-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.detail-banner-glow {
  position: absolute; top: -30%; right: -5%;
  width: 320px; height: 320px; border-radius: 50%;
  filter: blur(65px); opacity: .35; pointer-events: none;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.65);
  margin-bottom: 28px; cursor: pointer; transition: color .15s;
  background: none; border: none; font-family: 'Geist', sans-serif; padding: 0;
}
.back-btn:hover { color: #fff; }
.detail-header { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.detail-icon-img {
  width: 88px; height: 88px; border-radius: 22px; object-fit: cover;
  flex-shrink: 0; box-shadow: 0 6px 24px rgba(0,0,0,.30);
}
.detail-icon-emoji {
  width: 88px; height: 88px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center; font-size: 44px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); flex-shrink: 0;
}
.detail-meta   { flex: 1; min-width: 200px; }
.detail-name   {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 5vw, 38px); font-weight: 400;
  color: #fff; letter-spacing: -.8px; line-height: 1.1; margin-bottom: 5px;
}
.detail-dev    { font-size: 13.5px; color: rgba(255,255,255,.48); margin-bottom: 12px; }
.detail-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.d-badge {
  font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.13); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-appstore {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: var(--r-pill);
  background: #fff; color: var(--ink); font-size: 14.5px; font-weight: 700;
  font-family: 'Geist', sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,.20);
  transition: transform .18s, box-shadow .18s; text-decoration: none;
}
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.24); }
.btn-appstore:active { transform: scale(.97); }

.detail-stats {
  display: flex; align-items: center; gap: 20px;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  flex-wrap: wrap; row-gap: 10px;
}
.ds-val   { font-family: 'Instrument Serif', serif; font-size: 24px; letter-spacing: -.4px; color: #fff; line-height: 1; }
.ds-stars { color: #FCD34D; font-size: 13px; margin-top: 2px; }
.ds-lbl   { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 2px; }
.ds-sep   { width: 1px; height: 32px; background: rgba(255,255,255,.11); flex-shrink: 0; }
@media (max-width: 480px) { .ds-sep { display: none; } }

.detail-body { max-width: 740px; margin: 0 auto; padding: 0 24px 20px; }
.d-sec { padding: 28px 0; border-bottom: 1px solid var(--border); }
.d-sec:last-child { border-bottom: none; }
.d-sec-title {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; font-weight: 400; letter-spacing: -.3px; color: var(--ink); margin-bottom: 14px;
}
.d-desc { font-size: 15px; font-weight: 300; color: var(--ink2); line-height: 1.78; }

/* Screenshots */
.ss-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.ss-scroll::-webkit-scrollbar { display: none; }
.ss-item      { flex-shrink: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border2); }
.ss-item img  { width: 130px; height: auto; display: block; }
.ss-placeholder {
  flex-shrink: 0; width: 130px; height: 240px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; border: 1px solid var(--border2);
}
@media (max-width: 480px) {
  .ss-item img   { width: 110px; }
  .ss-placeholder { width: 110px; height: 210px; }
}

/* Features */
.feat-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
@media (max-width: 480px) { .feat-list { grid-template-columns: 1fr; } }
.feat-row {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); font-size: 13.5px; color: var(--ink2);
}
.feat-chk { color: var(--green); font-size: 14px; flex-shrink: 0; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
@media (max-width: 480px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px 15px; }
.info-lbl  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--ink4); margin-bottom: 3px; }
.info-val  { font-size: 14px; font-weight: 600; color: var(--ink); }

/* Bottom CTA */
.cta-bottom {
  background: var(--surface); border: 1.5px solid var(--border2);
  border-radius: var(--r-xl); padding: 28px 24px; text-align: center; margin-top: 28px;
}
.cta-bottom-title { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; color: var(--ink); letter-spacing: -.3px; margin-bottom: 5px; }
.cta-bottom-sub   { font-size: 14px; color: var(--ink3); margin-bottom: 18px; }
.btn-appstore-dark {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 28px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-size: 15px; font-weight: 700;
  font-family: 'Geist', sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .18s, box-shadow .18s; text-decoration: none;
}
.btn-appstore-dark:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.26); }
.btn-appstore-dark:active { transform: scale(.97); }

/* More apps */
.more-list { background: var(--surface); border: 1.5px solid var(--border2); border-radius: var(--r-xl); overflow: hidden; }
.more-row  {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .14s;
}
.more-row:last-child { border-bottom: none; }
.more-row:hover { background: var(--bg); }
.more-row:hover .more-name { color: var(--blue); }
.more-icon {
  width: 42px; height: 42px; border-radius: 11px; overflow: hidden;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.more-icon img { width: 100%; height: 100%; object-fit: cover; }
.more-name { font-size: 14px; font-weight: 600; color: var(--ink); transition: color .14s; }
.more-tag  { font-size: 12px; color: var(--ink3); }
.more-btn  {
  margin-left: auto; height: 28px; padding: 0 14px; font-size: 12px; font-weight: 700;
  border-radius: var(--r-pill); background: var(--blue-lt); color: var(--blue);
  border: 1.5px solid rgba(21,96,245,.14); flex-shrink: 0;
  transition: background .14s, color .14s; cursor: pointer; font-family: 'Geist', sans-serif;
}
.more-btn:hover { background: var(--blue); color: #fff; border-color: transparent; }

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-page { padding: 60px 24px 80px; max-width: 760px; margin: 0 auto; }
.legal-hero { text-align: center; padding: 52px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.legal-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px; padding: 4px 14px;
  border-radius: var(--r-pill); background: var(--blue-lt);
  border: 1px solid rgba(21,96,245,.14);
  font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 18px;
}
.legal-title { font-family: 'Instrument Serif', serif; font-size: clamp(30px, 5vw, 46px); font-weight: 400; letter-spacing: -1px; color: var(--ink); margin-bottom: 10px; }
.legal-date  { font-size: 13.5px; color: var(--ink4); }
.legal-toc   { background: var(--surface); border: 1.5px solid var(--border2); border-radius: var(--r-xl); padding: 22px 24px; margin-bottom: 36px; }
.legal-toc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--ink4); margin-bottom: 12px; }
.legal-toc-list  { display: flex; flex-direction: column; gap: 6px; }
.legal-toc-list a { font-size: 13.5px; color: var(--blue); text-decoration: none; transition: opacity .15s; }
.legal-toc-list a:hover { opacity: .7; }
.legal-section   { margin-bottom: 36px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-h2 { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; letter-spacing: -.3px; color: var(--ink); margin-bottom: 12px; padding-top: 8px; }
.legal-h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; margin-top: 16px; }
.legal-p  { font-size: 14.5px; color: var(--ink2); line-height: 1.8; margin-bottom: 12px; }
.legal-p:last-child { margin-bottom: 0; }
.legal-ul    { padding-left: 20px; margin-bottom: 12px; }
.legal-ul li { font-size: 14.5px; color: var(--ink2); line-height: 1.8; margin-bottom: 4px; }
.legal-highlight {
  background: var(--blue-lt); border: 1px solid rgba(21,96,245,.14);
  border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.legal-highlight-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.legal-highlight-text { font-size: 14px; color: var(--ink2); line-height: 1.7; }
.legal-divider { height: 1px; background: var(--border); margin: 32px 0; }
.legal-apps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 14px 0; }
@media (max-width: 480px) { .legal-apps-grid { grid-template-columns: 1fr; } }
.legal-app-pill { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px 14px; font-size: 13.5px; font-weight: 500; color: var(--ink2); }
.legal-contact { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 28px 24px; text-align: center; margin-top: 36px; }
.legal-contact-title { font-family: 'Instrument Serif', serif; font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.legal-contact-sub   { font-size: 13.5px; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.legal-contact-email {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 20px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.12); color: #fff; font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.18); transition: background .15s; text-decoration: none;
}
.legal-contact-email:hover { background: rgba(255,255,255,.22); }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--blue);
  margin-bottom: 24px; cursor: pointer; background: none; border: none;
  font-family: 'Geist', sans-serif; padding: 0; transition: gap .15s;
}
.legal-back:hover { gap: 10px; }

/* ── ICON UTILITY BACKGROUNDS ───────────────────────────── */
.ib-green { background: linear-gradient(135deg, #16A34A, #4ADE80); }
.ib-blue  { background: linear-gradient(135deg, #1560F5, #60A5FA); }
.ib-vi    { background: linear-gradient(135deg, #7C3AED, #C084FC); }
.ib-amb   { background: linear-gradient(135deg, #D97706, #FCD34D); }
.ib-pink  { background: linear-gradient(135deg, #DB2777, #F9A8D4); }
.ib-teal  { background: linear-gradient(135deg, #0D9488, #5EEAD4); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.au  { animation: fadeUp .5s var(--ease) both; }
.au1 { animation-delay: .06s; }
.au2 { animation-delay: .12s; }
.au3 { animation-delay: .18s; }
.au4 { animation-delay: .24s; }
.au5 { animation-delay: .30s; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in { animation: fadeIn .28s var(--ease) both; }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero           { padding: 52px 20px 44px; }
  .section,
  .section-alt    { padding: 44px 20px; }
  .detail-banner  { padding: 32px 20px 28px; }
  .detail-body    { padding: 0 20px 16px; }
  .detail-icon-img,
  .detail-icon-emoji { width: 68px; height: 68px; font-size: 32px; border-radius: 16px; }
  .trust-inner    { gap: 18px; }
  .legal-page     { padding: 44px 20px 64px; }
}
