/* ===========================================================
   AssetShield: marketing site
   Palette + type mirror the app (theme/palettes.ts, typography.ts)
   =========================================================== */

:root {
  /* brand */
  --teal: #0E5A52;
  --teal-deep: #00413B;
  --teal-tint: rgba(14, 90, 82, 0.10);
  --teal-muted: #A6CFC8;
  --gold: #F4A93C;
  --gold-pressed: #E0982C;

  /* neutrals */
  --cream: #F6F5F1;
  --card: #FFFFFF;
  --ink: #11252B;
  --slate: #5C6B70;
  --hairline: #E3E6E4;

  /* dark surfaces (from app dark theme) */
  --dk-surface: #0F1613;
  --dk-card: #1A2320;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(17, 37, 43, 0.06);
  --shadow-md: 0 14px 40px rgba(17, 37, 43, 0.10);
  --shadow-lg: 0 30px 80px rgba(0, 65, 59, 0.20);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

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

/* Visible focus ring for keyboard users (mouse clicks stay clean) */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary { --bg: var(--teal); box-shadow: 0 8px 22px rgba(14,90,82,.28); }
.btn--primary:hover { --bg: var(--teal-deep); box-shadow: 0 12px 30px rgba(14,90,82,.36); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); box-shadow: 0 8px 22px rgba(244,169,60,.36); }
.btn--gold:hover { --bg: var(--gold-pressed); }
.btn--ghost { --bg: transparent; --fg: var(--teal); --bd: var(--hairline); }
.btn--ghost:hover { --bd: var(--teal); background: var(--teal-tint); }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); --bd: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,241,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.nav.is-stuck { border-color: var(--hairline); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-family: 'Sora'; font-weight: 700; font-size: 19px; color: var(--ink); }
.brand__mark { color: var(--teal); display: inline-flex; }
.brand__name span { color: var(--teal); }
.brand__gh {
  display: inline-flex; align-items: center; justify-content: center; vertical-align: middle;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .04em; line-height: 1;
  color: var(--teal); background: var(--teal-tint); padding: 3px 7px; border-radius: 7px; margin-left: 3px;
}
.brand__gh--dark { color: var(--gold); background: rgba(244,169,60,.16); }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .18s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:not(.btn) { position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--teal); border-radius: 2px; transition: right .25s var(--ease);
}
.nav__links a:not(.btn):hover::after { right: 0; }
.nav__links a.btn { color: #fff; }
.nav__links a.btn:hover { color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(244,169,60,.14), transparent 60%),
    radial-gradient(70% 60% at 8% 0%, rgba(14,90,82,.10), transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-tint); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--center { display: inline-block; }
.eyebrow--light { color: var(--gold); background: rgba(244,169,60,.16); }
.eyebrow--flag { display: inline-flex; align-items: center; gap: 7px; }

/* Inline Ghana flag (replaces the 🇬🇭 emoji) */
.flag-gh { border-radius: 3px; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.made-gh { display: inline-flex; align-items: center; gap: 6px; }

.hero__title { font-size: clamp(38px, 6vw, 62px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--slate); max-width: 30em; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink); }
.hero__badges .i { width: 22px; height: 22px; fill: var(--teal-tint); stroke: var(--teal); stroke-width: 1.6; }
.hero__badges .i .chk, .hero__badges .i .pin { fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__badges .i .pin { fill: var(--teal-tint); }

/* Phones */
.hero__art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; }
.hero__glow { position: absolute; width: 78%; height: 78%; border-radius: 50%; background: radial-gradient(circle, rgba(14,90,82,.16), transparent 65%); filter: blur(10px); z-index: -1; }

.phone {
  position: relative; width: 250px; aspect-ratio: 9 / 19.5;
  background: #0b0f0d; border-radius: 34px; padding: 9px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; border-radius: 4px; background: rgba(255,255,255,.22); z-index: 3;
}
.phone .shot { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; background: var(--card); }
.phone__ph {
  position: absolute; inset: 9px; border-radius: 26px; display: none;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--teal), var(--teal-deep));
  color: rgba(255,255,255,.55); font-size: 13px; font-family: 'Inter'; letter-spacing: .04em;
}
.phone__ph span { border: 1px dashed rgba(255,255,255,.35); padding: 6px 12px; border-radius: 8px; }
.phone--empty .shot { display: none; }
.phone--empty .phone__ph { display: flex; }

.phone--front { z-index: 2; transform: rotate(-4deg) translateX(-28px); }
.phone--back  { position: absolute; z-index: 1; transform: rotate(6deg) translateX(60px) scale(.96); opacity: .96; }

/* Gentle idle float on the hero phones (desktop, motion-safe only) */
@media (min-width: 821px) and (prefers-reduced-motion: no-preference) {
  .phone--front { animation: floatA 7s ease-in-out infinite; }
  .phone--back  { animation: floatB 8s ease-in-out infinite; }
  @keyframes floatA {
    0%, 100% { transform: rotate(-4deg) translateX(-28px) translateY(0); }
    50%      { transform: rotate(-4deg) translateX(-28px) translateY(-12px); }
  }
  @keyframes floatB {
    0%, 100% { transform: rotate(6deg) translateX(60px) scale(.96) translateY(0); }
    50%      { transform: rotate(6deg) translateX(60px) scale(.96) translateY(11px); }
  }
}

/* ---------- Trust strip (marquee) ---------- */
.strip { background: var(--teal-deep); color: #fff; overflow: hidden; }
.marquee {
  display: flex; overflow: hidden; padding: 17px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 24px; flex: 0 0 auto; white-space: nowrap; padding-right: 24px;
  animation: marquee 30s linear infinite; will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-size: 14px; color: rgba(255,255,255,.82); }
.marquee__item b { color: #fff; font-weight: 700; }
.marquee__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Section scaffolding ---------- */
.section__head { text-align: center; max-width: 40rem; margin: 0 auto clamp(34px, 5vw, 56px); }
.section__title { font-size: clamp(28px, 4.2vw, 42px); font-weight: 700; }
.section__title--light { color: #fff; }
.section__lead { font-size: clamp(16px, 2vw, 19px); color: var(--slate); }
.section__lead--light { color: rgba(255,255,255,.78); }

.problem { padding: clamp(56px, 8vw, 96px) 0; }
.problem__inner { max-width: 44rem; margin: 0 auto; text-align: center; }
.problem .section__title { margin-bottom: 20px; }
.problem em { color: var(--teal); font-style: normal; font-weight: 600; }

/* ---------- How it works ---------- */
.how { padding: clamp(56px, 8vw, 96px) 0; background: linear-gradient(180deg, transparent, rgba(14,90,82,.04)); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  background: var(--teal); color: #fff; font-family: 'Sora'; font-weight: 700; font-size: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--slate); }

/* ---------- Features ---------- */
.features { padding: clamp(56px, 8vw, 96px) 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-muted); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-tint); margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature__icon svg .a { stroke: var(--gold); }
.feature h3 { font-size: 18.5px; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--slate); }

/* ---------- Audiences ---------- */
.audiences { padding: clamp(56px, 8vw, 96px) 0; background: linear-gradient(180deg, rgba(14,90,82,.04), transparent); }
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 48px; }
.aud { border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.aud--owner { background: linear-gradient(150deg, #fff, var(--teal-tint)); }
.aud--agent { background: linear-gradient(150deg, #fff, rgba(244,169,60,.12)); }
.aud__tag { display: inline-block; font-family: 'Inter'; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: var(--teal-tint); padding: 5px 11px; border-radius: 999px; }
.aud__tag--gold { color: var(--gold-pressed); background: rgba(244,169,60,.18); }
.aud__lead { font-family: 'Sora'; font-weight: 600; font-size: 22px; margin: 14px 0 18px; }

.ticks { list-style: none; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4 10-10'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 24px; justify-items: center; }
.shotcard { display: flex; flex-direction: column; align-items: center; gap: 15px; margin: 0; }
.shotcard figcaption { font-size: 14.5px; color: var(--slate); text-align: center; max-width: 15em; }
.shotcard figcaption b { color: var(--teal); font-weight: 700; }
.phone--sm { width: 100%; max-width: 208px; transform: none; box-shadow: var(--shadow-md); }
.shotcard:hover .phone--sm { transform: translateY(-6px); transition: transform .3s var(--ease); }

/* Soft floor shadow under every device for depth */
.phone::after {
  content: ""; position: absolute; left: 10%; right: 10%; bottom: -20px; height: 32px;
  background: radial-gradient(closest-side, rgba(17,37,43,.28), transparent 78%);
  filter: blur(5px); border-radius: 50%; z-index: -1;
}

/* ---------- Showcase carousel (swipeable on phone + PC) ---------- */
.showcase { position: relative; }
.showcase__lead {
  text-align: center; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--slate); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.showcase__lead span {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-tint); padding: 4px 10px; border-radius: 999px;
}
.showcase__viewport {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.showcase__track {
  display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 16px 6px 30px; scroll-padding-inline: 24px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab;
}
.showcase__track::-webkit-scrollbar { display: none; }
.showcase__track.is-grabbing { cursor: grabbing; scroll-snap-type: none; }
.showcase__track .shotcard { flex: 0 0 auto; width: 220px; scroll-snap-align: center; }
.showcase__track .shotcard img { pointer-events: none; }
.showcase__ctrl { display: flex; justify-content: center; gap: 14px; margin-top: 4px; }
.showcase__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--hairline);
  background: var(--card); color: var(--teal); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), background .18s, border-color .18s;
}
.showcase__btn:hover { transform: translateY(-2px); border-color: var(--teal); background: var(--teal-tint); }
.showcase__btn:active { transform: translateY(0); }
.showcase__btn svg { width: 20px; height: 20px; }
@media (hover: none) { .showcase__ctrl { display: none; } } /* touch devices swipe instead */

/* Real app logo badge (nav + footer) */
.brand__logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; display: block; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.14); }
.footer__lockup { display: inline-flex; align-items: center; gap: 9px; }
.footer__lockup .brand__logo { width: 34px; height: 34px; }

/* ---------- Security (dark) ---------- */
.security { background: var(--dk-surface); color: #fff; padding: clamp(60px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.security::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 80% 20%, rgba(14,90,82,.35), transparent 60%); }
.security__inner { position: relative; max-width: 46rem; }
.security__copy .section__title { margin-bottom: 18px; }
.security__stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.security__stats div { display: flex; flex-direction: column; }
.security__stats b { font-family: 'Sora'; font-size: 24px; color: var(--gold); }
.security__stats span { font-size: 13.5px; color: rgba(255,255,255,.66); }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(56px, 8vw, 96px) 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  position: relative; background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 34px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price--pro { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.price__flag { position: absolute; top: -12px; left: 28px; background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price__name { font-size: 20px; margin-bottom: 8px; }
.price__amt { font-family: 'Sora'; font-weight: 700; font-size: 34px; margin-bottom: 22px; }
.price__amt span { font-family: 'Inter'; font-weight: 500; font-size: 15px; color: var(--slate); }
.price .ticks { margin-bottom: 26px; }
.price .btn { margin-top: auto; }
.price__note { text-align: center; color: var(--slate); font-size: 14px; margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 8vw, 96px) 0; background: linear-gradient(180deg, transparent, rgba(14,90,82,.04)); }
.faq__inner { max-width: 44rem; margin: 0 auto; }
.faq__list { display: grid; gap: 12px; }
.qa { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-family: 'Sora'; font-weight: 600; font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { position: relative; width: 16px; height: 16px; flex: none; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; transition: transform .25s var(--ease); }
.qa summary i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.qa summary i::after { top: 0; left: 7px; width: 2px; height: 16px; }
.qa[open] summary i::after { transform: rotate(90deg); opacity: 0; }
.qa p { padding: 0 22px 20px; color: var(--slate); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { padding: clamp(60px, 9vw, 110px) 0; background: linear-gradient(150deg, var(--teal), var(--teal-deep)); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 85% 15%, rgba(244,169,60,.22), transparent 60%); }
.cta__inner { position: relative; text-align: center; max-width: 40rem; margin: 0 auto; }
.cta__title { font-size: clamp(30px, 4.5vw, 46px); color: #fff; margin-bottom: 16px; }
.cta__sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.82); margin-bottom: 32px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 18px; }
.cta__fine { font-size: 13.5px; color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
.footer { background: var(--dk-surface); color: rgba(255,255,255,.72); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand .brand__mark { color: var(--gold); vertical-align: middle; }
.footer__brand .brand__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; color: #fff; vertical-align: middle; }
.footer__brand .brand__name span { color: var(--gold); }
.footer__brand p { font-size: 14.5px; max-width: 24em; margin-top: 14px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__cols h4 { font-family: 'Sora'; font-size: 14px; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer__cols a { display: block; font-size: 14.5px; padding: 5px 0; color: rgba(255,255,255,.66); transition: color .18s; }
.footer__cols a:hover { color: #fff; }
.footer__base { border-top: 1px solid rgba(255,255,255,.08); }
.footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 20px 22px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px) scale(.985); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Staggered cascade so grid children flow in one after another */
.steps .step:nth-child(2), .feature-grid .feature:nth-child(2) { transition-delay: .07s; }
.steps .step:nth-child(3), .feature-grid .feature:nth-child(3) { transition-delay: .14s; }
.steps .step:nth-child(4), .feature-grid .feature:nth-child(4) { transition-delay: .21s; }
.feature-grid .feature:nth-child(5) { transition-delay: .28s; }
.feature-grid .feature:nth-child(6) { transition-delay: .35s; }
.price-grid .price:nth-child(2) { transition-delay: .09s; }
.price-grid .price:nth-child(3) { transition-delay: .18s; }

/* Slow, living glow behind the hero phones */
@media (prefers-reduced-motion: no-preference) {
  .hero__glow { animation: heroGlow 9s ease-in-out infinite; }
  @keyframes heroGlow { 0%, 100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.09); } }
}

@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price--pro { transform: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); border-bottom: 1px solid var(--hairline); padding: 14px 22px 22px;
    transform: translateY(-120%); transition: transform .3s var(--ease); box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 12px 4px; font-size: 16px; }
  .nav__links a.btn { margin-top: 8px; justify-content: center; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__art { min-height: 440px; margin-top: 10px; }
  .aud-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps, .feature-grid, .gallery { grid-template-columns: 1fr; }
  .phone { width: 220px; }
  .phone--front { transform: rotate(-3deg) translateX(-14px); }
  .phone--back { transform: rotate(5deg) translateX(34px) scale(.95); }
  .hero__badges { gap: 12px 16px; }
  .security__stats { gap: 20px; }
  .strip__inner { flex-direction: column; gap: 10px; }
  .strip__items { gap: 8px 18px; }
  .strip__inner > span, .strip__items div { font-size: 13px; }
}
