:root {
  --white: #ffffff;
  --off-white: #f8f8f8;
  --soft-gray: #e0e0e0;
  --mid-gray: #b0b0b0;
  --sage: #a8bba0;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --radius: 20px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-xxl: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  line-height: 1.6;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 12px;
}

.nav .brand {
  font-size: 20px;
  font-weight: 300;
}

.nav nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: var(--space-xxl) 6vw;
  align-items: center;
}

.hero-copy h1 {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  margin: 16px 0 20px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--mid-gray);
}

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

.button {
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--sage);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
}

.caption {
  font-size: 13px;
  color: var(--mid-gray);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.screen-card {
  width: 280px;
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mid-gray);
}

.screen-block {
  height: 18px;
  background: var(--off-white);
  border-radius: 10px;
}

.screen-block.small {
  width: 65%;
}

.screen-row {
  display: flex;
  gap: 10px;
}

.chip {
  height: 26px;
  width: 70px;
  border: 1px solid var(--soft-gray);
  border-radius: 999px;
}

.ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(168, 187, 160, 0.4);
  border-radius: 50%;
  top: -40px;
  right: 10px;
}

.grid {
  padding: 0 6vw var(--space-xxl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius);
  padding: 24px;
}

.card h2,
.card h3 {
  font-weight: 300;
  margin-bottom: 12px;
}

.split {
  padding: var(--space-xxl) 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.split ul {
  margin-top: 16px;
  list-style: none;
  color: var(--muted);
}

.split ul li {
  margin-bottom: 8px;
}

.progress {
  height: 8px;
  background: var(--off-white);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 45%;
  background: var(--sage);
}

.focus {
  padding: var(--space-xxl) 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.focus-stat {
  display: grid;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius);
  padding: 24px;
}

.privacy {
  padding: 0 6vw var(--space-xxl);
}

.card.wide {
  padding: 32px;
}

.download {
  padding: var(--space-xxl) 6vw;
  text-align: center;
}

.footer {
  padding: 28px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--soft-gray);
}

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

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 32px;
  }

  .ring {
    display: none;
  }
}
