* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ember: #d97706;
  --seismic: #b85c0d;
  --deep-red: #22333b;
  --ink: #152329;
  --muted: #526269;
  --cream: #fff9ec;
  --warm-white: #fffdf7;
  --blush: #f7dca5;
  --sand: #e9edf0;
  --line: rgba(21, 35, 41, 0.12);
  --shadow: 0 30px 80px rgba(21, 35, 41, 0.16);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
.app-store-button:focus-visible,
.text-link:focus-visible,
.back-link:focus-visible,
.brand:focus-visible,
.nav-download:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--cream);
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 180ms ease;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(21, 35, 41, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.icon-sprite {
  display: none;
}

.social-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav .nav-social {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.site-nav .nav-social:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-nav .nav-download {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.site-nav .nav-download:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-section {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.11), transparent 26%),
    linear-gradient(132deg, var(--ember) 0%, var(--seismic) 58%, var(--deep-red) 100%);
  color: #fff;
}

.hero-section::after {
  position: absolute;
  right: -16%;
  bottom: -28%;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-rings,
.hero-rings::before,
.hero-rings::after {
  position: absolute;
  top: 50%;
  left: 10%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hero-rings {
  width: 460px;
  height: 460px;
}

.hero-rings::before {
  width: 700px;
  height: 700px;
}

.hero-rings::after {
  width: 940px;
  height: 940px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 880px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: 60px;
  align-items: center;
  padding-top: 112px;
}

.hero-copy {
  padding: 62px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(52px, 6.1vw, 84px);
  font-weight: 770;
  letter-spacing: -0.062em;
  line-height: 0.97;
}

.hero-line {
  display: block;
}

.hero-copy h1 .hero-line-accent {
  color: #ffe4a8;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.app-store-button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 9px 20px 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: #10191d;
  box-shadow: 0 16px 32px rgba(16, 28, 33, 0.24);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-store-button:hover {
  box-shadow: 0 20px 40px rgba(16, 28, 33, 0.32);
  transform: translateY(-2px);
}

.app-store-button svg {
  width: 25px;
  height: 29px;
  fill: currentColor;
}

.app-store-button span {
  font-size: 21px;
  font-weight: 580;
  letter-spacing: -0.03em;
  line-height: 1;
}

.app-store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.store-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.store-badge {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 11px;
  padding: 8px 18px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(22, 13, 11, 0.5);
  color: #fff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.store-badge:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.store-badge:focus-visible {
  outline: 3px solid #ffe4a8;
  outline-offset: 3px;
}

.store-badge .badge-logo {
  width: 20px;
  height: 24px;
  fill: currentColor;
}

.store-badge .badge-logo-ms {
  width: 19px;
  height: 19px;
}

.store-badge-pending {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.26);
  background: none;
  color: rgba(255, 255, 255, 0.72);
  cursor: default;
}

.store-badge-pending:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.26);
  background: none;
}

.store-badge span {
  font-size: 16px;
  font-weight: 580;
  letter-spacing: -0.02em;
  line-height: 1;
}

.store-badge small {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof li span {
  color: #ffe4a8;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: 770px;
}

.phone {
  position: relative;
  overflow: hidden;
  border: 8px solid #152329;
  border-radius: 48px;
  background: #152329;
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 50%;
  width: 30%;
  height: 25px;
  border-radius: 999px;
  background: #081014;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 39px;
}

.phone-hero {
  position: absolute;
  z-index: 2;
  bottom: -128px;
  left: 50%;
  width: 360px;
  transform: translateX(-50%) rotate(1.5deg);
}

.quake-orbit {
  position: absolute;
  z-index: 0;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-one {
  bottom: 120px;
  width: 560px;
  height: 560px;
}

.orbit-two {
  bottom: 10px;
  width: 780px;
  height: 780px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 15px;
  background: rgba(255, 247, 242, 0.92);
  box-shadow: 0 16px 35px rgba(21, 35, 41, 0.22);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.floating-card small,
.floating-card strong {
  display: block;
  white-space: nowrap;
}

.floating-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.floating-card strong {
  font-size: 13px;
}

.floating-feed {
  top: 145px;
  left: -34px;
}

.floating-location {
  right: -22px;
  bottom: 135px;
}

.card-icon,
.location-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--blush);
  color: var(--seismic);
  font-size: 18px;
  font-weight: 800;
}

.pulse-icon::before {
  width: 8px;
  height: 8px;
  border: 4px solid var(--seismic);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.16);
  content: "";
}

.quick-facts {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-grid div {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.facts-grid div:last-child {
  border-right: 0;
}

.facts-grid strong {
  color: var(--seismic);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.facts-grid span {
  max-width: 115px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.features-section {
  background:
    linear-gradient(rgba(21, 35, 41, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 41, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 64px 64px;
}

.section-heading {
  display: grid;
  max-width: 930px;
  grid-template-columns: 1.1fr 0.8fr;
  column-gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.eyebrow-dark {
  color: var(--seismic);
}

.eyebrow-light {
  color: #ffd166;
}

.section-heading h2,
.screens-intro h2,
.privacy-copy h2,
.final-cta h2 {
  color: var(--ink);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p,
.screens-intro > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 250, 0.88);
  box-shadow: 0 10px 30px rgba(21, 35, 41, 0.045);
}

.feature-card-map {
  display: flex;
  min-height: 390px;
  grid-row: span 2;
  align-items: flex-end;
  background: linear-gradient(150deg, #fffaf7 0%, #f7ded5 100%);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(21, 35, 41, 0.25);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--blush);
  color: var(--seismic);
}

.feature-icon svg,
.privacy-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3 {
  max-width: 340px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 370px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.feature-card-map .feature-copy {
  position: relative;
  z-index: 2;
}

.feature-card-map .feature-icon {
  margin-bottom: 18px;
}

.mini-map {
  position: absolute;
  top: -80px;
  right: -74px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(36deg, transparent 48%, rgba(217, 119, 6, 0.14) 49%, rgba(217, 119, 6, 0.14) 51%, transparent 52%),
    linear-gradient(-25deg, transparent 48%, rgba(217, 119, 6, 0.1) 49%, rgba(217, 119, 6, 0.1) 51%, transparent 52%);
}

.mini-ring,
.mini-marker {
  position: absolute;
  top: 55%;
  left: 38%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.mini-ring {
  border: 1px solid rgba(217, 119, 6, 0.22);
}

.ring-a {
  width: 150px;
  height: 150px;
}

.ring-b {
  width: 230px;
  height: 230px;
}

.mini-marker {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  background: linear-gradient(145deg, var(--ember), var(--seismic));
  box-shadow: 0 0 0 16px rgba(245, 186, 66, 0.14), 0 12px 24px rgba(34, 51, 59, 0.24);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.feature-card-alert {
  display: flex;
  min-height: 230px;
  grid-column: span 2;
  gap: 24px;
  align-items: center;
  background: linear-gradient(110deg, var(--ember), var(--deep-red));
  color: #fff;
}

.feature-card-alert .feature-number {
  color: rgba(255, 255, 255, 0.48);
}

.feature-card-alert h3,
.feature-card-alert p {
  color: #fff;
}

.feature-card-alert p {
  color: rgba(255, 255, 255, 0.73);
}

.alert-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 35px;
  font-weight: 850;
}

.screens-section {
  overflow: hidden;
  background: #152329;
  color: #fff;
}

.screens-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.screens-intro .eyebrow {
  margin-bottom: 18px;
}

.screens-intro h2 {
  color: #fff;
}

.screens-intro > p {
  color: rgba(255, 255, 255, 0.56);
}

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

.screen-story {
  min-width: 0;
}

.story-alert {
  margin-top: 90px;
}

.story-detail {
  margin-top: 180px;
}

.screen-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.screen-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffd166;
  font-size: 10px;
}

.phone-gallery {
  width: 100%;
  border-width: 7px;
  border-color: #0d181c;
  border-radius: 44px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.phone-gallery img {
  border-radius: 36px;
}

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

.privacy-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 40px;
  align-items: center;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--warm-white);
  box-shadow: 0 20px 60px rgba(21, 35, 41, 0.08);
}

.privacy-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 24px;
  background: var(--blush);
  color: var(--seismic);
}

.privacy-mark svg {
  width: 36px;
  height: 36px;
}

.privacy-copy .eyebrow {
  margin-bottom: 14px;
}

.privacy-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 52px);
}

.privacy-copy p {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.dark-link {
  color: var(--seismic);
}

.dark-link:hover span {
  transform: translateX(3px);
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list div {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cream);
  font-size: 13px;
}

.privacy-list span {
  color: var(--seismic);
}

/* ── From the same maker ─────────────────────────────────────── */
/* ── From the same maker ─────────────────────────────────────── */
.sibling-section {
  padding: 76px 0;
  background: var(--sand);
}

.sibling-rail {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 0 60px;
  align-items: start;
}

.rail-eyebrow {
  color: #a5530b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rail-head h2 {
  margin-top: 12px;
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.rail-head > p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.rail-items {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.rail-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.rail-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.rail-item:last-child {
  padding-bottom: 0;
}

.rail-item[data-app="terremoto"] { --app-accent: #b8331b; }
.rail-item[data-app="incendio"] { --app-accent: #a5530b; }
.rail-item[data-app="erupcion"] { --app-accent: #b53619; }

.rail-icon {
  width: 52px;
  height: 52px;
  grid-row: span 2;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.rail-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.rail-top h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
}

.rail-kind {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.rail-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.rail-source::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--app-accent);
}

.rail-body p {
  max-width: 56ch;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.rail-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 14px;
}

.rail-site {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--app-accent);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.rail-site span {
  transition: transform 0.2s ease;
}

.rail-site:hover span {
  transform: translateX(3px);
}

.rail-sep {
  width: 1px;
  height: 15px;
  background: var(--line);
}

.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.store-pill:hover {
  transform: translateY(-1px);
  border-color: var(--app-accent);
  background: rgba(21, 35, 41, 0.05);
}

.store-pill svg {
  flex: none;
  width: 13px;
  height: 15px;
  fill: currentColor;
}

.store-pill-ms svg,
.store-pill-android svg {
  width: 13px;
  height: 13px;
}

.store-pill-pending {
  border-style: dashed;
  background: none;
  color: var(--muted);
  font-weight: 500;
  cursor: default;
}

.store-pill-pending:hover {
  transform: none;
  border-color: var(--line);
  background: none;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(120deg, var(--ember), var(--seismic) 58%, var(--deep-red));
  color: #fff;
}

.cta-wave {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0.12;
}

.cta-wave svg {
  width: 100%;
  height: 180px;
}

.cta-wave path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.final-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta > img {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(21, 35, 41, 0.23);
}

.final-cta h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-store-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-store-stack .store-links-row {
  flex-direction: column;
  margin-top: 0;
}

.app-store-light {
  box-shadow: none;
}

.site-footer {
  padding: 40px 0;
  background: #101c21;
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 34px;
  align-items: center;
}

.footer-brand {
  font-size: 16px;
}

.site-footer p,
.site-footer nav {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  text-decoration: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social-link .social-icon {
  font-size: 14px;
}

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

/* Existing privacy policy page */
body:not(.landing-page) main {
  width: min(800px, calc(100% - 40px));
  flex: 1;
  margin: 0 auto;
  padding: 60px 0;
}

body:not(.landing-page) {
  display: flex;
  flex-direction: column;
}

body:not(.landing-page) footer {
  margin-top: auto;
  padding: 30px 20px;
  background: var(--sand);
}

body:not(.landing-page) .footer-content {
  display: flex;
  width: min(800px, 100%);
  justify-content: space-between;
  margin: 0 auto;
  color: var(--ink);
  font-size: 14px;
}

body:not(.landing-page) footer a {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid {
    min-height: 830px;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
  }

  .phone-hero {
    width: 320px;
  }

  .floating-feed {
    left: -12px;
  }

  .floating-location {
    right: -10px;
  }

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

  .feature-card-map {
    grid-row: auto;
  }

  .feature-card-alert {
    grid-column: span 2;
  }

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

  .privacy-list {
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-list div {
    padding: 0 12px;
  }

  .footer-content {
    grid-template-columns: auto 1fr auto;
  }

  .footer-content .copyright {
    display: none;
  }
}

@media (max-width: 760px) {
  .sibling-section {
    padding: 56px 0;
  }

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

  .rail-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 14px;
  }

  .rail-icon {
    width: 44px;
    height: 44px;
  }

  .rail-source {
    width: 100%;
    margin-left: 0;
  }

  .rail-sep {
    display: none;
  }

  .shell {
    width: calc(100% - 32px);
    max-width: 620px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-nav > a:not(.nav-download) {
    display: none;
  }

  .hero-section,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 72px;
  }

  .hero-copy {
    min-width: 0;
    width: 100%;
    padding: 76px 0 46px;
    text-align: center;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(46px, 13vw, 64px);
    text-wrap: balance;
  }

  .hero-lede {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: 17px;
  }

  .hero-actions,
  .store-links-row,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: 690px;
  }

  .phone-hero {
    bottom: -156px;
    width: min(320px, 80vw);
  }

  .floating-feed {
    top: 110px;
    left: 0;
  }

  .floating-location {
    right: 0;
    bottom: 100px;
  }

  .facts-grid div {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .facts-grid span {
    font-size: 11px;
  }

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

  .section-heading,
  .screens-intro {
    display: block;
  }

  .section-heading h2,
  .screens-intro h2 {
    margin-bottom: 22px;
  }

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

  .feature-card,
  .feature-card-map {
    min-height: 280px;
  }

  .feature-card-alert {
    grid-column: auto;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .screen-story,
  .story-alert,
  .story-detail {
    width: min(390px, 88%);
    margin: 0 auto;
  }

  .privacy-card {
    display: block;
    padding: 38px 28px;
  }

  .privacy-mark {
    margin-bottom: 28px;
  }

  .privacy-list {
    margin-top: 28px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta .cta-store-stack {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 110px;
  }

  .footer-content {
    grid-template-columns: 1fr auto;
  }

  .footer-content > p:first-of-type {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 17px;
  }

  .site-nav {
    display: none;
  }

  .hero-copy {
    padding-top: 62px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .store-links-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-proof {
    gap: 14px;
    font-size: 12px;
  }

  .hero-visual {
    height: 620px;
  }

  .floating-card {
    transform: scale(0.88);
  }

  .floating-feed {
    left: -18px;
  }

  .floating-location {
    right: -22px;
  }

  .facts-grid strong {
    font-size: 23px;
  }

  .facts-grid span {
    max-width: 90px;
  }

  .section-heading h2,
  .screens-intro h2 {
    font-size: 42px;
  }

  .feature-card {
    padding: 26px;
  }

  .feature-card-alert {
    display: block;
  }

  .alert-symbol {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .privacy-card {
    border-radius: 26px;
  }

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

  .final-cta {
    display: block;
    text-align: center;
  }

  .final-cta > img {
    margin: 0 auto 26px;
  }

  .final-cta .cta-store-stack {
    margin: 30px auto 0;
    align-items: center;
  }

  .final-cta .app-store-button {
    display: inline-flex;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
