/* LiveTranslate — shared stylesheet */
:root {
  --bg-0: #0b0b12;
  --bg-1: #141421;
  --bg-2: #1c1c2e;
  --border: #26263a;
  --text: #e8e8f0;
  --text-dim: #9a9ab0;
  --text-mute: #6b6b85;
  --accent: #7c5cff;
  --accent-2: #a78bfa;
  --success: #4aff8b;
  --warn: #ffb84a;
  --danger: #ff6b7a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ─── Header / Nav ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.brand-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: #fff;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0; padding: 0;
}
.nav ul a { color: var(--text-dim); font-weight: 500; font-size: 14px; }
.nav ul a:hover { color: var(--text); text-decoration: none; }

/* ─── Hero ─── */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(124, 92, 255, 0.15), transparent 60%);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #b6a9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.1s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg-2);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-1); }

/* ─── Sections ─── */
section { padding: 80px 0; }
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

/* ─── Features grid ─── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(124, 92, 255, 0.15);
  color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text);
}
.feature p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.plan {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(124,92,255,0.08) 0%, var(--bg-1) 100%);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-name { font-size: 14px; color: var(--text-dim); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-amount { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.plan-amount small { font-size: 18px; color: var(--text-dim); font-weight: 500; }
.plan-minutes { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.plan-price-per { font-size: 12px; color: var(--text-mute); margin-bottom: 24px; }
.plan ul {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  text-align: left;
}
.plan ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dim);
  display: flex; align-items: center;
}
.plan ul li::before {
  content: "✓";
  color: var(--success);
  margin-right: 10px;
  font-weight: 700;
}

/* ─── Legal pages ─── */
.legal {
  padding: 64px 0;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 8px;
}
.legal .updated {
  color: var(--text-mute);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.legal ul { padding-left: 22px; }
.legal strong { color: var(--text); }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 80px;
  color: var(--text-mute);
  font-size: 13px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--text-mute); }
.footer-links a:hover { color: var(--text-dim); }

@media (max-width: 640px) {
  .nav ul { display: none; }
  .hero { padding: 64px 0 40px; }
  section { padding: 56px 0; }
}
