:root {
  color-scheme: dark;
  --bg: #090a0d;
  --panel: rgba(18, 20, 27, 0.82);
  --panel-strong: #15171f;
  --text: #fff8ef;
  --muted: #b9b2aa;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #ff8a2a;
  --brand-2: #ffd36a;
  --ok: #25d99f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 138, 42, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(255, 211, 106, 0.14), transparent 25rem),
    linear-gradient(145deg, #07080b 0%, #11131a 48%, #090a0d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(255, 138, 42, 0.24);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(255, 138, 42, 0.55);
  background: linear-gradient(135deg, #ff8a2a, #ffd36a);
  color: #1f1206;
}

.hero {
  padding: 56px 0 36px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 138, 42, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffe1bd;
  background: rgba(255, 138, 42, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.card.featured {
  border-color: rgba(255, 138, 42, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 138, 42, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  line-height: 1.1;
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0 8px;
  font-size: 2.55rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price span {
  padding-bottom: 9px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
}

.annual-offer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.annual-offer strong {
  color: var(--brand-2);
  font-size: 1.06rem;
  font-weight: 950;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 211, 106, 0.36);
  border-radius: 999px;
  padding: 4px 9px;
  color: #2a1706;
  background: linear-gradient(135deg, #ffd36a, #ff8a2a);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 18px;
  border: 1px solid rgba(37, 217, 159, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  color: #bbffe7;
  background: rgba(37, 217, 159, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: var(--muted);
}

li::before {
  position: absolute;
  left: 0;
  color: var(--brand-2);
  content: "✓";
  font-weight: 900;
}

.section {
  padding: 22px 0 46px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.plan-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-fit-control {
  display: grid;
  gap: 12px;
  align-content: start;
}

.plan-fit input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.plan-fit-number {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(255, 138, 42, 0.38);
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(255, 138, 42, 0.1);
  color: var(--text);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.plan-fit-number small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.plan-fit-result {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 22px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.24);
}

.plan-fit-result strong {
  color: var(--brand-2);
}

.muted {
  color: var(--muted);
}

.table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.row {
  display: grid;
  grid-template-columns: 0.95fr 2fr;
  gap: 1px;
  background: var(--line);
}

.row > div {
  padding: 15px 16px;
  background: var(--panel-strong);
}

.row strong {
  color: var(--text);
}

.callout {
  margin-top: 24px;
  border: 1px solid rgba(255, 211, 106, 0.34);
  border-radius: 20px;
  padding: 18px;
  color: #ffe6ba;
  background: rgba(255, 211, 106, 0.08);
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid,
  .grid.two,
  .plan-fit {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }
}
