
:root {
  --bg: #0e1410;
  --panel: #162118;
  --panel-2: #1d2b20;
  --text: #ecf7ee;
  --muted: #b7c9bb;
  --accent: #75d66f;
  --accent-2: #c3f36c;
  --warning: #ffd36e;
  --border: #2e4733;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(117,214,111,.20), transparent 34rem),
    linear-gradient(180deg, #08100a, var(--bg));
  line-height: 1.6;
}
a {
  color: var(--accent-2);
  overflow-wrap: anywhere;
}
img { max-width: 100%; }
button, input, select { font: inherit; min-width: 0; }
button { cursor: pointer; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 1rem; top: 1rem; z-index: 10; background: var(--accent); color: #071108; padding: .75rem; border-radius: .5rem; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
  background: rgba(8,16,10,.82);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
.brand {
  flex: 0 0 auto;
  max-width: 100%;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
  overflow-wrap: anywhere;
}
.brand span { color: var(--accent-2); }
.nav-links {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: .85rem;
  row-gap: .45rem;
  flex-wrap: wrap;
  min-width: 0;
}
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: .95rem; line-height: 1.35; }
.nav-links a:hover { color: var(--accent-2); }
.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: .75rem 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.breadcrumbs a:hover { color: var(--accent-2); }
.breadcrumbs span:last-child { color: var(--text); }
header.hero {
  padding: 4rem 1.25rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.badge {
  display: inline-block;
  padding: .4rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(117,214,111,.1);
  color: var(--accent-2);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
}
h1 {
  margin: 1rem auto .75rem;
  max-width: 980px;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
header p, .hero p {
  max-width: 780px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: #071108;
  background: var(--accent);
  border-radius: .9rem;
  padding: .85rem 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  min-height: 46px;
  max-width: 100%;
  border: 1px solid transparent;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
  overflow-wrap: anywhere;
  white-space: normal;
}
.button:hover { transform: translateY(-2px); }
.button.secondary { background: transparent; color: var(--text); border-color: var(--border); }
.button.secondary:hover { border-color: var(--accent-2); background: rgba(255,255,255,.05); }
.button:disabled {
  cursor: not-allowed;
  opacity: .48;
  transform: none;
}
.button-compact {
  align-self: end;
  min-height: 46px;
  padding: .7rem .95rem;
}
main { width: 100%; max-width: 1180px; margin: 0 auto; padding: 2rem 1.25rem 4rem; min-width: 0; }
section { margin: 3rem 0; min-width: 0; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.16; margin-bottom: .5rem; overflow-wrap: anywhere; }
h3 { line-height: 1.24; overflow-wrap: anywhere; }
.lead { color: var(--muted); max-width: 840px; line-height: 1.72; overflow-wrap: anywhere; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1.1rem;
  min-width: 0;
}
.grid > *,
.toolbar > *,
.hero-actions > *,
.review-links > *,
.nav-inner > * { min-width: 0; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: clamp(1.05rem, 2.2vw, 1.4rem);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card h3 { margin: 0 0 .25rem; font-size: 1.35rem; }
.faq-grid .card h3 { margin-bottom: .45rem; }
.faq-grid .card p { margin: 0; color: var(--muted); line-height: 1.72; }
.price {
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  line-height: 1.22;
  font-weight: 900;
  color: var(--accent-2);
  margin: .55rem 0 .65rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.small { color: var(--muted); font-size: .92rem; line-height: 1.65; overflow-wrap: anywhere; }
ul, ol { padding-left: 1.15rem; }
li { margin: .4rem 0; overflow-wrap: anywhere; }
.tag {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  padding: .25rem .55rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.3;
  margin: .15rem .15rem .15rem 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.host-logo {
  position: relative;
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin-bottom: .85rem;
  background: rgba(255,255,255,.92);
  border-radius: .9rem;
  padding: .45rem;
}
.toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
  align-items: end;
  margin: 1.25rem 0 .75rem;
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}
.toolbar label {
  display: grid;
  gap: .35rem;
  min-width: 0;
}
.toolbar label span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.toolbar input, .toolbar select {
  appearance: none;
  background: rgba(8,16,10,.68);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: .9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  padding: .85rem .95rem;
  min-height: 52px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  text-overflow: ellipsis;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.toolbar select {
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-2) 50%),
    linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - .16rem),
    calc(100% - .85rem) calc(50% - .16rem);
  background-size: .32rem .32rem, .32rem .32rem;
  background-repeat: no-repeat;
}
.toolbar input:hover,
.toolbar select:hover {
  border-color: rgba(195,243,108,.58);
  background-color: rgba(8,16,10,.86);
}
.toolbar input:focus,
.toolbar select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(195,243,108,.16), inset 0 1px 0 rgba(255,255,255,.06);
}
.toolbar .button {
  width: 100%;
  min-height: 52px;
  border-radius: .9rem;
  padding: .85rem .95rem;
}
.toolbar .button.secondary {
  background: rgba(117,214,111,.10);
  border-color: rgba(117,214,111,.35);
  color: var(--accent-2);
}
.toolbar .button.secondary:hover:not(:disabled) {
  background: rgba(117,214,111,.18);
  border-color: var(--accent-2);
}
.toolbar .button:disabled {
  background: rgba(255,255,255,.035);
  border-color: var(--border);
  color: var(--muted);
  opacity: .7;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  padding-bottom: .2rem;
  -webkit-overflow-scrolling: touch;
}
.table-scroll:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}
table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
}
.table-scroll-wide table { min-width: 1240px; }
caption {
  caption-side: top;
  padding: .75rem .95rem;
  text-align: left;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}
th { background: #223426; color: var(--accent-2); }
tbody tr { transition: background .14s ease; }
tbody tr:hover { background: rgba(255,255,255,.035); }
tr:last-child td { border-bottom: none; }
.rank { font-weight: 900; color: var(--accent-2); }
.no-results td {
  padding: 1.2rem;
  text-align: center;
  background: rgba(255,211,110,.08);
}
.no-results strong,
.no-results span {
  display: block;
}
.no-results span { color: var(--muted); margin-top: .25rem; }
.notice {
  border-left: 5px solid var(--warning);
  padding: 1rem;
  background: rgba(255,211,110,.09);
  border-radius: .8rem;
  color: #fff3cd;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.review-hero {
  display: grid;
  grid-template-columns: minmax(80px, 110px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-width: 0;
}
.review-hero .host-logo { width: 90px; height: 90px; margin: 0; flex-shrink: 0; }
.star-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 100%;
  margin: .3rem 0 1rem;
  padding: .45rem .7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.stars {
  --rating: 0%;
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,.22);
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}
.stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--rating);
  overflow: hidden;
  color: var(--accent-2);
}
.star-rating strong { color: var(--text); min-width: 0; overflow-wrap: anywhere; }
.review-grid .card { display: flex; flex-direction: column; }
.review-card .button { width: 100%; margin-top: auto; text-align: center; }
.review-card .host-logo { margin-bottom: .4rem; }
.review-source-grid { grid-template-columns: minmax(0, 1fr); }
.review-source-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.review-source-card .button {
  align-self: flex-start;
  margin-top: .35rem;
}
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  min-width: 0;
}
.review-links .button { flex: 1 1 240px; min-width: min(100%, 220px); }
footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  background: #08100a;
}
.footer-disclaimer { max-width: 900px; margin: .75rem auto 0; font-size: .9rem; color: var(--muted); overflow-wrap: anywhere; }
@media (max-width: 860px) {
  table,
  thead,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }
  table { min-width: 0; }
  .table-scroll-wide table { min-width: 0; }
  thead,
  .table-heading,
  tbody tr:first-child th {
    display: none;
  }
  tr {
    display: block;
    border-bottom: 1px solid var(--border);
  }
  td { padding: 1rem .95rem; }
  td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-weight: 800;
    color: var(--accent-2);
    margin-bottom: .25rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .no-results td::before { content: none; }
}
@media (max-width: 720px) {
  .nav-inner { align-items: flex-start; flex-direction: column; }
  .brand { white-space: normal; }
  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }
  .toolbar { grid-template-columns: 1fr; }
  .button-compact { width: 100%; }
  .review-hero { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  header.hero { padding: 3rem 1rem 2.25rem; }
  main { padding-inline: 1rem; }
  .grid { gap: .9rem; }
  .card,
  .toolbar { border-radius: 1rem; }
  .price { font-size: clamp(1.25rem, 8vw, 1.6rem); }
  .star-rating { border-radius: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
