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

:root {
  --ink: #071629;
  --navy: #12315c;
  --blue: #126bc5;
  --blue-strong: #0d67c7;
  --orange: #ff8735;
  --muted: #5d6c80;
  --soft: #eef6ff;
  --panel: rgba(255, 255, 255, 0.9);
  --line: rgba(18, 107, 197, 0.16);
  --shadow: 0 24px 80px rgba(12, 45, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(18, 107, 197, 0.14), transparent 20rem),
    radial-gradient(circle at 100% 20%, rgba(255, 135, 53, 0.13), transparent 18rem),
    linear-gradient(135deg, #f5fbff 0%, #ffffff 42%, #eef6ff 100%);
}

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

.page-shell {
  position: relative;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 0 0 28px;
}

.shape {
  position: fixed;
  z-index: -1;
  border: 12px solid rgba(18, 107, 197, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.shape-left {
  top: -70px;
  left: -88px;
  width: 280px;
  height: 280px;
}

.shape-right {
  right: -96px;
  bottom: 12%;
  width: 250px;
  height: 250px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  min-height: 82px;
  padding: 0 clamp(18px, 4vw, 52px);
  border: 0;
  border-bottom: 1px solid rgba(18, 107, 197, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(19, 55, 96, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

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

.desktop-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 800;
}

.desktop-nav a {
  color: #17243a;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-scrim {
  display: none;
}

.mobile-drawer {
  display: none;
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  padding: 22px;
  background: #ffffff;
  box-shadow: -24px 0 70px rgba(7, 22, 41, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.drawer-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer nav {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.mobile-drawer nav a {
  padding: 16px 14px;
  border-radius: 16px;
  background: #f4f8ff;
  color: var(--ink);
  font-weight: 900;
}

.header-cta,
.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 900;
}

.header-cta,
.primary-link {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), #074f9f);
  box-shadow: 0 16px 34px rgba(18, 107, 197, 0.25);
}

.secondary-link {
  border: 1px solid rgba(18, 107, 197, 0.28);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 68px clamp(22px, 5vw, 64px) 56px;
}

.hero-copy {
  animation: slideUp 650ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #105baf;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-lead,
.split-section p,
.premium-banner p,
.legal-lead,
.premium-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  line-height: 1.65;
}

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

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
  animation: floatIn 800ms ease both 120ms;
}

.phone {
  position: relative;
  width: min(300px, 78vw);
  padding: 14px;
  border: 10px solid #0b1320;
  border-radius: 44px;
  background: #111827;
  box-shadow: 0 36px 90px rgba(8, 24, 47, 0.28);
  transform: rotate(-1deg);
}

.phone::before,
.phone::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
}

.phone::before {
  inset: -68px -58px auto auto;
  width: 190px;
  height: 190px;
  background: rgba(18, 107, 197, 0.14);
}

.phone::after {
  right: -26px;
  bottom: 52px;
  width: 20px;
  height: 20px;
  background: var(--orange);
}

.phone-top {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: #090d15;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 570px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 18%, rgba(85, 200, 255, 0.22), transparent 7rem),
    linear-gradient(180deg, #f9fcff, #edf6ff);
}

.app-title {
  padding: 30px 18px 12px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 900;
}

.map-card {
  position: relative;
  height: 285px;
  margin: 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(18, 107, 197, 0.14) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgba(18, 107, 197, 0.12) 49%, transparent 51%),
    #ffffff;
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 5px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 10px 24px rgba(12, 45, 86, 0.22);
}

.pin-one {
  top: 45px;
  left: 50px;
}

.pin-two {
  top: 124px;
  right: 58px;
}

.pin-three {
  right: 96px;
  bottom: 54px;
}

.route-line {
  position: absolute;
  top: 74px;
  left: 70px;
  width: 150px;
  height: 110px;
  border-right: 4px dashed rgba(18, 107, 197, 0.35);
  border-bottom: 4px dashed rgba(18, 107, 197, 0.35);
  border-radius: 0 0 42px 0;
}

.feed-mini {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.feed-mini div {
  height: 48px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(12, 45, 86, 0.08);
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 16px 14px;
  padding: 12px;
  border-radius: 20px;
  background: #081625;
}

.phone-nav span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.feature-strip article,
.info-cards article,
.premium-banner,
.testimonial,
.legal-card,
.premium-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-strip article {
  min-height: 246px;
  padding: 24px;
  border-radius: 28px;
}

.feature-strip h2 {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.feature-strip p,
.info-cards span,
.site-footer span,
.premium-card li,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer small {
  color: var(--muted);
  font-weight: 800;
}

.feature-icon {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: #eaf4ff;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.chat-icon::before {
  inset: 17px 14px 25px;
  border: 5px solid var(--blue);
  border-radius: 15px;
}

.chat-icon::after {
  right: 17px;
  bottom: 17px;
  width: 17px;
  height: 17px;
  border-radius: 0 0 9px 0;
  background: var(--orange);
}

.runner-icon::before {
  top: 17px;
  left: 20px;
  width: 30px;
  height: 30px;
  border-top: 8px solid var(--orange);
  border-right: 8px solid var(--blue);
  transform: rotate(-18deg);
}

.runner-icon::after {
  right: 12px;
  bottom: 16px;
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.market-icon::before {
  top: 19px;
  left: 16px;
  width: 42px;
  height: 34px;
  border: 5px solid var(--orange);
  border-radius: 10px;
}

.market-icon::after {
  top: 13px;
  left: 27px;
  width: 20px;
  height: 16px;
  border: 5px solid var(--blue);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.boost-icon::before {
  inset: 18px 18px 20px;
  border: 5px solid var(--blue);
  border-radius: 999px;
}

.boost-icon::after {
  top: 31px;
  left: 31px;
  width: 27px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-38deg);
}

.split-section,
.premium-banner,
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 38px;
  border-radius: 34px;
}

.info-cards {
  display: grid;
  gap: 14px;
}

.info-cards article {
  padding: 20px;
  border-radius: 22px;
}

.info-cards strong,
.premium-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.premium-banner {
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, rgba(18, 107, 197, 0.12), rgba(255, 255, 255, 0.88));
}

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

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 12px, transparent 13px),
    linear-gradient(135deg, var(--blue), var(--orange));
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.legal-page,
.premium-page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 58px 0 36px;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.simple-header .brand img {
  width: 46px;
  height: 46px;
}

.legal-hero,
.premium-hero {
  margin-bottom: 24px;
}

.legal-hero h1,
.premium-hero h1 {
  color: var(--ink);
}

.legal-grid,
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card,
.premium-card {
  padding: 28px;
  border-radius: 28px;
}

.legal-card ul,
.premium-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.premium-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(18, 107, 197, 0.13), rgba(255, 255, 255, 0.92));
}

.public-page {
  min-height: 100vh;
}

.content-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 36px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 135, 53, 0.15), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.88));
  box-shadow: var(--shadow);
}

.page-hero::after {
  position: absolute;
  right: -48px;
  bottom: -74px;
  width: 220px;
  height: 220px;
  border: 12px solid rgba(18, 107, 197, 0.13);
  border-radius: 999px;
  content: "";
}

.page-hero h1 {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.compact-hero h1 {
  max-width: 760px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.story-panel {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.detail-card {
  padding: 28px;
  border-radius: 28px;
}

.detail-card h2 {
  margin-top: 16px;
}

.detail-card p,
.story-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.detail-card a {
  color: var(--blue-strong);
  font-weight: 900;
}

.detail-icon {
  display: inline-flex;
  min-width: 54px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 12px;
  color: var(--blue-strong);
  background: #eaf4ff;
  font-weight: 900;
}

.story-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
  padding: 32px;
  border-radius: 30px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-scrim {
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(7, 22, 41, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-drawer {
    display: block;
  }

  .nav-toggle:checked ~ .mobile-scrim {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .mobile-drawer {
    transform: translateX(0);
  }

  .hero-section,
  .split-section,
  .premium-banner,
  .testimonial {
    grid-template-columns: 1fr;
    padding: 38px 22px;
  }

  .feature-strip,
  .legal-grid,
  .premium-grid,
  .detail-grid,
  .detail-grid.three-cols,
  .story-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: 100%;
    padding-top: 0;
  }

  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .hero-section {
    padding: 38px 18px 28px;
  }

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

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone {
    width: min(280px, 88vw);
  }

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

  .feature-strip,
  .legal-grid,
  .premium-grid,
  .detail-grid,
  .detail-grid.three-cols,
  .story-panel {
    grid-template-columns: 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .content-page {
    width: 100%;
    padding: 24px 14px 30px;
  }

  .page-hero {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .feature-strip {
    gap: 14px;
  }

  .split-section,
  .premium-banner,
  .testimonial {
    margin-right: 14px;
    margin-left: 14px;
    padding: 28px 20px;
  }

  .site-footer,
  .simple-header {
    flex-direction: column;
    align-items: flex-start;
  }

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