:root {
  color-scheme: light;
  --bg: #f2f2f7;
  --card: #ffffff;
  --ink: #111113;
  --muted: #6e6e73;
  --line: #e5e5ea;
  --blue: #007aff;
  --blue-dark: #0057d9;
  --blue-soft: #eaf3ff;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  margin: 0;
}

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

.page {
  min-height: 100vh;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 22px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  display: block;
  flex: 0 0 28px;
  height: 28px;
  width: 28px;
}

.brand-mark img {
  display: block;
  height: 100%;
  width: 100%;
}

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

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 430px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 54px 24px 78px;
}

.eyebrow {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
  margin: 24px 0 0;
  max-width: 680px;
}

.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-secondary {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.11);
  overflow: hidden;
  padding: 8px;
}

.hero-image {
  aspect-ratio: 4 / 5;
  background-image: url("https://images.pexels.com/photos/7851862/pexels-photo-7851862.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-position: center;
  background-size: cover;
  border-radius: 26px;
  min-height: 430px;
  position: relative;
}

.phone-panel {
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  bottom: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  left: 18px;
  padding: 16px;
  position: absolute;
  right: 18px;
}

.phone-panel strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.phone-panel p {
  color: var(--muted);
  line-height: 1.35;
  margin: 0;
}

.section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 24px 76px;
}

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 650;
  line-height: 1.05;
  margin: 0 0 28px;
}

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

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
}

.feature-icon {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 18px;
  color: var(--blue);
  display: flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.feature h2 {
  font-size: 22px;
  font-weight: 650;
  margin: 0 0 10px;
}

.feature p,
.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pricing {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
}

.plan {
  border-radius: 26px;
  padding: 24px;
}

.plan-highlight {
  background: var(--blue-soft);
}

.price {
  font-size: 44px;
  font-weight: 700;
  margin: 8px 0;
}

.price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1120px;
  padding: 26px 24px 44px;
}

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

.footer a,
.footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.legal {
  margin: 0 auto;
  max-width: 820px;
  padding: 54px 24px 80px;
}

.legal h1 {
  font-size: clamp(38px, 6vw, 62px);
  margin-bottom: 16px;
}

.legal h2 {
  font-size: 24px;
  margin: 34px 0 10px;
}

.notice {
  background: #fff7d6;
  border: 1px solid #f0d36c;
  border-radius: 20px;
  color: #755f00;
  line-height: 1.45;
  margin: 24px 0;
  padding: 16px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-image {
    min-height: 390px;
  }

  .grid,
  .pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }
}
