/* ==========================================================================
   IronWipe — design tokens
   ========================================================================== */
:root {
  --c-bg: #0d0d0d;
  --c-panel: #0000008c;
  --c-panel-solid: #141414;
  --c-panel-alt: #0f0d0c;
  --c-row: #00000059;
  --c-row-hover: #ffffff12;
  --c-chip: #ffffff14;
  --c-text: #e6e0da;
  --c-text-dim: #9a948e;
  --c-border: #ffffff1a;

  --c-rust: #cd412b;
  --c-rust-dark: #a83421;
  --c-gold: #d5a118;
  --c-moss: #9cb54e;
  --c-moss-dark: #55771f;

  --font: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;

  --topbar-h: 72px;
  --footer-h: 34px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html, body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  min-height: 100%;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { fill: currentColor; width: 1em; height: 1em; vertical-align: -0.12em; }
button { font-family: var(--font); color: inherit; background: none; border: none; cursor: pointer; }
input { font-family: var(--font); }
img { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid #f0d9a0; outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0006; }
::-webkit-scrollbar-thumb { background: #ffffff47; }
::-webkit-scrollbar-thumb:hover { background: #ffffff6b; }

/* ==========================================================================
   Buttons + chips
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; font-family: var(--font); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; border: none; cursor: pointer;
  transition: filter 0.12s, background 0.12s, transform 70ms, box-shadow 0.12s;
  white-space: nowrap;
}
.btn svg { font-size: 16px; }
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-dark { background: #000000bf; color: #ddd7d0; }
.btn-dark:hover { background: #000; color: #fff; }

.btn-gold { background: var(--c-gold); color: #241c05; }
.btn-gold:hover { filter: brightness(1.1); }

.btn-rust { background: var(--c-rust); color: #fff; }
.btn-rust:hover { filter: brightness(1.1); }

.btn-green { background: var(--c-moss-dark); color: #fff; }
.btn-green:hover { background: #67902a; }

.btn-ghost { background: #ffffff12; color: var(--c-text); }
.btn-ghost:hover { background: #ffffff22; color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

.chip {
  display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; background: var(--c-chip);
  color: #a49e97;
}
.chip--moss { background: var(--c-moss); color: #17190b; }
.chip--rust { background: var(--c-rust); color: #fff; }
.chip--gold { background: var(--c-gold); color: #241c05; }
.chip--ghost { background: transparent; padding-left: 0; }

/* Anchor targets shouldn't land under the sticky header */
[id] { scroll-margin-top: calc(var(--topbar-h) + 20px); }

/* ==========================================================================
   Topbar / nav
   ========================================================================== */
.topbar {
  position: sticky; top: 0; z-index: 40;
  height: var(--topbar-h);
  display: flex; align-items: stretch;
  background: #000000d1;
  border-bottom: 1px solid #ffffff0f;
  backdrop-filter: blur(6px);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px 0 16px; flex-shrink: 0;
}
.brand-mark {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--c-rust), var(--c-rust-dark));
  color: #fff; font-weight: 700; font-size: 18px;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.brand-name {
  text-transform: uppercase; color: #fff; font-weight: 700; font-size: 19px;
  letter-spacing: 0.02em;
}
.brand-name span { color: var(--c-text-dim); font-weight: 700; }

/* No overflow-x here on purpose: overflow-x:auto forces overflow-y to compute
   as auto too (per spec, an axis can't stay 'visible' while the other scrolls),
   which would clip the Hosting dropdown that hangs below this row. Narrow
   widths are handled by the hamburger breakpoint instead. */
.mainnav { display: flex; align-items: stretch; margin: 0 auto 0 6px; min-width: 0; }

.nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: 0 clamp(10px, 1.3vw, 22px);
  font-size: clamp(13px, 1.05vw, 15px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: #cfc9c2;
  white-space: nowrap; transition: background 0.12s, color 0.12s;
}
.nav-link svg { opacity: 0.9; font-size: 18px; }
.nav-link:hover { color: #fff; background: #ffffff0f; }
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(var(--c-rust), var(--c-rust-dark));
  box-shadow: inset 0 -3px #00000040;
}
.nav-link--accent { color: var(--c-gold); }
.nav-link--accent:hover { color: #f2c545; background: #d5a1181f; }

/* nav dropdown (Hosting mega-menu) */
.nav-group { position: relative; display: flex; align-items: stretch; }
.nav-link--caret { border: none; background: none; }
.nav-link--caret .caret { width: 11px; height: 11px; margin-left: -2px; opacity: 0.75; transition: transform 0.15s; }
.nav-group.is-open .nav-link--caret .caret { transform: rotate(180deg); }
.nav-link--caret.is-active { color: #fff; background: linear-gradient(var(--c-rust), var(--c-rust-dark)); box-shadow: inset 0 -3px #00000040; }

.nav-dropdown {
  position: absolute; top: 100%; left: 0; z-index: 50; min-width: 300px;
  background: #0b0a09fa; border: 1px solid var(--c-border); border-top: 2px solid var(--c-rust);
  box-shadow: 0 24px 48px #000000b3; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
@media (min-width: 761px) {
  .nav-group:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
}
.nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown a {
  display: flex; flex-direction: column; gap: 3px; padding: 12px 14px;
}
.nav-dropdown a:hover { background: #ffffff0f; }
.nav-dropdown a strong {
  font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #cfc9c2;
}
.nav-dropdown a:hover strong, .nav-dropdown a.is-current strong { color: #fff; }
.nav-dropdown a.is-current { background: #ffffff0f; box-shadow: inset 3px 0 var(--c-rust); }
.nav-dropdown a small { font-size: 11.5px; font-weight: 400; color: var(--c-text-dim); text-transform: none; letter-spacing: 0; }

/* mega-menu dropdown (Guides) — image rail + link list */
.nav-dropdown--mega { display: flex; padding: 0; min-width: 520px; overflow: hidden; }
.mega-feature {
  width: 190px; flex-shrink: 0; position: relative; display: flex; align-items: flex-end; padding: 14px;
  background:
    linear-gradient(180deg, #00000010 0%, #000000e6 100%),
    radial-gradient(ellipse at 30% 20%, #4a2013 0%, transparent 60%),
    linear-gradient(150deg, #241a12, #120d0a 70%);
}
.mega-feature::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 18px 18px;
}
.mega-feature-label { position: relative; color: #fff; font-size: 13px; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
.mega-feature-label span { display: block; color: var(--c-gold); font-size: 10.5px; letter-spacing: 0.1em; margin-bottom: 4px; }
.mega-list { flex: 1; padding: 6px; display: flex; flex-direction: column; }
.mega-list a {
  padding: 11px 14px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #cfc9c2;
  white-space: nowrap;
}
.mega-list a:hover, .mega-list a.is-current {
  background: linear-gradient(var(--c-rust), var(--c-rust-dark)); color: #fff;
}

/* hosting-tier switcher (panel / vds / baremetal) */
.tier-switch { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 6px; }
.tier-pill {
  padding: 9px 16px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: #ffffff0f; color: var(--c-text-dim); border: 1px solid var(--c-border); transition: background 0.12s, color 0.12s;
}
.tier-pill:hover { color: #fff; background: #ffffff1a; }
.tier-pill.is-active { background: var(--c-rust); color: #fff; border-color: var(--c-rust); }

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; padding-right: 16px; }
.topbar-cta { display: none; }
@media (min-width: 900px) { .topbar-cta { display: inline-flex; } }

.navtoggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: #ffffff12; color: var(--c-text); font-size: 20px;
}

/* ==========================================================================
   Hero (landing)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 15%, #3a241833 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, #1c1a1899 0%, transparent 60%),
    linear-gradient(180deg, #0a0908 0%, #0d0d0d 60%, #0d0d0d 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 0%, transparent 72%);
  opacity: 0.6;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--c-bg) 0%, transparent 22%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.hero-eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--c-gold); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px); line-height: 1.02; font-weight: 700;
  text-transform: uppercase; color: #fff; letter-spacing: 0.005em;
}
.hero h1 em { font-style: normal; color: var(--c-rust); }
.hero-sub {
  margin-top: 18px; color: var(--c-text); font-size: 17px; line-height: 1.55; max-width: 46ch;
}
.hero-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat b { display: block; font-size: 30px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.hero-stat span { display: block; font-size: 12px; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.hero-panel {
  background: var(--c-panel-solid);
  border: 1px solid var(--c-border);
  padding: 4px;
}
.hero-panel-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 13px; font-weight: 700; color: #d8d2cb;
}
.hero-panel-head svg { color: var(--c-gold); }

/* ---- video hero (home) ------------------------------------------------ */
.hero--video { min-height: 760px; background: #0d0d0d; }
.hero--video::before { display: none; }

.hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-video-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, #170603e6 0%, #170603b3 30%, #4d150d99 60%, #7a2213b3 100%),
    linear-gradient(0deg, #0d0d0d 0%, transparent 30%, transparent 70%, #0d0d0d99 100%);
}

.hero--video .hero-inner { grid-template-columns: 1fr; padding: 130px 24px 96px; }

.hero-title-stack {
  font-size: clamp(46px, 8.4vw, 116px); line-height: 0.9; font-weight: 700;
  text-transform: uppercase; color: var(--c-text); letter-spacing: 0.005em;
  text-shadow: 0 6px 30px #000000b3;
}
.hero-title-stack em { font-style: normal; color: #fff; }
.hero-title-kicker {
  display: block;
  font-size: clamp(13px, 1.6vw, 16px); line-height: 1.2; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-gold);
  margin-bottom: 10px; text-shadow: none;
}
.hero--video .hero-sub { text-shadow: 0 2px 10px #000000b3; }
.btn-outline { background: transparent; color: var(--c-text); border: 2px solid #ffffff40; }
.btn-outline:hover { border-color: #fff; color: #fff; }

/* ---- quote / testimonial section -------------------------------------- */
.quote-section {
  position: relative;
  padding: 96px 24px 84px;
  background: #121110;
}
.quote-wave { position: absolute; top: 0; left: 0; width: 100%; height: 44px; transform: translateY(-99%); display: block; }
.quote-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-text {
  font-size: clamp(22px, 2.8vw, 32px); font-style: italic; font-weight: 700;
  line-height: 1.38; color: var(--c-text);
}
.quote-rule { width: 90px; height: 2px; margin: 28px auto; background: linear-gradient(90deg, transparent, var(--c-rust), transparent); }
.quote-attrib { text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 700; color: var(--c-text-dim); }

/* ==========================================================================
   Guide articles — devblog-style hero + backgrounded sections
   ========================================================================== */
.guide-hero {
  position: relative; overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 90px 24px 56px;
}
.guide-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--guide-bg, radial-gradient(ellipse at 30% 20%, #3a2418 0%, transparent 55%), radial-gradient(ellipse at 80% 80%, #1c1a18 0%, transparent 60%), linear-gradient(160deg, #1a1512, #0d0d0d 65%));
}
/* Darkening scrim + faint grid texture, layered above the photo so hero text stays legible regardless of image content. */
.guide-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px),
    radial-gradient(ellipse at 50% 45%, #000000a6 0%, #00000080 45%, #000000b3 100%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
}
.guide-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.guide-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; color: var(--c-gold); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 12.5px; font-weight: 700; margin-bottom: 14px;
}
.guide-hero-kicker::before { content: ""; width: 8px; height: 8px; background: var(--c-gold); }
.guide-hero h1 {
  font-size: clamp(38px, 6vw, 68px); line-height: 0.98; font-weight: 700; text-transform: uppercase;
  color: #fff; text-shadow: 0 6px 24px #000000b3;
}
.guide-hero h1 em { font-style: normal; color: var(--c-rust); }
.guide-hero-sub { margin-top: 16px; color: var(--c-text); font-size: 17px; line-height: 1.55; max-width: 56ch; margin-left: auto; margin-right: auto; }
.guide-hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 22px;
  font-size: 12.5px; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
}

.guide-section { position: relative; padding: 64px 24px; }
.guide-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--guide-bg, linear-gradient(160deg, #171310, #0d0d0d 70%));
}
.guide-section::after { content: ""; position: absolute; inset: 0; z-index: 0; background: #0d0d0dd9; }
.guide-section-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.guide-section h2 {
  color: var(--c-rust); text-transform: uppercase; font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  letter-spacing: 0.01em; margin-bottom: 6px;
}
.guide-byline { color: var(--c-text-dim); font-size: 13px; margin-bottom: 18px; }
.guide-panel { background: #0d0d0dcc; border: 1px solid var(--c-border); padding: 28px 30px; }
.guide-panel p { color: var(--c-text); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }
.guide-panel p:last-child { margin-bottom: 0; }
.guide-panel ul, .guide-panel ol { margin: 0 0 16px 22px; color: var(--c-text); font-size: 15.5px; line-height: 1.7; }
.guide-panel li { margin-bottom: 6px; }
.guide-panel strong { color: #fff; }
.guide-panel a { color: #7fb3d8; }
.guide-panel code { background: #ffffff14; color: #f2ede8; padding: 1px 6px; font-size: 13.5px; }

.guide-figure { margin: 20px 0; border: 1px solid var(--c-border); background: var(--c-panel-alt); }
.guide-figure-media {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  background: var(--fig-bg, linear-gradient(135deg, #1c1a18, #2c221c 60%, #3a2418));
}
.guide-figure-media::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 28px 28px;
}
.guide-figure-icon { position: relative; z-index: 1; color: #ffffff40; font-size: 48px; }
.guide-figure-caption { padding: 10px 14px; color: var(--c-text-dim); font-size: 13px; border-top: 1px solid var(--c-border); }

.guide-callout { border-left: 3px solid var(--c-gold); background: #ffffff0d; padding: 14px 18px; margin: 18px 0; }
.guide-callout p { margin: 0 !important; color: var(--c-text) !important; font-size: 14.5px !important; }
.guide-callout .k { display: block; color: var(--c-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; margin-bottom: 4px; }

.guide-nextup {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 26px; background: var(--c-panel-alt); border: 1px solid var(--c-border);
}
.guide-nextup-label { color: var(--c-text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.guide-nextup-title { color: #fff; font-size: 17px; font-weight: 700; }

/* guide hub cards */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.guide-card { display: block; background: var(--c-panel-alt); border: 1px solid var(--c-border); overflow: hidden; transition: border-color 0.15s; }
.guide-card:hover { border-color: #ffffff40; }
.guide-card-media {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: var(--card-bg, linear-gradient(135deg, #241a12, #120d0a 70%));
}
.guide-card-media::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 22px 22px;
}
.guide-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #000000e6 0%, transparent 55%); }
.guide-card-num { position: relative; z-index: 1; color: #ffffff26; font-size: 46px; font-weight: 700; padding: 14px 18px; }
.guide-card-body { padding: 16px 18px 20px; }
.guide-card h3 { color: #fff; font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.guide-card p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.55; }

/* full guide archive — every section across every guide, searchable */
.guide-archive-toolbar { max-width: 420px; margin: 0 auto 28px; }
.guide-archive-toolbar .item-search { max-width: none; }
.guide-archive-count { text-align: center; color: var(--c-text-dim); font-size: 13px; margin-bottom: 22px; }
.guide-archive-list { display: flex; flex-direction: column; gap: 16px; }
.guide-archive-card { display: flex; gap: 20px; background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 16px; transition: border-color 0.15s; }
.guide-archive-card:hover { border-color: #ffffff40; }
.guide-archive-media {
  width: 220px; flex-shrink: 0; aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: var(--card-bg, linear-gradient(135deg, #1c1a18, #2c221c 55%, #3a2418));
  display: flex; align-items: center; justify-content: center;
}
.guide-archive-media::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 20px 20px;
}
.guide-archive-media svg { position: relative; z-index: 1; width: 34px; height: 34px; color: #ffffff30; }
.guide-archive-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.guide-archive-cat { color: var(--c-rust); text-transform: uppercase; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 6px; }
.guide-archive-cat span { color: var(--c-text-dim); font-weight: 400; text-transform: none; letter-spacing: 0; }
.guide-archive-title { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.guide-archive-excerpt { color: var(--c-text-dim); font-size: 14px; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.guide-archive-card .btn { align-self: flex-start; padding: 9px 16px; font-size: 12.5px; }
.guide-archive-empty { text-align: center; padding: 50px 0; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; }

@media (max-width: 640px) {
  .guide-archive-card { flex-direction: column; }
  .guide-archive-media { width: 100%; }
}

@media (max-width: 760px) {
  .guide-hero { min-height: 360px; padding: 70px 20px 40px; }
  .guide-section { padding: 44px 20px; }
  .guide-panel { padding: 20px; }
}

/* wiping-soon rows, reused in the server table row styling */
.mini-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; background: #000000b8; margin-bottom: 6px; cursor: pointer;
  transition: background 0.12s;
}
.mini-row:hover { background: #141414e6; }
.mini-row:last-child { margin-bottom: 0; }
.mini-info { flex: 1; min-width: 0; }
.mini-name { color: #fff; font-weight: 700; font-size: 14.5px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.mini-meta { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 11.5px; color: var(--c-text-dim); text-transform: uppercase; font-weight: 700; letter-spacing: 0.03em; }
.mini-count { font-variant-numeric: tabular-nums; color: var(--c-gold); }
.mini-go {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid #ffffff40; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.12s, background 0.12s;
}
.mini-row:hover .mini-go { border-color: #fff; background: #ffffff1a; }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section { padding: 84px 24px; position: relative; }
.section-tight { padding: 56px 24px; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-kicker {
  color: var(--c-rust); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 13px; font-weight: 700; margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px); text-transform: uppercase; color: #fff;
  font-weight: 700; letter-spacing: 0.01em;
}
.section-head p { margin-top: 14px; color: var(--c-text-dim); font-size: 16px; line-height: 1.6; }

.section-alt { background: #0a0908; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }

/* feature / why grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 24px;
}
.card-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: #ffffff0f; color: var(--c-rust); font-size: 20px; margin-bottom: 16px;
}
.card h3 { color: #fff; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.card p { color: var(--c-text-dim); font-size: 14.5px; line-height: 1.6; }
.card p a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }
.card p a:hover { color: #fff; }

/* facility photo gallery */
.facility-gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.facility-gallery .facility-photo:first-child { grid-row: span 2; }
@media (max-width: 900px) { .facility-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .facility-gallery .facility-photo:first-child { grid-row: span 1; grid-column: span 2; } }
@media (max-width: 560px) { .facility-gallery { grid-template-columns: 1fr; } .facility-gallery .facility-photo:first-child { grid-column: span 1; } }
.facility-photo { position: relative; overflow: hidden; border: 1px solid var(--c-border); min-height: 160px; cursor: zoom-in; }
.facility-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s; }
.facility-photo:hover img { transform: scale(1.04); }

/* facility photo lightbox */
.facility-lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 60px 40px; background: #050505e6;
}
.facility-lightbox.is-open { display: flex; }
.facility-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px #000000b3; }
.facility-lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; background: #ffffff12; border: 1px solid var(--c-border); color: #fff; cursor: pointer;
}
.facility-lightbox-close:hover { background: var(--c-rust); border-color: var(--c-rust); }
.facility-lightbox-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   Charts
   ========================================================================== */
.chart-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 980px) { .chart-row { grid-template-columns: 1fr; } }

.chart-card {
  background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 22px 24px 18px;
  display: flex; flex-direction: column;
}
.chart-head { margin-bottom: 4px; }
.chart-title { color: #fff; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.chart-sub { color: var(--c-text-dim); font-size: 13px; margin-top: 4px; }

.chart-legend { display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 4px; }
.chart-legend-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--c-text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.chart-legend-swatch { width: 12px; height: 12px; flex-shrink: 0; }

.chart-svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-svg .grid-line { stroke: #ffffff14; stroke-width: 1; }
.chart-svg .axis-text { fill: var(--c-text-dim); font-family: var(--font); font-size: 11px; }
.chart-svg .value-label { fill: var(--c-text); font-family: var(--font); font-size: 12px; font-weight: 700; }

.chart-wrap { position: relative; }
.chart-tooltip {
  position: absolute; pointer-events: none; z-index: 5; opacity: 0; transition: opacity 0.1s;
  background: #0b0a09f5; border: 1px solid var(--c-border); padding: 8px 12px; white-space: nowrap;
  font-size: 12px; box-shadow: 0 10px 24px #000000b3; transform: translate(-50%, -110%);
}
.chart-tooltip.is-visible { opacity: 1; }
.chart-tooltip .tt-time { color: var(--c-text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 10.5px; margin-bottom: 4px; }
.chart-tooltip .tt-row { display: flex; align-items: center; gap: 6px; color: var(--c-text); font-weight: 700; }
.chart-tooltip .tt-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* filter library */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-tab {
  padding: 8px 16px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: #ffffff0f; color: var(--c-text-dim); border: 1px solid transparent;
}
.filter-tab:hover { color: var(--c-text); background: #ffffff1a; }
.filter-tab.is-active { background: var(--c-rust); color: #fff; }

.filter-card { background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 18px 20px; }
.filter-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.filter-card-head h4 { color: #fff; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.filter-proto { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-dim); background: #ffffff12; padding: 2px 7px; flex-shrink: 0; }
.filter-card p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.55; }
.filter-card[hidden] { display: none; }

/* item database */
.item-toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.item-search { position: relative; flex: 1; min-width: 220px; max-width: 360px; }
.item-search input {
  width: 100%; padding: 11px 40px 11px 14px; background: #ffffff12; border: none; outline: none;
  color: #fff; font-size: 14px; letter-spacing: 0.03em;
}
.item-search input::placeholder { color: #7c766f; }
.item-search svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--c-text-dim); }
.item-cats { display: flex; gap: 8px; flex-wrap: wrap; }

.item-count { color: var(--c-text-dim); font-size: 13px; margin-bottom: 16px; }

.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.item-card { display: flex; gap: 14px; background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 16px; }
.item-tile {
  width: 60px; height: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff; text-transform: uppercase;
}
.item-tile--icon { padding: 6px; }
.item-tile--icon img { width: 100%; height: 100%; object-fit: contain; }
.item-tile--md { width: 84px; height: 84px; font-size: 24px; }
.item-tile--lg { width: 112px; height: 112px; font-size: 36px; }
.item-info { min-width: 0; }
.item-name { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.item-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.item-desc { color: var(--c-text-dim); font-size: 13px; line-height: 1.5; }
.item-empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-size: 15px; }
.item-card { transition: background 0.15s ease, border-color 0.15s ease; }
.item-card:hover { background: var(--c-row-hover); border-color: var(--c-border); }

/* item detail page */
.item-back-link { display: inline-block; color: var(--c-text-dim); font-size: 14px; margin-bottom: 24px; }
.item-back-link:hover { color: var(--c-text); }
.item-not-found { text-align: center; padding: 60px 0; }
.item-not-found h1 { margin-bottom: 10px; }
.item-not-found p { color: var(--c-text-dim); }
.item-detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.item-detail-head h1 { color: #fff; font-size: 30px; margin-top: 6px; }
.item-detail-desc { color: var(--c-text-dim); font-size: 15px; line-height: 1.7; max-width: 760px; margin-bottom: 36px; }
.item-section-title { color: #fff; font-size: 19px; font-weight: 700; margin: 36px 0 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.item-section-subtitle { color: var(--c-text-dim); font-size: 14px; font-weight: 700; margin: 20px 0 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.item-assoc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.item-assoc-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 18px 12px; font-size: 13px; color: var(--c-text);
}
.item-assoc-card:hover { background: var(--c-row-hover); }
.item-info-table { width: 100%; max-width: 760px; border-collapse: collapse; margin-bottom: 8px; }
.item-info-table th, .item-info-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--c-border); font-size: 14px; }
.item-info-table th { color: var(--c-text-dim); font-weight: 700; width: 220px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.05em; }
.item-info-table td code { background: var(--c-chip); padding: 2px 6px; font-size: 13px; }
.item-source-note { color: var(--c-text-dim); font-size: 15px; line-height: 1.7; max-width: 760px; }

/* stat strip */
.stat-strip {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  padding: 36px 24px; background: linear-gradient(180deg, #150e0c, #0d0d0d);
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.stat-strip .hero-stat { text-align: center; }

/* ==========================================================================
   Pricing / dedicated server plans
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }
.plans--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .plans--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans--3 { grid-template-columns: 1fr; } }

.plan {
  display: flex; flex-direction: column;
  background: var(--c-panel-alt); border: 1px solid var(--c-border);
  padding: 26px 22px; position: relative;
}
.plan--featured { border-color: var(--c-gold); background: #17130a; }
.plan-badge {
  position: absolute; top: 0; right: 0; transform: translateY(-50%);
  background: var(--c-gold); color: #241c05; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px;
}
.plan-badge--perf { background: var(--c-moss); color: #0d1305; }
.plan-name { text-transform: uppercase; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; color: var(--c-text-dim); }
.plan-price { margin-top: 10px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .cur { font-size: 22px; font-weight: 700; color: #fff; align-self: flex-start; margin-top: 6px; }
.plan-price b { font-size: 40px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.plan-price span:not(.cur) { color: var(--c-text-dim); font-size: 13px; }
.plan-tagline { margin-top: 6px; color: var(--c-text-dim); font-size: 13px; }
.plan-specs { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-specs li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-text); }
.plan-specs li svg { color: var(--c-moss); font-size: 15px; flex-shrink: 0; }
.plan-specs li b { color: #fff; }

/* hardware includes bar (shared across plans in a tier) */
.plan-hw {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 14px 20px;
  font-size: 13px; color: var(--c-text);
}
.plan-hw span { display: flex; align-items: center; gap: 7px; }
.plan-hw span svg { color: var(--c-moss); width: 15px; height: 15px; flex-shrink: 0; }
.plan-hw-lead { color: var(--c-text-dim); text-transform: uppercase; font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; }

/* pricing controls: hardware tier + billing cycle toggles */
.pricing-controls { display: flex; flex-wrap: wrap; gap: 22px 32px; align-items: center; justify-content: center; margin-bottom: 30px; }
.pricing-ctrl { display: flex; align-items: center; gap: 10px; }
.pricing-ctrl-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-dim); }
.pricing-toggle { display: flex; gap: 4px; background: #ffffff0d; border: 1px solid var(--c-border); padding: 4px; }
.pricing-toggle-opt {
  padding: 8px 15px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  background: transparent; color: var(--c-text-dim); border: none; cursor: pointer;
}
.pricing-toggle-opt:hover { color: #fff; }
.pricing-toggle-opt.is-active { background: var(--c-rust); color: #fff; }
.pricing-toggle-opt .save-badge { margin-left: 6px; color: var(--c-moss); font-weight: 700; }
.pricing-toggle-opt.is-active .save-badge { color: #fff; }

/* control panel showcase (tabbed feature panels) */
.cp-proof { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin: 18px 0 30px; }
.cp-proof span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-text-dim); }
.cp-proof span svg { color: var(--c-moss); width: 16px; height: 16px; flex-shrink: 0; }

.cp-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
.cp-tab {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; background: #ffffff0f; color: var(--c-text-dim);
  border: 1px solid transparent; cursor: pointer;
}
.cp-tab svg { width: 15px; height: 15px; flex-shrink: 0; }
.cp-tab:hover { color: #fff; background: #ffffff1a; }
.cp-tab.is-active { background: var(--c-rust); color: #fff; }

.cp-panel { display: none; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.cp-panel.is-active { display: grid; }
@media (max-width: 860px) { .cp-panel { grid-template-columns: 1fr; gap: 26px; } }
.cp-label { color: var(--c-rust); text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.cp-title { color: #fff; font-size: 26px; font-weight: 700; margin: 8px 0 12px; }
.cp-desc { color: var(--c-text-dim); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.cp-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cp-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-text); }
.cp-feats li svg { color: var(--c-moss); width: 16px; height: 16px; flex-shrink: 0; }

.cp-frame { position: relative; border: 1px solid var(--c-border); background: var(--c-panel-alt); overflow: hidden; }
.cp-frame img { display: block; width: 100%; height: auto; }
.cp-note {
  position: absolute; background: #0b0a09f2; border: 1px solid var(--c-border); padding: 6px 10px;
  font-size: 11.5px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.03em;
}
.cp-note--tl { top: 14px; left: 14px; }
.cp-note--br { bottom: 14px; right: 14px; }
.cp-badge {
  position: absolute; top: 14px; right: 14px; background: var(--c-gold); color: #241c05; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px;
}

/* SEO long-form guide */
.seo-guide { display: flex; flex-direction: column; gap: 30px; }
.seo-guide-block h3 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.seo-guide-block p { color: var(--c-text-dim); font-size: 14.5px; line-height: 1.7; margin-bottom: 10px; }
.seo-guide-block p:last-child { margin-bottom: 0; }
.seo-guide-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
@media (max-width: 700px) { .seo-guide-sub { grid-template-columns: 1fr; } }
.seo-guide-sub-item { background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 16px 18px; }
.seo-guide-sub-item h4 { color: var(--c-gold); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.seo-guide-sub-item p { color: var(--c-text-dim); font-size: 14px; line-height: 1.65; margin-bottom: 0; }
.seo-guide-block a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }
.seo-guide-block a:hover { color: #fff; }

/* spec comparison table */
.spec-table-wrap { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
.spec-table th, .spec-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--c-border); }
.spec-table th { text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--c-text-dim); background: #ffffff0d; }
.spec-table td { color: var(--c-text); }
.spec-table tr:last-child td { border-bottom: none; }

/* location chips */
.locations { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.loc-chip {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--c-panel-alt); border: 1px solid var(--c-border); font-size: 14px; font-weight: 700;
}
.loc-chip svg { color: var(--c-rust); }
.locations--compact { flex: 1; align-content: center; gap: 8px; }
.locations--compact .loc-chip { padding: 8px 12px; font-size: 13px; background: #ffffff08; }

/* faq */
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px; font-size: 16px; font-weight: 700; color: #fff; text-align: left;
}
.faq-q svg { color: var(--c-text-dim); transition: transform 0.15s; flex-shrink: 0; margin-left: 12px; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.2s ease; }
.faq-item.is-open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 4px 18px; color: var(--c-text-dim); font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   Server browser (servers.php)
   ========================================================================== */
.browser-shell { display: flex; flex-direction: column; min-height: calc(100vh - var(--topbar-h)); }

.browser-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px 24px; background: #000000b3; border-bottom: 1px solid var(--c-border);
}
.browser-tabs { display: flex; gap: 8px; }
.tab {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: #ffffff0f; color: #cfc9c2; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 14px; font-weight: 700; transition: background 0.12s;
}
.tab:hover { background: #ffffff1f; }
.tab.is-active { background: var(--c-moss); color: #10130a; }
.tab-count { background: #00000040; padding: 1px 7px; font-size: 12px; border-radius: 2px; }
.tab.is-active .tab-count { background: #0003; }

.data-banner {
  display: flex; align-items: center; gap: 8px; padding: 9px 24px; font-size: 12.5px;
  color: var(--c-text-dim); background: #ffffff08; border-bottom: 1px solid var(--c-border);
}
.data-banner .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.data-banner.is-live { color: var(--c-moss); }
.data-banner code { background: #ffffff14; color: var(--c-text); padding: 1px 6px; font-size: 11.5px; }

.browser-title { padding: 14px 24px 0; }
.browser-title h1 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.browser-title h1 span { color: var(--c-text-dim); font-weight: 400; text-transform: none; letter-spacing: normal; }

.hosting-claim {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 10px 24px; font-size: 13px; color: var(--c-text);
  background: linear-gradient(90deg, #1a1108, #14100a 50%, #1a1108);
  border-bottom: 1px solid var(--c-border); text-align: center;
}
.hosting-claim svg { color: var(--c-gold); flex-shrink: 0; }
.hosting-claim strong { color: #fff; }
.hosting-claim a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }
.hosting-claim a:hover { color: #fff; }

.browser-search { position: relative; width: 300px; margin-left: auto; }
.browser-search input {
  width: 100%; padding: 11px 40px 11px 14px; background: #ffffff12; border: none; outline: none;
  color: #fff; font-size: 14px; letter-spacing: 0.03em;
}
.browser-search input::placeholder { color: #7c766f; }
.browser-search svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--c-text-dim); }

.filters-toggle { display: none; }

.browser-main { flex: 1; display: flex; min-height: 0; }

.filters {
  width: 300px; flex-shrink: 0; padding: 18px 16px 24px;
  background: linear-gradient(#0000 55%, #781e0f45), #0f0a08b8;
  display: flex; flex-direction: column; gap: 20px;
  border-right: 1px solid var(--c-border);
}
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: #b3ada6; border-bottom: 1px solid var(--c-border); padding-bottom: 6px; margin-bottom: 4px;
}
.checkbox {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; cursor: pointer;
  background: #00000073; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: #cfc9c2;
}
.checkbox:hover { background: #ffffff14; }
.checkbox input { display: none; }
.checkbox .box { width: 18px; height: 18px; background: #ffffff1a; border: 1px solid #ffffff40; position: relative; flex-shrink: 0; }
.checkbox input:checked + .box { background: var(--c-moss); border-color: var(--c-moss); }
.checkbox input:checked + .box::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
  border: solid #10130a; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.filters-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--c-border); display: flex; flex-direction: column; gap: 8px; }
.list-updated { text-align: center; font-size: 11px; color: #ddd7d08c; margin-top: 4px; }

.list-wrap { flex: 1; min-width: 0; padding: 0 16px 0 20px; display: flex; flex-direction: column; }

.list-header, .server-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 150px 150px 130px 150px;
  align-items: center; gap: 8px;
}
.list-header {
  text-transform: uppercase; letter-spacing: 0.07em; font-size: 12.5px; font-weight: 700;
  color: #b3ada6; background: #000c; padding: 12px 8px; margin: 12px 0 2px;
}
.list-header .sortable { display: flex; align-items: center; gap: 5px; cursor: pointer; user-select: none; }
.list-header .sortable:hover { color: var(--c-text); }
.list-header .sortable.is-active { color: #fff; }
.sort-indicator { font-size: 10px; opacity: 0; }
.list-header .sortable.is-active .sort-indicator { opacity: 0.9; }

.list-body { flex: 1; overflow-y: auto; padding-bottom: 20px; }

.server-row {
  padding: 12px 8px; border-bottom: 1px solid #ffffff08; cursor: pointer; transition: background 0.1s;
}
.server-row:hover { background: var(--c-row-hover); }
.server-row.is-offline { opacity: 0.45; }

.row-name { min-width: 0; }
.row-title { color: #f2ede8; font-size: 15.5px; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.row-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 5px; }

.row-lastwipe { color: var(--c-text-dim); font-size: 13.5px; }
.row-nextwipe { color: var(--c-text); font-size: 13.5px; font-weight: 700; }
.row-nextwipe .badge {
  margin-left: 6px; padding: 1px 5px; font-size: 10px; background: var(--c-chip); color: #a49e97;
}
.row-players { color: #fff; font-size: 14.5px; font-weight: 700; }
.row-players .max { color: var(--c-text-dim); font-weight: 400; }
.row-region { color: #b3ada6; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.list-empty { text-align: center; padding: 60px 0; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-size: 15px; }

/* ==========================================================================
   Modals (detail + connect)
   ========================================================================== */
.overlay {
  position: fixed; inset: 0; z-index: 80; background: #000000b3;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
body.no-scroll { overflow: hidden; }

.modal {
  background: var(--c-panel-alt); width: min(680px, 100%); max-height: 100%;
  display: flex; flex-direction: column; box-shadow: 0 20px 60px #000000b3;
}
.modal-head { padding: 20px 22px 12px; flex-shrink: 0; }
.modal-head h2 { color: #fff; font-size: 24px; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

.modal-hero {
  aspect-ratio: 2.1; max-height: 320px; margin: 0 auto; display: block; width: 100%;
  background: linear-gradient(135deg, #1c1a18, #2c221c 55%, #3a2418);
  position: relative; flex-shrink: 0;
}
.modal-hero::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -40px 60px -20px #0009; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-hero-badge {
  position: absolute; left: 16px; bottom: 16px; color: #fff; font-size: 22px; font-weight: 700;
  text-transform: uppercase; text-shadow: 0 2px 8px #000;
}

.modal-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 16px; padding: 18px 22px; flex-shrink: 0; }
.stat .k { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--c-text-dim); margin-bottom: 6px; }
.stat .v {
  display: flex; align-items: center; gap: 8px; background: #ffffff0f; padding: 10px 12px;
  font-size: 14.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stat .v.is-rust { color: #ef7a64; }
.stat .v.is-moss { color: #a9c45c; }
.stat--wide { grid-column: 1 / -1; }
.stat--wide .v { white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.4; }

.modal-desc-wrap { flex: 1; min-height: 90px; padding: 0 22px; overflow-y: auto; }
.modal-desc { white-space: pre-wrap; background: #00000073; padding: 16px; font-size: 14px; line-height: 1.6; color: #cfc9c2; }

.modal-actions { display: flex; align-items: center; gap: 10px; padding: 18px 22px 22px; flex-shrink: 0; }
.modal-actions-right { display: flex; gap: 10px; margin-left: auto; }

.connect-modal { background: var(--c-panel-alt); width: min(460px, 100%); padding: 22px 22px 24px; box-shadow: 0 20px 60px #000000b3; }
.connect-modal h3 { text-transform: uppercase; letter-spacing: 0.04em; color: #fff; font-size: 18px; margin-bottom: 6px; }
.connect-hint { color: var(--c-text-dim); font-size: 13.5px; margin-bottom: 12px; }
.connect-ip {
  width: 100%; text-align: left; background: #ffffff0f; padding: 13px 14px; font-size: 15px;
  font-weight: 700; color: #fff; cursor: pointer; font-family: var(--font);
}
.connect-ip:hover { background: #ffffff1c; }
.connect-actions { display: flex; gap: 10px; margin-top: 16px; }
.connect-actions .btn { flex: 1; padding: 13px 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.sitefooter {
  display: flex; align-items: center; gap: 16px; padding: 0 20px; height: 56px;
  color: #7c766f; background: #000000c7; border-top: 1px solid var(--c-border); font-size: 12px;
  flex-wrap: wrap;
}
.footer-social { display: flex; align-items: center; gap: 4px; }
.footer-social a {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: #9a948e; font-size: 15px; transition: color 0.12s, background 0.12s;
}
.footer-social a:hover { color: #fff; background: #ffffff14; }
.footer-disclaimer { flex: 1; min-width: 200px; text-align: center; }
.footer-links { display: flex; gap: 16px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.footer-links a:hover { color: #fff; }

.site-footer-full {
  background: #0a0908; border-top: 1px solid var(--c-border);
}
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 56px 24px 32px; max-width: 1200px; margin: 0 auto; }
.footer-cols h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer-cols a, .footer-cols p { color: var(--c-text-dim); font-size: 14px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--c-border); padding: 18px 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto; font-size: 12.5px; color: var(--c-text-dim);
}

/* ==========================================================================
   Misc page bits
   ========================================================================== */
.pill-note {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: #ffffff0d; border-left: 3px solid var(--c-rust); font-size: 13.5px; color: var(--c-text-dim);
}

.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 44px; background: linear-gradient(120deg, #201209, #150e0c 60%, #0d0d0d); border: 1px solid var(--c-border);
}
.cta-band h3 { color: #fff; font-size: 26px; text-transform: uppercase; font-weight: 700; }
.cta-band p { color: var(--c-text-dim); margin-top: 6px; font-size: 15px; }
.cta-band-actions { display: flex; gap: 12px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1300px) {
  .list-header, .server-row { grid-template-columns: minmax(0, 1fr) 130px 130px 110px; }
  .list-header .col-region, .row-region { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1500px) {
  /* Nine top-level items is a lot for one row — go icon-only well before the
     hamburger breakpoint so the bar never wraps or overflows. */
  .brand-name span, .nav-link span { display: none; }
  .nav-link { padding: 0 12px; }
  .nav-dropdown { min-width: 260px; }
}

@media (max-width: 760px) {
  .navtoggle { display: flex; }
  .mainnav {
    position: fixed; top: var(--topbar-h); left: 0; right: 0; bottom: 0; z-index: 45;
    height: calc(100vh - var(--topbar-h)); margin: 0;
    background: #0d0d0dfa; flex-direction: column; padding: 10px; display: none; overflow-y: auto; row-gap: 4px;
  }
  .mainnav.is-open { display: flex; }
  .nav-link { height: 52px; padding: 0 16px; }
  .nav-link span { display: inline; }

  .nav-group { flex-direction: column; }
  .nav-link--caret { width: 100%; justify-content: space-between; }
  .nav-link--caret .caret { margin-left: auto; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; background: none; border: none; box-shadow: none;
    padding: 0 0 6px 14px; margin-left: 6px; border-left: 2px solid var(--c-border);
  }
  .nav-group.is-open .nav-dropdown { display: flex; flex-direction: column; }
  .nav-dropdown a { padding: 10px 12px; }
  .nav-dropdown--mega { min-width: 0; }
  .mega-feature { width: auto; height: 64px; padding: 10px 12px; }
  .mega-list a { padding: 9px 12px; }

  .footer-cols { grid-template-columns: 1fr 1fr; }

  .browser-search { width: 100%; margin-left: 0; order: 3; }
  .filters-toggle { display: inline-flex; margin-left: auto; }

  .browser-main { position: relative; }
  .filters {
    position: fixed; top: var(--topbar-h); bottom: 0; left: 0; z-index: 55; width: min(320px, 86vw);
    transform: translateX(-105%); transition: transform 0.2s; box-shadow: 0 0 40px #0009;
  }
  body.filters-open .filters { transform: translateX(0); }
  .filters-backdrop {
    display: none; position: fixed; inset: 0; z-index: 50; background: #0000008c;
  }
  body.filters-open .filters-backdrop { display: block; }

  .list-header, .server-row { grid-template-columns: minmax(0, 1fr) 70px 80px; gap: 6px; }
  .list-header .col-lastwipe, .row-lastwipe { display: none; }
  .row-title { white-space: normal; font-size: 13.5px; }
  .row-players { font-size: 12.5px; }

  .modal-stats { grid-template-columns: 1fr 1fr; }
  .modal-hero { max-height: 200px; }

  .footer-cols { padding: 40px 20px 24px; }
}

/* ==========================================================================
   VDS control panel showcase (real VirtFusion screenshot via .cp-frame)
   ========================================================================== */
.vds-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .vds-panel-grid { grid-template-columns: 1fr; gap: 30px; } }

.vds-panel-feats { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.vds-panel-feats li { display: flex; gap: 14px; }
.vds-panel-ico { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #ffffff0f; color: var(--c-rust); font-size: 18px; }
.vds-panel-feats h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.vds-panel-feats p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.55; }

/* ==========================================================================
   Private fibre backbone / network map (real anycast network data,
   ported from EUGameHost's interactive metro/cable map)
   ========================================================================== */
.vuk-net-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 960px) { .vuk-net-layout { grid-template-columns: 1fr; } }

.vuk-net-mapwrap { position: relative; background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 18px; }
.vuk-net-map { position: relative; width: 100%; aspect-ratio: 800 / 420; overflow: hidden; cursor: grab; touch-action: auto; user-select: none; -webkit-user-select: none; }
.vuk-net-map.is-zoomed { touch-action: none; }
@media (max-width: 768px) { .vuk-net-map, .vuk-net-map.is-zoomed { touch-action: pan-y; } }
.vuk-net-map.is-grabbing { cursor: grabbing; }
.vuk-net-stage { position: absolute; inset: 0; transform-origin: 0 0; }
.vuk-net-base, .vuk-net-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.vuk-net-base { opacity: 0.85; }

.vuk-net-zoom { position: absolute; top: 12px; right: 12px; z-index: 4; display: flex; flex-direction: column; gap: 6px; }
.vuk-net-zbtn { width: 36px; height: 36px; display: grid; place-items: center; font-size: 18px; line-height: 1; color: var(--c-text-dim); border: 1px solid var(--c-border); background: #0b0a09b3; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.vuk-net-zbtn:hover { color: #fff; border-color: var(--c-gold); }

.vuk-net-hit { cursor: pointer; }
.vuk-net-cables path[data-line] { transition: stroke 0.18s ease, stroke-width 0.18s ease; }
.vuk-net-cables path[data-line].is-active { stroke: #f0d9a0; stroke-width: 1.8; }

.vuk-net-metro { cursor: pointer; }
.vuk-net-metro:focus:not(:focus-visible) { outline: none; }
.vuk-net-metro .vuk-net-halo { transition: r 0.18s ease, opacity 0.18s ease; }
.vuk-net-metro:hover .vuk-net-halo, .vuk-net-metro:focus-visible .vuk-net-halo { opacity: 0.9; }
.vuk-net-metro.is-active .vuk-net-halo { opacity: 1; }
.vuk-net-metro.is-active circle:last-child { fill: #f0d9a0; }
.vuk-net-metro:focus-visible circle:last-child { stroke: #fff; stroke-width: 1; }
.vuk-net-metro.is-edge .vuk-net-halo { animation: vuk-net-pulse 4s ease-in-out infinite; }
@keyframes vuk-net-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.95; } }
@media (prefers-reduced-motion: reduce) { .vuk-net-metro.is-edge .vuk-net-halo { animation: none; opacity: 0.28; } }
.vuk-net-uk-glow { display: none; }
.vuk-net-uk-detail { pointer-events: none; }

.vuk-net-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--c-border); list-style: none; }
.vuk-net-legend li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.vuk-net-legend li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.vuk-net-legend .is-edge::before { background: var(--c-gold); }
.vuk-net-legend .is-upstream::before { background: #e2735c; }
.vuk-net-legend .is-fibre::before { width: 16px; height: 0; border-radius: 0; border-top: 2px dashed var(--c-gold); }

.vuk-net-side { display: flex; flex-direction: column; }
.vuk-net-panel-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 18px 20px; margin-bottom: 20px; }
.vuk-net-panel-empty, .vuk-net-panel-hint { margin: 0; font-size: 13.5px; color: var(--c-text-dim); line-height: 1.6; }
.vuk-net-panel-note { display: flex; gap: 9px; margin: 16px 0 0; padding: 12px 13px; background: #ffffff0d; border: 1px solid var(--c-border); border-left: 2px solid var(--c-gold); font-size: 12.5px; line-height: 1.5; color: var(--c-text); }
.vuk-net-panel-note .ico { color: var(--c-gold); width: 15px; height: 15px; margin-top: 1px; flex-shrink: 0; }
.vuk-net-panel-kicker { margin: 0; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gold); }
.vuk-net-panel-title { margin: 9px 0 0; font-size: 22px; font-weight: 700; color: #fff; }
.vuk-net-panel-meta { margin: 4px 0 0; font-size: 13px; color: var(--c-text-dim); }
.vuk-net-panel-sub { margin: 18px 0 0; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-dim); }
.vuk-net-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.vuk-net-chip { font-size: 11.5px; color: var(--c-text); border: 1px solid var(--c-border); border-radius: 999px; padding: 5px 11px; line-height: 1.3; }
.vuk-net-panel { width: 100%; }
.vuk-net-reset { align-self: flex-start; background: #ffffff0d; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-gold); border: 1px solid var(--c-border); border-radius: 999px; padding: 8px 18px; cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s; }
.vuk-net-reset:hover { color: #fff; border-color: var(--c-gold); background: #d5a11824; }

.net-why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.net-why-list li { display: flex; gap: 14px; }
.net-why-ico { width: 38px; height: 38px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #ffffff0f; color: var(--c-moss); font-size: 16px; }
.net-why-list h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.net-why-list p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.55; }
.net-why-note { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.6; padding-top: 14px; border-top: 1px solid var(--c-border); }

/* ==========================================================================
   "Real hardware" / infrastructure showcase
   ========================================================================== */
.dc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .dc-grid { grid-template-columns: 1fr; } }
.dc-illus { position: relative; border: 1px solid var(--c-border); background: var(--c-panel-alt); aspect-ratio: 4/3; overflow: hidden; }
.dc-illus img, .dc-illus svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-tag { position: absolute; bottom: 14px; left: 14px; background: #0b0a09f2; border: 1px solid var(--c-border); padding: 8px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.dc-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 22px 0; }
.dc-points li { display: flex; gap: 14px; }
.dc-ico { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #ffffff0f; color: var(--c-rust); font-size: 18px; }
.dc-points h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.dc-points p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.55; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.review-stars { color: var(--c-gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 8px; }
.review-top h2 { font-size: clamp(24px, 3vw, 32px); color: #fff; text-transform: uppercase; font-weight: 700; }
.review-top p { color: var(--c-text-dim); font-size: 14.5px; margin-top: 8px; max-width: 46ch; }
.review-badge { display: flex; align-items: center; gap: 12px; background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 12px 20px; }
.review-badge b { font-size: 28px; color: #fff; font-weight: 700; }
.review-badge span { font-size: 11.5px; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 0.05em; display: block; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.review-card { background: var(--c-panel-alt); border: 1px solid var(--c-border); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review-card-stars { color: var(--c-gold); font-size: 13px; letter-spacing: 2px; }
.review-card h3 { color: #fff; font-size: 15.5px; font-weight: 700; }
.review-card p { color: var(--c-text-dim); font-size: 13.5px; line-height: 1.6; flex: 1; }
.review-card-foot { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--c-border); }
.review-avatar { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--c-rust), var(--c-rust-dark)); color: #fff; font-weight: 700; font-size: 12.5px; text-transform: uppercase; }
.review-meta b { display: block; color: #fff; font-size: 13px; font-weight: 700; }
.review-meta span { display: block; color: var(--c-text-dim); font-size: 11.5px; }

/* ==========================================================================
   Risk-free CTA banner (reimagined free-trial band)
   ========================================================================== */
.rf-card { position: relative; padding: 60px 40px; background: linear-gradient(160deg, #1a1108, #100d0a 60%); border: 1px solid var(--c-border); text-align: center; overflow: hidden; }
.rf-hex { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-around; opacity: 0.32; mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%); pointer-events: none; }
.rf-hex .row { display: flex; justify-content: center; gap: 14px; }
.rf-hex .row.shift { transform: translateX(38px); }
.rf-hex .hex {
  width: 64px; height: 64px; clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: #1a1611; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.rf-hex .hex svg { width: 46%; height: 46%; color: var(--c-gold); }
.rf-badge { position: relative; z-index: 1; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; background: var(--c-gold); color: #241c05; padding: 10px 22px; margin-bottom: 18px; }
.rf-badge b { font-size: 22px; font-weight: 700; line-height: 1; }
.rf-badge span { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.rf-copy { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.rf-eyebrow { color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; font-weight: 700; }
.rf-copy h2 { margin-top: 10px; font-size: clamp(26px, 3.6vw, 38px); color: #fff; text-transform: uppercase; font-weight: 700; }
.rf-copy h2 em { font-style: normal; color: var(--c-gold); }
.rf-copy p { margin-top: 14px; color: var(--c-text-dim); font-size: 15px; line-height: 1.6; }
.rf-btns { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .rf-card { padding: 40px 20px; }
  .rf-hex .hex { width: 46px; height: 46px; }
  .rf-hex .row { gap: 8px; }
  .rf-hex .row.shift { transform: translateX(24px); }
}
