@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --bg: #03100d;
  --bg-soft: #071814;
  --panel: #082019;
  --panel-soft: #0a261e;
  --text: #edf6f1;
  --muted: #a7c6b2;
  --accent: #2db965;
  --accent-strong: #24a759;
  --line: rgba(45, 185, 101, 0.28);
  --line-soft: rgba(45, 185, 101, 0.16);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(45, 185, 101, 0.06), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(45, 185, 101, 0.04), transparent 24%),
    #03100d;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(3, 16, 13, 0.88), rgba(3, 16, 13, 0.94)),
    linear-gradient(rgba(45, 185, 101, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 185, 101, 0.035) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 0 48px;
}

.nav,
.hero,
.stats-row,
.content-section,
.notify-section,
.footer {
  padding-left: 64px;
  padding-right: 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #32c36b, #24a759);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-wordmark strong,
.brand-wordmark em {
  font-style: normal;
}

.brand-wordmark em {
  color: var(--accent);
}

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

.nav-links a {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #a9cbc2;
  font-size: 17px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-soft);
}

.nav-links .nav-cta {
  background: linear-gradient(180deg, #35c86e, #2db965);
  color: #03100d;
  min-width: 172px;
  text-align: center;
}

.nav-links .nav-cta:hover {
  color: #03100d;
  border-color: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
  gap: 52px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.content-section h2,
.notify-section h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(86px, 10vw, 118px);
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.hero-accent {
  color: var(--accent);
}

.hero-text {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
  margin-top: 56px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.button-outline {
  background: rgba(255, 255, 255, 0.01);
}

.button-solid {
  background: linear-gradient(180deg, #35c86e, #2db965);
  color: #03100d;
  border-color: transparent;
}

.ios-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 32, 25, 0.92);
}

.ios-card span {
  font-size: 15px;
}

.ios-card small {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(45, 185, 101, 0.14);
  color: var(--accent);
  font-size: 13px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 382px);
  padding: 20px;
  border-radius: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 34, 27, 0.96), rgba(9, 28, 22, 0.96));
  box-shadow:
    inset 0 0 0 18px rgba(12, 41, 33, 0.82),
    0 22px 46px var(--shadow);
}

.phone-screen {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #0a2b21, #082118);
}

.phone-topbar {
  position: absolute;
  top: 18px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(2, 14, 11, 0.9);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 31px;
  height: 31px;
  margin-right: -8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(5, 26, 20, 0.94);
  background: #35c86e;
  color: #04110d;
  font-size: 12px;
}

.avatars span:nth-child(2),
.avatars span:nth-child(3) {
  background: #4f8f7d;
  color: #edf6f1;
}

.topbar-label {
  color: #b6dad0;
  font-size: 18px;
}

.live-label {
  margin-left: auto;
  color: var(--accent);
  font-size: 17px;
}

.live-label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.phone-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 185, 101, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 185, 101, 0.06) 1px, transparent 1px);
  background-size: 24% 18%;
}

.route {
  position: absolute;
  border-color: rgba(45, 185, 101, 0.18);
  border-style: dashed;
  border-width: 0 4px 4px 0;
}

.route-a {
  left: 19%;
  top: 44%;
  width: 27%;
  height: 25%;
  border-radius: 0 0 90px 0;
  transform: rotate(30deg);
}

.route-b {
  left: 48%;
  top: 30%;
  width: 21%;
  height: 20%;
  border-radius: 0 0 90px 0;
  transform: rotate(-18deg);
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(45, 185, 101, 0.2);
}

.map-dot-start {
  left: 11%;
  bottom: 24%;
}

.map-dot-end {
  right: 15%;
  top: 18%;
}

.active-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 20px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(45, 185, 101, 0.18);
  background: rgba(3, 14, 10, 0.94);
}

.active-card p {
  margin: 0;
  color: #b9dbd0;
  font-size: 17px;
}

.active-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.active-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.active-stats strong {
  display: block;
  color: var(--accent);
  font-size: 18px;
}

.active-stats span {
  color: #b3d4cb;
  font-size: 14px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(56px, 6vw, 74px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
}

.content-section {
  padding-top: 112px;
}

.content-section h2 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(58px, 7vw, 80px);
  line-height: 1.04;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 54px;
}

.feature-card,
.screenshot-card,
.review-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 31, 24, 0.98), rgba(8, 27, 21, 0.98));
}

.feature-card {
  min-height: 452px;
  padding: 38px;
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(45, 185, 101, 0.1);
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.feature-card h3,
.screenshot-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
}

.feature-card p,
.screenshot-card p,
.review-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.68;
}

.screenshot-card {
  overflow: hidden;
}

.screenshot-card__image {
  height: 340px;
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 37, 29, 0.9);
}

.screenshot-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.screenshot-card__copy {
  padding: 28px 32px 30px;
}

.review-card {
  padding: 30px;
}

.rating {
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
}

.review-card span {
  display: block;
  margin-top: 24px;
  color: #81a79b;
  font-size: 18px;
}

.notify-section {
  margin: 126px 64px 0;
  padding: 72px 48px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 32, 25, 0.98), rgba(10, 35, 27, 0.98));
}

.notify-section h2 {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(54px, 6vw, 72px);
  line-height: 1.1;
}

.notify-section p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 22px;
}

.notify-form {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 38px auto 0;
}

input[type="email"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--text);
  font: inherit;
  font-size: 18px;
}

input::placeholder {
  color: #6f8f86;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
  margin-top: 74px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.brand-footer .brand-mark {
  display: none;
}

.brand-footer {
  gap: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.copyright {
  color: #74978d;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero,
  .card-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

  .phone-wrap {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .nav,
  .hero,
  .stats-row,
  .content-section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .notify-section {
    margin-left: 24px;
    margin-right: 24px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .card-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    grid-column: auto;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 86px);
  }

  .hero-text,
  .feature-card p,
  .screenshot-card p,
  .review-card p,
  .notify-section p {
    font-size: 18px;
  }

  .content-section h2,
  .notify-section h2 {
    font-size: 44px;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-top: 16px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 15px;
  }

  .brand-wordmark {
    font-size: 24px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .ios-card {
    width: 100%;
  }

  .phone-screen {
    min-height: 560px;
  }

  .screenshot-card__image {
    height: 250px;
  }

  .notify-section {
    padding: 52px 22px;
    border-radius: 28px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(3, 16, 13, 0.12), rgba(3, 16, 13, 0.96) 35%);
    border-top: 1px solid var(--line-soft);
  }

  .mobile-cta .button {
    width: 100%;
  }

  .footer {
    padding-bottom: 84px;
  }
}

