/* ==========================================================================
   Payani marketing site — design tokens
   ========================================================================== */

:root {
  --ink: #1a1a2e;
  --ink-soft: #3d3d54;
  --muted: #64647a;
  --faint: #9797ac;
  --bg: #ffffff;
  --bg-soft: #f7f6fb;
  --card: #ffffff;
  --border: #e7e5f0;
  --border-soft: #f0eef7;

  --brand: #5b4fe0;
  --brand-dark: #4a3fc9;
  --brand-soft: #eeecfc;
  --brand-ink: #ffffff;

  --gold: #c9962e;
  --gold-soft: #fbf1dc;

  --trips: #534ab7;
  --calendar: #5856d6;
  --checklists: #189aad;
  --ai: #8e44ad;
  --docs: #d6409f;
  --notes: #e08a00;

  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 24px 64px rgba(26, 26, 46, 0.14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --wash: radial-gradient(
      circle at 15% 0%,
      rgba(245, 212, 90, 0.22),
      transparent 45%
    ),
    radial-gradient(circle at 85% 15%, rgba(42, 157, 143, 0.18), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(91, 79, 224, 0.12), transparent 55%);

  /* Store badges are meant to read as a fixed dark pill (like the real Apple/Google
     lockups) in both themes, so they're deliberately NOT redefined below. */
  --store-badge-bg: #14131f;
  --store-badge-fg: #ffffff;

  /* The privacy showcase panel is a fixed dark card with hardcoded white text in both
     themes (like the store badges above) - deliberately NOT redefined below, since
     var(--ink) would flip to a light color in dark mode and wash out that white text. */
  --dark-panel-bg: #1a1a2e;
}

/* Dark theme tokens apply when the OS prefers dark (and the toggle hasn't forced light),
   or unconditionally once the toggle has forced dark — see js/main.js. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #f2f1fa;
    --ink-soft: #d3d2e4;
    --muted: #a7a6bd;
    --faint: #75758c;
    --bg: #100f18;
    --bg-soft: #17162238;
    --bg-soft: #17162a;
    --card: #1b1a29;
    --border: #2c2b3d;
    --border-soft: #232231;

    --brand: #8f86f2;
    --brand-dark: #a79cf0;
    --brand-soft: #232049;
    --brand-ink: #14122b;

    --gold: #e0b45c;
    --gold-soft: #2c250f;

    --trips: #a79cf0;
    --calendar: #adabf5;
    --checklists: #5fd0e2;
    --ai: #d191e8;
    --docs: #f291cf;
    --notes: #f2b361;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

    --wash: radial-gradient(
        circle at 15% 0%,
        rgba(245, 212, 90, 0.1),
        transparent 45%
      ),
      radial-gradient(circle at 85% 15%, rgba(42, 157, 143, 0.12), transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(143, 134, 242, 0.14), transparent 55%);
  }
}

:root[data-theme="dark"] {
  --ink: #f2f1fa;
  --ink-soft: #d3d2e4;
  --muted: #a7a6bd;
  --faint: #75758c;
  --bg: #100f18;
  --bg-soft: #17162a;
  --card: #1b1a29;
  --border: #2c2b3d;
  --border-soft: #232231;

  --brand: #8f86f2;
  --brand-dark: #a79cf0;
  --brand-soft: #232049;
  --brand-ink: #14122b;

  --gold: #e0b45c;
  --gold-soft: #2c250f;

  --trips: #a79cf0;
  --calendar: #adabf5;
  --checklists: #5fd0e2;
  --ai: #d191e8;
  --docs: #f291cf;
  --notes: #f2b361;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

  --wash: radial-gradient(
      circle at 15% 0%,
      rgba(245, 212, 90, 0.1),
      transparent 45%
    ),
    radial-gradient(circle at 85% 15%, rgba(42, 157, 143, 0.12), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(143, 134, 242, 0.14), transparent 55%);
}

/* ==========================================================================
   Base
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow.gold {
  color: var(--gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91, 79, 224, 0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(91, 79, 224, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Store badges — deliberately custom-drawn, not the official Apple/Google
   artwork, since these are placeholders until the app is actually live on
   both stores and have real listing URLs to point to. */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--store-badge-bg);
  color: var(--store-badge-fg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  min-width: 168px;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-btn svg {
  flex: none;
}

.store-btn .store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn .store-copy small {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.store-btn .store-copy strong {
  font-size: 15.5px;
  font-weight: 700;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.coming-soon-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--ink);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun {
    display: block;
  }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon {
    display: none;
  }
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}

.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

body.nav-open .mobile-nav {
  display: flex;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 88px 0 60px;
  background-image: var(--wash);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  margin-top: 18px;
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold) 0%, var(--brand) 65%, var(--checklists) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.hero .store-row {
  margin-top: 32px;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--faint);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
}

.hero-stats div strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.hero-stats div span {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Phone mockup (CSS-illustrated, not a real screenshot)
   ========================================================================== */

.phone {
  width: 300px;
  border-radius: 46px;
  background: linear-gradient(160deg, #26243a, #0f0e18);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
}

.phone-screen {
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0f0e18;
  border-radius: 12px;
  z-index: 5;
}

.phone-content {
  padding: 30px 16px 18px;
  flex: 1;
  overflow: hidden;
}

.phone-app-title {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--trips), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phone-row-label {
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
}

.phone-trip-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.phone-trip-card {
  flex: 1;
  border-radius: 12px;
  padding: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
}

.phone-trip-card .swatch {
  height: 34px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.phone-trip-card .swatch.a {
  background: linear-gradient(135deg, var(--trips), var(--calendar));
}

.phone-trip-card .swatch.b {
  background: linear-gradient(135deg, var(--gold), var(--notes));
}

.phone-trip-card b {
  display: block;
  font-size: 10.5px;
}

.phone-trip-card span {
  font-size: 9px;
  color: var(--muted);
}

.phone-task {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
}

.phone-task .ring {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--checklists);
  flex: none;
}

.phone-task .ring.filled {
  background: var(--checklists);
  border-color: var(--checklists);
}

.phone-task .lines b {
  display: block;
  font-size: 11.5px;
}

.phone-task .lines span {
  font-size: 9.5px;
  color: var(--brand);
  font-weight: 600;
}

.phone-cal {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.phone-cal-band {
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 10px;
}

.phone-cal-grid {
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-cal-hour {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  color: var(--faint);
}

.phone-cal-hour .line {
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.phone-event {
  margin-top: -4px;
  margin-left: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--calendar);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.floaty {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.floaty-weather {
  top: 6%;
  right: -6%;
}

.floaty-ai {
  bottom: 8%;
  left: -8%;
}

.floaty .icon-badge {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

/* ==========================================================================
   Section headings
   ========================================================================== */

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head h2 {
  font-size: 36px;
  margin-top: 14px;
}

.section-head p {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
}

.section-pad {
  padding: 96px 0;
}

.section-pad.tight {
  padding: 72px 0;
}

/* ==========================================================================
   Feature grid
   ========================================================================== */

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17.5px;
  font-weight: 800;
}

.feature-card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ==========================================================================
   Showcase (feature + mini phone pairs)
   ========================================================================== */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase.reverse .showcase-copy {
  order: 2;
}

.showcase-copy h2 {
  font-size: 32px;
  margin-top: 14px;
}

.showcase-copy p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}

.check-list svg {
  flex: none;
  margin-top: 2px;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--brand);
  transition: gap 0.15s ease;
}

.showcase-link:hover {
  gap: 10px;
}

.showcase-panel {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
}

.mini-phone {
  width: 260px;
  border-radius: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.mini-phone .mp-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mp-checklist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}

.mp-checklist-row .ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--checklists);
  flex: none;
}

.mp-checklist-row .ring.done {
  background: var(--checklists);
}

.mp-checklist-row span {
  font-size: 12px;
  font-weight: 600;
}

.mp-checklist-row span.done {
  color: var(--faint);
  text-decoration: line-through;
}

.mp-doc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-soft);
  margin-top: 8px;
}

.mp-doc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

.mp-doc-card b {
  display: block;
  font-size: 11px;
}

.mp-doc-card span {
  font-size: 9.5px;
  color: var(--muted);
}

.mp-chat-bubble {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11.5px;
  line-height: 1.5;
  margin-top: 8px;
}

.mp-chat-bubble.user {
  background: var(--brand);
  color: #fff;
  margin-left: 24px;
}

.mp-chat-bubble.ai {
  background: var(--bg-soft);
  color: var(--ink-soft);
  margin-right: 24px;
  border: 1px solid var(--border-soft);
}

/* ==========================================================================
   Privacy band
   ========================================================================== */

.privacy-band {
  background: var(--dark-panel-bg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  margin: 0 24px;
  max-width: 1112px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.privacy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(143, 134, 242, 0.35), transparent 55%),
    radial-gradient(circle at 0% 110%, rgba(24, 154, 173, 0.3), transparent 55%);
  pointer-events: none;
}

.privacy-band .eyebrow {
  color: #c9c4ff;
}

.privacy-band h2 {
  font-size: 34px;
  margin-top: 14px;
  max-width: 20ch;
  color: #fff;
}

.privacy-band > p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  position: relative;
}

.privacy-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.privacy-point {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px;
}

.privacy-point svg {
  color: #a79cf0;
}

.privacy-point h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-top: 14px;
}

.privacy-point p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.privacy-band .btn-ghost {
  margin-top: 32px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  position: relative;
}

.privacy-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Support / donations
   ========================================================================== */

.support-band {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 32%, transparent);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
}

.support-band .eyebrow {
  justify-content: center;
  width: 100%;
}

.support-band h2 {
  font-size: 30px;
  margin-top: 14px;
}

.support-band > p {
  margin: 16px auto 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #0070ba;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(0, 112, 186, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.paypal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 112, 186, 0.36);
  opacity: 0.94;
}

.support-fine-print {
  margin-top: 18px;
  font-size: 13px;
  color: var(--faint);
}

.support-fine-print a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .support-band {
    padding: 40px 28px;
  }
}

/* ==========================================================================
   Back to top
   ========================================================================== */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.15s ease;
  z-index: 40;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-band {
  text-align: center;
  padding: 110px 0 120px;
}

.cta-band .eyebrow {
  justify-content: center;
  width: 100%;
}

.cta-band h2 {
  font-size: 40px;
  margin-top: 14px;
}

.cta-band p {
  margin: 16px auto 0;
  max-width: 48ch;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band .store-row {
  justify-content: center;
  margin-top: 36px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--faint);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase,
  .showcase.reverse .showcase-copy {
    order: initial;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-panel {
    order: -1;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .privacy-band {
    padding: 40px 28px;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p.lead {
    font-size: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .showcase-copy h2 {
    font-size: 26px;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-cols {
    gap: 40px;
  }

  .phone {
    width: 260px;
  }

  .floaty {
    display: none;
  }
}
