/* AURORA — auroracruising.com */
:root {
  --ink: #12323A;
  --ink-soft: #244B50;
  --muted: #637A76;
  --canvas: #F5FBF8;
  --surface: #FFFFFF;
  --surface-tint: #EAF7F1;
  --line: #D0E7DE;
  --line-strong: #AED7C8;
  --primary: #236A60;
  --primary-dark: #153F43;
  --primary-light: #DDF8EC;
  --aurora: #39D98F;
  --aurora-bright: #39FFB0;
  --cyan: #7DE7DE;
  --violet: #B7A8FF;
  --deep: #0E2E33;
  --deep-2: #1D5B58;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(8, 28, 32, 0.04), 0 12px 32px -16px rgba(8, 28, 32, 0.18);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 251, 248, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(208, 231, 222, 0.6);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: 0.14em; font-size: 15px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 550; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 650;
}
.nav-cta:hover { background: var(--primary-dark); text-decoration: none; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- Buttons & badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 650; font-size: 15.5px; line-height: 1;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--primary-dark); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4); }
.btn-light:hover { background: var(--primary-light); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px; padding: 10px 18px 10px 14px;
  color: #fff; cursor: default; min-width: 172px;
}
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-over { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.72; font-weight: 550; }
.store-badge .sb-name { font-size: 16.5px; font-weight: 700; line-height: 1.25; }
.store-badge.light { background: var(--surface); border-color: var(--line); color: var(--ink); cursor: default; }
.store-badge.light .sb-over { color: var(--muted); opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0F3B3E 0%, var(--deep-2) 52%, #17494B 100%);
  color: #fff;
}
.hero-aurora { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: center; padding: 84px 24px 96px;
}
.hero-copy .eyebrow { color: var(--aurora-bright); }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  line-height: 1.06; letter-spacing: -0.025em; font-weight: 800;
  margin: 14px 0 20px;
}
.hero h1 .accent {
  background: linear-gradient(92deg, var(--aurora-bright), var(--cyan) 55%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 18px; line-height: 1.65; color: rgba(235, 250, 244, 0.85);
  max-width: 34em; margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-direction: column; gap: 16px; }
.hero-note { font-size: 13.5px; color: rgba(235, 250, 244, 0.6); }
.hero-note a { color: var(--aurora-bright); }
.hero-phone { justify-self: center; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 24px 72px; }
  .hero-phone { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--surface); border-block: 1px solid var(--line); }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
}
.section h2 {
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12;
  letter-spacing: -0.02em; font-weight: 800; margin: 12px 0 16px;
}
.section-lead { font-size: 17.5px; color: var(--ink-soft); max-width: 44em; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* Trust strip */
.trust { border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 40px;
  padding: 18px 24px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.trust-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-inner svg { width: 16px; height: 16px; color: var(--primary); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.step-num {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; margin-bottom: 18px;
}
.step h3 { font-size: 18.5px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.6; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature {
  background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.feature .f-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), #d3f2ef);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature .f-icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 17px; margin-bottom: 7px; letter-spacing: -0.01em; }
.feature p { font-size: 14.5px; color: var(--muted); line-height: 1.62; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }

/* Walkthrough */
.shots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 56px; justify-items: center;
}
.shot figcaption { margin-top: 22px; text-align: center; max-width: 300px; }
.shot figcaption strong { display: block; font-size: 16px; margin-bottom: 4px; letter-spacing: -0.01em; }
.shot figcaption span { font-size: 14px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) {
  .shots { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Phone mockup ---------- */
.phone {
  width: 292px; flex: none;
  background: #071B1F;
  border-radius: 46px; padding: 10px;
  box-shadow: 0 30px 60px -24px rgba(8, 28, 32, 0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone .screen {
  background: var(--canvas); border-radius: 37px; overflow: hidden;
  height: 590px; display: flex; flex-direction: column; position: relative;
}
.p-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 6px; font-size: 11.5px; font-weight: 700; color: var(--ink);
}
.p-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #071B1F; border-radius: 999px;
}
.p-header { padding: 12px 18px 10px; }
.p-header .p-title { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.p-header .p-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.p-body { flex: 1; padding: 2px 14px 10px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; }
.p-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 13px; box-shadow: 0 1px 2px rgba(8,28,32,0.04);
}
.p-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.p-line-name { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.p-ship { font-size: 14px; font-weight: 750; letter-spacing: -0.01em; margin-top: 1px; }
.p-meta { font-size: 10.5px; color: var(--muted); margin-top: 2px; line-height: 1.45; }
.p-fit {
  flex: none; width: 40px; height: 40px; border-radius: 999px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12.5px; line-height: 1;
  background: var(--primary-light); color: var(--primary-dark);
  border: 2px solid var(--aurora);
}
.p-fit small { font-size: 6.5px; font-weight: 700; letter-spacing: 0.06em; margin-top: 1px; }
.p-price-row {
  display: flex; align-items: baseline; gap: 6px; margin-top: 9px;
  padding-top: 9px; border-top: 1px dashed var(--line);
}
.p-price { font-size: 15px; font-weight: 800; }
.p-target { font-size: 10.5px; color: var(--muted); }
.p-chip {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
}
.p-chip.good { background: var(--primary-light); color: var(--primary-dark); }
.p-chip.watch { background: #E7F0FF; color: #245E91; }
.p-chip.warn { background: #FFF5E4; color: #9B5A00; }
.p-tabbar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 9px 8px 16px; border-top: 1px solid var(--line); background: var(--surface);
}
.p-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; font-weight: 650; color: var(--muted); }
.p-tab svg { width: 17px; height: 17px; }
.p-tab.on { color: var(--primary); }
.p-seg { display: flex; gap: 6px; padding: 0 18px 8px; }
.p-seg span {
  font-size: 10px; font-weight: 650; padding: 5px 11px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
}
.p-seg span.on { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.p-demo-tag {
  align-self: center; font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); background: var(--surface-tint);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px;
}
.p-stamp-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.p-stamp {
  font-size: 9.5px; font-weight: 650; padding: 5px 9px; border-radius: 8px;
  border: 1px dashed var(--line-strong); color: var(--ink-soft); background: var(--surface);
}
.p-stamp.fav { border-style: solid; background: var(--primary-light); color: var(--primary-dark); }
.p-slider { margin-top: 8px; }
.p-slider .p-sl-label { display: flex; justify-content: space-between; font-size: 10px; font-weight: 650; color: var(--ink-soft); margin-bottom: 4px; }
.p-sl-track { height: 5px; border-radius: 999px; background: var(--surface-tint); position: relative; }
.p-sl-fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: linear-gradient(90deg, var(--aurora), var(--cyan)); }
.p-evi { display: flex; justify-content: space-between; font-size: 10.5px; padding: 5px 0; border-bottom: 1px solid var(--surface-tint); }
.p-evi:last-child { border-bottom: none; }
.p-evi .k { color: var(--muted); }
.p-evi .v { font-weight: 650; text-align: right; }
.p-act { display: flex; gap: 9px; align-items: flex-start; }
.p-act .dot { flex: none; width: 7px; height: 7px; border-radius: 999px; background: var(--aurora); margin-top: 5px; }
.p-act .dot.info { background: var(--cyan); }
.p-act .dot.faded { background: var(--line-strong); }
.p-act p { font-size: 10.5px; line-height: 1.5; color: var(--ink-soft); }
.p-act p strong { color: var(--ink); }
.p-act time { font-size: 9px; color: var(--muted); }

/* ---------- Honest band ---------- */
.honest {
  background: linear-gradient(160deg, #0F3B3E, var(--deep-2));
  color: #fff; border-radius: 24px; padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.honest .eyebrow { color: var(--aurora-bright); }
.honest h2 { color: #fff; }
.honest p { color: rgba(235, 250, 244, 0.82); font-size: 15.5px; }
.honest ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.honest li { display: flex; gap: 12px; font-size: 15px; color: rgba(235, 250, 244, 0.88); line-height: 1.55; }
.honest li svg { flex: none; width: 19px; height: 19px; color: var(--aurora-bright); margin-top: 3px; }
@media (max-width: 820px) { .honest { grid-template-columns: 1fr; padding: 40px 28px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 0 22px;
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 650; font-size: 16px; padding: 18px 0; letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 20px; font-weight: 500; color: var(--muted);
  transition: transform 0.16s ease; flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 20px; font-size: 15px; color: var(--ink-soft); max-width: 60ch; }
.faq-list details a { font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 96px 24px; }
.final-cta .store-badges { justify-content: center; margin: 34px 0 18px; }
.final-cta .fine { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
footer { background: var(--deep); color: rgba(235, 250, 244, 0.75); }
.footer-inner { padding: 56px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: 0.14em; font-size: 15px; margin-bottom: 14px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-grid p { font-size: 14px; line-height: 1.65; max-width: 34em; }
.footer-grid h4 { color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: rgba(235, 250, 244, 0.75); font-size: 14.5px; }
.footer-grid a:hover { color: var(--aurora-bright); text-decoration: none; }
.footer-legal {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(235, 250, 244, 0.5);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: linear-gradient(160deg, #0F3B3E, var(--deep-2)); color: #fff;
  padding: 64px 24px 52px;
}
.legal-hero .eyebrow { color: var(--aurora-bright); }
.legal-hero h1 { font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.02em; margin: 10px 0 10px; }
.legal-hero .legal-meta { font-size: 14px; color: rgba(235, 250, 244, 0.7); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 88px; }
.notice {
  background: #FFF5E4; border: 1px solid #F0DCB6; color: #6B4A10;
  border-radius: 12px; padding: 14px 18px; font-size: 14px; line-height: 1.6;
  margin-bottom: 40px;
}
.legal-body h2 { font-size: 22px; letter-spacing: -0.015em; margin: 42px 0 12px; }
.legal-body h3 { font-size: 17px; margin: 28px 0 8px; }
.legal-body p { margin: 0 0 14px; font-size: 15.5px; color: var(--ink-soft); }
.legal-body ul, .legal-body ol { margin: 0 0 14px 22px; }
.legal-body li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-body blockquote {
  border-left: 3px solid var(--aurora); background: var(--surface-tint);
  padding: 12px 18px; border-radius: 0 10px 10px 0; margin: 0 0 14px;
  font-size: 15px; color: var(--ink-soft);
}
.legal-body .steps-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; margin: 18px 0 22px; box-shadow: var(--shadow);
}
.legal-body .steps-box ol { margin-bottom: 0; }
.legal-footer-nav {
  max-width: 760px; margin: 0 auto; padding: 0 24px 64px;
  display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px;
}
