/* ===========================================================================
   launcheasy.com — site styles (all pages)
   Built on brand/tokens.css. Aperture v2.0: square everything, ink carries
   the frame, one accent on the element that moves.
   =========================================================================== */

/* Inline sprite wrapper: rendered at zero size, never displayed. */
.sprite-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- layout primitives ---------------------------------------------------- */
.wrap { width: min(1180px, 100% - 2 * var(--space-6)); margin-inline: auto; }

.section { padding-block: clamp(56px, 9vw, 112px); }
.section + .section { border-top: 1px solid var(--divider); }

/* Numbered section headers, echoing the style guide's own sectioning. */
.section-head { margin-bottom: var(--space-12); }
.section-head .eyebrow { color: var(--text-muted); display: block; margin-bottom: var(--space-4); }
.section-head h2 { font-size: clamp(28px, 4.2vw, 46px); }
.section-head p {
  max-width: 58ch; margin: var(--space-4) 0 0;
  color: var(--text-muted); font-size: 17px;
}

/* --- type ----------------------------------------------------------------- */
.display { font-size: clamp(40px, 8.2vw, 104px); line-height: 0.94; letter-spacing: -0.005em; }
.lede { font-size: clamp(17px, 1.7vw, 21px); max-width: 62ch; color: var(--text-muted); }
a { color: inherit; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px;
  padding: 13px 26px; border: 1px solid var(--divider); text-decoration: none;
  background: transparent; color: var(--text); cursor: pointer;
  transition: background-color .15s linear, color .15s linear, border-color .15s linear;
}
.btn:hover { border-color: var(--text); }
.btn svg { flex: none; }

/* The one accent, on the element that moves. */
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--text); border-color: var(--text); color: #fff; }
[data-surface="ink"] .btn-primary { color: var(--le-ink); }
[data-surface="ink"] .btn-primary:hover { background: #fff; border-color: #fff; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
}
.site-header .wrap { display: flex; align-items: center; gap: var(--space-8); min-height: 68px; }
.brand-lockup { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-lockup svg { width: 26px; height: 26px; }
.brand-lockup .wordmark { font-size: 21px; line-height: 1; }
.site-nav { display: flex; gap: var(--space-6); }
.site-nav a {
  font-size: 15px; text-decoration: none; color: var(--text-muted);
  padding-block: 4px; border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--text); border-bottom-color: var(--text); }
.nav-toggle { display: none; }

/* --- hero ----------------------------------------------------------------- */
.hero { padding-block: clamp(56px, 11vw, 132px) clamp(48px, 7vw, 88px); }
.hero .eyebrow { color: var(--text-muted); display: block; margin-bottom: var(--space-6); }
.hero .display { margin-bottom: var(--space-8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

/* --- stat strip ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--divider); }
.stats div { padding: var(--space-6) var(--space-4) var(--space-6) 0; }
.stats dt {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1;
}
.stats dd { margin: var(--space-2) 0 0; font-size: 13px; color: var(--text-muted);
            text-transform: uppercase; letter-spacing: 0.1em; }

/* --- three doors: audience routing under the hero ------------------------- */
.doors-section { padding-block: clamp(40px, 6vw, 72px); }
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.door {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6); border: 1px solid var(--divider); text-decoration: none;
  transition: border-color .15s linear;
}
.door:hover { border-color: var(--text); }
.door > svg { width: 26px; height: 26px; color: var(--text); }
.door h2 { font-size: 20px; line-height: 1.15; }
.door p { margin: 0; font-size: 14px; color: var(--text-muted); }
.door .go {
  margin-top: auto; padding-top: var(--space-3);
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px; color: var(--text);
}
.door:hover .go span { text-decoration: underline; text-underline-offset: 4px; }

/* --- pricing teaser: flat monthly floors, one line ------------------------- */
.price-teaser {
  margin-top: var(--space-6); padding: var(--space-4) var(--space-6);
  border: 1px solid var(--divider); text-decoration: none;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-3) var(--space-8);
  font-size: 15px; color: var(--text-muted); transition: border-color .15s linear;
}
.price-teaser:hover { border-color: var(--text); }
.price-teaser b {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-right: 4px;
}
.teaser-go {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--text);
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px;
}
.price-teaser:hover .teaser-go { text-decoration: underline; text-underline-offset: 4px; }

/* --- why us: the AI-race narrative ---------------------------------------- */
#why .depth { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
#why .lede { margin-top: 0; }
#why p { color: var(--text-muted); font-size: 16px; }
#why .lede { color: var(--text); }
#why > .wrap strong { font-family: var(--font-heading); font-weight: var(--weight-heading);
              text-transform: uppercase; letter-spacing: 0.02em; font-size: 18px; }
.why-tiles { list-style: none; margin: 0; padding: 0; }
.why-tiles li { display: grid; grid-template-columns: 26px 1fr; gap: var(--space-4);
                padding-block: var(--space-4); border-top: 1px solid var(--divider); }
.why-tiles li:last-child { border-bottom: 1px solid var(--divider); }
.why-tiles svg { width: 22px; height: 22px; margin-top: 3px; color: var(--text); }
.why-tiles h3 { font-size: 17px; margin-bottom: 3px; }
.why-tiles p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* --- services grid -------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--divider); }
.service { background: var(--bg); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.service svg { width: 26px; height: 26px; color: var(--text); }
.service h3 { font-size: 19px; }
.service p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* --- ink surfaces ------------------------------------------------------------
   data-surface="ink" remaps the colour tokens, but something has to paint with
   them. Without this, an ink section inherits Ground and only its text colours
   change. Applies to every ink band: datacenter, what-changes, compute, footer. */
[data-surface="ink"] { background: var(--bg); color: var(--text); }

/* --- datacenter ------------------------------------------------------------- */
.dc-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.dc-list { list-style: none; margin: 0; padding: 0; }
.dc-list li { display: grid; grid-template-columns: 26px 1fr; gap: var(--space-4);
              padding-block: var(--space-4); border-top: 1px solid var(--divider); }
.dc-list li:last-child { border-bottom: 1px solid var(--divider); }
/* Ink, not accent: the section's one accent is its call to action. */
.dc-list svg { width: 22px; height: 22px; margin-top: 3px; color: var(--text); }
.dc-list h3 { font-size: 17px; margin-bottom: 3px; }
.dc-list p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* --- platforms ------------------------------------------------------------ */
.platforms { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.platform {
  display: flex; flex-direction: column; gap: var(--space-4);
  padding: var(--space-8); border: 1px solid var(--divider); text-decoration: none;
  transition: border-color .15s linear;
}
.platform:hover { border-color: var(--text); }
.platform-mark { width: 52px; height: 52px; }
.platform h3 { font-size: clamp(26px, 3vw, 34px); }
.platform .meaning { font-size: 17px; margin: 0; }
.platform p { margin: 0; font-size: 15px; color: var(--text-muted); }
.platform .go {
  margin-top: auto; padding-top: var(--space-4);
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; color: var(--text);
}
/* Ink, not the brand accent: Gantry Amber is 3.3:1 on Ground and fails AA at
   this size. Each card's accent is carried by its mark instead. */
.platform:hover .go span { text-decoration: underline; text-underline-offset: 4px; }

/* --- depth / capabilities ------------------------------------------------- */
.depth { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); }
.depth h3 { font-size: 15px; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: var(--space-4); }
.depth ul { list-style: none; margin: 0; padding: 0; }
.depth li { padding-block: var(--space-3); border-top: 1px solid var(--divider); font-size: 17px; }
.depth li:last-child { border-bottom: 1px solid var(--divider); }
.depth li span { display: block; font-size: 14px; color: var(--text-muted); margin-top: 2px; }

/* --- closing CTA ---------------------------------------------------------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(30px, 5.4vw, 62px); margin-bottom: var(--space-4); }
.cta p { max-width: 52ch; margin-inline: auto; color: var(--text-muted); font-size: 17px; }
.cta .hero-actions { justify-content: center; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--bg); color: var(--text); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer-grid h4 { font-size: 13px; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: var(--space-4); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.footer-grid a { font-size: 15px; text-decoration: none; color: var(--text-muted); }
.footer-grid a:hover { color: var(--text); }
.footer-brand { max-width: 34ch; }
/* The lockup is identity, not a nav link — it must not take the muted colour. */
.footer-brand .brand-lockup { margin-bottom: var(--space-4); color: var(--text); }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin: 0; }
.footer-brand address { font-size: 14px; color: var(--text-muted); margin-top: var(--space-4); }
.footer-brand address a { color: inherit; }
.footer-brand address a:hover { color: var(--text); }
.footer-base {
  margin-top: var(--space-12); padding-top: var(--space-6);
  border-top: 1px solid var(--divider);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
}
.footer-base .eyebrow { font-size: 11px; }

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .dc-grid, .platforms, .depth, .doors { grid-template-columns: 1fr; }
  #why .depth { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-nav {
    display: none; position: absolute; inset: 68px 0 auto; flex-direction: column;
    gap: 0; padding: var(--space-4) var(--space-6);
    background: var(--bg); border-bottom: 1px solid var(--divider);
  }
  .site-header:has(.nav-toggle:checked) .site-nav { display: flex; }
  .site-nav a { padding-block: var(--space-3); border-bottom: 1px solid var(--divider); }
  .nav-toggle-label {
    display: grid; place-items: center; width: 38px; height: 38px;
    border: 1px solid var(--divider); cursor: pointer;
  }
  .services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) { .nav-toggle-label { display: none; } }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
html { scroll-behavior: smooth; }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--text); color: var(--bg); padding: var(--space-3) var(--space-4);
}
.skip:focus { left: 0; }

/* ===========================================================================
   Sub-pages (hosting, contact, legal, 404)
   =========================================================================== */

/* --- page hero (smaller than the homepage hero) --------------------------- */
.page-hero { padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 72px); }
.page-hero .eyebrow { color: var(--text-muted); display: block; margin-bottom: var(--space-4); }
.page-hero h1 { font-size: clamp(34px, 6vw, 72px); line-height: 0.96; margin-bottom: var(--space-6); }

/* --- current nav item ------------------------------------------------------ */
.site-nav a[aria-current="page"] { color: var(--text); border-bottom-color: var(--accent); }

/* --- the walls (what a captive platform costs you) ------------------------- */
.walls { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--divider); }
.walls div { background: var(--bg); padding: var(--space-6); }
.walls h3 { font-size: 17px; margin-bottom: 4px; }
.walls p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* --- comparison table ------------------------------------------------------ */
.compare-scroll { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td {
  text-align: left; vertical-align: top; padding: var(--space-4);
  border-top: 1px solid var(--divider); font-size: 15px;
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 1px solid var(--divider); }
.compare thead th {
  border-top: 0; font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px;
}
.compare tbody th { font-weight: var(--weight-body); color: var(--text-muted); width: 22%; font-size: 14px; }
.compare td.from { color: var(--text-muted); }
.compare td.to { border-left: 1px solid var(--divider); }

/* --- migration process steps ----------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step; display: grid; grid-template-columns: 56px 1fr;
  gap: var(--space-4); padding-block: var(--space-5, 20px); border-top: 1px solid var(--divider);
}
.steps li:last-child { border-bottom: 1px solid var(--divider); }
.steps li::before {
  content: "0" counter(step); font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: 28px; line-height: 1; color: var(--text-muted);
}
.steps h3 { font-size: 18px; margin-bottom: 2px; }
.steps p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* --- hosting plan cards ----------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; }
.plans-4 { grid-template-columns: repeat(2, 1fr); }
.plan .proof {
  margin: 0; font-size: 13px; font-style: italic; color: var(--text-muted);
  border-left: 2px solid var(--accent); padding-left: var(--space-3);
}
/* Price ladders: label left, figure right, tabular figures already on body. */
.tiers { list-style: none; margin: 0; padding: 0; }
.tiers li {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4);
  padding-block: 6px; font-size: 14px; color: var(--text-muted);
}
.tiers li + li { border-top: 1px solid var(--divider); }
.tiers .amt {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: 19px; color: var(--text); text-align: right;
}
/* Quote-on-request rows: same weight as a figure, but obviously actionable. */
.tiers .amt-quote {
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; border-bottom: 1px solid var(--accent); white-space: nowrap;
}
.tiers .amt-quote:hover { border-bottom-color: var(--text); }
.plan { display: flex; flex-direction: column; gap: var(--space-4); padding: var(--space-8); border: 1px solid var(--divider); }
.plan h3 { font-size: clamp(24px, 2.6vw, 30px); }
.plan .plan-for { margin: 0; font-size: 15px; }
.plan ul { list-style: none; margin: 0; padding: 0; }
.plan li { padding-block: var(--space-2); border-top: 1px solid var(--divider); font-size: 14px; color: var(--text-muted); }
.plan .price { margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--divider); }
.plan .price .amount { display: block; }
.price .amount {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: 30px; line-height: 1;
}
.price .terms { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* --- Plesk plans: DISK-LED ---------------------------------------------------
   Deliberately a different treatment from the compute ladder below: these are
   sized by disk and use case, never by vCPU/RAM. The two must not read as one
   comparison grid. */
.disk-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--divider); }
.disk-plan { background: var(--bg); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.disk-plan h3 { font-size: 17px; color: var(--text-muted); }
.disk { margin: 0; display: flex; align-items: baseline; gap: var(--space-2); }
.disk-amount {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: clamp(30px, 3.4vw, 42px); line-height: 1;
}
.disk-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.use { margin: 0; font-size: 14px; color: var(--text-muted); flex: 1; }
.disk-price {
  margin: 0; padding-top: var(--space-3); border-top: 1px solid var(--divider);
  font-family: var(--font-heading); font-weight: var(--weight-heading); font-size: 24px;
}
.disk-price span { font-size: 15px; color: var(--text-muted); }

/* Shared feature notes under a pricing block. */
.plan-notes { list-style: none; margin: var(--space-8) 0 0; padding: 0;
              display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 var(--space-8); }
.plan-notes li { padding-block: var(--space-3); border-top: 1px solid var(--divider);
                 font-size: 14px; color: var(--text-muted); }

/* --- App/VPS: COMPUTE-LED ----------------------------------------------------
   Ink surface + a spec table, so it cannot be confused with the disk cards. */
.compute-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px);
                 margin-bottom: var(--space-12); }
.compute-intro h3 { font-size: 20px; margin-bottom: var(--space-2); }
.compute-intro p { margin: 0; font-size: 15px; color: var(--text-muted); }

.tiers-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.tiers-table th, .tiers-table td {
  text-align: left; padding: var(--space-4) var(--space-4) var(--space-4) 0;
  border-top: 1px solid var(--divider); font-size: 15px;
}
.tiers-table thead th {
  border-top: 0; font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; color: var(--text-muted);
}
.tiers-table tbody th {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; font-size: 19px; width: 22%;
}
.tier-note { display: block; font-family: var(--font-body); font-weight: var(--weight-body);
             text-transform: none; font-size: 12px; color: var(--text-muted); letter-spacing: 0; }
/* Compute is the headline spec; storage is secondary by weight, not by label. */
.tiers-table .spec { font-size: 17px; }
.tiers-table .store { color: var(--text-muted); }
.tiers-table .amt {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: 24px; text-align: right; padding-right: 0;
}
.tiers-table tbody tr:last-child th, .tiers-table tbody tr:last-child td { border-bottom: 1px solid var(--divider); }

.addon { margin: var(--space-6) 0 0; font-size: 15px; color: var(--text-muted); }
.addon strong { color: var(--text); }
.terms-line { margin: var(--space-2) 0 0; font-size: 13px; color: var(--text-muted);
              text-transform: uppercase; letter-spacing: 0.1em; }

.enterprise {
  margin-top: var(--space-12); padding: var(--space-8);
  border: 1px solid var(--divider);
  display: grid; grid-template-columns: 1.1fr 1fr auto; gap: clamp(24px, 4vw, 48px); align-items: center;
}
.enterprise h3 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: var(--space-2); }
.enterprise > div > p { margin: 0; font-size: 15px; color: var(--text-muted); }
.enterprise ul { list-style: none; margin: 0; padding: 0; }
.enterprise li { padding-block: 5px; font-size: 14px; color: var(--text-muted); }

/* --- colocation --------------------------------------------------------------- */
.colo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.colo-grid .plan-notes { grid-template-columns: 1fr; margin-top: 0; }

/* --- billing promise ---------------------------------------------------------- */
.billing-points { list-style: none; margin: 0; padding: 0;
                  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--divider); }
.billing-points li { background: var(--bg); padding: var(--space-6); }
.billing-points h3 { font-size: 18px; margin-bottom: var(--space-2); }
.billing-points p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* Visually hidden, still announced. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- FAQ -------------------------------------------------------------------- */
.faq { max-width: 76ch; }
.faq details { border-top: 1px solid var(--divider); }
.faq details:last-child { border-bottom: 1px solid var(--divider); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); padding-block: var(--space-4);
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: uppercase; letter-spacing: 0.02em; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--text-muted); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 var(--space-4); font-size: 15px; color: var(--text-muted); max-width: 68ch; }

/* --- case study ------------------------------------------------------------- */
.case-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.case-quote {
  font-family: var(--font-heading); font-weight: var(--weight-heading); text-transform: uppercase;
  font-size: clamp(24px, 3.2vw, 38px); line-height: 1.1; margin: 0 0 var(--space-6);
}
.case-quote em { font-style: normal; color: var(--accent); }
.case-body p { font-size: 15px; color: var(--text-muted); margin: 0 0 var(--space-4); }
.case-stats { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--divider); }
.case-stats div { padding-block: var(--space-5, 20px); border-bottom: 1px solid var(--divider); }
.case-stats dt {
  font-family: var(--font-heading); font-weight: var(--weight-heading);
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1;
}
.case-stats dd { margin: var(--space-2) 0 0; font-size: 13px; color: var(--text-muted);
                 text-transform: uppercase; letter-spacing: 0.1em; }

/* --- contact ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.contact-email {
  display: inline-block; font-family: var(--font-heading); font-weight: var(--weight-heading);
  text-transform: lowercase; font-size: clamp(24px, 3.6vw, 44px); line-height: 1.1;
  color: var(--text); text-decoration: none; border-bottom: 2px solid var(--accent);
  margin-bottom: var(--space-6);
}
.contact-email:hover { border-bottom-color: var(--text); }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: grid; grid-template-columns: 26px 1fr; gap: var(--space-4);
                   padding-block: var(--space-4); border-top: 1px solid var(--divider); }
.contact-list li:last-child { border-bottom: 1px solid var(--divider); }
.contact-list svg { width: 22px; height: 22px; margin-top: 3px; color: var(--text); }
.contact-list h3 { font-size: 17px; margin-bottom: 3px; }
.contact-list p, .contact-list address { margin: 0; font-size: 14px; color: var(--text-muted); }
.contact-list a { color: inherit; }
.contact-list a:hover { color: var(--text); }
address { font-style: normal; }

/* --- legal prose ------------------------------------------------------------ */
.prose { max-width: 72ch; }
.prose h2 { font-size: 22px; margin: var(--space-8) 0 var(--space-3); }
.prose p, .prose li { font-size: 15px; color: var(--text-muted); }
.prose ul { padding-left: 1.2em; }
.prose .updated { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }

/* --- 404 -------------------------------------------------------------------- */
.notfound { text-align: center; padding-block: clamp(72px, 14vw, 160px); }
.notfound svg { width: 72px; height: 72px; margin-bottom: var(--space-6); }
.notfound h1 { font-size: clamp(36px, 7vw, 84px); margin-bottom: var(--space-4); }
.notfound p { color: var(--text-muted); max-width: 46ch; margin: 0 auto var(--space-8); }

/* --- sub-page responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .plans, .plans-4 { grid-template-columns: 1fr; }
  .case-grid, .contact-grid { grid-template-columns: 1fr; }
  .walls { grid-template-columns: 1fr; }
  .disk-plans { grid-template-columns: repeat(2, 1fr); }
  .compute-intro, .colo-grid, .plan-notes { grid-template-columns: 1fr; }
  .billing-points { grid-template-columns: 1fr; }
  .enterprise { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 640px) {
  .disk-plans { grid-template-columns: 1fr; }
}
