:root {
  --bg: #0d0f12;
  --card: #161a20;
  --text: #f4f6f8;
  --muted: #9aa3ad;
  --yellow: #f5c542;
  --green: #1f8a4c;
  --green-hover: #176b3b;
  --line: #2a313a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a2029 0%, var(--bg) 45%);
  color: var(--text);
  font-family: Inter, Segoe UI, sans-serif;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
}
.brand { font-weight: 700; letter-spacing: 0.04em; }
.toggles { display: flex; gap: 10px; align-items: center; }
.lang, .currency {
  display: flex;
  gap: 8px;
  background: #11151b;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.lang button, .currency button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  width: auto;
}
.lang button.active, .currency button.active {
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}
main { padding: 12px 8% 64px; }
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 8px 0 8px;
}
.logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.logo.small {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.eyebrow {
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 22px 24px;
  text-align: center;
}
.card.popular { border-color: var(--yellow); }
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}
h1, h2 { margin: 8px 0 12px; }
.price {
  font-size: 42px;
  font-weight: 700;
  margin: 18px 0 28px;
}
button, .card button {
  width: 100%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.card button:hover { background: var(--green-hover); }
.note { color: var(--muted); text-align: center; margin-top: 32px; }
.narrow { max-width: 560px; margin: 0 auto; text-align: center; }
code {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #11151b;
  border: 1px solid var(--line);
  font-size: 22px;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  header, main { padding-left: 20px; padding-right: 20px; }
}
