/* GeoCam promo site: palette from brand art (deep navy, neon cyan, map teal) */
:root {
  --bg-deep: #050a14;
  --bg-elevated: #0b1622;
  --bg-card: rgba(11, 22, 34, 0.78);
  --bg-teal: #1b3a3d;
  --border: rgba(0, 217, 255, 0.14);
  --border-subtle: rgba(217, 232, 245, 0.08);
  --text: #f0f7fc;
  --text-soft: #d9e8f5;
  --text-muted: #8ba8bc;
  --accent: #00d9ff;
  --accent-bright: #00e5ff;
  --accent-deep: #007bff;
  --accent-dim: rgba(0, 217, 255, 0.14);
  --accent-hover: #5cefff;
  --cta-on-accent: #040d14;
  --cta-primary-fill: linear-gradient(
    155deg,
    #5cefff 0%,
    #00daf3 40%,
    #00b8dc 100%
  );
  --cta-primary-shadow:
    0 10px 32px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(0, 229, 255, 0.22);
  --cta-ghost-fill: rgba(6, 14, 24, 0.58);
  --cta-ghost-border: rgba(0, 229, 255, 0.26);
  --cta-ghost-text: rgba(230, 242, 250, 0.96);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-brand: "Outfit", var(--font);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .eyebrow {
    text-shadow: 0 2px 16px rgba(5, 10, 20, 0.85);
  }

  .hero-title-accent {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image: radial-gradient(ellipse 100% 80% at 50% -25%, rgba(0, 50, 80, 0.2), transparent 55%);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--accent-bright);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(0, 217, 255, 0.06);
  background: rgba(5, 10, 20, 0.62);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text-soft);
  text-shadow:
    0 0 42px rgba(0, 229, 255, 0.22),
    0 1px 0 rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.brand:hover span {
  color: #fff;
  text-shadow:
    0 0 52px rgba(0, 229, 255, 0.32),
    0 1px 0 rgba(0, 0, 0, 0.45);
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.nav-app-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--cta-ghost-border);
  background: rgba(0, 217, 255, 0.08);
  color: var(--cta-ghost-text);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links a.nav-app-store:hover {
  background: rgba(0, 217, 255, 0.16);
  border-color: rgba(0, 229, 255, 0.45);
  color: #fff;
}

.nav-app-store-icon {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  transform: translateY(0px);
  opacity: 0.92;
}

main {
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: min(92vh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.4) 0%, rgba(5, 10, 20, 0.52) 42%, rgba(5, 10, 20, 0.76) 100%),
    url("../assets/hero-bg.png") center center / cover no-repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-top: clamp(56px, 11vh, 104px);
  padding-bottom: clamp(64px, 10vh, 96px);
  padding-left: max(clamp(20px, 5vw, 40px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(20px, 5vw, 40px), env(safe-area-inset-right, 0px));
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 22ch;
  color: #fff;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.5);
}

.hero-title-accent {
  color: var(--accent-bright);
  text-shadow:
    0 0 42px rgba(0, 229, 255, 0.28),
    0 2px 36px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  margin: 0 auto 36px;
  max-width: 40rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(240, 247, 252, 0.94);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: filter 0.2s, background 0.2s, color 0.2s;
}

.hero-cta-icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.92;
}

.hero-cta--primary .hero-cta-icon {
  transform: translateY(-2px);
}

.hero-cta--secondary .hero-cta-icon {
  transform: translateY(-1.25px);
}

.hero-cta--primary {
  background: var(--cta-primary-fill);
  color: var(--cta-on-accent);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--cta-primary-shadow);
}

.hero-cta--primary:hover {
  filter: brightness(1.05);
  color: var(--cta-on-accent);
}

.hero-cta--secondary {
  background: var(--cta-ghost-fill);
  color: var(--cta-ghost-text);
  border: 1px solid var(--cta-ghost-border);
  backdrop-filter: blur(10px);
}

.hero-cta--secondary:hover {
  background: rgba(12, 22, 34, 0.72);
  border-color: rgba(0, 229, 255, 0.4);
  color: #fff;
}

.hero-cta--disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
}

.hero-cta--disabled.hero-cta--secondary:hover {
  background: var(--cta-ghost-fill);
  color: var(--cta-ghost-text);
  border-color: var(--cta-ghost-border);
}

.hero-hud-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-hud-panel {
  position: absolute;
  padding: 10px 12px;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;
  font-size: 0.68rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(217, 232, 245, 0.88);
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-hud-panel--tl {
  top: 50%;
  left: clamp(12px, 4vw, 32px);
  transform: translateY(-50%);
}

.hero-hud-panel--mr {
  top: 42%;
  right: clamp(12px, 4vw, 32px);
  max-width: 11.5rem;
}

.hero-hud-k {
  display: inline-block;
  min-width: 2.6rem;
  margin-right: 6px;
  color: rgba(0, 229, 255, 0.85);
  font-weight: 600;
}

.hero-hud-row--mono {
  margin-top: 4px;
  font-size: 0.62rem;
  color: rgba(217, 232, 245, 0.65);
}

.hero-hud-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(0, 229, 255, 0.45);
  border-style: solid;
  border-width: 0;
}

.hero-hud-corner--bl {
  bottom: clamp(8px, 2vw, 20px);
  left: clamp(12px, 4vw, 32px);
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-bottom-left-radius: 2px;
}

.hero-hud-corner--br {
  bottom: clamp(8px, 2vw, 20px);
  right: clamp(12px, 4vw, 32px);
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-bottom-right-radius: 2px;
}

@media (max-width: 899px) {
  .hero {
    min-height: min(88vh, 820px);
  }

  .hero-hud-panel--mr,
  .hero-hud-panel--tl {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-hud-layer {
    display: none;
  }

  .hero-title {
    max-width: none;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 36ch;
}

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

.store-row--center {
  justify-content: center;
}

.store-badge {
  gap: 12px;
  padding: 10px 20px 10px 16px;
  text-align: left;
}

.store-badge-apple {
  flex-shrink: 0;
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 1px;
}

.store-badge-kicker {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.store-badge-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.store-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 217, 255, 0.28);
  background: rgba(11, 22, 34, 0.5);
  color: var(--text-muted);
  cursor: default;
  user-select: none;
}

.store-soon-icon {
  flex-shrink: 0;
  opacity: 0.65;
}

.store-soon-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 2px;
}

.store-soon-line {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  opacity: 0.85;
}

.store-soon-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.store-btn:hover {
  border-color: rgba(0, 229, 255, 0.45);
  background: var(--accent-dim);
  color: var(--text);
}

.store-btn.primary {
  background: var(--cta-primary-fill);
  color: var(--cta-on-accent);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--cta-primary-shadow);
}

.store-btn.primary:hover {
  color: var(--cta-on-accent);
  filter: brightness(1.05);
}

.store-btn.primary .store-badge-kicker {
  color: rgba(4, 13, 20, 0.65);
}

.store-btn svg {
  flex-shrink: 0;
}

/* Precision workflow (Capture → Process → Share) */
.workflow-section {
  padding-top: 56px;
  padding-bottom: 64px;
}

.workflow-heading {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 52px;
  color: var(--text);
}

.workflow-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.workflow-rail {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.workflow-dashed-line {
  display: none;
  position: absolute;
  left: 14%;
  right: 14%;
  top: 36px;
  height: 0;
  border: none;
  border-top: 1px dashed rgba(0, 217, 255, 0.35);
  pointer-events: none;
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .workflow-dashed-line {
    display: block;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
  }
}

.workflow-step {
  text-align: center;
}

.workflow-icon-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  background: rgba(5, 10, 20, 0.65);
  box-shadow:
    0 0 28px rgba(0, 217, 255, 0.22),
    inset 0 0 0 1px rgba(0, 229, 255, 0.1);
}

.workflow-icon {
  display: block;
}

.workflow-step-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}

.workflow-step-text {
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 30ch;
}

@media (prefers-reduced-motion: reduce) {
  .workflow-heading::after {
    box-shadow: none;
  }

  .workflow-icon-ring {
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.1);
  }

  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text-soft);
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 40px;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 28px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(155deg, rgba(0, 229, 255, 0.07) 0%, transparent 38%),
    linear-gradient(165deg, rgba(11, 22, 34, 0.88) 0%, rgba(12, 26, 38, 0.94) 52%, rgba(22, 48, 56, 0.28) 100%);
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 22px 44px -28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 217, 255, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 229, 255, 0.42) 50%,
    transparent 100%
  );
  opacity: 0.75;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 32px 56px -24px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(0, 217, 255, 0.14),
    0 0 48px -12px rgba(0, 229, 255, 0.14);
}

/* Watermark icon: top-right, masked fade + clipped by card (background-like) */
.feature-card-icon {
  position: absolute;
  z-index: 0;
  top: -32px;
  right: -44px;
  width: 152px;
  height: 152px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: rgba(120, 245, 255, 0.98);
  opacity: 0.5;
  filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.15));
  -webkit-mask-image: radial-gradient(
    ellipse 118% 118% at 100% 0%,
    #000 0%,
    rgba(0, 0, 0, 0.52) 30%,
    rgba(0, 0, 0, 0.18) 54%,
    transparent 76%
  );
  mask-image: radial-gradient(
    ellipse 118% 118% at 100% 0%,
    #000 0%,
    rgba(0, 0, 0, 0.52) 30%,
    rgba(0, 0, 0, 0.18) 54%,
    transparent 76%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.feature-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding-right: 5rem;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f2f8fc;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 0.5rem;
  max-width: 48ch;
  font-size: 0.96rem;
  color: rgba(139, 168, 188, 0.98);
  line-height: 1.64;
}

.feature-card p a {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  text-underline-offset: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-card p a:hover {
  color: var(--accent-hover);
  border-bottom-color: rgba(92, 239, 255, 0.65);
}

.shots-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(11, 22, 34, 0.65) 0%, rgba(27, 58, 61, 0.22) 50%, rgba(5, 10, 20, 0.5) 100%);
  box-shadow: inset 0 1px 0 rgba(0, 217, 255, 0.05);
}

.shots-rail-wrap {
  margin: 0 -24px;
  padding: 0 24px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.4) transparent;
  -webkit-overflow-scrolling: touch;
}

.shots-rail {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
}

.shot-card {
  flex: 0 0 auto;
  width: min(260px, 78vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 217, 255, 0.12);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 123, 255, 0.06);
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-top: 1px solid var(--border);
}

.cta-band {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.cta-final-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 5vw, 48px) clamp(44px, 6vw, 56px);
  border-radius: 28px;
  background: linear-gradient(165deg, #2c323c 0%, #1e242e 45%, #171c24 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-final-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
}

.cta-final-lead {
  margin: 0 auto 32px;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(217, 232, 245, 0.72);
}

.cta-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 158px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--cta-on-accent);
  background: var(--cta-primary-fill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--cta-primary-shadow);
}

a.cta-final-btn:hover {
  filter: brightness(1.05);
  color: var(--cta-on-accent);
}

a.cta-final-btn:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.cta-final-btn-icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.92;
}

a.cta-final-btn .cta-final-btn-icon {
  transform: translateY(-2px);
}

.cta-final-btn--disabled {
  cursor: default;
  pointer-events: none;
  color: var(--cta-ghost-text);
  background: var(--cta-ghost-fill);
  border: 1px solid var(--cta-ghost-border);
  box-shadow: none;
  opacity: 0.88;
  backdrop-filter: blur(8px);
}

.cta-final-btn--disabled .cta-final-btn-icon {
  transform: translateY(-1.5px);
  opacity: 0.75;
}

.cta-final-footnote {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: rgba(217, 232, 245, 0.45);
}

.partner-promo {
  padding-top: 24px;
  padding-bottom: 56px;
}

.partner-promo-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 28px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 217, 255, 0.2);
  background: linear-gradient(145deg, rgba(0, 123, 255, 0.12), rgba(27, 58, 61, 0.35), rgba(11, 22, 34, 0.75));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(0, 217, 255, 0.06);
  text-align: center;
}

.partner-promo-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.88);
  margin-bottom: 10px;
}

.partner-promo-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.partner-promo-copy {
  margin: 0 auto 20px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 48ch;
}

.partner-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  color: var(--cta-ghost-text);
  background: var(--cta-ghost-fill);
  border: 1px solid var(--cta-ghost-border);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.partner-promo-cta:hover {
  background: rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.48);
  color: #fff;
}

.partner-promo-cta-icon {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  transform: translateY(1px);
  opacity: 0.9;
}

.partner-promo-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 24px 48px;
  margin-top: 0;
  box-shadow: 0 -1px 0 rgba(0, 217, 255, 0.05);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-app-store,
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links .footer-app-store {
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--cta-ghost-border);
  background: rgba(0, 217, 255, 0.07);
  color: var(--cta-ghost-text);
  font-weight: 600;
  line-height: 1;
}

.footer-links .footer-app-store:hover {
  background: rgba(0, 217, 255, 0.14);
  border-color: rgba(0, 229, 255, 0.42);
  color: #fff;
}

.footer-app-store-icon {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
  transform: translateY(0px);
  opacity: 0.85;
}

.footer-mail {
  line-height: 1;
}

.footer-mail-icon {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
  transform: translateY(0px);
  opacity: 0.85;
}

.footer-android-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(139, 168, 188, 0.95);
  background: var(--cta-ghost-fill);
  border: 1px solid rgba(0, 229, 255, 0.18);
  cursor: default;
  user-select: none;
}

.footer-android-soon-icon {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  transform: translateY(0px);
  opacity: 0.72;
}

/* Legal / privacy */
.legal-page .section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 36px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  max-width: 70ch;
}

.legal-page ul {
  padding-left: 1.2em;
}

.legal-page .callout {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  font-size: 0.95rem;
  color: var(--text);
}

.legal-page .callout p {
  margin: 0;
  color: inherit;
}

.legal-page .callout ul {
  margin: 8px 0 0;
  color: inherit;
}

.legal-page .callout li {
  color: inherit;
}
