/* Root theme tokens */
:root {
  --bg-body: #020617;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --accent-green-start: #22c55e;
  --accent-green-end: #4ade80;
  --accent-pink-start: #ec4899;
  --accent-pink-end: #f97316;
  --accent-violet-start: #8b5cf6;
  --accent-violet-end: #22d3ee;
  --accent-blue-start: #0ea5e9;
  --accent-blue-end: #6366f1;
  --card-bg: rgba(15, 23, 42, 0.92);
  --card-border: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --shadow-glow-green: 0 0 40px rgba(34, 197, 94, 0.35);
  --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.35);
  --shadow-glow-violet: 0 0 40px rgba(139, 92, 246, 0.38);
  --shadow-glow-blue: 0 0 40px rgba(14, 165, 233, 0.38);
  --border-subtle: 1px solid rgba(148, 163, 184, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 55%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Layout */
.shell {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .shell {
    width: min(100%, 100% - 1.75rem);
  }
}

/* Glassy top nav */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.88)
    ),
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.35), transparent 55%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(
    from 180deg,
    var(--accent-green-start),
    var(--accent-blue-end),
    var(--accent-pink-start),
    var(--accent-violet-start),
    var(--accent-green-start)
  );
  position: relative;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #22c55e, #0f172a 70%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  transition: color 200ms ease, transform 200ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent-green-start),
    var(--accent-blue-end)
  );
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.nav-link:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--text-main);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.7),
    rgba(14, 165, 233, 0.75)
  );
  color: #022c22;
  border: 1px solid rgba(190, 242, 255, 0.6);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 50px rgba(56, 189, 248, 0.6);
  filter: brightness(1.08);
}

.nav-cta span:last-child {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at 30% 20%, #22c55e, #020617 75%);
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset-inline: 1.25rem;
    inset-block-start: 4.1rem;
    border-radius: 1.25rem;
    background: radial-gradient(circle at top left, #0b1120 0, #020617 55%);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: var(--shadow-soft);
    padding: 1.05rem 1.1rem 1.15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* Hero + section shells */
.section {
  padding-block: 4.5rem;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block: 0;
  opacity: 0.72;
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section--hero-green::before {
  background:
    radial-gradient(circle at top left, rgba(22, 163, 74, 0.25), transparent 60%),
    radial-gradient(circle at 90% 20%, rgba(45, 212, 191, 0.22), transparent 60%),
    linear-gradient(135deg, #052e16 0, #022c22 45%, #020617 100%);
}

.section--pink::before {
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.32), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.24), transparent 60%),
    linear-gradient(135deg, #4a044e 0, #1f2937 55%, #020617 100%);
}

.section--violet::before {
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.3), transparent 55%),
    radial-gradient(circle at 90% 15%, rgba(56, 189, 248, 0.3), transparent 60%),
    linear-gradient(135deg, #111827 0, #020617 60%, #020617 100%);
}

.section--blue::before {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.3), transparent 55%),
    radial-gradient(circle at 90% 15%, rgba(45, 212, 191, 0.3), transparent 60%),
    linear-gradient(135deg, #020617 0, #111827 45%, #020617 100%);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-block-end: 2.4rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 242, 255, 0.65);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.95));
  box-shadow: 0 16px 32px rgba(8, 47, 73, 0.75);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e0f2fe;
}

.section-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: conic-gradient(
    from 180deg,
    var(--accent-green-start),
    var(--accent-blue-end),
    var(--accent-pink-start)
  );
}

.section-title {
  font-size: clamp(1.6rem, 2.1vw + 1.1rem, 2.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-block: 0.6rem 0.35rem;
}

.section-copy {
  max-width: 540px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.section-meta {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.75);
}

@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.18rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 183, 0.85);
  background: radial-gradient(circle at top left, rgba(52, 211, 153, 0.35), rgba(15, 23, 42, 0.95));
  box-shadow: 0 18px 36px rgba(5, 46, 22, 0.95);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ccfbf1;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.82);
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.4vw + 1.5rem, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-block: 0.9rem 0.55rem;
}

.hero-highlight {
  background: linear-gradient(
    135deg,
    #bbf7d0,
    #86efac,
    #22c55e,
    #a5f3fc,
    #f97316
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 540px;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.9);
}

.hero-copy em {
  font-style: normal;
  color: #bbf7d0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-block-start: 1.8rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-block-start: 1.6rem;
  font-size: 0.8rem;
}

.hero-stat-label {
  display: block;
  color: var(--text-muted);
  margin-block-end: 0.15rem;
}

.hero-stat-value {
  font-weight: 600;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 1.35rem 1.45rem;
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.25), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft), var(--shadow-glow-green);
  border: 1px solid rgba(74, 222, 128, 0.55);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  inset-block-start: -45%;
  height: 180%;
  background: conic-gradient(
    from 180deg,
    rgba(34, 197, 94, 0.2),
    rgba(56, 189, 248, 0.25),
    rgba(79, 70, 229, 0.45),
    rgba(16, 185, 129, 0.2)
  );
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: blur(16px);
}

.hero-card-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(187, 247, 208, 0.8);
  color: #bbf7d0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-card-score {
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-card-score span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(209, 250, 229, 0.9);
}

.hero-card-title {
  font-size: 1.1rem;
  margin-block: 0.4rem 0.3rem;
}

.hero-card-meta {
  font-size: 0.82rem;
  color: rgba(209, 213, 219, 0.92);
}

.hero-card-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-block-start: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.7rem;
  color: #e5e7eb;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--accent-green-start),
    var(--accent-blue-end)
  );
}

.hero-card-visual {
  position: relative;
}

.hero-card-orbit {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px dashed rgba(74, 222, 128, 0.4);
  display: grid;
  place-items: center;
  position: relative;
}

.hero-card-orbit::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #22c55e, #0f172a 70%);
  opacity: 0.85;
}

.hero-card-orbit img {
  position: relative;
  border-radius: 1.1rem;
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.8);
}

.hero-floating-metric {
  position: absolute;
  inset-inline-start: -0.25rem;
  inset-block-end: 0.2rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(110, 231, 183, 0.8);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-floating-meter {
  position: relative;
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-floating-meter-fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #4ade80, #a3e635);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-block-start: 1.8rem;
  }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 200ms ease, filter 200ms ease;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.6), transparent 50%);
  mix-blend-mode: screen;
  transform: translate3d(-40%, -40%, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-green-start),
    var(--accent-blue-end)
  );
  color: #022c22;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.55);
}

.btn-secondary {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-pill {
  padding-inline: 1.0rem;
  padding-block: 0.6rem;
  font-size: 0.78rem;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.03);
}

.btn:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Neon product cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.32), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.32), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft), var(--shadow-glow-pink);
  border: 1px solid rgba(244, 114, 182, 0.7);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  inset-block-start: -40%;
  height: 200%;
  background: conic-gradient(
    from 180deg,
    rgba(236, 72, 153, 0.38),
    rgba(59, 130, 246, 0.4),
    rgba(45, 212, 191, 0.48),
    rgba(168, 85, 247, 0.45)
  );
  opacity: 0.5;
  filter: blur(20px);
}

.product-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.product-card-media {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.15);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top left, rgba(251, 113, 133, 0.35), #020617 65%);
}

.product-card-media--full {
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top left, rgba(251, 113, 133, 0.35), #020617 65%);
}

.product-card-media--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  flex: 1;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-block-end: 0.35rem;
}

.badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(251, 191, 36, 0.95);
  font-size: 0.7rem;
  color: #fef9c3;
}

.badge-rating-score {
  font-weight: 600;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.9);
  font-size: 0.7rem;
  color: #e5e7eb;
}

.product-card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-block-end: 0.18rem;
}

.product-card-subtitle {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.8);
}

.product-card-description {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-block-start: 0.5rem;
}

.product-card-footer--center {
  justify-content: center;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-soft), var(--shadow-glow-violet);
  border-color: rgba(56, 189, 248, 0.8);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal--slide-up {
  transform: translateY(22px);
}

.reveal--slide-right {
  transform: translateX(-22px);
}

.reveal--slide-left {
  transform: translateX(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Comparison table */
.comparison-grid {
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.3), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.8);
  box-shadow: var(--shadow-soft), var(--shadow-glow-blue);
  padding: 1.2rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.comparison-table thead {
  background: rgba(15, 23, 42, 0.9);
}

.comparison-table th,
.comparison-table td {
  padding: 0.7rem 0.75rem;
  text-align: left;
  white-space: nowrap;
}

.comparison-table th {
  font-weight: 600;
  color: #e5e7eb;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.7);
}

.comparison-pill-bad {
  color: #fecaca;
}

.comparison-pill-good {
  color: #bbf7d0;
}

/* Article layout for review & about pages */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.article-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-block: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.article-main h1 {
  font-size: clamp(2rem, 2.6vw + 1.2rem, 2.7rem);
  line-height: 1.08;
  margin-block: 0.4rem 0.5rem;
}

.article-main h2 {
  font-size: 1.25rem;
  margin-block: 1.8rem 0.6rem;
}

.article-main h3 {
  font-size: 1.05rem;
  margin-block: 1.4rem 0.4rem;
}

.article-main p {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.96);
  line-height: 1.7;
  margin-block: 0.4rem 0.4rem;
}

.article-main ul {
  padding-left: 1.1rem;
}

.article-main li {
  font-size: 0.93rem;
  color: rgba(226, 232, 240, 0.96);
  margin-block: 0.3rem;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sidebar-card {
  border-radius: 1.1rem;
  padding: 1.0rem 1.1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.sidebar-card h3 {
  margin-block: 0 0.45rem;
  font-size: 0.95rem;
}

.sidebar-card p,
.sidebar-card li {
  font-size: 0.86rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Author box & rating */
.author-box {
  margin-block-start: 2rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.8);
  flex-shrink: 0;
}

.author-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-box__body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.author-box__body p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.rating-strip {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.rating-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.rating-strip__label {
  color: rgba(226, 232, 240, 0.9);
}

.rating-strip__bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.5);
  overflow: hidden;
}

.rating-strip__bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #a3e635);
}

.rating-strip__score {
  min-width: 40px;
  text-align: right;
  color: rgba(226, 232, 240, 0.9);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.3), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow: var(--shadow-soft), var(--shadow-glow-violet);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.form-field label {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

.form-field span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.form-control {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
  padding: 0.6rem 0.75rem;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-control:focus-visible {
  border-color: rgba(59, 130, 246, 0.95);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.8), 0 0 0 12px rgba(15, 23, 42, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

/* Footer */
.site-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.75);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.98));
  padding-block: 2.2rem 1.8rem;
  margin-top: 3rem;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-block-end: 1.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
}

.footer-links a {
  color: rgba(226, 232, 240, 0.9);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Disclosure banner */
.disclosure-banner {
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.98));
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.8rem;
}

.disclosure-banner-inner {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
  padding-block: 0.6rem;
}

@media (max-width: 768px) {
  .disclosure-banner-inner {
    width: min(100%, 100% - 1.75rem);
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 1.25rem;
  inset-block-end: 1.25rem;
  max-width: 480px;
  border-radius: 1.25rem;
  padding: 1rem 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 55%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.24), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  color: rgba(226, 232, 240, 0.96);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  z-index: 60;
}

.cookie-banner__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #22c55e, #0f172a 70%);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.cookie-banner__body {
  flex: 1;
  font-size: 0.82rem;
}

.cookie-banner__body strong {
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cookie-banner__link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner button {
  white-space: nowrap;
}

.cookie-banner--hidden {
  display: none;
}

/* Utility */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.75);
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.92);
}

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

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stack-md {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-inline li {
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.9);
}

.icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--accent-pink-start),
    var(--accent-blue-start)
  );
}

