/* Red.One — Privacy, Security, Discretion */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #16161a;
  --bg-soft: #1c1c22;
  --bg-hover: #22222a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8e6e3;
  --text-muted: #9a9690;
  --text-dim: #6e6a65;
  --accent: #e30613;
  --accent-hover: #ff1a28;
  --accent-soft: rgba(227, 6, 19, 0.12);
  --accent-glow: rgba(227, 6, 19, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 1120px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
p { margin: 0; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.logo .dot { color: var(--accent); }
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(10, 10, 11, 0.97);
    border-bottom: 1px solid var(--border);
    gap: 0.35rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--text-dim); }
.btn-outline-red {
  background: var(--accent-soft);
  border-color: rgba(227, 6, 19, 0.4);
  color: #ff6b73;
}
.btn-outline-red:hover { background: rgba(227, 6, 19, 0.2); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(227, 6, 19, 0.18), transparent 65%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  max-width: 22ch;
  margin-bottom: 1.25rem;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin-bottom: 2rem;
}
.tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* —— Sections —— */
section { padding: 4.5rem 0; }
.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.band {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-block: 1px solid var(--border);
}

/* —— Cards / grids —— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card a.stretched {
  display: inline-flex;
  margin-top: 1rem;
  color: #ff6b73;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.35rem;
}
.card a.stretched:hover { color: var(--accent-hover); }

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.chip::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Disclaimer */
.disclaimer {
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(227, 6, 19, 0.25);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.disclaimer strong { color: var(--text); font-weight: 600; }

/* —— Solutions page —— */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 42rem;
  font-size: 1.05rem;
}

.sol-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.sol-block:last-of-type { border-bottom: none; }
.sol-block h2 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}
.sol-block > .intro {
  color: var(--text-muted);
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.pkg h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pkg .sub {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.pkg ul { margin-top: 0.5rem; }
.pkg li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.pkg li:last-child { border-bottom: none; }
.pkg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .feature-list { grid-template-columns: 1fr; }
}
.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.app-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .app-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .app-cats { grid-template-columns: 1fr; }
}
.app-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}
.app-cat h4 {
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.app-cat ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.25rem 0;
}

/* VPN panel */
.vpn-panel {
  background:
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.15), transparent 50%),
    var(--bg-card);
  border: 1px solid rgba(227, 6, 19, 0.3);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}
.vpn-panel h2 { margin-bottom: 0.5rem; }
.vpn-panel .lead { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 44rem; }
.vpn-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 640px) {
  .vpn-points { grid-template-columns: 1fr; }
}
.vpn-point {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}
.vpn-point h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.vpn-point p { color: var(--text-muted); font-size: 0.88rem; }

/* —— Support —— */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr; }
}
.support-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  min-height: 160px;
  transition: border-color 0.2s, transform 0.2s;
}
.support-card:hover {
  border-color: rgba(227, 6, 19, 0.4);
  transform: translateY(-2px);
}
.support-card .badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text-dim);
}
.support-card .badge.live {
  background: var(--accent-soft);
  color: #ff6b73;
}
.support-card .badge.ask {
  background: rgba(255, 200, 80, 0.12);
  color: #e8c46a;
}
.support-card h3 {
  font-size: 1.05rem;
  flex: 1;
}
.support-card .meta {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.support-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.support-card .btn { padding: 0.55rem 0.95rem; font-size: 0.85rem; }

.group-title {
  font-size: 1.25rem;
  margin: 2.5rem 0 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

/* —— Footer —— */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 28rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.3rem 0;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-bottom .brand-line {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-bottom .brand-line span { color: var(--accent); margin: 0 0.35rem; }

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }


/* —— Real logo image —— */
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo .logo-mark { display: none; }

/* —— Hero with visual —— */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 56rem;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
.hero-visual {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Brand band */
.brand-band {
  padding: 0 0 3rem;
}
.brand-band-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.brand-band-figure img {
  width: 100%;
  aspect-ratio: 1090 / 731;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Card with thumbnail */
.card-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media .card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: var(--bg-soft);
}
.card-media h3,
.card-media p,
.card-media a.stretched {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}
.card-media h3 { margin-top: 1.15rem; }
.card-media p { flex: 1; }
.card-media a.stretched {
  margin-bottom: 1.25rem;
  margin-top: 0.85rem;
}

/* VPN split panel */
.vpn-panel-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}
@media (max-width: 860px) {
  .vpn-panel-split { grid-template-columns: 1fr; }
}
.vpn-visual {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d10;
}
.vpn-visual img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0d0d10;
}

/* Solutions media rows */
.sol-media {
  margin: 1.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.sol-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.sol-media-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d10;
}
.sol-media-contain img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.sol-media-portrait {
  max-width: 420px;
  margin-inline: auto;
}
.sol-media-portrait img {
  max-height: 560px;
}

.pkg-media {
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: #0d0d10;
}
.pkg-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pkg h3,
.pkg .sub,
.pkg ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pkg h3 { padding-top: 1.25rem; }
.pkg ul { padding-bottom: 1.5rem; margin-bottom: 0; }

.sol-media-cover {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d10;
}
.sol-media-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 800px) {
  .sol-split { grid-template-columns: 1fr; }
}

/* Footer policy links */
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
}
.footer-policies a {
  color: #ff6b73;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-policies a:hover { color: var(--accent-hover); text-decoration: underline; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(227, 6, 19, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.contact-aside {
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.contact-aside p,
.contact-aside li {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-aside ul { margin: 0.75rem 0 1.25rem; }
.contact-aside li {
  padding: 0.35rem 0 0.35rem 1rem;
  position: relative;
}
.contact-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.contact-aside a.email {
  color: #ff6b73;
  font-weight: 600;
  word-break: break-all;
}


/* —— Configuration tiers —— */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 860px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.tier-card.tier-featured {
  border-color: rgba(227, 6, 19, 0.45);
  background:
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.14), transparent 55%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.08);
}
.tier-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6b73;
}
.tier-card h3 {
  font-size: 1.1rem;
}
.tier-card p:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.subgroup-title {
  font-size: 1.05rem;
  margin: 1.75rem 0 1rem;
  color: var(--text);
  font-weight: 600;
}

.support-card-tall { min-height: 280px; }

.profile-verify {
  margin: 0.25rem 0 0.5rem;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.profile-verify li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.profile-verify li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.profile-verify li.sha {
  word-break: break-all;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-dim);
}
.profile-verify code {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-muted);
}

.plain-list {
  max-width: 48rem;
}
.plain-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.plain-list li:last-child { border-bottom: none; }
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.privacy-body {
  max-width: 48rem;
  width: 100%;
  margin: 0;
  text-align: left;
}
.privacy-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.privacy-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.privacy-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
