/* =========================================================
   BaySim FlightPad — site styles
   Palette: navy #0B1D3A → #153366, gold #D4AF37,
            cyan #46C8FF, white #FFFFFF, green #34C759
   No external fonts or CDNs — system-ui stack only.
   ========================================================= */

:root {
  --navy-1: #0B1D3A;
  --navy-2: #153366;
  --gold: #D4AF37;
  --gold-soft: #e8c95c;
  --cyan: #46C8FF;
  --green: #34C759;
  --white: #FFFFFF;
  --text: rgba(255, 255, 255, 0.92);
  --text-dim: rgba(255, 255, 255, 0.64);
  --text-faint: rgba(255, 255, 255, 0.45);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.10);
  --radius: 18px;
  /* Refined elevation: a hairline top highlight + a soft, tightly-spread
     drop shadow. Reads as crafted glass rather than a heavy generic blur. */
  --shadow-soft: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 36px -26px rgba(0, 0, 0, 0.75);
  --shadow-lift: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 50px -30px rgba(0, 0, 0, 0.8);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "SF Pro Text", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--navy-1);
  background-image:
    radial-gradient(900px 500px at 80% -100px, rgba(70, 200, 255, 0.12), transparent 60%),
    radial-gradient(700px 420px at 10% 25%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-1) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 17px;
}

/* Fixed multi-layer backgrounds repaint every scroll frame and are a known
   jank source on mobile/touch Safari. Pin them only on larger, pointer-precise
   screens; let them scroll normally on phones and tablets. */
@media (max-width: 1024px), (hover: none), (prefers-reduced-motion: reduce) {
  body { background-attachment: scroll; }
}

/* Subtle map-grid overlay — very low opacity, fades out down the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(70, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 200, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1100px 750px at 50% 0%, rgba(0, 0, 0, 0.9), transparent 75%);
  mask-image: radial-gradient(1100px 750px at 50% 0%, rgba(0, 0, 0, 0.9), transparent 75%);
}

img { max-width: 100%; height: auto; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Dev banner (site under development) ---------- */

.dev-banner {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 101;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.13));
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dev-banner::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.85);
  flex: none;
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 34px 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 29, 58, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav.scrolled { background: rgba(11, 29, 58, 0.85); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }

.nav-cta {
  padding: 7px 16px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--navy-1) !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-soft); }

/* EN / TR language switch — small segmented control, stays visible on mobile */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 99px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-switch button:hover { color: var(--white); }
.lang-switch button.is-active {
  background: var(--gold);
  color: var(--navy-1);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 122px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Static emblem with a soft, centered glow — no offset shadow that can
   read as a detached smudge, no animation, nothing escapes the viewport.
   Kept small so the product mockup, not the brand mark, leads the hero. */
.hero-emblem {
  width: 66px;
  height: auto;
  /* Lock the box to the PNG's 247×256 ratio so it never reflows
     between the pre-decode placeholder and the decoded image (no load flash). */
  aspect-ratio: 247 / 256;
  margin-bottom: 10px;
  /* Grounded, physical shadow rather than a neon halo. */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold) 10%, var(--gold-soft) 50%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pitch {
  max-width: 740px;
  margin: 0 auto 10px;
  font-size: clamp(16.5px, 2.1vw, 19px);
  color: var(--text-dim);
  line-height: 1.5;
}

.badge-msfs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-msfs .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(52, 199, 89, 0.8);
  flex: none;
}

.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  text-align: left;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { flex: none; }

.btn-store {
  background: #000;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-soft);
}
.btn-store:hover { box-shadow: 0 14px 48px rgba(0, 0, 0, 0.5); }

.btn-bridge {
  background: linear-gradient(120deg, rgba(70, 200, 255, 0.16), rgba(70, 200, 255, 0.08));
  color: var(--white);
  border: 1px solid rgba(70, 200, 255, 0.5);
}
.btn-bridge:hover { background: rgba(70, 200, 255, 0.22); }

.btn .btn-sub {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.btn .btn-main { display: block; font-size: 16.5px; }

/* Placeholder links (no real URL configured yet) */
.btn.is-placeholder {
  opacity: 0.75;
  cursor: default;
}
.btn.is-placeholder:hover { transform: none; }

.cta-note {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-faint);
}

/* ---------- Sections ---------- */

section { padding: 92px 0; }

/* Anchored sections stop below the fixed 60px header instead of under it */
section[id] { scroll-margin-top: 110px; }

@media (max-width: 900px) { section { padding: 68px 0; } }
@media (max-width: 580px) { section { padding: 54px 0; } }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.12;
}

.section-head p { margin: 0; color: var(--text-dim); font-size: 18px; }

/* ---------- Feature cards ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 200, 255, 0.30);
  box-shadow: var(--shadow-lift);
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(70, 200, 255, 0.18), rgba(212, 175, 55, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.card .icon svg { width: 26px; height: 26px; }

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.card p { margin: 0; font-size: 15.5px; color: var(--text-dim); line-height: 1.55; }

/* ---------- How it works diagram ---------- */

.diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.diagram-node {
  flex: 1 1 190px;
  max-width: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.diagram-node .icon { margin: 0 auto 16px; display: flex; width: 54px; height: 54px;
  align-items: center; justify-content: center; border-radius: 16px;
  background: rgba(70, 200, 255, 0.12); border: 1px solid rgba(70, 200, 255, 0.3); }
.diagram-node .icon svg { width: 28px; height: 28px; }

.diagram-node h3 { margin: 0 0 6px; font-size: 18px; color: var(--white); }
.diagram-node p { margin: 0; font-size: 14.5px; color: var(--text-dim); }

.diagram-link {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 6px;
}

.diagram-link .arrow {
  font-size: 26px;
  color: var(--cyan);
  letter-spacing: -0.05em;
  line-height: 1;
}

.code-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(70, 200, 255, 0.35);
  color: var(--cyan);
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  white-space: nowrap;
}

.diagram-caption {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-dim);
  font-size: 15.5px;
}

@media (max-width: 820px) {
  .diagram { flex-direction: column; align-items: center; }
  .diagram-node { width: 100%; }
  .diagram-link .arrow { transform: rotate(90deg); }
}

/* ---------- Setup steps ---------- */

.steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease;
}
.step:hover { border-color: rgba(212, 175, 55, 0.28); }

.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8932a);
  color: var(--navy-1);
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.step h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.step p { margin: 0; font-size: 15px; color: var(--text-dim); }

.step.step-done {
  border-color: rgba(52, 199, 89, 0.4);
}
.step.step-done .step-num {
  background: linear-gradient(135deg, var(--green), #28a745);
  box-shadow: 0 4px 16px rgba(52, 199, 89, 0.35);
  color: #fff;
}

/* ---------- Download section ---------- */

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 760px) { .download-grid { grid-template-columns: 1fr; } }

.download-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.download-card h3 { margin: 0 0 8px; font-size: 21px; color: var(--white); }
.download-card > p { margin: 0 0 22px; font-size: 15px; color: var(--text-dim); }
.download-card .btn { margin-bottom: 22px; }

.req-list {
  list-style: none;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  font-size: 13.5px;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 54px;
  margin-top: 40px;
}

/* Top row: brand mark on the left, legal nav on the right */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer-brand img { border-radius: 7px; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); font-weight: 500; font-size: 14.5px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--white); text-decoration: none; }

.footer-disclaimer {
  margin: 24px 0 0;
  font-size: 12.5px;
  color: var(--text-faint);
  max-width: 780px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
}

/* Legacy single-row footer (kept for safety) */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-faint);
}

/* ---------- Legal / content pages ---------- */

.page {
  padding: 174px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.page h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 8px;
}

.page .page-meta { color: var(--text-faint); font-size: 14px; margin: 0 0 40px; }

.page h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 14px;
  letter-spacing: -0.01em;
}

.page h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 26px 0 8px;
  letter-spacing: -0.005em;
}

.page p, .page li { color: var(--text-dim); font-size: 16px; }
.page ul, .page ol { padding-left: 22px; }
.page li { margin-bottom: 7px; }
.page li::marker { color: var(--text-faint); }
.page strong { color: var(--text); }
.page a { font-weight: 500; }

/* Lead paragraph below the page title */
.page .lead {
  font-size: 17.5px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 8px;
}

/* Inline code in legal/support copy */
.page code {
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(70, 200, 255, 0.25);
  color: var(--cyan);
}

/* Subtle divider between major legal sections */
.page h2 { border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 34px; }
.page h2:first-of-type { border-top: 0; padding-top: 0; }

/* FAQ accordions (support page) */
details.faq {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 4px 22px;
  margin-bottom: 12px;
}

details.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  padding: 14px 0;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin: 0 0 16px; font-size: 15px; }
details.faq ul { margin: 4px 0 16px; }
details.faq li { font-size: 15px; margin-bottom: 6px; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

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

/* =========================================================
   v2 — product visuals (hero mockup, mini previews, action
   cards, trust pills, flow diagram tech line)
   ========================================================= */

/* ---------- Hero v2 ---------- */

.hero-tagline {
  max-width: 560px;
  margin: 0 auto 16px;
  font-size: 14.5px;
  color: var(--text-faint);
  letter-spacing: 0.01em;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.hero > .container { position: relative; z-index: 1; }

.hero-mockup {
  max-width: 920px;
  margin: 26px auto 0;
}

@media (max-width: 580px) {
  .hero { padding: 118px 0 40px; }
  .hero-emblem { width: 60px; }
  .hero-mockup { margin-top: 24px; }
}

/* Real-screenshot iPad frame */
.device-frame {
  background: #0A1322;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(18px, 3.4vw, 34px);
  padding: clamp(10px, 1.8vw, 18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5), 0 4px 22px rgba(70, 200, 255, 0.06);
}

.device-screen {
  border-radius: clamp(10px, 2vw, 20px);
  overflow: hidden;
  background: #0C1626;
  /* 1800x1257 screenshot with the top ~30px (iPadOS status bar) cropped
     away via the negative margin below: 1257 - 30 = 1227 */
  aspect-ratio: 1800 / 1227;
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1.667%; /* hides the iPadOS status bar, keeps Maps attribution */
}

.mockup-caption {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
}

/* SVG UI text inside mockups */
.svg-ui { font-family: system-ui, -apple-system, "SF Pro Text", "Segoe UI", sans-serif; }

/* Teleport ring pulse */
@keyframes ringPulse {
  0%   { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}
.tp-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: ringPulse 2.6s ease-out infinite;
}
.tp-ring--late { animation-delay: 1.3s; }

/* Dashed "planned leg" marching ants */
@keyframes dashMove { to { stroke-dashoffset: -36; } }
.dash-anim { animation: dashMove 2.2s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .tp-ring, .dash-anim { animation: none; }
  .tp-ring { opacity: 0.5; }
}

/* ---------- Feature card mini previews ---------- */

.card-visual {
  margin: -8px -8px 18px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #0C1B2F, #0A2236);
  border: 1px solid rgba(70, 200, 255, 0.14);
}
.card-visual svg { display: block; width: 100%; height: auto; }

/* ---------- "See it in action" ---------- */

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .action-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.action-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 18px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-lift);
}

.action-card .action-shot {
  border-radius: 14px;
  overflow: hidden;
  background: #0C1626;
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 18px;
  aspect-ratio: 3 / 2;
}
.action-card .action-shot svg { display: block; width: 100%; height: auto; }
.action-card .action-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.action-card .action-shot img.fit-top { object-position: top; }

.action-card h3 {
  margin: 0 8px 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.action-card p { margin: 0 8px; font-size: 15px; color: var(--text-dim); line-height: 1.55; }

/* ---------- Real app screens ---------- */

.screen-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 14px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.screen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 200, 255, 0.30);
  box-shadow: var(--shadow-lift);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card h3 {
  margin: 16px 6px 5px;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.screen-card p { margin: 0 6px; font-size: 14.5px; color: var(--text-dim); line-height: 1.5; }

/* ---------- Flow diagram tech line ---------- */

.tech-line {
  margin: 28px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
}
.tech-line .sep { color: rgba(70, 200, 255, 0.5); }
.tech-line .code-chip { font-size: 11.5px; padding: 4px 10px; }

.tech-note {
  margin: 12px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-faint);
}

/* ---------- Trust pills (download) ---------- */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 44px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 99px;
  background: rgba(52, 199, 89, 0.08);
  border: 1px solid rgba(52, 199, 89, 0.30);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}
.trust-pill svg { flex: none; }

/* ---------- Setup support note ---------- */

.setup-note {
  text-align: center;
  margin: 28px auto 0;
  font-size: 14.5px;
  color: var(--text-faint);
}

/* ---------- Accessibility helpers ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-1);
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
