:root {
  color-scheme: light;
  --bg: oklch(0.985 0.006 52);
  --paper: oklch(0.965 0.012 58);
  --ink: oklch(0.22 0.025 45);
  --muted: oklch(0.46 0.025 45);
  --line: oklch(0.86 0.018 58);
  --brand: oklch(0.34 0.055 31);
  --brand-dark: oklch(0.28 0.048 31);
  --butter: oklch(0.94 0.065 92);
  --mist: oklch(0.86 0.035 220);
  --cream: oklch(0.975 0.01 62);
  --radius: 18px;
  --shadow: 0 22px 60px oklch(0.28 0.03 45 / 0.12);
  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:
    radial-gradient(circle at top left, oklch(0.87 0.08 78 / 0.5), transparent 28rem),
    linear-gradient(180deg, var(--bg), oklch(0.956 0.012 58));
  line-height: 1.55;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: oklch(0.985 0.006 52);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-dark);
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--butter);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 30px oklch(0.28 0.048 31 / 0.18);
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  box-shadow: none;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.phone-scene {
  position: relative;
  min-height: 580px;
}

.phone {
  position: absolute;
  inset: 0 6% auto auto;
  width: min(360px, 78vw);
  min-height: 610px;
  border: 1px solid oklch(0.76 0.018 55);
  border-radius: 44px;
  background: oklch(0.99 0.006 62);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-bar {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 12px;
  border-bottom: 1px solid var(--line);
}

.avatar-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--butter), var(--brand));
}

.activity-list {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.activity {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.activity strong {
  display: block;
}

.activity span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-strip {
  height: 128px;
  margin: 6px 20px 20px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, transparent 42%, oklch(0.78 0.035 220 / 0.6) 43% 48%, transparent 49%),
    linear-gradient(35deg, var(--mist), var(--butter));
}

.section {
  padding: 84px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(0.98 0.009 58 / 0.72);
}

.feature p,
.policy p,
.policy li {
  color: var(--muted);
}

.band {
  background: var(--brand-dark);
  color: var(--cream);
}

.band .lead {
  color: oklch(0.86 0.035 220);
}

.policy {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 90px;
}

.policy h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.policy h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}

.policy ul {
  padding-left: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: oklch(0.96 0.01 58);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .phone-scene {
    min-height: 480px;
  }

  .phone {
    position: relative;
    inset: auto;
    width: min(100%, 360px);
    min-height: 500px;
    margin: 0 auto;
  }

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