:root {
  color-scheme: light;
  --paper: #f3f5f1; --surface: #ffffff; --ink: #0f211d; --ink-soft: #45564f; --ink-mute: #7c8a83;
  --line: rgba(15,33,29,0.13); --line-soft: rgba(15,33,29,0.07);
  --accent: #ec1b24; --accent-deep: #b8141a; --accent-tint: #fbe7e7;
  --value: #b5651d; --value-tint: #f6e8da; --critical: #b5402c; --success: #1a7a42;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #0b1613; --surface: #121f1b; --ink: #f1f4f1; --ink-soft: #aec0b7; --ink-mute: #7e9089;
    --line: rgba(255,255,255,0.12); --line-soft: rgba(255,255,255,0.07);
    --accent: #ff4d54; --accent-deep: #ff8086; --accent-tint: #2e141622;
    --value: #e0954b; --value-tint: #2a2117; --critical: #e0715b; --success: #4ade80;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0b1613; --surface: #121f1b; --ink: #f1f4f1; --ink-soft: #aec0b7; --ink-mute: #7e9089;
  --line: rgba(255,255,255,0.12); --line-soft: rgba(255,255,255,0.07);
  --accent: #ff4d54; --accent-deep: #ff8086; --accent-tint: #2e141622;
  --value: #e0954b; --value-tint: #2a2117; --critical: #e0715b; --success: #4ade80;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--paper); color: var(--ink);
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace; font-variant-numeric: tabular-nums; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.shell { max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 480px) { .shell { padding-inline: 18px; } }

/* status strip */
.status-strip { background: var(--ink); color: var(--paper); font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.status-strip .row { display: flex; gap: 28px; padding-block: 9px; overflow-x: auto; }
.status-strip .stat { display: flex; align-items: center; gap: 7px; white-space: nowrap; opacity: .92; }
.status-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent); }
.status-strip b { color: #fff; font-weight: 600; }

/* header */
header.site { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: "Fraunces", serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.brand .mark { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 13px; }
nav.primary { display: flex; gap: 24px; font-size: 14px; font-weight: 500; }
nav.primary a { color: var(--ink-soft); }
nav.primary a:hover, nav.primary a.on { color: var(--accent-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.currency-switcher { font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 13px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 7px 8px; cursor: pointer; }
.currency-switcher:hover { background: color-mix(in srgb, var(--surface) 80%, var(--accent) 10%); }
.btn { font-family: "Public Sans", sans-serif; font-weight: 600; font-size: 14px; border-radius: 8px; padding: 10px 18px; border: 1px solid transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: transform .12s ease, background .15s ease; }
.btn.primary { background: var(--accent); color: #fff !important; }
.btn.primary:hover { background: var(--accent-deep); }
.btn.ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn.ghost:hover { background: var(--surface); }
.btn.sm { padding: 7px 13px; font-size: 13px; }
@media (max-width: 860px) { nav.primary { display: none; } }

.crumbs { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: var(--ink-mute); padding-top: 18px; }
.crumbs a:hover { color: var(--ink); }

/* hero */
.hero { padding-block: 30px 50px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: "IBM Plex Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-deep); background: var(--accent-tint); border-radius: 100px; padding: 6px 12px 6px 10px; margin-bottom: 16px; font-weight: 600; }
h1 { font-family: "Fraunces", serif; font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 16px; }
.hero .lede { font-size: 16.5px; line-height: 1.62; color: var(--ink-soft); max-width: 52ch; margin: 0 0 24px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-ctas .btn { padding: 13px 22px; font-size: 15px; }
.hero-proof { display: flex; gap: 16px; font-size: 13px; color: var(--ink-mute); flex-wrap: wrap; }
.hero-proof .check { color: var(--accent); font-weight: 700; }

/* spec card (hero-side data panel) */
.spec-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); }
.spec-row:last-child { border-bottom: none; }
.spec-row .s-label { font-size: 13.5px; color: var(--ink-soft); }
.spec-row .s-value { font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 13.5px; text-align: right; }
.spec-row .s-value.good { color: var(--accent-deep); }
.spec-card .sc-head { padding: 14px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); font-family: "IBM Plex Mono", monospace; font-weight: 700; }

/* ---- platform-at-a-glance stat card (hero) ---- */
.platform-card { background: var(--ink); border-radius: 16px; overflow: hidden; color: var(--paper); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35); }
.pfc-head {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px; font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: color-mix(in srgb, var(--paper) 70%, transparent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pfc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 30%, transparent); animation: pfc-pulse 2.4s ease-in-out infinite; }
@keyframes pfc-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@media (prefers-reduced-motion: reduce) { .pfc-dot { animation: none; } }
.pfc-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pfc-tile { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pfc-tile:nth-child(2n) { border-right: none; }
.pfc-tile:nth-child(3), .pfc-tile:nth-child(4) { border-bottom: none; }
.pfc-value { font-family: "IBM Plex Mono", monospace; font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; }
.pfc-value span { font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--paper) 65%, transparent); margin-left: 3px; }
.pfc-label { margin-top: 8px; font-size: 12.5px; color: color-mix(in srgb, var(--paper) 75%, transparent); }
@media (max-width: 420px) { .pfc-value { font-size: 24px; } }

.vps-teaser { display: grid; grid-template-columns: 1.3fr 1fr; background: var(--ink); border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35); }
.vt-copy { padding: 44px 40px; color: var(--paper); display: flex; flex-direction: column; gap: 14px; justify-content: flex-start; }
.vt-copy .eyebrow { background: color-mix(in srgb, var(--accent) 22%, transparent); color: var(--accent); }
.vt-copy h2 { font-family: "Fraunces", serif; font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.01em; margin: 0; color: var(--paper); }
.vt-copy p { font-size: 14.5px; line-height: 1.6; margin: 0; max-width: 46ch; color: color-mix(in srgb, var(--paper) 78%, transparent); }
.vt-copy .btn.ghost { align-self: flex-start; border-color: rgba(255,255,255,0.25); color: var(--paper); }
.vt-copy .btn.ghost:hover { background: rgba(255,255,255,0.08); }
.vt-plan { background: var(--surface); padding: 32px; display: flex; flex-direction: column; gap: 14px; justify-content: flex-start; border-left: 1px solid rgba(255,255,255,0.08); }
.vt-plan-name { font-family: "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; color: var(--ink-mute); font-weight: 700; }
.vt-plan-price { font-family: "IBM Plex Mono", monospace; font-size: 26px; font-weight: 700; color: var(--ink); }
.vt-plan-price span { font-size: 12.5px; font-weight: 500; color: var(--ink-mute); margin-left: 4px; }
.vt-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vt-spec { display: flex; flex-direction: column; gap: 3px; padding-right: 10px; }
.vt-spec:not(:last-child) { border-right: 1px solid var(--line); }
.vt-spec b { font-family: "IBM Plex Mono", monospace; color: var(--ink); font-weight: 700; font-size: 15px; line-height: 1.1; }
.vt-spec span { color: var(--ink-mute); font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; }
.vt-plan .btn { justify-content: center; }
@media (max-width: 760px) {
  .vps-teaser { grid-template-columns: 1fr; }
  .vt-plan { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}

.browser-frame { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35); }
.browser-frame .bf-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--ink); }
.browser-frame .bf-dot { width: 9px; height: 9px; border-radius: 50%; background: color-mix(in srgb, var(--paper) 30%, transparent); }
.browser-frame img { display: block; width: 100%; height: auto; }
.browser-frame .bf-caption { padding: 10px 14px; font-family: "IBM Plex Mono", monospace; font-size: 11px; color: var(--ink-mute); border-top: 1px solid var(--line); }

.dc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.dc-card { border: 1px solid var(--line); border-radius: 12px; padding: 22px 16px; background: var(--surface); text-align: center; transition: border-color .15s, transform .15s; }
.dc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.dc-flag { font-size: 30px; line-height: 1; display: block; margin-bottom: 10px; }
.dc-country { font-weight: 700; font-size: 14px; color: var(--ink); }
.dc-city { font-size: 12px; color: var(--ink-mute); margin-top: 4px; font-family: "IBM Plex Mono", monospace; }
@media (max-width: 900px) { .dc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .dc-grid { grid-template-columns: repeat(2, 1fr); } }

.phone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .phone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .phone-grid { grid-template-columns: 1fr; } }
.phone-card { border: 1px solid var(--line); border-radius: 12px; padding: 24px 18px; background: var(--surface); text-align: center; transition: border-color .15s, transform .15s; }
.phone-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.phone-card .p-flag { font-size: 28px; line-height: 1; display: block; margin-bottom: 12px; }
.phone-card .p-label { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); font-weight: 700; margin-bottom: 10px; }
.phone-card .p-number { display: block; font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 15.5px; color: var(--ink); margin-bottom: 10px; }
.phone-card .p-number:hover { color: var(--accent-deep); }
.phone-card .p-hours { font-size: 11.5px; color: var(--ink-mute); line-height: 1.5; padding-top: 10px; border-top: 1px solid var(--line-soft); }

/* sections */
section { padding-block: 50px; }
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head h2 { font-family: "Fraunces", serif; font-size: clamp(24px, 3.2vw, 32px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
.section-head p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* process */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
@media (max-width: 760px) { .process { grid-template-columns: 1fr; } }
.process .step { background: var(--surface); padding: 26px 24px; }
.process .step .idx { font-family: "IBM Plex Mono", monospace; font-size: 12px; color: var(--accent-deep); font-weight: 700; margin-bottom: 14px; }
.process .step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; font-family: "Fraunces", serif; }
.process .step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.compare-strip { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.compare-card { flex: 1; min-width: 220px; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; background: var(--surface); }
.compare-card.us { border-color: var(--accent); background: var(--accent-tint); }
.compare-card .cc-label { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); font-weight: 700; margin-bottom: 8px; }
.compare-card.us .cc-label { color: var(--accent-deep); }
.compare-card .cc-value { font-family: "IBM Plex Mono", monospace; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.compare-card .cc-note { font-size: 12.5px; color: var(--ink-soft); }

/* why / feature grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.why-card .icon { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-tint); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; font-family: "IBM Plex Mono", monospace; font-weight: 700; margin-bottom: 14px; font-size: 13px; }
.why-card h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 8px; }
.why-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.58; margin: 0; }

/* legal documents (terms-of-service.php) */
.legal-doc-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.legal-doc-list li a { display: block; padding: 12px 16px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); font-weight: 600; font-size: 14px; transition: border-color .15s; }
.legal-doc-list li a:hover { border-color: var(--accent); color: var(--accent-deep); }
/* The document body itself is raw HTML straight from the API (real legal
   text, complete with its own inline styling from a rich-text editor) —
   these rules just keep it readable at the site's normal text width and
   theme its links/headings, without fighting the inline styles it already
   carries (justify alignment, paragraph spacing, etc). */
.legal-doc { max-width: 78ch; font-size: 14.5px; line-height: 1.7; color: var(--ink); }
.legal-doc a { color: var(--accent-deep); }
.legal-doc ol, .legal-doc ul { padding-left: 1.4em; }
.legal-doc li { margin-bottom: 10px; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--surface); display: flex; flex-direction: column; gap: 10px; position: relative; }
.price-card.featured { border-color: var(--accent); }
.price-card .pc-badge { position: absolute; top: -11px; left: 16px; background: var(--accent); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.price-card .pc-name { font-weight: 700; font-size: 15px; }
.price-card .pc-from { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; font-family: "IBM Plex Mono", monospace; }
.price-card .pc-price { font-family: "IBM Plex Mono", monospace; font-size: 25px; font-weight: 700; }
.price-card .pc-price span { font-size: 12.5px; font-weight: 500; color: var(--ink-mute); }
.price-card .pc-price .was { text-decoration: line-through; color: var(--ink-mute); font-weight: 500; font-size: 14px; margin-right: 4px; }
.price-card ul.pc-feats { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.price-card ul.pc-feats li { font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 7px; }
.price-card ul.pc-feats li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.price-note { margin-top: 16px; font-size: 13px; color: var(--ink-mute); }

/* facts table */
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table th { text-align: left; font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); padding: 12px 16px; border-bottom: 1px solid var(--line); }
.facts-table td { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.facts-table tr:last-child td { border-bottom: none; }
.facts-table td:first-child { font-weight: 600; }
.facts-table td.num { font-family: "IBM Plex Mono", monospace; text-align: right; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.facts-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.facts-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.facts-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.facts-list.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
@media (max-width: 700px) { .facts-list.grid-2 { grid-template-columns: 1fr; } }

/* trust band */
.trust-band { background: var(--ink); color: var(--paper); border-radius: 16px; padding: 40px 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .trust-band { grid-template-columns: repeat(2, 1fr); } }
.trust-band .t-num { font-family: "IBM Plex Mono", monospace; font-size: 30px; font-weight: 700; color: var(--accent); }
.trust-band .t-label { font-size: 12.5px; color: color-mix(in srgb, var(--paper) 70%, transparent); margin-top: 4px; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item { background: var(--surface); }
.faq-item summary { list-style: none; cursor: pointer; padding: 17px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: 14.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: "IBM Plex Mono", monospace; font-size: 19px; color: var(--ink-mute); flex: none; transition: transform .15s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.62; max-width: 68ch; }

/* final cta */
.final-cta { text-align: center; padding: 56px 24px; border-radius: 18px; background: linear-gradient(180deg, var(--accent-tint), transparent); border: 1px solid var(--line); }
.final-cta h2 { font-family: "Fraunces", serif; font-size: clamp(24px, 3.6vw, 32px); margin: 0 0 12px; }
.final-cta p { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding-block: 36px 26px; font-size: 12.5px; color: var(--ink-mute); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 24px; margin-bottom: 26px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
.foot-grid h4 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin: 0 0 12px; font-family: "IBM Plex Mono", monospace; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }

/* concept banner */
.concept-banner { background: var(--value); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 12.5px; text-align: center; padding: 8px 16px; }
.concept-banner b { font-weight: 700; }

/* ---- article template specifics ---- */
.article-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 48px; padding-block: 30px 60px; align-items: start; }
@media (max-width: 900px) { .article-wrap { grid-template-columns: 1fr; } }
.cat-tag { display: inline-flex; align-items: center; gap: 7px; font-family: "IBM Plex Mono", monospace; font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-deep); background: var(--accent-tint); border-radius: 100px; padding: 5px 11px 5px 9px; margin-bottom: 16px; font-weight: 600; }
article h1 { font-size: clamp(28px, 4vw, 40px); }
.meta-row { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-mute); margin-bottom: 30px; font-family: "IBM Plex Mono", monospace; }
.tldr { background: var(--surface); border: 1px solid var(--accent); border-left: 3px solid var(--accent); border-radius: 10px; padding: 18px 20px; margin-bottom: 34px; }
.tldr .tl-label { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-deep); font-weight: 700; margin-bottom: 8px; }
.tldr p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
article .body { font-size: 16px; line-height: 1.72; color: var(--ink-soft); max-width: 68ch; }
article .body h2 { font-family: "Fraunces", serif; color: var(--ink); font-size: 23px; font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.005em; }
article .body h3 { color: var(--ink); font-size: 17px; font-weight: 700; margin: 26px 0 10px; }
article .body p { margin: 0 0 16px; }
article .body a { color: var(--accent-deep); text-decoration: underline; }
.step-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 24px; }
.step { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.step .s-idx { font-family: "IBM Plex Mono", monospace; font-weight: 700; color: var(--accent-deep); flex: none; }
.step h4 { margin: 0 0 4px; font-size: 15px; color: var(--ink); font-weight: 700; }
.step p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.callout { background: var(--value-tint); border-left: 3px solid var(--value); border-radius: 8px; padding: 14px 18px; margin: 22px 0; font-size: 14.5px; color: var(--ink); }
.callout b { color: var(--value); font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 6px; }
aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.side-card .sc-title { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); font-weight: 700; margin-bottom: 12px; }
.side-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.side-card a { font-size: 13.5px; line-height: 1.4; display: block; color: var(--accent-deep); }
.side-card a:hover { text-decoration: underline; }
.side-cta { background: var(--ink); color: var(--paper); border-radius: 12px; padding: 22px 18px; text-align: center; }
.side-cta h4 { font-family: "Fraunces", serif; font-size: 17px; margin: 0 0 8px; }
.side-cta p { font-size: 12.5px; color: color-mix(in srgb, var(--paper) 70%, transparent); margin: 0 0 14px; line-height: 1.5; }

/* ---- mock-mode / test-mode banners ---- */
.mode-banner { font-family: "IBM Plex Mono", monospace; font-size: 12.5px; text-align: center; padding: 9px 16px; }
.mode-banner.mock { background: var(--value); color: #fff; }
.mode-banner.test { background: var(--ink); color: var(--paper); }
.mode-banner a { text-decoration: underline; color: inherit; }

.site-notice-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; padding: 14px 20px; background: var(--ink); color: var(--paper);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.site-notice-bar.show { display: flex; }
.site-notice-bar p { margin: 0; font-size: 13px; line-height: 1.5; max-width: 62ch; }
.site-notice-bar a { color: inherit; text-decoration: underline; }
.site-notice-bar .btn { flex: none; }

/* ---- live plan cards (from products.get_*) ---- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
/* A "Selected"/"Popular" .pc-badge pokes 11px above its card's own top
   edge — fine when a grid follows a big heading, but a signup.php plan
   switcher sits right under a small <label> with only .field's 6px gap,
   so the badge on a leftmost/topmost card visually overlaps the label
   text above it. Only the switcher's grid needs the extra clearance —
   it's the only place a plan-grid is a direct child of .field. */
.field > .plan-grid { margin-top: 14px; }
.plan-card { border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: var(--surface); display: flex; flex-direction: column; gap: 14px; }
.plan-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.plan-card .pc-badge { position: absolute; top: -11px; left: 18px; background: var(--accent); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.plan-card .pc-name { font-size: 17px; font-weight: 700; font-family: "Fraunces", serif; }
.plan-card .pc-price { font-family: "IBM Plex Mono", monospace; font-size: 30px; font-weight: 700; }
.plan-card .pc-price span { font-size: 13px; font-weight: 500; color: var(--ink-mute); }
.plan-card .pc-billing { font-size: 11.5px; color: var(--ink-mute); font-family: "IBM Plex Mono", monospace; margin-top: -6px; }
.plan-card .pc-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-card .pc-feats li { font-size: 13.5px; color: var(--ink); display: flex; gap: 8px; line-height: 1.4; }
.plan-card .pc-feats li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.plan-card .pc-feats li b { font-weight: 600; color: var(--ink-soft); }
.plan-card .btn { justify-content: center; }
.plan-card.sold-out { opacity: .65; }
.stock-badge { align-self: flex-start; font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.stock-badge.in-stock { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.stock-badge.out-of-stock { background: color-mix(in srgb, var(--critical) 12%, transparent); color: var(--critical); }
.pc-sale-badge { align-self: flex-start; font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: color-mix(in srgb, var(--critical) 12%, transparent); color: var(--critical); }
.btn.disabled { background: var(--line); color: var(--ink-mute) !important; cursor: not-allowed; pointer-events: none; }
.plan-empty { padding: 20px; border: 1px dashed var(--line); border-radius: 10px; color: var(--ink-mute); font-size: 13.5px; text-align: center; }

/* ---- compare table (dynamic) ---- */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--surface); }
table.compare th, table.compare td { padding: 11px 16px; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; text-align: center; }
table.compare th:first-child, table.compare td:first-child { text-align: left; color: var(--ink-mute); font-family: "IBM Plex Mono", monospace; font-size: 12px; }
table.compare thead th { font-family: "Fraunces", serif; font-size: 15px; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--line); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td.yes { color: var(--accent-deep); font-weight: 700; }
table.compare td.no { color: var(--ink-mute); opacity: .4; }
table.compare tr.compare-cat-row td {
  text-align: left; background: var(--paper); color: var(--ink-mute);
  font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; padding: 9px 16px;
  border-bottom: 1px solid var(--line);
}
.compare-cat-note {
  display: block; margin-top: 3px; font-family: "Public Sans", sans-serif;
  font-size: 11.5px; font-weight: 500; text-transform: none;
  letter-spacing: normal; color: var(--ink-soft); opacity: .85;
}

/* ---- domain search widget ---- */
.domain-search { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.ds-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ds-row input[type="text"] { flex: 1; min-width: 200px; padding: 13px 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 15px; font-family: "Public Sans", sans-serif; }
.ds-row input[type="text"]:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.ds-results { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.ds-result { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border: 1px solid var(--line); border-radius: 8px; }
.ds-result .dr-name { font-family: "IBM Plex Mono", monospace; font-weight: 600; }
.ds-result .dr-status { font-size: 12.5px; font-weight: 700; font-family: "IBM Plex Mono", monospace; padding: 3px 10px; border-radius: 100px; }
.ds-result.available { border-color: var(--accent); }
.ds-result .dr-status.available { background: var(--accent-tint); color: var(--accent-deep); }
.ds-result .dr-status.taken { background: var(--line-soft); color: var(--ink-mute); }
.ds-loading { font-size: 13.5px; color: var(--ink-mute); font-family: "IBM Plex Mono", monospace; }

.tld-tabs { display: inline-flex; gap: 3px; margin-bottom: 22px; padding: 4px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.tld-tab { font-family: "IBM Plex Mono", monospace; font-size: 12.5px; font-weight: 600; color: var(--ink-mute); background: transparent; border: none; border-radius: 7px; padding: 8px 16px; cursor: pointer; transition: background .15s, color .15s; }
.tld-tab:hover { color: var(--ink); }
.tld-tab.active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.tld-tab span { color: var(--ink-mute); margin-left: 4px; }
.tld-tab.active span { color: var(--accent-deep); }
.tld-filter-input { width: 100%; max-width: 320px; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 14px; font-family: "Public Sans", sans-serif; margin-bottom: 18px; display: block; }
.tld-filter-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.tld-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 8px; }
.tld-tile { border: 1px solid var(--line); border-radius: 10px; padding: 12px 10px; text-align: center; background: var(--surface); transition: border-color .15s; }
.tld-tile:hover { border-color: var(--accent); }
.tld-tile .tld-ext { font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 12.5px; color: var(--ink); line-height: 1.3; overflow-wrap: break-word; hyphens: auto; }
.tld-tile .tld-price { font-size: 11px; color: var(--ink-mute); margin-top: 4px; white-space: nowrap; }
.tld-tile.on-sale { border-color: var(--critical); position: relative; }
.tld-sale-badge { position: absolute; top: -8px; right: 6px; background: var(--critical); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 100px; line-height: 1.4; }
.tld-price-was { display: block; color: var(--ink-mute); text-decoration: line-through; font-size: 10px; }
.tld-price-now { display: block; color: var(--critical); font-weight: 700; }
.tld-empty { font-size: 13.5px; color: var(--ink-mute); text-align: center; padding: 24px 0; }
@media (max-width: 480px) { .tld-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); } }

.lost-password-panel { margin-top: 18px; }
.login-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

/* ---- checkout (signup.php) ---- */
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-side { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 901px) { .checkout-side { position: sticky; top: 90px; } }
.form-section-label { font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); font-weight: 700; margin: 30px 0 14px; padding-top: 22px; border-top: 1px solid var(--line); }

/* ---- upgrade checkboxes (signup.php, dedicated servers) ---- */
.upgrade-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.upgrade-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; transition: border-color .15s, background .15s; }
.upgrade-item:hover { border-color: var(--accent); }
.upgrade-item input[type="checkbox"] { width: 19px; height: 19px; flex: none; accent-color: var(--accent); cursor: pointer; }
.upgrade-item .upgrade-name { flex: 1; font-weight: 600; font-size: 14.5px; }
.upgrade-item .upgrade-price { font-family: "IBM Plex Mono", monospace; font-weight: 700; color: var(--accent-deep); font-size: 14.5px; white-space: nowrap; }
.upgrade-item:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }

/* ---- RAID level explainer (signup.php, dedicated servers) ---- */
.raid-explainer { list-style: none; margin: 10px 0 0; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.raid-explainer li { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.raid-explainer li b { color: var(--ink); font-family: "IBM Plex Mono", monospace; }
.domain-picker .dp-tabs { margin-bottom: 18px; }
.domain-picker .dp-panel .price-note { font-size: 13px; }
.login-side-col { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 760px) { .login-layout { grid-template-columns: 1fr; } }

/* ---- order / signup form ---- */
.order-form { display: flex; flex-direction: column; gap: 18px; max-width: 620px; }
/* Contact-form honeypot — off-screen, not display:none (some bots skip
   that check specifically), so a real visitor never sees or tabs into it
   but a script filling every field blindly still fills this one in. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select {
  padding: 11px 13px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); font-size: 14px; font-family: "Public Sans", sans-serif;
}
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field .field-hint { font-size: 11.5px; color: var(--ink-mute); }
.field .field-hint.ok { color: var(--success); }
.field .field-hint.err { color: var(--critical); }
.order-summary { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-summary .os-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); font-family: "IBM Plex Mono", monospace; font-weight: 700; margin-bottom: 3px; }
.order-summary .os-name { font-weight: 700; }
.order-summary .os-name .os-trial { font-weight: 500; color: var(--accent-deep); }
.order-summary .os-price { font-family: "IBM Plex Mono", monospace; font-size: 20px; font-weight: 700; text-align: right; }
.order-summary .os-price .os-price-period { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-mute); font-family: "Public Sans", sans-serif; }
.order-summary .os-free { color: var(--accent-deep); font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 15px; }
.order-summary.stacked-top { margin-bottom: 0; border-radius: 10px 10px 0 0; }
.order-summary.stacked-mid { margin-bottom: 0; border-radius: 0; border-top: none; }
.order-total { display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: var(--paper); border-radius: 0 0 10px 10px; padding: 14px 18px; font-weight: 700; font-family: "IBM Plex Mono", monospace; font-size: 15px; margin-bottom: 10px; }
.order-total #order-total-value { font-size: 18px; color: var(--accent); }
.order-total-due-later { margin: -4px 0 14px; padding: 0 18px; font-size: 12.5px; line-height: 1.5; color: var(--ink-mute); }
.order-total-due-later span { font-weight: 700; color: var(--ink-soft); font-family: "IBM Plex Mono", monospace; }
.consent-block { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 4px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; }
.consent-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.5; color: var(--ink-soft); cursor: pointer; }
.consent-row input { margin-top: 3px; flex: none; }
.consent-row a { color: var(--accent-deep); text-decoration: underline; }
.consent-fine-print { margin: 0; font-size: 12px; color: var(--ink-mute); }
.secure-checkout-note { margin: 10px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-mute); }
.plan-picker .plan-card { cursor: pointer; transition: border-color .15s; }
.plan-picker .plan-card:hover { border-color: var(--accent); }
.plan-picker .plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-picker .plan-card.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.order-msg { padding: 12px 16px; border-radius: 8px; font-size: 13.5px; }
.order-msg.err { background: color-mix(in srgb, var(--critical) 12%, transparent); color: var(--critical); }
.order-msg.ok { background: var(--accent-tint); color: var(--accent-deep); }
.side-cta .btn { display: block; }
