:root {
  --bic-bg: #0b1020;
  --bic-surface: #121a2f;
  --bic-surface-2: #1a2542;
  --bic-text: #eef2ff;
  --bic-muted: #a8b3cf;
  --bic-accent: #5eead4;
  --bic-accent-2: #38bdf8;
  --bic-danger: #fb7185;
  --bic-radius: 16px;
  --bic-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --bic-container: 1120px;
  --bic-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bic-font);
  color: var(--bic-text);
  background: radial-gradient(1200px 600px at 10% -10%, #1d4ed8 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #0f766e 0%, transparent 50%),
    var(--bic-bg);
  line-height: 1.6;
}

a {
  color: var(--bic-accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--bic-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bic-container {
  width: min(100% - 2rem, var(--bic-container));
  margin-inline: auto;
}

.bic-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.bic-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.bic-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bic-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.bic-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bic-text);
  text-decoration: none;
  font-weight: 700;
}

.bic-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bic-accent), var(--bic-accent-2));
  box-shadow: var(--bic-shadow);
}

.bic-nav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bic-nav__list a {
  color: var(--bic-text);
  text-decoration: none;
  font-weight: 600;
}

.bic-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.5rem;
}

.bic-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bic-text);
  margin: 4px 0;
}

.bic-main {
  min-height: 60vh;
}

.bic-hero {
  padding: 4rem 0 3rem;
}

.bic-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.bic-eyebrow {
  color: var(--bic-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.bic-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.bic-hero__lead {
  color: var(--bic-muted);
  font-size: 1.1rem;
  max-width: 52ch;
}

.bic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.bic-hero-card {
  background: linear-gradient(160deg, var(--bic-surface), var(--bic-surface-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bic-radius);
  padding: 1.5rem;
  box-shadow: var(--bic-shadow);
}

.bic-hero-card__badge {
  display: inline-block;
  background: rgba(94, 234, 212, 0.15);
  color: var(--bic-accent);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.bic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.bic-btn--primary {
  background: linear-gradient(135deg, var(--bic-accent), var(--bic-accent-2));
  color: #04111f;
}

.bic-btn--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bic-text);
}

.bic-btn--block {
  width: 100%;
}

.bic-section {
  padding: 2.5rem 0 3.5rem;
}

.bic-section--muted {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.bic-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.bic-card {
  background: var(--bic-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--bic-radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.35);
}

.bic-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.bic-card__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.bic-card__img--placeholder {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.bic-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.bic-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.bic-card__rating {
  color: var(--bic-accent);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.bic-card__excerpt {
  color: var(--bic-muted);
  margin: 0;
  font-size: 0.95rem;
}

.bic-card__meta {
  color: var(--bic-accent-2);
  font-size: 0.8rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.bic-card--post .bic-card__body {
  padding: 1.25rem;
}

.bic-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bic-trust article {
  background: var(--bic-surface);
  border-radius: var(--bic-radius);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bic-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  color: var(--bic-muted);
  font-size: 0.9rem;
}

.bic-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.6;
}

.bic-review__header {
  padding: 1rem 0 1.5rem;
}

.bic-review__verdict {
  color: var(--bic-muted);
  font-size: 1.15rem;
  max-width: 70ch;
}

.bic-rating__score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bic-accent);
}

.bic-review__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

.bic-entry {
  font-size: 1.05rem;
}

.bic-entry h2,
.bic-entry h3 {
  margin-top: 2rem;
}

.bic-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.bic-pros-cons ul {
  margin: 0;
  padding-left: 1.2rem;
}

.bic-specs table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bic-surface);
  border-radius: 12px;
  overflow: hidden;
}

.bic-specs th,
.bic-specs td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.bic-cta-card {
  position: sticky;
  top: 96px;
  background: var(--bic-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bic-radius);
  padding: 1.25rem;
  box-shadow: var(--bic-shadow);
}

.bic-cta-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0.25rem 0 1rem;
}

.bic-cta-card__note {
  color: var(--bic-muted);
  font-size: 0.8rem;
}

.bic-ad {
  margin: 1rem 0;
  min-height: 90px;
}

.bic-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--bic-muted);
}

.bic-footer__inner {
  display: grid;
  gap: 1rem;
}

.bic-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bic-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.bic-brands__chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bic-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.bic-brands__chip:hover {
  border-color: var(--bic-accent);
  color: var(--bic-accent);
}

.bic-hero-featured {
  display: block;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(160deg, var(--bic-surface), var(--bic-surface-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bic-radius);
  overflow: hidden;
  box-shadow: var(--bic-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bic-hero-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.4);
  color: inherit;
}

.bic-hero-featured__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bic-hero-featured__body {
  padding: 1.25rem;
}

.bic-hero-featured__body strong {
  display: block;
  font-size: 1.1rem;
  margin: 0.5rem 0;
  line-height: 1.3;
}

.bic-hero-featured__rating {
  color: var(--bic-accent);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.bic-hero-featured__body p {
  color: var(--bic-muted);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.bic-hero-featured__cta {
  color: var(--bic-accent-2);
  font-weight: 700;
  font-size: 0.9rem;
}

.bic-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bic-guide-card {
  display: block;
  padding: 1.25rem;
  background: var(--bic-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--bic-radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.bic-guide-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  color: inherit;
}

.bic-guide-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bic-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bic-guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.bic-guide-card p {
  margin: 0;
  color: var(--bic-muted);
  font-size: 0.9rem;
}

.bic-section--guides {
  padding-top: 0;
}

.bic-empty {
  color: var(--bic-muted);
  padding: 2rem;
  text-align: center;
  background: var(--bic-surface);
  border-radius: var(--bic-radius);
}

.bic-page .bic-entry table,
.bic-post .bic-entry table,
.bic-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bic-surface);
  border-radius: 12px;
  overflow: hidden;
}

.bic-entry table th,
.bic-entry table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.bic-archive-head {
  padding: 1.5rem 0;
}

.bic-archive-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.bic-archive-head p {
  color: var(--bic-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .bic-hero__inner,
  .bic-review__layout,
  .bic-trust,
  .bic-pros-cons,
  .bic-guides {
    grid-template-columns: 1fr;
  }

  .bic-nav-toggle {
    display: inline-block;
  }

  .bic-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    background: var(--bic-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
  }

  .bic-nav.is-open {
    display: block;
  }

  .bic-nav__list {
    flex-direction: column;
  }
}
