:root {
  color-scheme: light;
  --ink: #18202b;
  --muted: #5a6678;
  --paper: #fffdf5;
  --mist: #eef5ec;
  --leaf: #47b86b;
  --leaf-dark: #176d39;
  --sky: #58aee4;
  --sun: #ffd35a;
  --coral: #ff7b54;
  --line: rgba(24, 32, 43, 0.13);
  --shadow: 0 22px 70px rgba(23, 62, 76, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 32, 43, 0.08);
  background: rgba(255, 253, 245, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-actions > a:not(.button) {
  padding: 10px 8px;
  color: var(--muted);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: var(--leaf-dark);
  box-shadow: 0 12px 28px rgba(23, 109, 57, 0.22);
}

.button-secondary {
  color: var(--leaf-dark);
  border-color: rgba(23, 109, 57, 0.22);
  background: #ffffff;
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(24, 32, 43, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

.hero {
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 211, 90, 0.45), transparent 23rem),
    linear-gradient(145deg, #f7ffe9 0%, #eff8ff 44%, #fff3eb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  padding: clamp(24px, 4vw, 42px) 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(23, 109, 57, 0.18);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: rgba(71, 184, 107, 0.13);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lead {
  max-width: 620px;
  color: #394759;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

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

.hero-media {
  position: relative;
  min-height: 470px;
}

.phone {
  position: absolute;
  width: min(43%, 224px);
  border: 10px solid #17202b;
  border-radius: 36px;
  background: #17202b;
  box-shadow: var(--shadow);
}

.phone-main {
  right: 25%;
  top: 0;
  transform: rotate(-6deg);
}

.phone-side {
  right: 0;
  top: 72px;
  transform: rotate(8deg);
}

.city-section,
.modes-section,
.screenshots-section,
.features-section,
.cta-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.city-section {
  padding-top: clamp(22px, 4vw, 36px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
}

.split p:last-child,
.section-heading p,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.modes-section {
  background: #eaf6ee;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mode-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(24, 32, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(22, 73, 48, 0.08);
}

.mode-card:nth-child(2) {
  background: #fff8dd;
}

.mode-card:nth-child(3) {
  background: #eef6ff;
}

.mode-number {
  color: var(--coral);
  font-weight: 950;
}

.mode-card p {
  color: var(--muted);
}

.screenshots-section {
  overflow: hidden;
  background: #ffffff;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-strip img {
  width: 100%;
  border: 8px solid #17202b;
  border-radius: 30px;
  background: #17202b;
  box-shadow: 0 16px 36px rgba(23, 62, 76, 0.16);
}

.screenshot-strip img:nth-child(even) {
  margin-top: 36px;
}

.features-section {
  background:
    linear-gradient(180deg, rgba(255, 211, 90, 0.16), transparent),
    #f8fbf5;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 18px 22px 18px 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #273344;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--sky));
}

.cta-section {
  background: #193047;
  color: #ffffff;
}

.cta {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 5vw, 56px);
}

.cta img {
  width: 130px;
}

.cta .eyebrow {
  color: #efffed;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.cta div {
  display: grid;
  gap: 12px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #122336;
  color: rgba(255, 255, 255, 0.74);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 0.95rem;
}

.footer-content div {
  display: flex;
  gap: 16px;
}

.policy-main {
  padding: clamp(52px, 8vw, 96px) 0;
  background:
    linear-gradient(180deg, rgba(71, 184, 107, 0.12), transparent 360px),
    var(--paper);
}

.policy-wrap {
  max-width: 920px;
}

.policy-hero {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.policy-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.policy-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-article {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(23, 62, 76, 0.1);
}

.policy-article section {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 4vw, 30px);
  border-bottom: 1px solid rgba(24, 32, 43, 0.1);
}

.policy-article section:last-child {
  border-bottom: 0;
}

.policy-article h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.1;
}

.policy-article p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .feature-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .phone {
    width: min(46%, 285px);
  }

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

  .mode-card {
    min-height: 0;
  }

  .screenshot-strip {
    overflow-x: auto;
    margin-inline: -20px;
    padding: 0 20px 18px;
    scroll-snap-type: x mandatory;
  }

  .screenshot-strip img {
    min-width: 220px;
    scroll-snap-align: start;
  }

  .sticky-heading {
    position: static;
  }

  .cta {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    align-items: center;
    padding: 12px 0;
  }

  .brand img {
    width: 118px;
    height: 50px;
  }

  .nav-actions {
    width: auto;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-actions .button {
    min-height: 40px;
    padding: 8px 12px;
  }

  .nav-actions > a:not(.button) {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .hero-grid {
    padding-top: 24px;
    gap: 18px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-media {
    min-height: 250px;
  }

  .phone {
    width: min(42%, 132px);
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-main {
    left: 4%;
    right: auto;
  }

  .phone-side {
    right: 4%;
    top: 40px;
  }

  .city-section,
  .modes-section,
  .screenshots-section,
  .features-section,
  .cta-section {
    padding: 58px 0;
  }

  .city-section {
    padding-top: 22px;
  }

  .footer-content,
  .footer-content div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-media {
    min-height: 228px;
  }

  .phone {
    width: min(42%, 126px);
  }

  .hero-actions .button,
  .cta .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
