:root {
  --ink: #060b16;
  --deep: #00021d;
  --brand: #043484;
  --brand-mid: #14337f;
  --ocean: #3a83c4;
  --ocean-bright: #5aa8e0;
  --foam: #d7ebf8;
  --cream: #f9f7ef;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-dark: rgba(6, 11, 22, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(6, 11, 22, 0.1);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--deep);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
.btn {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(0, 2, 29, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header-light,
.site-header-light.is-scrolled {
  background: rgba(249, 247, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}

.site-header-light .brand,
.site-header-light .brand-name {
  color: var(--deep);
}

.site-header-light .nav-cta {
  background: var(--brand);
  color: #fff;
}

.site-header-light .nav-cta:hover {
  background: var(--brand-mid);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.45rem;
}

.brand-name {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .brand {
  position: relative;
}

.site-header .brand-name {
  position: absolute;
  left: calc(100% + 0.7rem);
  top: 50%;
  transform: translateY(-50%);
  opacity: var(--brand-fade, 1);
  pointer-events: none;
}

body:has(.hero) .site-header .brand-name {
  opacity: var(--brand-fade, 0);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-link:hover {
  color: var(--foam);
}

.site-header-light .nav-link {
  color: var(--deep);
}

.site-header-light .nav-link:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--foam);
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 2, 29, 0.42) 0%,
      rgba(0, 2, 29, 0.12) 38%,
      rgba(0, 2, 29, 0.55) 68%,
      rgba(0, 2, 29, 0.88) 100%
    ),
    url("assets/tuna_splash.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(38rem, calc(100% - 2.5rem));
  margin-left: max(1.25rem, calc((100% - min(var(--max), 100% - 2.5rem)) / 2));
  margin-right: auto;
  padding: 8.5rem 0 4.75rem;
  text-align: left;
}

.hero-brand {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.hero-line {
  max-width: 14em;
  margin: 0 0 1rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-support {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: rgba(249, 247, 239, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 0.7rem;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.store-badge img {
  height: 2.85rem;
  width: auto;
  display: block;
}

.desktop-downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 0;
}

.desktop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 2.85rem;
  padding: 0.35rem 0.6rem 0.35rem 0.45rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease), background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.25s var(--ease);
}

.desktop-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.desktop-btn.is-preferred {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 16px 36px rgba(0, 0, 0, 0.3);
}

.desktop-btn svg {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
}

.desktop-btn small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1.1;
}

.desktop-btn strong {
  display: block;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.desktop-btn .meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  opacity: 0.55;
}

.download-stack {
  display: grid;
  gap: 1.6rem;
  justify-items: stretch;
  width: 100%;
}

.download-stack > div {
  width: 100%;
}

.download-group-label {
  margin: 0 0 0.65rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-brand {
  background:
    radial-gradient(circle at 80% 0%, rgba(58, 131, 196, 0.28), transparent 42%),
    linear-gradient(160deg, #031f55 0%, var(--deep) 55%, #00102f 100%);
  color: #fff;
}

#preview.section-brand {
  --preview-extend: 5.5rem;
  --preview-inset: max(1.25rem, calc((100% - var(--max)) / 2));
  background: #031f55;
  padding: 0;
}

#preview .container {
  width: 100%;
}

#preview .map-preview-frame {
  border-radius: 0;
  aspect-ratio: unset;
  height: calc(100vw * 3 / 4 + var(--preview-extend));
}

.section-label {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--ocean);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-cream .section-label {
  color: var(--brand);
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.08;
  max-width: 16ch;
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-cream .section-lead {
  color: var(--muted-dark);
}

.section-head {
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.feature {
  padding: 1.8rem 1.4rem 1.8rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature:nth-child(even) {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line-dark);
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.feature p {
  margin: 0;
  color: var(--muted-dark);
  max-width: 34rem;
}

.feature .metric {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
}

.section-dark .feature-grid,
.section-brand .feature-grid {
  border-top-color: var(--line);
}

.section-dark .feature,
.section-brand .feature {
  border-bottom-color: var(--line);
}

.section-dark .feature:nth-child(even),
.section-brand .feature:nth-child(even) {
  border-left-color: var(--line);
}

.section-dark .feature p,
.section-brand .feature p {
  color: var(--muted);
}

.section-dark .feature .metric,
.section-brand .feature .metric {
  color: var(--ocean-bright);
}

.section-cream .source-list {
  border-top-color: var(--line-dark);
}

.section-cream .source-list li {
  border-bottom-color: var(--line-dark);
}

.section-cream .source-list li:nth-child(3n + 2),
.section-cream .source-list li:nth-child(3n + 3) {
  border-left-color: var(--line-dark);
}

.section-cream .source-list span {
  color: var(--muted-dark);
}

.section-cream .audience-list li {
  border-top-color: var(--line-dark);
}

.section-cream .audience-list li:last-child {
  border-bottom-color: var(--line-dark);
}

.section-cream .audience-list span {
  color: var(--muted-dark);
}

.feature-grid-wide .feature:nth-child(4n + 1),
.feature-grid-wide .feature:nth-child(4n + 2) {
  border-bottom-color: var(--line-dark);
}

.map-preview-shell {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.map-preview-frame {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.1rem;
  overflow: hidden;
  border: none;
  background: #031f55;
  box-shadow: none;
}

.map-preview {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  touch-action: pan-y;
}

.map-preview.is-ready {
  opacity: 1;
}

.map-preview .mapboxgl-canvas-container,
.map-preview .mapboxgl-canvas,
.map-preview .mapboxgl-map {
  z-index: 0 !important;
  pointer-events: none !important;
  touch-action: pan-y !important;
}

.map-preview-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgb(3, 31, 85) 0%,
      rgba(3, 31, 85, 0.88) 18%,
      rgba(3, 31, 85, 0.45) 42%,
      rgba(3, 31, 85, 0.12) 68%,
      rgba(3, 31, 85, 0) 88%
    ),
    radial-gradient(
      ellipse 78% 72% at 50% 58%,
      rgba(3, 31, 85, 0) 35%,
      rgba(3, 31, 85, 0.35) 70%,
      rgba(3, 31, 85, 0.75) 100%
    );
  pointer-events: none;
}

.map-preview-copy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding-block: clamp(4.5rem, 12vw, 7rem) clamp(1.25rem, 4vw, 2rem);
  padding-inline: var(--preview-inset, max(1.25rem, calc((100% - var(--max)) / 2)));
  pointer-events: none;
}

.map-preview-copy .section-title {
  max-width: 18ch;
  font-size: clamp(1.55rem, 4.5vw, 2.35rem);
}

.map-preview-copy .section-lead {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.map-preview-toolbar {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-end;
  gap: 0.45rem;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem)
    var(--preview-inset, max(1.25rem, calc((100% - var(--max)) / 2)));
  pointer-events: none;
  transform: translateZ(0);
  background: none;
}

.map-layer-chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: none;
  pointer-events: auto;
  touch-action: manipulation;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s var(--ease);
}

.map-layer-chip:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.map-layer-chip.is-active {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.map-preview .mapboxgl-canvas-container,
.map-preview .mapboxgl-canvas {
  background: #031f55;
}

.map-preview .mapboxgl-ctrl-logo,
.map-preview .mapboxgl-ctrl-attrib,
.map-preview .mapboxgl-ctrl-bottom-left,
.map-preview .mapboxgl-ctrl-bottom-right,
.map-preview .mapboxgl-ctrl-top-left,
.map-preview .mapboxgl-ctrl-top-right,
.map-preview a.mapboxgl-ctrl-logo {
  display: none !important;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.who-carousel {
  aspect-ratio: 4 / 3;
  background: #0a1428;
}

.who-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.who-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  pointer-events: none;
}

.who-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.who-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}

.who-carousel-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.who-carousel-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

.who-carousel-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.audience-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}

.audience-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.audience-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-list strong {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.audience-list span {
  color: var(--muted);
}

.source-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.source-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.1rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.source-list li:nth-child(3n + 2),
.source-list li:nth-child(3n + 3) {
  padding-left: 1.1rem;
  border-left: 1px solid var(--line);
}

.source-list strong {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.source-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.download-panel .section-title {
  max-width: 16ch;
}

.site-footer {
  padding: 3rem 0 2.25rem;
  background: #00010f;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  max-width: 26rem;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.65rem 2.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
}

.lang-switch select {
  appearance: none;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.35rem center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 0.85rem;
  padding: 0.35rem 1.6rem 0.35rem 0.65rem;
  min-width: 9.5rem;
}

.lang-switch select option {
  color: #111;
}

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

.footer-legal-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

html[dir="rtl"] .nav,
html[dir="rtl"] .footer-top,
html[dir="rtl"] .footer-meta,
html[dir="rtl"] .cta-row,
html[dir="rtl"] .download-stack,
html[dir="rtl"] .plan-row,
html[dir="rtl"] .confirm-steps {
  direction: rtl;
}

html[dir="rtl"] .lang-switch select {
  background-position: left 0.35rem center;
  padding: 0.35rem 0.65rem 0.35rem 1.6rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
  margin: 0;
  max-width: 42rem;
  line-height: 1.45;
}

.page {
  padding: 7.5rem 0 5rem;
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
}

.page-header {
  margin-bottom: 2.5rem;
}

.page-header h1 {
  margin: 0 0 0.75rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-header p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted-dark);
}

.page-header .pricing-lead {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.page-header .pricing-mobile-note {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: rgba(6, 11, 22, 0.52);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-mobile-note a {
  color: var(--brand-mid);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin: 2.4rem 0 0.75rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.005em;
}

.prose h3 {
  margin: 1.5rem 0 0.55rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.prose p,
.prose li {
  color: rgba(6, 11, 22, 0.78);
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.prose code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.92em;
}

.prose ul {
  padding-left: 1.15rem;
}

.faq details {
  border-top: 1px solid var(--line-dark);
  padding: 1.1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  cursor: pointer;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--brand);
}

.faq details p {
  margin: 0.75rem 0 0.2rem;
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal-delay-1 {
  transition-delay: 0.08s;
}

.hero .reveal-delay-2 {
  transition-delay: 0.16s;
}

.hero .reveal-delay-3 {
  transition-delay: 0.24s;
}

.hero .reveal-delay-4 {
  transition-delay: 0.32s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .split,
  .download-panel,
  .footer-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .audience-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .split-visual {
    order: -1;
  }

  .who-carousel {
    max-width: 36rem;
    margin-inline: auto;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .source-list li,
  .source-list li:nth-child(3n + 2),
  .source-list li:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  #preview.section-brand {
    --preview-extend: 8.5rem;
  }

  #preview .map-preview-frame {
    height: max(34rem, calc(100svh - 4.25rem));
    max-height: none;
  }

  #preview .map-preview-copy {
    padding-block: clamp(5rem, 16vw, 6.25rem) 1rem;
  }

  #preview .map-preview-toolbar {
    gap: 0.35rem;
  }

  .map-layer-chip {
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
  }

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

  .feature,
  .feature:nth-child(even) {
    padding: 1.4rem 0;
    border-left: 0;
  }

  .hero-content {
    padding-bottom: 3.25rem;
  }
}

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

  .hero-media,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .who-carousel-slide {
    transition: none;
  }
}

.page-header .section-label {
  color: var(--brand);
}

.container.narrow {
  max-width: 40rem;
}

.btn-brand,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  justify-self: end;
}

.btn-brand:hover {
  background: var(--brand-mid);
  color: #fff;
  transform: translateY(-1px);
}

.btn-brand:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--line-dark);
  justify-self: end;
}

.btn-ghost:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.plan-list {
  border-top: 1px solid var(--line-dark);
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.plan-row.is-featured {
  background: linear-gradient(
    90deg,
    rgba(4, 52, 132, 0.05) 0%,
    rgba(4, 52, 132, 0) 100%
  );
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
}

.plan-kicker {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-copy h2 {
  margin: 0 0 0.35rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.plan-price {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brand);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  min-height: 2rem;
}

.plan-price.is-loading .plan-price-now {
  display: inline-block;
  min-width: 4.5rem;
  min-height: 1.15em;
  border-radius: 0.35rem;
  background: rgba(6, 11, 22, 0.08);
}

.plan-price-was {
  font-size: inherit;
  font-weight: inherit;
  color: var(--muted-dark);
  text-decoration: line-through;
}

.plan-price-period {
  margin-left: 0.05rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-dark);
}

.dealer-pricing-note {
  margin: 1rem 0 0;
  color: #1f7a45;
  font-size: 1rem;
  font-weight: 600;
}

.plan-group {
  margin-top: 0;
}

.plan-group-header {
  margin-bottom: 0.35rem;
}

.plan-group-header h2 {
  margin: 0.2rem 0 0.45rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.plan-group-header p {
  margin: 0;
  color: var(--muted-dark);
  max-width: 38rem;
}

.plan-note {
  margin: 0.45rem 0 0.35rem;
  color: var(--muted-dark);
  font-size: 0.98rem;
}

.plan-licenses {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.plan-rates {
  margin: 0 0 0.9rem;
  color: rgba(6, 11, 22, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: rgba(6, 11, 22, 0.78);
  font-size: 0.98rem;
}

.plan-features li {
  padding-left: 1.1rem;
  position: relative;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}

.plan-action {
  padding-top: 0.15rem;
  min-width: 13.5rem;
  display: flex;
  justify-content: flex-end;
}

.plan-action .cta-row {
  justify-content: flex-end;
}

.plan-action .store-badge img {
  height: 2.5rem;
}

.page-foot {
  margin: 2rem 0 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
}

.page-foot a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.flow-panel {
  display: grid;
  gap: 1.5rem;
}

.flow-step {
  display: grid;
  gap: 0.65rem;
}

.flow-hint {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.45;
}

.flow-label {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.flow-input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 0.55rem;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.flow-input:focus {
  outline: 2px solid rgba(4, 52, 132, 0.28);
  outline-offset: 1px;
  border-color: var(--brand);
}

.flow-input::placeholder {
  color: rgba(6, 11, 22, 0.38);
}

.flow-link {
  justify-self: start;
  background: none;
  border: none;
  padding: 0;
  color: var(--muted-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
}

.flow-error {
  margin: 0;
  color: #9b1c1c;
  font-size: 0.95rem;
}

.flow-fineprint {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.5;
}

.flow-block {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
}

.flow-block h2 {
  margin: 0 0 0.5rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.flow-block p {
  margin: 0 0 1rem;
  color: rgba(6, 11, 22, 0.78);
}

.flow-block a:not(.btn-brand) {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.confirm-steps {
  margin: 0 0 2rem;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 1rem;
  color: rgba(6, 11, 22, 0.78);
}

.confirm-steps strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .plan-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .plan-action {
    justify-content: flex-start;
    min-width: 0;
  }

  .plan-action .cta-row {
    justify-content: flex-start;
  }
}
