:root {
  --bg: #0b1021;
  --card: #11172f;
  --muted: #9fb0d2;
  --accent: #6ee7b7;
  --accent-2: #8ab4ff;
  --text: #e7edff;
  --outline: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(110, 231, 183, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(138, 180, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

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

a:hover {
  text-decoration: underline;
}

header.hero {
  padding: 3.5rem clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.btn {
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #0b1021;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.btn.ghost:hover,
.btn.primary:hover {
  transform: translateY(-2px);
}

.trust {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--muted);
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 360px;
}

.glass__title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.glass__headline {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.glass__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

main {
  padding: 0  clamp(1.5rem, 5vw, 5rem) 4rem;
}

.section {
  margin: 1rem 0 2.5rem;
}

.section__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

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

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

select, input[type="search"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: #0f1530;
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(110, 231, 183, 0.1);
  color: var(--accent);
  border: 1px solid rgba(110, 231, 183, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

.card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--outline);
  border-radius: 999px;
  font-size: 0.85rem;
}

.card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card__actions a {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #0b1021;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  text-align: center;
}

.card__actions button {
  background: transparent;
  border: 1px solid var(--outline);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
}

.table {
  border: 1px solid var(--outline);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table__header, .table__row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.8fr 0.8fr 0.7fr 0.8fr;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  align-items: center;
}

.table__header {
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}

.table__row {
  border-top: 1px solid var(--outline);
}

.table__row span:last-child a {
  color: var(--accent);
  font-weight: 700;
}

.highlight {
  background: linear-gradient(120deg, rgba(110, 231, 183, 0.08), rgba(138, 180, 255, 0.08));
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.compare__card {
  background: #0f1530;
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 1rem;
}

.quiz {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--outline);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chips label {
  border: 1px solid var(--outline);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
}

.chips input {
  margin-right: 0.35rem;
}

.quiz__result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed var(--accent);
  background: rgba(110, 231, 183, 0.06);
}

.band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1.25rem;
  background: linear-gradient(120deg, rgba(110, 231, 183, 0.06), rgba(138, 180, 255, 0.06));
}

.cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.seo {
  border-top: 1px solid var(--outline);
  padding-top: 1.5rem;
  color: #c9d5ff;
}

.footer {
  border-top: 1px solid var(--outline);
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: #080d1b;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .table__header, .table__row {
    grid-template-columns: 1fr;
  }
  .card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
