:root {
  --bg: #f7f4ee;
  --paper: #fcfbf8;
  --text: #121212;
  --muted: #6f6a62;
  --line: #e7e1d8;
  --accent: #0f766e;
  --accent-soft: #d7efec;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(1240px, 100% - 48px);
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  border: none;
  border-radius: 14px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.16s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--text);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 238, 0.72);
  border-bottom: 1px solid rgba(231, 225, 216, 0.75);
}
.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link {
  font-size: 14px;
  color: var(--muted);
  transition: 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
}

.hero {
  padding: 72px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.09em;
  max-width: 760px;
  margin-bottom: 28px;
}
.hero p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.visual {
  position: relative;
  margin-top: 90px;
}

.glow {
  position: absolute;
  inset: auto 10% -80px 10%;
  height: 180px;
  background: rgba(15, 118, 110, 0.12);
  filter: blur(70px);
}

.app-preview {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 40px 100px rgba(0, 0, 0, 0.05);
}

.statement {
  padding: 150px 0;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.statement h2 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.08em;
}
.statement-right {
  padding-top: 18px;
}
.statement-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.statement-block:last-child {
  border-bottom: 1px solid var(--line);
}
.statement-block h3 {
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}
.statement-block p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px;
}

.features {
  padding-bottom: 150px;
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-header h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.08em;
  margin-bottom: 18px;
}
.features-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  transition: 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.quote {
  padding-bottom: 150px;
}
.quote-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 72px;
}
.quote-box p {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  max-width: 920px;
  margin-bottom: 26px;
}
.quote-meta {
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  padding-bottom: 150px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
}
.price h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.price p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 26px;
}
.price ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}
.price li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.value {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer {
  padding: 40px 0 70px;
}
.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .statement-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    max-width: none;
  }
}
@media (max-width: 680px) {
  .nav-link {
    display: none;
  }
  .hero {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .statement {
    padding: 100px 0;
  }
  .features,
  .pricing {
    padding-bottom: 100px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .quote {
    padding-bottom: 100px;
  }
  .quote-box {
    padding: 40px 26px;
  }
}/*# sourceMappingURL=main.css.map */