:root {
  --bg: #050b18;
  --bg-deep: #020711;
  --panel: #091426;
  --panel-2: #0c1b31;
  --panel-3: #102342;
  --line: #1d3c62;
  --line-bright: #2b6fc4;
  --text: #f4f7fd;
  --muted: #9aacc5;
  --soft: #c6d3e5;
  --blue: #438cff;
  --blue-light: #8dbdff;
  --cyan: #22d3ee;
  --red: #ff6685;
  --yellow: #ffd31a;
  --green: #49df8a;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 8%, rgba(22, 92, 202, .17), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; image-rendering: auto; }
a { color: inherit; }
a, .button, .metric-card, .support-card, .faq summary, .nav-toggle span { transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease, transform .18s ease; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: white; color: #07111f; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(5, 11, 24, .78); border-bottom: 1px solid rgba(52, 92, 139, .35); backdrop-filter: blur(18px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.2rem; font-weight: 760; line-height: 1; letter-spacing: -.03em; }
.brand img { width: 35px; height: 22px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 650; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { text-decoration: none; padding: 10px 17px; border: 1px solid var(--line-bright); border-radius: 999px; color: var(--blue-light); font-weight: 700; font-size: .88rem; white-space: nowrap; }
.nav-cta:hover, .nav-cta:focus-visible { color: var(--text); border-color: var(--blue-light); box-shadow: 0 0 0 4px rgba(67, 140, 255, .14); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
.nav-toggle span { width: 16px; height: 2px; margin-inline: auto; background: var(--soft); border-radius: 2px; }
.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 { min-height: auto; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 40px; padding-block: 64px 76px; }
.hero-copy { position: relative; z-index: 2; }
.kicker { margin: 0 0 14px; color: var(--cyan); text-transform: uppercase; letter-spacing: .16em; font-size: .73rem; font-weight: 800; }
.kicker span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
.hero-headline { margin: 0 0 22px; font-size: clamp(2.4rem, 4.4vw, 3.7rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; max-width: 100%; }
.hero-headline em { display: block; margin-top: 8px; color: var(--blue-light); font-style: normal; letter-spacing: -.04em; }
.hero-lead { max-width: 620px; margin-bottom: 30px; color: var(--soft); font-size: clamp(1.02rem, 1.5vw, 1.15rem); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 12px; text-decoration: none; font-weight: 760; font-size: .95rem; }
.button.primary { background: linear-gradient(135deg, #397df1, #4d95ff); color: white; box-shadow: 0 14px 34px rgba(41, 111, 238, .26); }
.button.primary:hover { filter: brightness(1.1); box-shadow: 0 16px 40px rgba(41, 111, 238, .36); transform: translateY(-1px); }
.button.disabled { opacity: .68; cursor: default; }
.button.disabled:hover { filter: none; box-shadow: none; transform: none; }
.text-link { color: var(--soft); font-weight: 700; text-decoration: none; }
.text-link span { color: var(--cyan); margin-left: 5px; display: inline-block; transition: transform .18s ease; }
.text-link:hover span { transform: translateY(2px); }
.text-link:hover { color: var(--text); }
.trust-list { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 24px; padding: 0; margin: 34px 0 0; color: var(--muted); font-size: .88rem; font-weight: 650; }
.trust-list li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(73, 223, 138, .8); vertical-align: 2px; }
.trust-list-mobile { display: none; }

.hero-visual { position: relative; min-height: 720px; display: grid; place-items: center; padding: 12px 48px 24px; }
.hero-visual::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(24, 113, 255, .2), transparent 67%); filter: blur(8px); }
.orbit { position: absolute; border: 1px solid rgba(68, 151, 255, .19); border-radius: 50%; transform: rotate(-18deg); pointer-events: none; }
.orbit-one { width: 560px; height: 310px; }
.orbit-two { width: 690px; height: 390px; }
.phone { position: relative; overflow: hidden; background: #061022; border: 1px solid rgba(72, 142, 224, .5); border-radius: 38px; box-shadow: var(--shadow), inset 0 0 0 7px #071124; aspect-ratio: 946 / 2048; }
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-main { width: min(340px, 72vw); z-index: 2; }
.result-chip { position: absolute; z-index: 4; min-width: 168px; padding: 13px 15px 13px 40px; border: 1px solid rgba(80, 145, 225, .54); border-radius: 14px; background: rgba(5, 15, 31, .92); box-shadow: 0 20px 50px rgba(0, 0, 0, .42); backdrop-filter: blur(14px); pointer-events: none; }
.result-chip small { display: block; color: var(--muted); font-size: .61rem; letter-spacing: .13em; font-weight: 800; }
.result-chip strong { display: block; font-size: .95rem; }
.result-chip .dot { position: absolute; left: 16px; top: 24px; width: 10px; height: 10px; border-radius: 50%; }
.dot.yellow { background: var(--yellow); box-shadow: 0 0 13px var(--yellow); }
.dot.red { background: var(--red); box-shadow: 0 0 13px var(--red); }
.dot.cyan { background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }
/* Float chips off the screenshot so they never cover POWER MATCH / DISC ANGLE cards */
.chip-one { left: auto; right: calc(50% + 150px); top: 72px; }
.chip-two { right: auto; left: calc(50% + 150px); bottom: 88px; top: auto; }
.chip-three { left: auto; right: calc(50% + 138px); bottom: 168px; }

.proof-strip { border-block: 1px solid rgba(48, 90, 139, .45); background: rgba(7, 17, 33, .72); }
.proof-grid { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--soft); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.proof-grid i { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: var(--cyan); }
.privacy-callout { padding-block: 20px 10px; }
.privacy-panel { max-width: 820px; padding: 28px 32px; border: 1px solid var(--line-bright); border-radius: 20px; background: radial-gradient(circle at 0% 0%, rgba(34, 211, 238, .12), transparent 18rem), var(--panel-2); }
.privacy-panel h2 { margin-bottom: 10px; }
.privacy-panel p:not(.kicker) { margin: 0; color: var(--soft); font-size: 1.05rem; }

.section { padding-block: 96px; }
.section-heading { display: block; max-width: 720px; margin-bottom: 36px; }
.section-heading.compact { display: block; max-width: 720px; }
.section-heading .section-intro { margin-bottom: 0; }
.section h2, .download-card h2, .page-hero h1 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.1vw, 2.9rem); line-height: 1.12; letter-spacing: -.03em; }
.section-intro { max-width: 700px; margin-bottom: 38px; color: var(--muted); font-size: 1.08rem; }
.intro > .section-intro { margin-left: 0; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric-card { position: relative; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(15, 33, 59, .88), rgba(6, 15, 29, .96)); overflow: hidden; }
.metric-card:hover { border-color: var(--line-bright); transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0, 0, 0, .3); }
.metric-card::after { content: ""; position: absolute; inset: auto -30% -60% 20%; height: 180px; background: radial-gradient(circle, rgba(46, 127, 255, .14), transparent 68%); }
.metric-index { color: #5f7898; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.metric-light { width: 12px; height: 12px; margin: 54px 0 17px; border-radius: 50%; }
.metric-light.yellow { background: var(--yellow); box-shadow: 0 0 16px var(--yellow); }
.metric-light.red { background: var(--red); box-shadow: 0 0 16px var(--red); }
.metric-light.cyan { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.metric-card h3 { margin-bottom: 8px; font-size: 1.32rem; }
.metric-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 1rem; }

.feature-section { overflow: hidden; border-block: 1px solid rgba(45, 86, 134, .42); background: radial-gradient(circle at 75% 45%, rgba(33, 112, 226, .17), transparent 27rem), #07101f; }
.feature-layout { display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: 80px; }
.feature-copy p:not(.kicker) { color: var(--soft); font-size: 1.05rem; }
.phone-secondary { width: min(330px, 78vw); margin-inline: auto; }
.flight-numbers { display: flex; gap: 10px; margin: 28px 0; }
.flight-numbers span { min-width: 78px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--panel); }
.flight-numbers b { display: block; color: var(--cyan); font-size: 1.25rem; }
.flight-numbers small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.feature-note { padding: 18px 20px; border-left: 2px solid var(--cyan); background: rgba(15, 35, 62, .72); }

.steps-layout { display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: 86px; margin-top: 46px; }
.phone-finder { width: min(320px, 78vw); justify-self: center; }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { border-top: 1px solid var(--line); }
.steps li > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 13px; color: var(--blue-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; font-weight: 800; }
.steps h3 { margin-bottom: 5px; font-size: 1.24rem; }
.steps p { margin: 0; color: var(--muted); }

.accuracy-section { border-block: 1px solid rgba(45, 86, 134, .42); background: linear-gradient(180deg, #09172b, #071120); }
.accuracy-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: center; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.check-grid > div { position: relative; min-height: 126px; padding: 22px 20px 18px 56px; border: 1px solid var(--line); border-radius: 18px; background: rgba(5, 14, 28, .68); }
.check-grid span { position: absolute; left: 20px; top: 23px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan); color: #03101d; font-weight: 900; }
.check-grid strong, .check-grid small { display: block; }
.check-grid small { margin-top: 3px; color: var(--muted); font-size: .83rem; line-height: 1.45; }
.accuracy-note { margin-top: 42px; margin-bottom: 0; padding: 20px 22px; color: var(--muted); border: 1px solid rgba(62, 111, 166, .42); border-radius: 14px; background: rgba(4, 12, 24, .62); font-size: .9rem; }
.accuracy-note strong { color: var(--soft); }

.compare-section { padding-block: 72px; }
.compare-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(240px, .65fr); gap: 40px 56px; align-items: center; }
.compare-copy { max-width: 36rem; }
.compare-copy h2 { margin-bottom: 14px; }
.compare-copy p:not(.kicker) { margin: 0; color: var(--soft); font-size: 1.08rem; line-height: 1.6; }
.history-examples { display: grid; gap: 10px; margin-top: 28px; }
.history-examples > div { display: grid; grid-template-columns: 115px 1fr; align-items: center; gap: 18px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(9, 20, 38, .72); }
.history-examples span, .history-examples small { display: block; }
.history-examples b { color: var(--text); font-size: .94rem; }
.history-examples small { color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.history-examples strong { color: var(--soft); font-size: .84rem; font-weight: 650; }
.phone-history { width: min(330px, 72vw); justify-self: end; margin: 0; }
.phone-stack { position: relative; margin: 0; width: min(440px, 100%); aspect-ratio: 1 / 1; justify-self: end; }
.phone-stack .phone { position: absolute; width: 54%; }
.stack-back { right: 0; top: 0; z-index: 1; }
.stack-front { left: 0; bottom: 0; z-index: 2; }

.faq-section { padding-top: 56px; }
.faq { max-width: 880px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 720; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform .18s ease; }
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--blue-light); }
.support-card:hover { border-color: var(--line-bright); }
.faq details p { max-width: 760px; padding: 0 36px 22px 0; margin: 0; color: var(--muted); }

.download-section { padding: 30px 0 100px; }
.download-card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 38px; border: 1px solid var(--line-bright); border-radius: 28px; background: radial-gradient(circle at 10% 20%, rgba(41, 130, 255, .2), transparent 18rem), var(--panel-2); box-shadow: var(--shadow); }
.download-card img { border-radius: 25px; width: 112px; height: 112px; object-fit: cover; }
.download-card h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.download-card p:not(.kicker) { margin: 0; color: var(--muted); }
.download-card .download-note { margin-top: 10px; font-size: .88rem; line-height: 1.5; }

.footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding-block: 36px; border-top: 1px solid rgba(45, 86, 134, .42); color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 32px; height: 20px; object-fit: contain; }
.footer-brand span, .footer-brand small { display: block; }
.footer-brand strong { color: var(--text); }
.footer-brand small { font-size: .76rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; font-size: .88rem; }
.footer > p { grid-column: 1 / -1; margin: -20px 0 0; font-size: .76rem; }

/* Support and legal pages */
.subpage main { min-height: calc(100vh - 228px); }
.page-wrap { width: min(900px, calc(100% - 40px)); margin-inline: auto; padding: 70px 0 100px; }
.page-hero { margin-bottom: 44px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero .meta { max-width: 690px; color: var(--muted); font-size: 1.05rem; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 28px; margin-bottom: 58px; border: 1px solid var(--line-bright); border-radius: 20px; background: var(--panel-2); }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card .email { color: var(--text); font-weight: 760; text-decoration: none; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 24px 0 60px; }
.support-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.support-card h3 { margin-bottom: 7px; }
.support-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.prose { color: var(--soft); }
.prose h2 { margin: 42px 0 10px; font-size: 1.35rem; letter-spacing: -.02em; }
.prose p, .prose li { color: #b7c6d9; }
.prose a { color: var(--cyan); }
.prose ul { padding-left: 1.3rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 66px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { min-height: 640px; padding-inline: 8px; }
  .chip-one { right: calc(50% + 118px); left: auto; top: 56px; }
  .chip-two { left: calc(50% + 118px); right: auto; bottom: 64px; }
  .feature-layout, .steps-layout, .accuracy-layout, .compare-layout { grid-template-columns: 1fr; }
  .compare-copy { max-width: none; }
  .phone-stack, .phone-history { justify-self: center; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 220px; }
  .metric-light { margin-top: 34px; }
  .feature-layout, .steps-layout { gap: 54px; }
  .feature-copy { order: 1; }
  .phone-secondary { order: 2; }
  .compare-layout { gap: 20px; }
  .history-examples { max-width: 620px; }
  .phone-stack { width: min(460px, 100%); }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card .button { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .shell, .page-wrap { width: min(100% - 28px, 1160px); }
  .site-header { position: sticky; }
  .nav { min-height: 64px; flex-wrap: wrap; }
  .nav-links { order: 3; flex-basis: 100%; display: none; flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 16px; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; border-top: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-cta { font-size: .85rem; padding: 8px 12px; }
  .brand { font-size: 1.08rem; }
  .brand img { width: 32px; height: 20px; }
  .hero { min-height: auto; padding-block: 46px 48px; }
  .hero-copy { order: 1; }
  .hero-headline { margin-bottom: 16px; font-size: clamp(2.2rem, 10vw, 2.85rem); max-width: 100%; }
  .hero-lead { margin-bottom: 22px; font-size: 1rem; line-height: 1.5; }
  .hero-actions { justify-content: center; }
  .hero-actions .text-link { display: none; }
  .trust-list-desktop { display: none; }
  .trust-list-mobile { order: 3; display: flex; justify-content: center; gap: 9px 16px; margin: 4px 0 0; }
  .hero-visual { order: 2; min-height: 520px; margin-top: 0; padding-inline: 0; }
  .phone-main { width: min(258px, 70vw); }
  .chip-one, .chip-two { display: none; }
  .result-chip { min-width: 136px; padding: 11px 12px 11px 34px; }
  .result-chip .dot { left: 13px; top: 22px; }
  .orbit-one { width: 350px; height: 210px; }
  .orbit-two { width: 440px; height: 260px; }
  .proof-grid { justify-content: center; flex-wrap: wrap; padding-block: 18px; }
  .proof-grid i:nth-of-type(even), .proof-grid span:last-child { display: none; }
  .section { padding-block: 58px; }
  .section h2 { font-size: 1.9rem; }
  .section-heading { margin-bottom: 28px; }
  .metric-card { min-height: 0; padding: 24px; }
  .metric-light { margin-top: 26px; }
  .flight-numbers { display: grid; grid-template-columns: 1fr 1fr; }
  .flight-numbers span { min-width: 0; }
  .phone-secondary, .phone-finder { width: min(270px, 78vw); }
  .history-examples > div { grid-template-columns: 1fr; gap: 5px; }
  .steps-layout { gap: 46px; }
  .steps li { grid-template-columns: 48px 1fr; gap: 14px; padding: 22px 0; }
  .check-grid { grid-template-columns: 1fr; }
  .phone-stack { width: min(320px, 100%); aspect-ratio: 0.95 / 1; }
  .phone-stack .phone { width: 54%; }
  .stack-back { right: 2%; top: 4%; }
  .stack-front { left: 2%; bottom: 4%; }
  .download-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 28px 22px; }
  .download-card .button { grid-column: auto; width: 100%; }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer > p { grid-column: auto; margin: 0; }
  .contact-card, .support-grid { grid-template-columns: 1fr; }
  .page-wrap { padding-top: 50px; }
}

@media (max-width: 420px) {
  .chip-one, .chip-two { transform: scale(.92); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  a, .button, .metric-card, .support-card, .faq summary, .nav-toggle span { transition: none; }
}
