:root {
  /* Light white-gray palette for a neutral landing page */
  --color-bg: #f5f7fa;        /* very light gray page background */
  --color-bg-alt: #eef2f6;    /* subtle alternate section gray */
  --color-accent: #ff6b1a;    /* vivid orange accent (kept) */
  --color-text: #0b1726;      /* dark slate text for readability on light bg */
  --color-text-muted: #6b7684;/* muted gray-blue for secondary text */
  --color-border: rgba(11,23,38,0.06); /* subtle border on light bg */
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  padding-top: 90px; /* make room for the fixed top banner */
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 90px; /* position header below the fixed banner */
  z-index: 90;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b1a, #ff9a4a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  color: var(--color-accent);
}

.logo-text-accent {
  color: var(--color-text);
}

.main-nav {
  display: none;
  gap: 16px;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 4px 0;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.header-cta {
  display: none;
}

/* Hero */

.hero {
  padding: 40px 0 32px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.stat-card {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 10px 12px;
  color: var(--color-text);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #020308;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #020308;
}

/* Grids & cards */

.grid {
  display: grid;
  gap: 20px;
}

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

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

.text-block p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.text-block h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card,
.platform-card,
.verdict-card,
.support-card {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 16px 14px;
  color: var(--color-text);
}

.platform-card h3,
.feature-card h3,
.support-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.platform-card p,
.feature-card p,
.support-card p {
  margin: 0 0 10px;
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

/* Lists */

.check-list,
.bullet-list,
.pros-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li,
.bullet-list li,
.pros-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 0.85rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.pros-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Pros section */

.support-card .bullet-list {
  margin-top: 6px;
}

.muted-text {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* Verdict */

.verdict-card {
  padding: 18px 16px 20px;
}

.verdict-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.star {
  font-size: 1.1rem;
  color: var(--color-accent);
  position: relative;
}

.star-half {
  color: transparent;
}

.star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  overflow: hidden;
  color: var(--color-accent);
}

.rating-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.rating-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.rating-max {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.verdict-body p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.verdict-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Top banner */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}
.top-banner img {
  max-width: 100%;
  height: auto;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: transparent;
  padding: 20px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-meta {
  margin: 0;
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

/* Responsive */

@media (min-width: 768px) {
  .header-inner {
    padding-inline: 24px;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badges {
    gap: 16px;
  }

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

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

  .verdict-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    min-height: 360px;
  }
}