:root {
  --navy: #0a1628;
  --navy-light: #1a2a42;
  --navy-deep: #07101d;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --white: #ffffff;
  --muted: #c5d0de;
  --line: rgba(255, 255, 255, 0.1);
  --red: #dc2626;
  --green: #22c55e;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --header: 76px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 40% at 100% -10%, rgba(20, 184, 166, 0.14), transparent 55%),
    var(--navy);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.5;
  color-scheme: dark;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
}

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

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

::selection {
  background: rgba(20, 184, 166, 0.35);
  color: var(--white);
}

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

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 22, 40, 0.94);
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo-frame {
  width: 48px;
  height: 48px;
  display: block;
  flex: none;
  background: transparent;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-frame-lg {
  width: 112px;
  height: 112px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a:not(.btn) {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  border: 0;
  cursor: pointer;
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--navy-light);
  color: var(--white);
  place-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 48px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 72% 40%, #000 15%, transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid,
.sos-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

h1,
.section h2,
.sos h2,
.cta-panel h2,
.prose h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  max-width: 12ch;
}

h1 em {
  font-style: italic;
  font-weight: 520;
  color: var(--teal);
}

.lede,
.section-lead {
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.55;
  max-width: 38rem;
}

.lede {
  margin-top: 20px;
}

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

.store {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  min-width: 210px;
  padding: 10px 16px;
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}

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

.store small {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #3d4d63;
}

.store strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-visual {
  display: grid;
  justify-items: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 68%);
  filter: blur(6px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  background: var(--navy-deep);
  border-radius: 36px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow), 0 0 80px rgba(20, 184, 166, 0.08);
}

.phone-screen {
  position: relative;
  min-height: 620px;
  border-radius: 26px;
  background: linear-gradient(180deg, #12233a 0%, var(--navy) 40%);
  padding: 8px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.phone-screen.is-center {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}

.phone-screen.is-center .bubble,
.phone-screen.is-center .report-actions {
  width: 100%;
  text-align: left;
}

.phone-screen.is-center .report-actions {
  margin-top: 8px;
}

.island {
  width: 92px;
  height: 18px;
  border-radius: 20px;
  background: #000;
  margin: 8px auto 6px;
  flex: none;
}

.phone-screen.is-center .island {
  position: absolute;
  top: 8px;
}

.phone-kicker {
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 600;
}

.phone-title {
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 560;
}

.call-name {
  font-size: 3.4rem;
}

.phone-copy {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 16em;
}

.splash-map {
  position: relative;
  height: 280px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 42% 68%, rgba(20, 184, 166, 0.2), transparent 36%),
    #122033;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.road {
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
}

.road.h {
  height: 3px;
  left: 0;
  right: 0;
}

.road.v {
  width: 3px;
  top: 0;
  bottom: 0;
}

.road.h.a { top: 34%; }
.road.h.b { top: 68%; }
.road.v.a { left: 28%; }
.road.v.b { left: 70%; }

.marker {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}

.m1 { top: 16%; left: 14%; }
.m2 { top: 46%; left: 58%; }

.me {
  position: absolute;
  left: 30%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
}

.me i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.25);
}

.sheet {
  margin-top: auto;
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 18px;
}

.sheet-kicker {
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
}

.sheet-title {
  font-size: 1.35rem;
  font-weight: 650;
  margin-top: 4px;
}

.sheet-meta {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 4px;
}

.home-bar {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 112px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.bubble {
  background: var(--navy-light);
  border-radius: 18px 18px 18px 6px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
}

.bubble p {
  font-size: 1.3rem;
  line-height: 1.35;
}

.bubble p + p {
  margin-top: 6px;
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  width: fit-content;
}

.safe-btn {
  width: min(100%, 260px);
  min-height: 68px;
  border-radius: 16px;
  background: var(--green);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.call-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.call-btn {
  flex: 1;
  min-height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
}

.call-btn.decline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.call-btn.answer {
  background: var(--teal);
  color: var(--navy);
}

.report-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.report-action {
  min-height: 104px;
  border-radius: 18px;
  border: 1.5px solid rgba(20, 184, 166, 0.7);
  background: rgba(20, 184, 166, 0.08);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.report-action strong {
  font-size: 1.5rem;
  font-weight: 650;
}

.report-action span {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Red is reserved for the SOS control. */
.sos-ring {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  border: 1px solid rgba(220, 38, 38, 0.45);
  display: grid;
  place-items: center;
  animation: sos-pulse 2.8s ease-in-out infinite;
}

.sos-btn {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.35);
}

@keyframes sos-pulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.section,
.sos,
.download {
  scroll-margin-top: 84px;
}

.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section h2,
.sos h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  max-width: 16ch;
}

.section-lead {
  margin-top: 14px;
}

.features {
  display: grid;
  gap: 16px;
}

.feature {
  background: rgba(26, 42, 66, 0.85);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.1);
}

.feature-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 16px 0 8px;
}

.feature p {
  color: var(--muted);
  font-size: 1.06rem;
}

.swipe-hint {
  margin-top: 12px;
  color: var(--teal);
  font-weight: 600;
  font-size: 1.05rem;
}

.phones {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scroll-padding-inline: 4px;
}

.phone-block {
  flex: 0 0 min(86vw, 340px);
  scroll-snap-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.phone-block figcaption {
  text-align: center;
  max-width: 340px;
}

.phone-block h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.phone-block figcaption p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 6px;
}

.phones::-webkit-scrollbar {
  height: 10px;
}

.phones::-webkit-scrollbar-thumb {
  background: rgba(20, 184, 166, 0.55);
  border-radius: 99px;
}

.sos {
  background: var(--navy-light);
  padding: 80px 0;
}

.sos-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
}

.sos-points li {
  font-size: 1.15rem;
  padding-left: 28px;
  position: relative;
}

.sos-points li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 0.4em;
}

.plans {
  display: grid;
  gap: 16px;
}

.plan {
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 22px 12px;
  display: flex;
  flex-direction: column;
}

.plan-paid {
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.2);
}

.plan-tag {
  width: fit-content;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 6px 12px;
}

.plan h3 {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 560;
  margin: 14px 0 8px;
  letter-spacing: -0.03em;
}

.plan-for {
  color: var(--muted);
  font-size: 1.08rem;
  min-height: 3.3em;
}

.plan-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 18px 0 0;
}

.plan-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.plan-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-wrap {
  width: min(800px, calc(100% - 40px));
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  color: var(--white);
  border: 0;
  border-top: 1px solid var(--line);
  padding: 20px 4px;
  font: inherit;
  font-size: 1.28rem;
  font-weight: 560;
  cursor: pointer;
}

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

.faq-item button:hover {
  color: var(--teal);
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  flex: none;
  margin-right: 6px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(225deg);
  margin-top: 6px;
}

.faq-panel {
  padding: 0 8px 18px;
}

.faq-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 62ch;
}

.faq-panel[hidden] {
  display: none !important;
}

.cta-panel {
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 28px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.cta-panel h2,
.cta-panel .section-lead {
  max-width: 18ch;
}

.cta-panel .section-lead {
  max-width: 36rem;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-name {
  font-weight: 650;
  font-size: 1.15rem;
}

.footer-note,
.footer-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: var(--teal);
}

.prose {
  width: min(740px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.prose h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 14ch;
}

.prose .updated {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.08rem;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  margin: 2.1rem 0 0.7rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.prose p {
  margin-top: 0.9rem;
}

.prose strong {
  color: var(--white);
  font-weight: 650;
}

.prose ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.prose li {
  margin: 0.45rem 0;
}

.prose a:not(.btn) {
  color: var(--teal);
}

.prose .btn {
  margin-top: 8px;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .swipe-hint {
    display: none;
  }

  .phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    justify-items: center;
    gap: 48px 24px;
  }

  .phone-block {
    flex: none;
  }

  .plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero-grid,
  .sos-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

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

  .footer-inner {
    grid-template-columns: 1.4fr auto auto;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .store {
    width: 100%;
  }
}

@media (max-width: 879px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    display: none;
    position: fixed;
    z-index: 35;
    top: calc(var(--header) + 8px);
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-light);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a:not(.btn) {
    font-size: 1.2rem;
    padding: 14px 12px;
  }

  .nav .btn {
    margin-top: 6px;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .store:hover {
    transform: none;
  }
}
