:root {
  color-scheme: light;
  --canvas: #f4f4f1;
  --surface: #ffffff;
  --surface-soft: #f8f8f6;
  --map-paper: #f6f0e7;
  --map-water: #dcecf8;
  --map-park: #e4e9d9;
  --blue: #0a5ce0;
  --blue-dark: #0649b8;
  --indigo: #3830a3;
  --mint: #0a9c6e;
  --orange: #d76a1f;
  --ink: #111318;
  --muted: #68686f;
  --hairline: rgba(17, 24, 39, 0.1);
  --shadow-card: 0 8px 24px rgba(24, 32, 56, 0.07);
  --shadow-object: 0 7px 16px rgba(24, 32, 56, 0.19);
  --radius-card: 18px;
  --radius-tool: 24px;
  --content: 1120px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  background: rgba(244, 244, 241, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 36px), 1240px);
  min-height: 70px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(24, 32, 56, 0.08);
}

.brand-mark img { width: 27px; height: 27px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #404047;
  font-size: 0.86rem;
  font-weight: 580;
}

.desktop-nav a { text-decoration: none; }
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a[aria-current="page"] { color: var(--blue); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 140ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: scale(0.985); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(10, 92, 224, 0.2); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { border-color: var(--hairline); background: var(--surface); color: var(--ink); }
.button-small { min-height: 42px; padding: 0 15px; border-radius: 13px; font-size: 0.9rem; }

.app-store-badge-link {
  display: inline-flex;
  padding: 13px;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge-image {
  display: block;
  width: auto;
  height: 50px;
}

.hero {
  display: grid;
  width: min(calc(100% - 36px), var(--content));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0 38px;
  align-items: center;
  grid-template-areas: "copy tool" "proof proof";
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  column-gap: clamp(42px, 7vw, 86px);
  row-gap: 30px;
}

.hero-copy-panel { grid-area: copy; }
.hero .tool-card { grid-area: tool; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.85rem, 5.15vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: #4e4e56;
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.58;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.availability-note {
  display: flex;
  margin: 18px 0 0;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 620;
}

.availability-note > span {
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 2px rgba(10,156,110,.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  margin: 24px 0 0;
  padding: 0;
  color: #515159;
  font-size: 0.85rem;
  font-weight: 620;
  list-style: none;
}

.trust-row li { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { color: var(--mint); flex: 0 0 auto; }

.hero-proof {
  grid-area: proof;
  display: grid;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 6px 22px rgba(24,32,56,.05);
  grid-template-columns: repeat(3,minmax(0,1fr));
  list-style: none;
}

.hero-proof li {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #505159;
  font-size: .82rem;
  font-weight: 680;
}

.hero-proof li + li { border-left: 1px solid var(--hairline); }
.hero-proof svg { color: var(--mint); flex: 0 0 auto; }

.tool-card {
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-tool);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(24, 32, 56, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.tool-head {
  display: flex;
  padding: 18px 20px 14px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tool-kicker { margin: 0 0 3px; color: var(--muted); font-size: 0.75rem; font-weight: 760; letter-spacing: 0.06em; text-transform: uppercase; }
.tool-title { margin: 0; font-size: 1rem; line-height: 1.3; }
.example-badge { padding: 5px 9px; border-radius: 999px; background: #f0f1f4; color: #555762; font-size: 0.72rem; font-weight: 680; white-space: nowrap; }

.evidence-tabs {
  display: grid;
  margin: 0 20px 16px;
  padding: 4px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 13px;
  background: #f0f0ee;
  grid-template-columns: repeat(2, 1fr);
}

.evidence-tab {
  min-height: 42px;
  padding: 6px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #5c5c63;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.evidence-tab[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(24, 32, 56, 0.09);
}

.map-stage {
  position: relative;
  min-height: 390px;
  margin: 0 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 50, 35, 0.09);
  border-radius: 18px;
  background: var(--map-paper);
}

.map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-grid-line { fill: none; stroke: #fff; stroke-width: 16; stroke-linecap: round; stroke-linejoin: round; opacity: 0.92; }
.map-road-edge { fill: none; stroke: rgba(121, 108, 83, 0.11); stroke-width: 19; stroke-linecap: round; stroke-linejoin: round; }
.route-line { fill: none; stroke: var(--mint); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 2px 2px rgba(10,156,110,.18)); transition: d 360ms ease; }
.route-dot { fill: #fff; stroke: var(--mint); stroke-width: 4; }
.route-dot.is-secondary { opacity: 0; transition: opacity 180ms ease; }
.map-stage[data-source="photos"] .route-line { stroke: var(--indigo); stroke-dasharray: 3 12; }
.map-stage[data-source="photos"] .route-dot.is-secondary { opacity: 1; }

.photo-chip {
  position: absolute;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 18px 18px 18px 5px;
  background: #fff;
  box-shadow: var(--shadow-object);
  color: #fff;
  transform: rotate(-3deg);
}

.photo-chip img {
  width: 100%;
  height: 100%;
  border-radius: 14px 14px 14px 3px;
  object-fit: cover;
}
.photo-chip.one img { object-position: 15% 42%; }
.photo-chip.two img { object-position: 84% 64%; }
.photo-chip.one { top: 24%; left: 11%; }
.photo-chip.two { right: 10%; bottom: 25%; transform: rotate(4deg); }

.photo-time {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  color: #3f3d4a;
  font-size: 0.69rem;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  white-space: nowrap;
  transform: translateX(-50%);
}

.suggested-pin {
  position: absolute;
  z-index: 3;
  top: 41%;
  left: 52%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 12px;
  background: var(--blue);
  box-shadow: 0 0 0 13px rgba(10, 92, 224, 0.12), var(--shadow-object);
  color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: left 360ms ease, top 360ms ease;
}

.suggested-pin svg { transform: rotate(45deg); }
.map-stage[data-source="photos"] .suggested-pin { top: 47%; left: 55%; }

.map-label {
  position: absolute;
  z-index: 4;
  top: 53%;
  left: 52%;
  min-width: 184px;
  padding: 10px 12px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 7px 20px rgba(24,32,56,.11);
  transform: translateX(-50%);
  transition: left 360ms ease, top 360ms ease;
}

.map-stage[data-source="photos"] .map-label { top: 59%; left: 55%; }
.map-label strong { display: block; font-size: 0.79rem; }
.map-label span { color: var(--muted); font-size: 0.72rem; }

.timeline-strip {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: grid;
  padding: 11px 13px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 20px rgba(24,32,56,.08);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.time-node { display: flex; align-items: center; gap: 7px; color: #4d4d55; font-size: 0.73rem; font-weight: 680; font-variant-numeric: tabular-nums; }
.time-node:last-child { justify-content: flex-end; }
.time-dot { width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 0 2px var(--indigo); }
.camera-node { padding: 6px 9px; border: 1px solid rgba(10,92,224,.18); border-radius: 9px; background: #edf4ff; color: var(--blue); font-size: 0.73rem; font-weight: 760; font-variant-numeric: tabular-nums; }

.evidence-summary {
  display: flex;
  padding: 5px 20px 19px;
  align-items: flex-start;
  gap: 10px;
}

.source-icon { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; border-radius: 10px; background: rgba(10,156,110,.11); color: var(--mint); }
.map-stage[data-source="photos"] + .evidence-summary .source-icon { background: rgba(56,48,163,.1); color: var(--indigo); }
.evidence-summary strong { display: block; font-size: 0.84rem; }
.evidence-summary p { margin: 2px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }

.section {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -0.045em; }
.section-heading p { max-width: 650px; margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }

.noscript-note { margin: 0; padding: 14px 18px; background: #fff4e8; color: #68401f; font-size: 0.88rem; text-align: center; }

:focus-visible { outline: 3px solid rgba(10, 92, 224, 0.42); outline-offset: 3px; }

@media (max-width: 900px) {
  .desktop-nav a:not(.button) { display: none; }
  .hero { min-height: auto; grid-template-areas: "copy" "tool" "proof"; grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 690px; }
  .tool-card { width: min(100%, 680px); }
}

@media (max-width: 560px) {
  .nav-shell { width: min(calc(100% - 32px), var(--content)); min-height: 64px; }
  .desktop-nav { gap: 0; }
  .button-small { min-height: 40px; padding: 0 13px; font-size: 0.82rem; }
  .hero { width: min(calc(100% - 32px), var(--content)); padding: 28px 0 38px; gap: 22px; }
  .hero .eyebrow { margin-bottom: 12px; }
  h1 { font-size: clamp(2.7rem, 12.3vw, 3.35rem); line-height: .96; }
  .hero-copy { margin-top: 16px; font-size: 1rem; line-height: 1.5; }
  .hero-actions { display: grid; margin-top: 20px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .button { width: 100%; }
  .availability-note { margin-top: 13px; font-size: .76rem; }
  .hero-proof { padding: 10px 5px; border-radius: 14px; }
  .hero-proof li { min-height: 48px; padding: 0 7px; flex-direction: column; gap: 3px; font-size: .7rem; line-height: 1.25; text-align: center; }
  .tool-head { padding: 16px 16px 13px; }
  .evidence-tabs { margin: 0 16px 13px; }
  .map-stage { min-height: 330px; }
  .photo-chip { width: 56px; height: 56px; border-radius: 16px 16px 16px 5px; }
  .photo-chip.one { left: 7%; }
  .photo-chip.two { right: 7%; }
  .suggested-pin { width: 62px; height: 62px; }
  .timeline-strip { right: 10px; bottom: 10px; left: 10px; padding: 10px; gap: 5px; }
  .time-node { font-size: 0.65rem; }
  .camera-node { padding: 5px 7px; font-size: 0.65rem; }
  .evidence-summary { padding: 5px 16px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Shared content surfaces */
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--hairline); border-radius: 12px; background: var(--surface); cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary svg { width: 20px; height: 20px; }
.mobile-nav-panel { position: absolute; top: 50px; right: 0; display: grid; width: min(280px, calc(100vw - 36px)); padding: 10px; border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); box-shadow: 0 14px 40px rgba(24,32,56,.16); }
.mobile-nav-panel a { padding: 12px 13px; border-radius: 10px; color: #33343a; font-weight: 650; text-decoration: none; }
.mobile-nav-panel a:hover { background: var(--surface-soft); color: var(--blue); }
.mobile-nav-panel a[aria-current="page"] { background: #edf4ff; color: var(--blue); }
.mobile-nav-panel .mobile-download { margin-top: 5px; background: var(--blue); color: #fff; text-align: center; }
.mobile-nav-panel .mobile-download:hover { background: var(--blue-dark); color: #fff; }

.page-shell { width: min(calc(100% - 36px), var(--content)); margin: 0 auto; }
.page-hero { display: grid; padding: clamp(52px, 8vw, 92px) 0 64px; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); align-items: center; gap: clamp(38px, 7vw, 86px); }
.answer-first-hero { display: block; padding-bottom: 54px; }
.answer-first-hero .page-hero-copy { max-width: 880px; }
.answer-first-hero h1 { max-width: 860px; }
.answer-first-hero .page-lede { max-width: 800px; }
.answer-box { margin-top: 28px; padding: 22px; border: 1px solid rgba(10,92,224,.16); border-radius: 20px; background: #edf4ff; box-shadow: 0 8px 24px rgba(24,32,56,.06); }
.answer-label { margin: 0 0 5px; color: var(--blue); font-size: .74rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.answer-box h2 { margin: 0; font-size: 1.15rem; letter-spacing: -.015em; }
.answer-links { display: grid; margin-top: 16px; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.answer-links a { display: flex; min-height: 48px; padding: 10px 12px; border: 1px solid rgba(10,92,224,.14); border-radius: 12px; background: #fff; color: #30333a; align-items: center; justify-content: space-between; gap: 8px; font-size: .84rem; font-weight: 720; text-decoration: none; }
.answer-links a:hover { border-color: rgba(10,92,224,.34); color: var(--blue); }
.import-method-grid { display: grid; margin: 30px 0 36px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.import-method { display: grid; min-height: 250px; padding: 23px; border: 1px solid var(--hairline); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-card); grid-template-columns: 42px minmax(0,1fr); gap: 14px; scroll-margin-top: 92px; }
.method-number { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: #edf4ff; color: var(--blue); font-size: .76rem; font-weight: 820; }
.import-method h3 { margin-top: 4px; }
.import-method p { margin: 9px 0 17px; color: var(--muted); font-size: .9rem; }
.method-fit { display: inline-flex; padding: 5px 8px; border-radius: 999px; background: #edf8f4; color: #087354; font-size: .72rem; font-weight: 760; }
.compact-paths .path-card { min-height: 205px; }
.page-hero-copy { max-width: 680px; }
.page-hero h1 { margin: 0; font-size: clamp(2.65rem, 5.5vw, 5rem); line-height: 1; letter-spacing: -.057em; }
.page-lede { margin: 22px 0 0; color: #4f4f57; font-size: clamp(1.06rem, 1.6vw, 1.24rem); line-height: 1.62; }
.page-date { margin: 20px 0 0; color: var(--muted); font-size: .82rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin: 28px 0 0; padding: 0; color: var(--muted); font-size: .82rem; list-style: none; }
.breadcrumb li + li::before { margin-right: 7px; color: #a4a4aa; content: "/"; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }

.content-section { padding: 76px 0; border-top: 1px solid rgba(17,24,39,.07); }
.content-section:first-child { border-top: 0; }
.content-narrow { max-width: 720px; margin: 0 auto; }
.content-section h2 { max-width: 820px; margin: 0; font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -.041em; }
.content-section h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; letter-spacing: -.015em; }
.content-section > p, .content-narrow > p { max-width: 720px; color: #505158; font-size: 1.02rem; }
.section-intro { max-width: 700px; margin: 15px 0 32px; color: var(--muted); font-size: 1.06rem; }
.text-link { color: var(--blue); font-weight: 680; text-underline-offset: 3px; }

.card-grid { display: grid; margin-top: 30px; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.info-card { padding: 24px; border: 1px solid var(--hairline); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-card); }
.info-card h3 { margin-top: 15px; }
.info-card p { margin: 9px 0 0; color: var(--muted); }
.icon-tile { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: rgba(10,92,224,.09); color: var(--blue); }
.icon-tile.mint { background: rgba(10,156,110,.11); color: var(--mint); }
.icon-tile.indigo { background: rgba(56,48,163,.1); color: var(--indigo); }
.icon-tile.orange { background: rgba(215,106,31,.1); color: var(--orange); }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; background: #f0f1f4; color: #484950; font-size: .78rem; font-weight: 700; }
.pill.mint { background: rgba(10,156,110,.1); color: #067451; }
.pill.indigo { background: rgba(56,48,163,.09); color: var(--indigo); }
.pill.orange { background: rgba(215,106,31,.1); color: #a34a10; }

.split-layout { display: grid; margin-top: 30px; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.comparison-card { padding: 26px; border: 1px solid var(--hairline); border-radius: 20px; background: var(--surface); }
.comparison-card.is-product { border-color: rgba(10,92,224,.24); box-shadow: 0 10px 30px rgba(10,92,224,.08); }
.comparison-card h3 { display: flex; align-items: center; gap: 10px; }
.comparison-card ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; color: #53535a; list-style: none; }
.comparison-card li { position: relative; padding-left: 22px; }
.comparison-card li::before { position: absolute; top: .12em; left: 0; color: var(--mint); font-weight: 850; content: "✓"; }
.comparison-card .limitation::before { color: var(--orange); content: "—"; }

.step-list { display: grid; margin: 32px 0 0; padding: 0; counter-reset: steps; gap: 14px; list-style: none; }
.step-list li { display: grid; padding: 22px; border: 1px solid var(--hairline); border-radius: 17px; background: var(--surface); grid-template-columns: 44px minmax(0,1fr); gap: 15px; }
.step-list li::before { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: #eaf2ff; color: var(--blue); counter-increment: steps; content: counter(steps); font-weight: 800; }
.step-list strong { display: block; margin: 1px 0 3px; font-size: 1.02rem; }
.step-list span { color: var(--muted); }

.callout { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(10,92,224,.15); border-radius: 17px; background: #eef4ff; }
.callout.mint { border-color: rgba(10,156,110,.16); background: #edf8f4; }
.callout.orange { border-color: rgba(215,106,31,.16); background: #fff4e8; }
.callout strong { display: block; margin-bottom: 5px; }
.callout p { margin: 0; color: #4e5159; }

.task-switcher { padding: 8px; border: 1px solid var(--hairline); border-radius: 20px; background: #ededeb; }
.task-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 6px; }
.task-option { min-height: 66px; padding: 10px; border: 0; border-radius: 14px; background: transparent; color: #515159; cursor: pointer; font-weight: 720; }
.task-option[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 4px 14px rgba(24,32,56,.1); }
.task-result { margin-top: 8px; padding: 24px; border-radius: 15px; background: var(--surface); }
.task-result .result-label { margin: 0 0 6px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.task-result h2, .task-result h3 { margin: 0; font-size: 1.28rem; }
.task-result p { margin: 8px 0 0; color: var(--muted); }

.import-panel { padding: 24px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); }
.choice-row { display: grid; padding: 5px; border-radius: 14px; background: #efefed; grid-template-columns: repeat(3,1fr); gap: 4px; }
.choice-button { min-height: 46px; padding: 7px 10px; border: 0; border-radius: 11px; background: transparent; color: #5a5b61; cursor: pointer; font-size: .86rem; font-weight: 720; }
.choice-button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 3px 10px rgba(24,32,56,.1); }
.metadata-list { display: grid; margin: 22px 0 0; padding: 0; gap: 10px; list-style: none; }
.metadata-list li { display: flex; padding: 13px 14px; border: 1px solid rgba(17,24,39,.07); border-radius: 12px; background: var(--surface-soft); align-items: center; justify-content: space-between; gap: 16px; }
.metadata-list span { color: var(--muted); }
.metadata-value { color: var(--mint); font-weight: 780; }
.metadata-value.missing { color: var(--orange); }

.clock-tool { padding: 26px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); }
.clock-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.clock-value { color: var(--blue); font-size: 1.08rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.range-wrap { margin-top: 28px; }
.range-wrap input[type="range"] { width: 100%; accent-color: var(--blue); cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: .75rem; font-variant-numeric: tabular-nums; }
.mini-route { position: relative; height: 170px; margin-top: 25px; overflow: hidden; border: 1px solid rgba(17,24,39,.07); border-radius: 16px; background: var(--map-paper); }
.mini-route svg { width: 100%; height: 100%; }
.clock-marker { position: absolute; z-index: 2; top: 54%; left: var(--marker-left,50%); display: grid; width: 42px; height: 42px; place-items: center; border: 4px solid #fff; border-radius: 50% 50% 50% 9px; background: var(--blue); box-shadow: 0 0 0 8px rgba(10,92,224,.1), var(--shadow-object); color: #fff; transform: translate(-50%,-50%) rotate(-45deg); transition: left 300ms ease; }
.clock-marker svg { transform: rotate(45deg); }
.clock-status { display: flex; margin-top: 18px; padding: 13px 15px; border-radius: 13px; background: #edf8f4; color: #075f44; align-items: center; justify-content: space-between; gap: 14px; font-size: .88rem; font-weight: 720; }
.clock-status[data-level="review"] { background: #fff4e8; color: #93450f; }
.clock-status[data-level="none"] { background: #f1f1f3; color: #65666d; }

.photo-evidence { padding: 26px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); }
.photo-evidence-map { position: relative; height: 250px; margin-top: 18px; overflow: hidden; border: 1px solid rgba(59,50,35,.09); border-radius: 17px; background: var(--map-paper); }
.photo-evidence-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.evidence-connector { fill: none; stroke: var(--indigo); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 3 11; opacity: .72; transition: stroke 240ms ease, opacity 240ms ease; }
.anchor-photo { position: absolute; z-index: 2; width: 58px; height: 58px; padding: 3px; border-radius: 17px 17px 17px 5px; background: #fff; box-shadow: var(--shadow-object); transition: top 320ms ease, left 320ms ease, right 320ms ease, transform 320ms ease; }
.anchor-photo img { width: 100%; height: 100%; border-radius: 14px 14px 14px 3px; object-fit: cover; }
.anchor-photo.before { top: 35%; left: 12%; transform: rotate(-4deg); }
.anchor-photo.after { top: 39%; right: 12%; transform: rotate(4deg); }
.anchor-photo.before img { object-position: 14% 44%; }
.anchor-photo.after img { object-position: 84% 62%; }
.anchor-photo > span { position: absolute; top: calc(100% + 7px); left: 50%; padding: 4px 7px; border: 1px solid rgba(17,24,39,.07); border-radius: 8px; background: rgba(255,255,255,.94); color: #45464e; font-size: .65rem; font-weight: 720; font-variant-numeric: tabular-nums; white-space: nowrap; transform: translateX(-50%); }
.camera-evidence-pin { position: absolute; z-index: 3; top: 48%; left: 50%; display: grid; width: 52px; height: 52px; place-items: center; border: 4px solid #fff; border-radius: 50% 50% 50% 9px; background: var(--blue); box-shadow: 0 0 0 9px rgba(10,92,224,.11), var(--shadow-object); color: #fff; transform: translate(-50%,-50%) rotate(-45deg); transition: top 320ms ease, left 320ms ease; }
.camera-evidence-pin svg { transform: rotate(45deg); }
.camera-evidence-pin > span { position: absolute; top: calc(100% + 11px); left: 50%; padding: 3px 7px; border-radius: 8px; background: #fff; box-shadow: 0 4px 10px rgba(24,32,56,.1); color: var(--blue); font-size: .65rem; font-weight: 800; font-variant-numeric: tabular-nums; transform: translateX(-50%) rotate(45deg); }
.photo-evidence[data-scenario-state="moving"] .anchor-photo.before { top: 18%; left: 7%; }
.photo-evidence[data-scenario-state="moving"] .anchor-photo.after { top: 57%; right: 7%; }
.photo-evidence[data-scenario-state="moving"] .camera-evidence-pin { top: 46%; left: 37%; }
.photo-evidence[data-scenario-state="moving"] .evidence-connector { stroke: var(--orange); opacity: .62; }
.photo-evidence[data-scenario-state="conflict"] .anchor-photo.before { top: 12%; left: 4%; }
.photo-evidence[data-scenario-state="conflict"] .anchor-photo.after { top: 62%; right: 4%; }
.photo-evidence[data-scenario-state="conflict"] .camera-evidence-pin { top: 38%; left: 50%; }
.photo-evidence[data-scenario-state="conflict"] .evidence-connector { stroke: #9a9aa1; opacity: .35; }
.photo-sandwich { display: grid; margin-top: 18px; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 9px; }
.sandwich-card { padding: 17px 10px; border: 1px solid rgba(56,48,163,.14); border-radius: 15px; background: #f3f1ff; text-align: center; }
.sandwich-card.camera { border-color: rgba(10,92,224,.16); background: #edf4ff; }
.sandwich-icon { display: grid; width: 36px; height: 36px; margin: 0 auto 8px; place-items: center; border-radius: 11px; background: var(--indigo); color: #fff; }
.sandwich-card.camera .sandwich-icon { background: var(--blue); }
.sandwich-card strong { display: block; font-size: .8rem; }
.sandwich-card span { color: var(--muted); font-size: .73rem; font-variant-numeric: tabular-nums; }
.time-arrow { color: #9a9aa1; font-weight: 800; }
.scenario-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; margin-top: 14px; }
.scenario-button { min-height: 42px; padding: 6px 9px; border: 1px solid var(--hairline); border-radius: 12px; background: var(--surface); color: #505158; cursor: pointer; font-size: .76rem; font-weight: 700; }
.scenario-button[aria-pressed="true"] { border-color: rgba(56,48,163,.28); background: #f0efff; color: var(--indigo); }
.evidence-result { margin-top: 13px; padding: 14px 15px; border-radius: 13px; background: #edf8f4; color: #075f44; font-size: .88rem; }
.evidence-result[data-level="review"] { background: #fff4e8; color: #93450f; }
.evidence-result[data-level="none"] { background: #f1f1f3; color: #65666d; }

.result-card { padding: 24px; border: 1px solid var(--hairline); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-card); }
.result-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.result-card h3 { margin: 0; }
.result-card .filename { font-variant-numeric: tabular-nums; }
.result-card .timestamp { margin: 4px 0 0; color: var(--muted); font-size: .83rem; font-variant-numeric: tabular-nums; }
.status-label { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: rgba(10,156,110,.11); color: #087354; font-size: .75rem; font-weight: 780; white-space: nowrap; }
.result-reason { margin: 20px 0 0; padding: 16px; border-radius: 14px; background: var(--surface-soft); color: #505158; }

.support-list { display: grid; margin-top: 28px; border-top: 1px solid var(--hairline); }
.support-link { display: grid; padding: 20px 4px; border-bottom: 1px solid var(--hairline); text-decoration: none; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 15px; }
.support-link strong { display: block; }
.support-link span { color: var(--muted); font-size: .9rem; }
.support-link:hover strong { color: var(--blue); }
.support-link::after { color: var(--blue); content: "→"; font-size: 1.2rem; }

.format-table { width: 100%; margin-top: 28px; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); }
.format-table th, .format-table td { padding: 15px 16px; border-bottom: 1px solid var(--hairline); text-align: left; vertical-align: top; }
.format-table th { background: var(--surface-soft); color: #414249; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.format-table td { color: #55565d; }
.format-table tr:last-child td { border-bottom: 0; }

.faq-list { display: grid; max-width: 820px; margin-top: 30px; gap: 10px; }
.faq-list details { border: 1px solid var(--hairline); border-radius: 15px; background: var(--surface); }
.faq-list summary { display: flex; padding: 19px 20px; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; font-weight: 720; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--blue); content: "+"; font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { max-width: 720px; padding: 0 20px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

.cta-band { display: grid; margin: 46px 0 0; padding: clamp(28px,5vw,48px); border: 1px solid rgba(10,92,224,.13); border-radius: 24px; background: #eaf2ff; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 24px; }
.cta-band h2 { margin: 0; font-size: clamp(1.7rem,3vw,2.7rem); }
.cta-band p { max-width: 640px; margin: 10px 0 0; color: #505761; }
.cta-actions { display: flex; max-width: 360px; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { margin-top: 44px; border-top: 1px solid rgba(17,24,39,.08); background: #ebecea; }
.footer-shell { display: grid; width: min(calc(100% - 36px), var(--content)); margin: 0 auto; padding: 44px 0; grid-template-columns: minmax(220px,1.4fr) repeat(3,minmax(130px,1fr)); gap: 30px; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--muted); font-size: .9rem; }
.footer-store-badge { width: fit-content; margin-top: 3px; }
.footer-store-link { display: inline-block; margin-top: 7px; color: var(--blue); font-size: .88rem; font-weight: 720; text-decoration: none; }
.footer-store-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-title { margin: 0 0 10px; color: #595a60; font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { color: #404147; font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; width: min(calc(100% - 36px), var(--content)); margin: 0 auto; padding: 20px 0 28px; border-top: 1px solid rgba(17,24,39,.08); color: var(--muted); font-size: .78rem; justify-content: space-between; gap: 16px; }
.apple-legal { max-width: 720px; text-align: right; }

.language-link { color: var(--blue); font-size: .84rem; font-weight: 680; text-decoration: none; }
.app-icon-card { display: flex; padding: 20px; border: 1px solid var(--hairline); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-card); align-items: center; gap: 18px; }
.app-icon-card img { width: 92px; height: 92px; border-radius: 22px; box-shadow: 0 8px 20px rgba(24,32,56,.16); }
.app-icon-card h2, .app-icon-card h3 { margin: 0; }
.app-icon-card p { margin: 6px 0 0; color: var(--muted); }
.app-screenshot { overflow: hidden; border: 1px solid var(--hairline); border-radius: 28px; background: #eaf0fb; box-shadow: 0 18px 45px rgba(24,32,56,.13); }
.app-screenshot img { display: block; width: 100%; height: auto; }

/* Deliberately visible capture slots. Production builds reject these placeholders. */
.asset-promo-layout { display: grid; grid-template-columns: minmax(300px,.88fr) minmax(320px,1.12fr); align-items: center; gap: clamp(34px,6vw,78px); }
.asset-promo-layout-wide { grid-template-columns: minmax(420px,1.16fr) minmax(300px,.84fr); align-items: start; }
.asset-promo-layout .step-list { margin-top: 0; }
.asset-promo-copy .cta-actions { max-width: none; margin-top: 26px; justify-content: flex-start; }
.asset-placeholder { margin: 0; padding: 13px; border: 1px dashed rgba(10,92,224,.42); border-radius: 24px; background: linear-gradient(145deg,rgba(234,242,255,.9),rgba(255,255,255,.94)); box-shadow: 0 12px 32px rgba(24,32,56,.07); }
.asset-placeholder-stage { position: relative; display: grid; min-height: 330px; overflow: hidden; place-items: center; border: 1px dashed rgba(10,92,224,.34); border-radius: 17px; background-color: #f4f7fc; background-image: linear-gradient(rgba(10,92,224,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(10,92,224,.055) 1px,transparent 1px); background-size: 28px 28px; color: var(--blue); text-align: center; }
.asset-placeholder-stage::before { position: absolute; top: 14px; left: 14px; padding: 5px 8px; border-radius: 999px; background: #fff; color: var(--orange); content: "REPLACE BEFORE LAUNCH"; font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.asset-placeholder-stage::after { position: absolute; right: 16px; bottom: 14px; left: 16px; height: 1px; background: rgba(10,92,224,.16); content: ""; }
.asset-placeholder-kicker, .asset-placeholder-shape { display: block; }
.asset-placeholder-kicker { font-size: .73rem; font-weight: 850; letter-spacing: .11em; }
.asset-placeholder-shape { margin-top: 8px; color: var(--muted); font-size: .75rem; font-weight: 720; letter-spacing: .07em; }
.asset-placeholder figcaption { display: grid; padding: 14px 5px 3px; gap: 3px; }
.asset-placeholder figcaption strong { font-size: .9rem; }
.asset-placeholder figcaption span { color: var(--muted); font-size: .76rem; line-height: 1.45; }
.asset-placeholder-phone { justify-self: center; width: min(100%,430px); }
.asset-placeholder-phone .asset-placeholder-stage { width: min(100%,310px); min-height: 0; margin: 0 auto; aspect-ratio: 9 / 19; }
.asset-placeholder-landscape .asset-placeholder-stage { min-height: 0; aspect-ratio: 3 / 2; }
.compact-safety-list article { padding: 15px; }

.product-tour-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); align-items: end; gap: clamp(28px,6vw,72px); }
.product-tour-heading > p { max-width: 490px; margin: 0 0 4px; color: var(--muted); font-size: 1.03rem; }
.product-tour-grid { display: grid; margin-top: 38px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.product-tour-card { display: grid; overflow: hidden; border: 1px solid var(--hairline); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-card); grid-template-rows: auto 1fr; }
.product-tour-card .asset-placeholder { width: 100%; padding: 18px 18px 12px; border: 0; border-bottom: 1px solid var(--hairline); border-radius: 0; background: linear-gradient(150deg,#eef4ff 0%,#f8fafc 100%); box-shadow: none; }
.product-tour-card .asset-placeholder-stage { width: min(100%,205px); }
.product-tour-card .asset-placeholder figcaption { padding-top: 12px; }
.product-tour-copy { padding: 23px; }
.product-tour-index { display: block; margin-bottom: 10px; color: var(--blue); font-size: .75rem; font-weight: 850; letter-spacing: .09em; }
.product-tour-copy h3 { font-size: 1.3rem; }
.product-tour-copy p { margin: 10px 0 0; color: var(--muted); font-size: .92rem; }
.plan-strip { display: grid; margin-top: 17px; padding: 21px 24px; border: 1px solid rgba(10,156,110,.18); border-radius: 18px; background: #edf8f4; grid-template-columns: minmax(220px,.72fr) minmax(0,1.28fr); align-items: center; gap: 22px; }
.plan-strip span, .plan-strip strong { display: block; }
.plan-strip-label { color: var(--mint); font-size: .75rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.plan-strip strong { margin-top: 3px; font-size: 1.08rem; }
.plan-strip p { margin: 0; color: #4e5c56; }
.product-fact-list { display: grid; margin: 24px 0; border-top: 1px solid var(--hairline); }
.product-fact-list article { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.product-fact-list strong { display: block; font-size: .98rem; }
.product-fact-list p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }
.product-scope-note { margin: 20px 0 0; padding: 15px 17px; border-radius: 14px; background: var(--surface-soft); color: var(--muted); font-size: .86rem; }
.product-control-grid .icon-tile { width: 46px; padding: 0 5px; font-size: .72rem; }

/* GPX acquisition guides */
.gpx-pipeline { display: grid; padding: 24px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); gap: 8px; }
.gpx-pipeline > div { display: grid; min-height: 66px; padding: 13px 15px; border: 1px solid rgba(10,92,224,.12); border-radius: 15px; background: #f7f9fd; grid-template-columns: 36px minmax(0,1fr); align-items: center; column-gap: 12px; }
.gpx-pipeline > div > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: #eaf2ff; color: var(--blue); font-size: .7rem; font-weight: 850; grid-row: 1 / 3; }
.gpx-pipeline strong, .gpx-pipeline small { display: block; }
.gpx-pipeline small { margin-top: 2px; color: var(--muted); font-size: .76rem; }
.gpx-pipeline > b { color: #a0a4ad; line-height: 1; text-align: center; transform: rotate(90deg); }
.recording-choice { display: grid; padding: 14px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); gap: 10px; }
.recording-choice article { display: grid; min-height: 105px; padding: 18px; border-radius: 17px; background: var(--surface-soft); align-content: center; }
.recording-choice strong { margin-top: 10px; font-size: 1.1rem; }
.recording-choice small { margin-top: 3px; color: var(--muted); font-size: .78rem; }
.watch-export-card { display: grid; padding: 14px; border: 1px solid var(--hairline); border-radius: var(--radius-tool); background: var(--surface); box-shadow: var(--shadow-card); grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.watch-export-card > div { min-height: 150px; padding: 19px; border: 1px solid rgba(10,92,224,.1); border-radius: 17px; background: linear-gradient(145deg,#f9fbff,#f3f6fb); }
.watch-export-card strong, .watch-export-card span, .watch-export-card b { display: block; }
.watch-export-card span { margin-top: 7px; color: var(--muted); font-size: .75rem; }
.watch-export-card b { margin-top: 24px; color: var(--blue); font-size: .82rem; }
.source-tag { display: inline-flex; width: fit-content; padding: 5px 8px; border-radius: 999px; background: #eaf2ff; color: var(--blue); font-size: .68rem; font-weight: 850; letter-spacing: .08em; }
.source-tag.mint { background: #e9f7f2; color: var(--mint); }
.source-tag.indigo { background: #efedfb; color: var(--indigo); }
.source-tag.orange { background: #fff0e5; color: var(--orange); }
.source-card-grid .info-card { display: flex; min-height: 250px; align-items: flex-start; flex-direction: column; }
.source-card-grid .info-card .text-link { margin-top: auto; padding-top: 20px; }
.source-disclaimer { margin-top: 14px; color: var(--muted); font-size: .82rem !important; }
.official-links { display: flex; margin-top: 24px; flex-wrap: wrap; gap: 10px; }
.official-links a { display: inline-flex; min-height: 42px; padding: 10px 13px; border: 1px solid rgba(10,92,224,.16); border-radius: 11px; background: #fff; color: var(--blue); align-items: center; font-size: .82rem; font-weight: 700; text-decoration: none; }
.official-links a:hover { border-color: rgba(10,92,224,.38); background: #f7faff; }
.official-links.stacked { align-items: flex-start; flex-direction: column; }
.official-links.stacked a { width: 100%; }
.watch-path-list a { display: inline-block; margin-top: 8px; }
.content-section code, .page-hero code { padding: 2px 5px; border-radius: 6px; background: #ececef; color: #35363b; font-size: .9em; }

/* Home: tactile product story */
.journey-section { padding-top: 96px; }
.journey-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); align-items: center; gap: clamp(40px,7vw,86px); }
.journey-photo-card { position: relative; margin: 0; padding: 10px 10px 14px; border: 1px solid rgba(17,24,39,.1); border-radius: 24px; background: #fff; box-shadow: 0 22px 54px rgba(24,32,56,.14), 0 2px 4px rgba(24,32,56,.08); transform: rotate(-1.1deg); }
.journey-photo-card > img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 17px; object-fit: cover; }
.journey-photo-card figcaption { padding: 13px 7px 0; color: var(--muted); font-size: .76rem; }
.photo-sheet-meta { position: absolute; right: -18px; bottom: 50px; display: grid; min-width: 202px; padding: 13px 15px; border: 1px solid rgba(17,24,39,.09); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 14px 32px rgba(24,32,56,.18); backdrop-filter: blur(14px); }
.photo-sheet-meta .photo-source { color: var(--blue); font-size: .66rem; font-weight: 820; letter-spacing: .07em; }
.photo-sheet-meta strong { margin-top: 3px; font-size: .88rem; }
.photo-sheet-meta span:last-child { color: var(--orange); font-size: .72rem; font-weight: 680; }
.journey-copy h2, .review-copy h2 { max-width: 620px; }
.compact-steps { display: grid; margin: 27px 0 22px; padding: 0; gap: 16px; list-style: none; }
.compact-steps li { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 13px; align-items: start; }
.compact-steps li > span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(10,92,224,.13); border-radius: 12px; background: #eaf2ff; color: var(--blue); font-weight: 800; }
.compact-steps strong { display: block; padding-top: 1px; }
.compact-steps p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; }

.review-showcase { position: relative; }
.review-layout { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(500px,1.22fr); align-items: center; gap: clamp(42px,7vw,90px); }
.evidence-legend { display: grid; margin-top: 26px; gap: 10px; }
.evidence-legend span { display: flex; align-items: center; gap: 9px; color: #505159; font-size: .9rem; font-weight: 680; }
.legend-dot { width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px currentColor; }
.legend-dot.mint { background: var(--mint); color: var(--mint); }
.legend-dot.indigo { background: var(--indigo); color: var(--indigo); }
.legend-dot.orange { background: var(--orange); color: var(--orange); }
.app-review-surface { overflow: hidden; border: 1px solid rgba(17,24,39,.1); border-radius: 26px; background: #f8f8f7; box-shadow: 0 24px 58px rgba(24,32,56,.15), inset 0 1px 0 #fff; }
.app-review-bar { display: flex; min-height: 58px; padding: 0 18px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,.92); font-size: .8rem; }
.app-review-bar span { color: var(--muted); font-weight: 700; }
.app-review-bar strong { font-variant-numeric: tabular-nums; }
.review-map { position: relative; height: 270px; overflow: hidden; background: var(--map-paper); }
.review-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.review-photo-pin { position: absolute; top: 30%; left: 20%; width: 58px; height: 58px; padding: 3px; border-radius: 17px 17px 17px 5px; background: #fff; box-shadow: var(--shadow-object); transform: rotate(-4deg); }
.review-photo-pin img { width: 100%; height: 100%; border-radius: 14px 14px 14px 3px; object-fit: cover; object-position: 16% 45%; }
.review-camera-pin { position: absolute; top: 54%; left: 57%; display: grid; width: 60px; height: 60px; place-items: center; border: 4px solid #fff; border-radius: 50% 50% 50% 10px; background: var(--blue); box-shadow: 0 0 0 11px rgba(10,92,224,.12), var(--shadow-object); color: #fff; transform: translate(-50%,-50%) rotate(-45deg); }
.review-camera-pin svg { transform: rotate(45deg); }
.review-sheet { position: relative; margin: -22px 12px 12px; padding: 18px; border: 1px solid rgba(17,24,39,.09); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: 0 12px 26px rgba(24,32,56,.1); }
.review-sheet-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.review-sheet-title strong, .review-sheet-title span { display: block; }
.review-sheet-title > div > span { margin-top: 2px; color: var(--muted); font-size: .76rem; font-variant-numeric: tabular-nums; }
.evidence-row { display: grid; margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--hairline); grid-template-columns: 34px minmax(0,1fr); gap: 10px; }
.evidence-symbol { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; font-weight: 800; }
.evidence-symbol.mint { background: rgba(10,156,110,.1); color: var(--mint); }
.evidence-symbol.indigo { background: rgba(56,48,163,.09); color: var(--indigo); }
.evidence-row strong { display: block; font-size: .83rem; }
.evidence-row div > span { display: block; margin-top: 1px; color: var(--muted); font-size: .74rem; }

.completion-layout { display: grid; margin-top: 34px; grid-template-columns: minmax(430px,1.08fr) minmax(360px,.92fr); align-items: stretch; gap: 18px; }
.completion-card { padding: 28px; border: 1px solid rgba(10,156,110,.16); border-radius: 24px; background: linear-gradient(145deg,#fff 0%,#f0faf6 100%); box-shadow: var(--shadow-card); }
.completion-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.completion-head span, .completion-head strong { display: block; }
.completion-head div > span { color: var(--mint); font-size: .72rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.completion-head div > strong { margin-top: 3px; font-size: 1.18rem; }
.completion-check { display: grid !important; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--mint); box-shadow: 0 8px 18px rgba(10,156,110,.2); color: #fff; font-size: 1.2rem; }
.completion-metrics { display: grid; margin-top: 28px; padding: 22px 0; border-top: 1px solid rgba(10,156,110,.14); border-bottom: 1px solid rgba(10,156,110,.14); grid-template-columns: repeat(3,1fr); }
.completion-metrics div { text-align: center; }
.completion-metrics div + div { border-left: 1px solid rgba(10,156,110,.14); }
.completion-metrics strong { display: block; font-size: clamp(2rem,4vw,3.2rem); line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.completion-metrics span { color: var(--muted); font-size: .78rem; font-weight: 680; }
.completion-card > p { margin: 18px 0 0; color: var(--muted); font-size: .86rem; }
.safety-list { display: grid; gap: 10px; }
.safety-list article { display: grid; padding: 18px; border: 1px solid var(--hairline); border-radius: 18px; background: var(--surface); box-shadow: 0 6px 20px rgba(24,32,56,.05); grid-template-columns: 38px minmax(0,1fr); gap: 13px; align-items: start; }
.safety-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; font-weight: 850; }
.safety-icon.mint { background: rgba(10,156,110,.1); color: var(--mint); }
.safety-icon.indigo { background: rgba(56,48,163,.09); color: var(--indigo); }
.safety-icon.orange { background: rgba(215,106,31,.1); color: var(--orange); }
.safety-list h3 { margin-top: 0; font-size: 1rem; }
.safety-list p { margin: 4px 0 0; color: var(--muted); font-size: .84rem; }

.path-grid { display: grid; margin-top: 32px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.path-card { display: grid; min-height: 230px; padding: 25px; overflow: hidden; border: 1px solid var(--hairline); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-card); grid-template-columns: 54px minmax(0,1fr); gap: 19px; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.path-card:hover { box-shadow: 0 14px 34px rgba(24,32,56,.1); transform: translateY(-2px); }
.path-number { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; background: rgba(10,156,110,.1); color: var(--mint); font-size: .8rem; font-weight: 820; }
.path-number.indigo { background: rgba(56,48,163,.09); color: var(--indigo); }
.path-card h3 { margin-top: 5px; font-size: 1.3rem; }
.path-card p { max-width: 410px; margin: 10px 0 24px; color: var(--muted); }
.path-link { color: var(--blue); font-weight: 700; }
.import-strip { display: flex; margin-top: 16px; padding: 17px 20px; border: 1px dashed rgba(17,24,39,.14); border-radius: 16px; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); }
.import-strip > span { font-weight: 680; }
.faq-section .faq-list { max-width: none; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; }
.release-band { margin-top: 0; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 58px; }
.prose h3 { margin-top: 34px; }
.prose p, .prose li { color: #505158; }
.prose li + li { margin-top: 8px; }
.prose code { padding: 2px 5px; border-radius: 6px; background: #ececef; color: #35363b; font-size: .9em; }
.legal-list { display: grid; gap: 10px; }

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

@media (max-width: 900px) {
  .desktop-nav { display: flex; margin-left: auto; }
  .mobile-nav { display: block; }
  .page-hero { padding: 38px 0 54px; grid-template-columns: 1fr; gap: 28px; }
  .page-hero-visual { max-width: 680px; }
  .card-grid { grid-template-columns: 1fr; }
  .product-tour-heading { grid-template-columns: 1fr; align-items: start; }
  .product-tour-grid { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .product-tour-card { flex: 0 0 min(82vw,350px); scroll-snap-align: start; }
  .journey-grid, .review-layout, .completion-layout, .asset-promo-layout, .asset-promo-layout-wide { grid-template-columns: 1fr; }
  .journey-photo-card, .app-review-surface, .completion-card, .safety-list { width: min(100%,680px); }
  .journey-copy, .review-copy { max-width: 720px; }
  .asset-placeholder { justify-self: start; width: min(100%,680px); }
  .footer-shell { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .answer-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .import-method-grid { grid-template-columns: 1fr; }
  .import-method { min-height: 0; }
}

@media (max-width: 680px) {
  .breadcrumb { margin-top: 18px; font-size: .76rem; }
  .page-hero { padding: 24px 0 46px; gap: 22px; }
  .page-hero h1 { font-size: clamp(2.35rem,10.7vw,3rem); line-height: .98; }
  .page-hero .eyebrow { margin-bottom: 12px; }
  .answer-first-hero { padding-bottom: 34px; }
  .answer-box { margin-top: 21px; padding: 16px; border-radius: 16px; }
  .answer-links { grid-template-columns: 1fr; }
  .answer-links a { min-height: 46px; }
  .import-method-grid { margin-top: 24px; }
  .import-method { padding: 19px; }
  .page-lede { margin-top: 15px; font-size: 1rem; line-height: 1.52; }
  .page-date { margin-top: 13px; }
  .content-section { padding: 54px 0; }
  .split-layout, .card-grid.two { grid-template-columns: 1fr; }
  .task-options, .choice-row { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .task-option, .choice-button { min-height: 48px; padding: 7px 6px; font-size: .75rem; line-height: 1.2; }
  .task-result { padding: 19px; }
  .import-panel, .clock-tool, .photo-evidence { padding: 20px; }
  .photo-sandwich { grid-template-columns: 1fr; }
  .time-arrow { transform: rotate(90deg); text-align: center; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .button { width: 100%; }
  .cta-band > .app-store-badge-link { justify-self: start; }
  .cta-actions { max-width: none; justify-content: stretch; }
  .plan-strip { grid-template-columns: 1fr; gap: 8px; }
  .watch-export-card { grid-template-columns: 1fr; }
  .watch-export-card > div { min-height: 118px; }
  .source-card-grid .info-card { min-height: 0; }
  .official-links { align-items: stretch; flex-direction: column; }
  .official-links a { width: 100%; }
  .asset-promo-layout { gap: 30px; }
  .asset-placeholder { padding: 10px; border-radius: 20px; }
  .asset-placeholder-phone { width: min(100%,390px); }
  .journey-section { padding-top: 62px; }
  .journey-grid, .review-layout { gap: 32px; }
  .journey-photo-card { border-radius: 20px; transform: rotate(-.5deg); }
  .journey-photo-card > img { border-radius: 14px; }
  .photo-sheet-meta { right: 8px; bottom: 47px; min-width: 184px; }
  .compact-steps { gap: 14px; }
  .review-map { height: 230px; }
  .review-photo-pin { top: 25%; left: 12%; }
  .review-camera-pin { left: 60%; width: 54px; height: 54px; }
  .review-sheet { margin: -18px 9px 9px; padding: 15px; }
  .review-sheet-title { align-items: center; }
  .completion-layout { margin-top: 26px; }
  .completion-card { padding: 22px; }
  .completion-metrics { margin-top: 22px; padding: 18px 0; }
  .path-grid, .faq-section .faq-list { grid-template-columns: 1fr; }
  .path-card { min-height: 0; padding: 21px; grid-template-columns: 48px minmax(0,1fr); gap: 15px; }
  .path-number { width: 46px; height: 46px; }
  .path-card p { margin-bottom: 16px; }
  .import-strip { align-items: flex-start; flex-direction: column; gap: 5px; }
  .format-table { display: block; overflow-x: auto; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .apple-legal { text-align: left; }
  .clock-toolbar { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .button, .mobile-nav { display: none !important; }
  body { background: #fff; }
  .page-hero, .content-section { padding: 24px 0; }
  .info-card, .comparison-card, .callout { box-shadow: none; break-inside: avoid; }
}
