/* ===== Design tokens ===== */
:root {
  color-scheme: light;
  --bg: #fbf8f5;
  --surface: #ffffff;
  --surface-alt: #fdf1ec;
  --ink: #1c2e36;
  --ink-soft: #55686f;
  --muted: #8a9aa0;
  --line: #efe6e1;

  --teal: #06a1bd;
  --teal-deep: #05839a;
  --coral: #ff6b54;
  --coral-deep: #e8543c;
  --gold: #ffbf34;
  --blue: #2e9bd0;
  --navy: #15323b;

  --grad: linear-gradient(120deg, #06a1bd 0%, #ff6b54 100%);
  --grad-soft: linear-gradient(180deg, #e7f6f7 0%, #fbf8f5 100%);
  --header-bg: rgba(251, 248, 245, 0.84);
  --footer-ink: #c7d8e0;
  --footer-muted: #8fa9b6;

  --shadow-sm: 0 2px 8px rgba(18, 58, 77, 0.06);
  --shadow-md: 0 14px 40px rgba(18, 58, 77, 0.10);
  --shadow-lg: 0 30px 70px rgba(18, 58, 77, 0.16);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1140px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1a1e;
  --surface: #18262c;
  --surface-alt: #152228;
  --ink: #e8eef1;
  --ink-soft: #a8b8bf;
  --muted: #7d9098;
  --line: #2a3c44;
  --teal: #1ab8d4;
  --teal-deep: #4ecde0;
  --coral: #ff7d69;
  --coral-deep: #ff9a8a;
  --navy: #0a1216;
  --grad: linear-gradient(120deg, #1ab8d4 0%, #ff7d69 100%);
  --grad-soft: linear-gradient(180deg, #132428 0%, #0f1a1e 100%);
  --header-bg: rgba(15, 26, 30, 0.88);
  --footer-ink: #a8b8bf;
  --footer-muted: #6d8088;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(6, 161, 189, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-text {
  color: var(--teal-deep);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.btn:focus-visible,
.billing-toggle__btn:focus-visible {
  outline-offset: 3px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 26px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand__mark { width: 48px; height: 48px; }
.brand__name { font-size: 1.3rem; letter-spacing: -0.02em; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a { font-weight: 600; color: var(--ink-soft); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: #fff; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  flex: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.theme-toggle:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 90px; }
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  z-index: -2;
}
.hero__bg::before, .hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
}
.hero__bg::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(6,161,189,0.35), transparent 60%);
  top: -160px; right: -120px;
}
.hero__bg::after {
  display: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.hero__sub { margin: 22px 0 30px; font-size: 1.12rem; color: var(--ink-soft); max-width: 30em; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.hero__trust strong { color: var(--ink); display: block; font-size: 1.25rem; }
.hero__actions .store-buttons { margin: 0; }

.hero__art {
  display: flex;
  justify-content: center;
  position: relative;
}
.device-stack {
  position: relative;
  width: min(380px, 88vw);
  height: min(600px, 125vw);
}
.device {
  /* Apple iPhone 17 Black frame (1350×2760): screen +72+69 × 1206×2622 */
  --frame-inset-top: 2.5%;
  --frame-inset-right: 5.333%;
  --frame-inset-bottom: 2.5%;
  --frame-inset-left: 5.333%;
  --device-screen-radius: 12.2% / 5.6%;
  position: relative;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 22px 40px rgba(18, 58, 77, 0.28));
}
.device::before,
.device::after {
  content: none;
  display: none;
}
.device__frame-picture {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
.device__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}
.device__screen,
.device > .theme-shot-pair {
  position: absolute;
  z-index: 1;
  top: var(--frame-inset-top);
  right: var(--frame-inset-right);
  bottom: var(--frame-inset-bottom);
  left: var(--frame-inset-left);
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--device-screen-radius);
  background: #000;
  overflow: hidden;
  box-shadow: none;
}
.theme-shot-pair picture {
  display: contents;
}
.theme-shot-pair .theme-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: inherit;
}
html[data-theme="dark"] .theme-shot-pair .theme-shot--light {
  display: none;
}
html:not([data-theme="dark"]) .theme-shot-pair .theme-shot--dark {
  display: none;
}
.device--front {
  position: absolute;
  inset: 0 auto auto 6%;
  width: 78%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.device--back {
  position: absolute;
  inset: 6% 0 auto auto;
  width: 72%;
  z-index: 1;
  opacity: 0.96;
  transform: rotate(6deg);
  filter: drop-shadow(0 18px 36px rgba(18, 58, 77, 0.22)) saturate(0.96);
}
.device--inline {
  width: min(300px, 74vw);
  margin: 0 auto;
  animation: none;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Store buttons ===== */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-buttons--center { justify-content: center; }
.store-btn {
  display: inline-block;
  line-height: 0;
}
.store-btn[hidden],
.btn--store-soon[hidden] {
  display: none !important;
}
.store-btn img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.18s ease;
}
.store-btn:hover img { transform: translateY(-2px); }
.btn--store-soon {
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* ===== Product panel toggle (How it works / Export formats) ===== */
.panel-toggle {
  display: flex;
  width: max-content;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.panel-toggle__btn {
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 10px 22px;
  min-height: 44px;
  border-radius: 999px;
  transition: 0.18s;
  white-space: nowrap;
}
.panel-toggle__btn.is-active {
  background: var(--teal);
  color: #fff;
}
.panel-toggle__btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.product-panel[hidden] {
  display: none;
}
.product-panel .section__head {
  margin-bottom: 40px;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.orient-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.orient-layout--dual {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  overflow: visible;
}
.product-panel {
  overflow: visible;
}
.shot-deck {
  position: relative;
  width: min(300px, 78vw);
  height: min(580px, 155vw);
  margin: 0 auto;
  touch-action: manipulation;
}
.shot-deck__card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(260px, 68vw);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transform-origin: 50% 80%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease, z-index 0s;
  -webkit-tap-highlight-color: transparent;
}
.shot-deck__card .device--inline {
  width: 100%;
  margin: 0;
  pointer-events: none;
}
.shot-deck__card:nth-child(1) {
  z-index: 2;
  transform: translate(-58%, 0) rotate(-7deg);
  filter: brightness(0.92);
}
.shot-deck__card:nth-child(2) {
  z-index: 1;
  transform: translate(-42%, 18px) rotate(8deg);
  filter: brightness(0.9);
}
.shot-deck__card.is-front {
  z-index: 5;
  transform: translate(-50%, 0) rotate(0deg) scale(1.04);
  filter: brightness(1);
}
.shot-deck__card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 6px;
  border-radius: 20px;
}
.shot-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 48px;
  overflow: visible;
  --shot-switcher-tabs-h: 48px;
}
.shot-switcher__tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: var(--shot-switcher-tabs-h);
  padding: 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 12px;
  overscroll-behavior-x: contain;
}
.shot-switcher__tabs-spacer {
  height: var(--shot-switcher-tabs-h);
  width: 100%;
  flex-shrink: 0;
  visibility: hidden;
  pointer-events: none;
}
.shot-switcher__tab {
  margin: 0;
  padding: 10px 16px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.18s;
  flex: 0 0 auto;
}
.shot-switcher__tab:hover {
  color: var(--ink);
}
.shot-switcher__tab.is-active {
  background: var(--teal);
  color: #fff;
}
.shot-switcher__tab:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.shot-switcher__stage {
  position: relative;
  width: min(300px, 74vw);
  overflow: visible;
  padding-bottom: 12px;
}
.shot-switcher__panel {
  width: 100%;
  overflow: visible;
}
.shot-switcher__panel[hidden] {
  display: none;
}
.shot-switcher__panel .device--inline {
  width: 100%;
  margin: 0;
}
.shot-deck__label {
  display: inline-block;
  margin-top: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.shot-deck__card.is-front .shot-deck__label {
  opacity: 1;
  transform: none;
  color: var(--ink);
}
.orient-layout__copy .section__head {
  margin-bottom: 24px;
}
.orient-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.orient-points li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.orient-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}
.orient-points strong {
  color: var(--ink);
}

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--surface-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section__head p { color: var(--ink-soft); font-size: 1.08rem; }
.section__head--single-line {
  max-width: none;
}
.section__head--single-line h2 {
  white-space: nowrap;
  font-size: clamp(1.35rem, 4.5vw, 2.8rem);
}
.section__fineprint {
  max-width: 46rem;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}
.section__fineprint a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6,161,189,0.4);
}
.feature-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(6, 161, 189, 0.12);
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; display: block; }
.feature-grid--three { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin: 0 auto; }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.98rem; }
.feature-card p em { color: var(--teal-deep); font-style: normal; font-weight: 700; }
.syncs {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.syncs span {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===== Pricing ===== */
.billing-toggle {
  display: flex;
  width: max-content;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  margin: 0 auto 44px;
  box-shadow: var(--shadow-sm);
}
.billing-toggle__btn {
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 999px;
  transition: 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing-toggle__btn.is-active { background: var(--teal); color: #fff; }
.save {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.25);
  padding: 2px 8px;
  border-radius: 999px;
}
.billing-toggle__btn:not(.is-active) .save { background: rgba(6,161,189,0.15); color: var(--teal-deep); }

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
.pricing--three { grid-template-columns: repeat(3, 1fr); max-width: 1040px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card--muted { opacity: 0.92; }
.price-card--featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 821px) {
  .pricing--three .price-card--featured { transform: translateY(-12px); }
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.price .amount { font-size: 2.6rem; font-weight: 800; }
.price .per { color: var(--muted); font-weight: 600; }
.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.price-list { list-style: none; padding: 0; display: grid; gap: 12px; margin-bottom: 26px; }
.price-list li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.price-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: rgba(6,161,189,0.15);
  color: var(--teal-deep);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}
.price-list--muted li::before { content: "–"; background: var(--surface-alt); color: var(--muted); }
.price-list li strong { color: var(--ink); font-weight: 700; }
.price-list__note { font-size: 0.86rem; color: var(--muted); }
.price-list__note::before { content: "ⓘ" !important; background: transparent !important; color: var(--muted) !important; font-weight: 700; }

/* ===== Reviews ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: 1.08rem; color: var(--ink); margin-bottom: 22px; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal);
  color: #fff; font-weight: 700;
  flex: none;
}
.review figcaption strong { display: block; }
.review figcaption small { color: var(--muted); }
.reviews__note { text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 14px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-deep); transition: 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 20px; }

/* ===== CTA ===== */
.cta { padding: 90px 0; }
.cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(6, 161, 189, 0.30), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 72px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  transform: translateZ(0);
}
.cta__glow::before, .cta__glow::after {
  content: none;
  display: none;
}
.cta__inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta__mark {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 32px; }
.cta__trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.cta__trust li { display: inline-flex; align-items: center; gap: 8px; }
.cta__trust li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(6, 161, 189, 0.22);
}

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: var(--footer-ink); padding: 64px 0 32px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer .brand__name { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 28em; font-size: 0.95rem; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer__col a { display: block; padding: 6px 0; color: var(--footer-ink); transition: color 0.15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: var(--footer-muted);
}
.footer__note {
  margin: 10px 0 0;
  max-width: 52rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--footer-muted);
}
.footer__trademarks {
  margin: 10px 0 0;
  max-width: 52rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--footer-muted);
  opacity: 0.9;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Journey ===== */
.journey-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}
.journey-steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--line);
}
.journey-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  position: relative;
}
.journey-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal-deep);
  background: rgba(6, 161, 189, 0.12);
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.journey-step__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.journey-step__body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ===== Export format cards ===== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.format-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.format-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.format-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(6, 161, 189, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.format-card h3 { font-size: 1.22rem; }
.format-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.format-card__tier {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== Reassure panel ===== */
.reassure {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.reassure__copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}
.reassure__copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 36em;
}
.reassure__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.reassure__list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}
.reassure__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(6, 161, 189, 0.15);
}
.reassure__list em {
  font-style: normal;
  color: var(--teal-deep);
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--three { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .format-grid { grid-template-columns: 1fr; max-width: 460px; }
  .reviews { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .pricing--three { grid-template-columns: 1fr; max-width: 460px; }
  .pricing--three .price-card--featured { transform: none; }
}
@media (max-width: 820px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero__copy { order: 1; }
  .hero__art { order: 2; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero__sub { margin: 18px auto 0; }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
  }
  /* CTA above the reassurance bullets so it lands in the first viewport */
  .hero__actions .store-buttons { order: -1; }
  .store-buttons, .hero__trust, .hero__actions { justify-content: center; }
  .hero__trust { gap: 18px; }
  .orient-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .orient-layout--dual {
    grid-template-columns: 1fr;
  }
  .shot-deck {
    height: min(540px, 150vw);
  }
  .shot-deck__card {
    width: min(240px, 64vw);
  }
  .shot-switcher {
    max-width: 100%;
  }
  .shot-switcher__stage {
    width: min(280px, 72vw);
  }
  .shot-switcher__tabs {
    max-width: min(100%, calc(100vw - 48px));
    justify-content: flex-start;
    padding-inline: 10px;
  }
  .shot-switcher__tab {
    font-size: 0.8rem;
    padding: 10px 12px;
    min-height: 44px;
  }
  .device--inline {
    width: min(280px, 72vw);
  }
  .section__head--left { text-align: center; }
  .orient-points li { text-align: left; }

  .reassure {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .panel-toggle {
    width: 100%;
    max-width: 100%;
  }
  .panel-toggle__btn {
    flex: 1 1 auto;
    padding: 12px 14px;
    min-height: 44px;
    font-size: 0.9rem;
    text-align: center;
  }

  .nav__links {
    position: fixed;
    inset: calc(72px + env(safe-area-inset-top, 0px)) 0 auto 0;
    flex-direction: column;
    background: var(--surface);
    padding: 20px max(24px, env(safe-area-inset-right, 0px)) 28px max(24px, env(safe-area-inset-left, 0px));
    gap: 8px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    align-items: stretch;
    margin-left: 0;
  }
  .nav__links a { padding: 12px 4px; min-height: 44px; display: flex; align-items: center; }
  .nav__links a.btn { justify-content: center; margin-top: 8px; }
  .nav__links.is-open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .device-stack { height: min(480px, 130vw); width: min(300px, 78vw); }
  .device--front { animation: none; }

  .legal-page table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid--three { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero {
    padding: 32px 0 56px;
  }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero__sub { font-size: 1.02rem; }
  .hero__trust strong { font-size: 1.05rem; }
  .device-stack {
    height: min(400px, 115vw);
    width: min(260px, 74vw);
  }
  .shot-switcher__stage,
  .device--inline {
    width: min(250px, 70vw);
  }
  .shot-switcher {
    padding-bottom: 36px;
  }
  .shot-switcher__tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
  }
  .shot-switcher__tab {
    font-size: 0.78rem;
    padding: 10px 12px;
  }
  .section__head--single-line h2 {
    white-space: normal;
    font-size: clamp(1.25rem, 6.2vw, 2rem);
  }
  .panel-toggle {
    width: 100%;
  }
  .panel-toggle__btn {
    flex: 1;
    padding: 12px 10px;
    min-height: 44px;
    font-size: 0.85rem;
    text-align: center;
  }
  .section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .cta__panel { padding: 52px 22px; }
  .reassure { padding: 32px 22px; }
  .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
}
/* Short phones (e.g. 320x568): keep the hero CTA within the first viewport */
@media (max-width: 560px) and (max-height: 640px) {
  .hero { padding-top: 22px; }
  .hero h1 { font-size: clamp(1.5rem, 7.4vw, 1.95rem); }
  .hero__sub { font-size: 0.95rem; margin-top: 14px; }
  .hero__actions { margin-top: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .device--front { animation: none; }
  .shot-deck__card { transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Legal pages (privacy, terms) ===== */
.legal-page {
  padding: 48px 0 80px;
}
.legal-page__header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.legal-page__header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.legal-page__meta {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}
.legal-page__nav a {
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9375rem;
}
.legal-page__nav a:hover { text-decoration: underline; }
.legal-page h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}
.legal-page p,
.legal-page ul {
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.legal-page ul { padding-left: 1.25rem; }
.legal-page li { margin-bottom: 0.35rem; }
.legal-page a { color: var(--teal-deep); }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}
.legal-page a,
.contact-email,
.footer__bottom a,
.site-footer a[href^="mailto:"] {
  overflow-wrap: anywhere;
}
.legal-page th,
.legal-page td {
  border: 1px solid var(--line);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}
.legal-page th {
  font-weight: 700;
  color: var(--ink);
}
.legal-page code {
  font-size: 0.875em;
  background: var(--surface-alt);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-top: 1.5rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.contact-card p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.contact-card a.contact-email {
  display: inline-flex;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.contact-card a.contact-email:hover { text-decoration: underline; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}
.contact-form__hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.contact-form .btn { justify-self: start; margin-top: 4px; }

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