:root {
  --blue: #0A84FF;
  --blue-light: #4DA3FF;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --border: #e5e5ea;
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { opacity: 0.85; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.lang-switch select {
  font: inherit;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #4DA3FF 0%, #0A84FF 100%);
  color: white;
  padding: 96px 0 120px;
  text-align: center;
}
.hero img.icon {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero p.tagline {
  font-size: 22px;
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: white;
  color: var(--blue);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn:hover { transform: translateY(-1px); opacity: 0.95; }
.btn.disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

/* Sections */
section { padding: 96px 0; }
section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 48px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feature .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p { color: var(--text-muted); font-size: 15px; }

/* Pricing */
.pricing { background: var(--bg-soft); }
.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.pricing-card .trial-badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-card .price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pricing-card .price-period {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
}
.pricing-card p.after-trial {
  color: var(--text-muted);
  margin: 16px 0 28px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 20px; }

/* Privacy page */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal h1 { font-size: 40px; margin-bottom: 24px; letter-spacing: -0.01em; }
.legal h2 { font-size: 22px; margin: 32px 0 12px; }
.legal p { color: var(--text-muted); margin-bottom: 12px; }
.legal .placeholder {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .hero { padding: 64px 0 80px; }
  .hero h1 { font-size: 40px; }
  .hero p.tagline { font-size: 18px; }
  section { padding: 64px 0; }
  section h2 { font-size: 30px; margin-bottom: 32px; }
  .pricing-card { padding: 28px; }
  .pricing-card .price { font-size: 44px; }
}
