:root {
  --ink: #151515;
  --ink-2: #303033;
  --muted: #64646a;
  --paper: #ffffff;
  --surface: #f6f6f4;
  --surface-2: #eceae6;
  --brand: #b31217;
  --brand-dark: #7c0f13;
  --brand-soft: #fae9e8;
  --brand-wash: #fff7f6;
  --line: #deddd9;
  --dark: #171719;
  --dark-2: #232326;
  --success: #1f7a51;
  --warning: #9f5c00;
  --shadow: 0 24px 70px rgba(22, 18, 16, .13);
  --shadow-soft: 0 12px 35px rgba(22, 18, 16, .08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: min(1200px, calc(100% - 40px));
  --measure: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #1769aa; outline-offset: 4px; }
::selection { background: #ffd9d7; color: #151515; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border: 2px solid #111;
  border-radius: 8px;
  background: #fff;
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }
.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;
}
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(var(--measure), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(21,21,21,.09);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.04; }
.brand-copy strong { font-size: 1.42rem; letter-spacing: -.045em; }
.brand-copy strong span { color: var(--brand); }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: .7rem; letter-spacing: .035em; }
.brand-copy small span { color: var(--brand); font-weight: 850; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a { text-decoration: none; font-weight: 700; font-size: .91rem; white-space: nowrap; }
.primary-nav a:not(.nav-cta):hover,
.primary-nav a[aria-current="page"] { color: var(--brand); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
}
.nav-cta:hover { background: var(--brand); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button span[aria-hidden] { width: 25px; height: 2px; display: block; margin: 5px 0; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }
.menu-button[aria-expanded="true"] span[aria-hidden]:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span[aria-hidden]:nth-of-type(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span[aria-hidden]:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

/* Typography and shared UI */
.eyebrow {
  margin: 0 0 15px;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin-top: 0; line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
h1 { margin-bottom: 24px; font-size: clamp(2.65rem, 5.6vw, 5.25rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { margin-bottom: 12px; font-size: 1.36rem; }
h4 { margin-bottom: 10px; font-size: 1.08rem; }
p { margin-top: 0; }
.lead { color: var(--ink-2); font-size: clamp(1.08rem, 1.45vw, 1.28rem); line-height: 1.65; }
.body-large { color: var(--ink-2); font-size: 1.16rem; }
.muted { color: var(--muted); }
.text-link { color: var(--brand); font-weight: 780; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(179,18,23,.18); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary { background: #fff; border-color: #c9c7c2; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--brand); }

.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-muted { background: var(--surface); }
.section-warm { background: var(--brand-wash); }
.section-dark { background: var(--dark); color: #fff; }
.section-heading { max-width: 850px; margin-bottom: 46px; }
.section-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-heading > p:last-child { color: #bdbdc2; }
.two-column { display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: start; }
.three-column { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Homepage hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 80% 15%, rgba(179,18,23,.12), transparent 31%),
    linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent 0%, #000 52%, #000 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.brand-motto {
  display: inline-flex;
  align-items: center;
  gap: .22em;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(179,18,23,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .025em;
  box-shadow: 0 8px 24px rgba(22,18,16,.05);
}
.brand-motto span { color: var(--brand); font-weight: 900; }
.hero-copy h1 { max-width: 780px; }
.hero-copy .lead { max-width: 760px; margin-bottom: 28px; }
.hero-note { max-width: 700px; margin: 17px 0 0; color: var(--muted); font-size: .86rem; }
.hero-note strong { color: var(--ink); }

.operations-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 25px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.operations-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -85px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(179,18,23,.09);
}
.operations-topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.operations-topline strong { display: flex; align-items: center; gap: 8px; color: var(--success); }
.operations-topline i { width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(31,122,81,.12); }
.operations-map { position: relative; min-height: 395px; }
.node, .hub {
  position: absolute;
  width: 160px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.node::after { content: ""; position: absolute; z-index: -1; height: 1px; background: #c7c2bc; transform-origin: left; }
.node span, .hub span { display: block; color: var(--brand); font-size: .69rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.node b, .hub b { display: block; margin-top: 5px; font-size: .78rem; line-height: 1.3; }
.node-users { top: 30px; left: 12px; }
.node-users::after { width: 145px; right: -138px; bottom: -30px; transform: rotate(28deg); }
.node-network { top: 32px; right: 4px; }
.node-network::after { width: 135px; left: -120px; bottom: -26px; transform: rotate(151deg); }
.node-server { bottom: 34px; left: 8px; }
.node-server::after { width: 130px; right: -117px; top: -25px; transform: rotate(-25deg); }
.node-backup { bottom: 28px; right: 4px; }
.node-backup::after { width: 138px; left: -121px; top: -25px; transform: rotate(205deg); }
.hub {
  z-index: 2;
  width: 196px;
  min-height: 154px;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  transform: translate(-50%, -50%);
  border-color: rgba(179,18,23,.28);
  background: var(--brand-soft);
  text-align: center;
}
.hub img {
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  border-radius: 9px;
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(179,18,23,.14);
}
.hub b { font-size: .86rem; }
.operations-footer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; z-index: 2; }
.operations-footer span { padding: 8px 5px; border-radius: 8px; background: var(--surface); text-align: center; color: var(--muted); font-size: .67rem; font-weight: 750; }

/* Metrics */
.metric-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.metric-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.metric { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 24px 20px; border-right: 1px solid var(--line); }
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; padding-right: 0; }
.metric strong { display: block; font-size: 1.4rem; letter-spacing: -.035em; }
.metric span { display: block; margin-top: 4px; color: var(--muted); font-size: .77rem; line-height: 1.4; }

/* Reliability */
.reliability-section { background: var(--dark); color: #fff; }
.reliability-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 58px;
  align-items: center;
}
.reliability-copy h2 { margin-bottom: 16px; color: #fff; }
.reliability-copy > p:last-child { max-width: 720px; margin-bottom: 0; color: #c7c7cc; font-size: 1.08rem; }
.reliability-section .eyebrow { color: #ff8f91; }
.retention-proof {
  position: relative;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid #3c3c40;
  border-radius: 20px;
  background: var(--dark-2);
}
.retention-proof::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -65px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(179,18,23,.18);
}
.retention-proof strong { position: relative; z-index: 1; display: block; color: #fff; font-size: clamp(3rem, 7vw, 5.3rem); line-height: .95; letter-spacing: -.065em; }
.retention-proof span { position: relative; z-index: 1; display: block; margin-top: 14px; color: #f0f0f2; font-size: 1.03rem; font-weight: 720; line-height: 1.5; }
.retention-proof small { position: relative; z-index: 1; display: block; margin-top: 14px; color: #aaaab0; font-size: .78rem; line-height: 1.55; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.card-dark { border-color: var(--dark); background: var(--dark); color: #fff; }
.card p { color: var(--muted); }
.card-dark p { color: #c7c7cc; }
.card a { margin-top: auto; color: var(--brand); font-weight: 780; text-decoration: none; }
.card-dark a { color: #fff; }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); }
.card-dark .card-icon { background: rgba(255,255,255,.09); color: #ff8f91; }
.card-icon svg { width: 24px; height: 24px; }

/* Predictability */
.predict-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.price-card { padding: 34px; border: 1px solid rgba(179,18,23,.22); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.price-card .label { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: .73rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin: 24px 0 12px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.price-rule { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.price-features { list-style: none; margin: 25px 0 0; padding: 0; display: grid; gap: 11px; }
.price-features li { position: relative; padding-left: 30px; }
.price-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }

/* Response model */
.response-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.response-card { padding: 26px; border: 1px solid #3a3a3e; border-radius: 15px; background: var(--dark-2); }
.response-card strong { display: block; margin-bottom: 8px; color: #fff; font-size: 1.45rem; letter-spacing: -.04em; }
.response-card span { color: #bdbdc2; font-size: .86rem; }
.response-note { margin: 24px 0 0; color: #a7a7ad; font-size: .82rem; }

/* Process */
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #3c3c40; }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid #3c3c40; }
.process-list > li > span { color: #ff8a8d; font-size: .75rem; font-weight: 850; letter-spacing: .13em; }
.process-list h3 { margin-bottom: 7px; font-size: 1.55rem; }
.process-list p { margin: 0; color: #bdbdc2; }

/* Datacenter */
.datacenter-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: center; }
.rack-visual { min-height: 505px; display: flex; flex-direction: column; justify-content: center; padding: 35px; border: 1px solid #37373b; border-radius: 23px; background: #101011; box-shadow: var(--shadow); }
.rack-head { display: flex; gap: 8px; margin-bottom: 20px; }
.rack-head span { width: 10px; height: 10px; border-radius: 50%; background: #49494d; }
.rack-unit { display: grid; grid-template-columns: 15px 15px 15px 1fr; align-items: center; gap: 9px; min-height: 70px; margin-bottom: 10px; padding: 0 18px; border: 1px solid #3a3a3e; border-radius: 8px; background: #242427; }
.rack-unit i { width: 8px; height: 8px; border-radius: 50%; background: #39a86d; box-shadow: 0 0 10px rgba(57,168,109,.55); }
.rack-unit b { justify-self: end; color: #c9c9cd; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.rack-status { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.rack-status span { padding: 9px; border-radius: 7px; background: #2d2d30; color: #aaaab0; text-align: center; font-size: .68rem; }
.feature-list { list-style: none; margin: 28px 0 32px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-list li { position: relative; padding: 15px 15px 15px 42px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feature-list li::before { content: ""; position: absolute; left: 17px; top: 20px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px var(--brand-soft); }

/* Additional services */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.addon .tag { display: inline-block; margin-bottom: 30px; color: var(--brand); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.addon p { color: var(--muted); }
.addon small { display: block; margin-top: 18px; color: var(--muted); }

/* Location */
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.location-list { display: flex; flex-wrap: wrap; gap: 9px; }
.location-list span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .83rem; font-weight: 700; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 52px 23px 0; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 780; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--brand); font-size: 1.55rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list .faq-answer { max-width: 840px; padding: 0 50px 24px 0; color: var(--muted); }

/* CTA and forms */
.cta-section { padding: 86px 0; background: var(--brand); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; }
.cta-section .eyebrow { color: #ffd2d0; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: #ffe5e3; }
.cta-panel { padding: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: rgba(255,255,255,.1); }
.cta-contact { display: grid; gap: 12px; }
.cta-contact a { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.cta-contact a:last-child { border-bottom: 0; }
.cta-contact span { color: #ffd9d7; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-item strong, .contact-item span, .contact-item a { display: block; }
.contact-item span { margin-bottom: 4px; color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-item a { font-size: 1.08rem; font-weight: 780; text-decoration: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #c9c7c2; border-radius: 9px; background: #fff; color: var(--ink); }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand); outline: 3px solid rgba(179,18,23,.12); }
.form-consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.form-consent input { margin-top: 4px; }
.form-status { min-height: 24px; grid-column: 1 / -1; margin: 0; color: var(--success); font-weight: 750; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 78px 0 82px; background: linear-gradient(180deg, #fff, #f8f7f4); }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -90px; top: -120px; border-radius: 50%; background: rgba(179,18,23,.08); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px; padding: 0; list-style: none; color: var(--muted); font-size: .79rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #aaa; }
.breadcrumbs a { text-decoration: none; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 850px; }
.page-hero .lead { max-width: 770px; }
.hero-aside { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.hero-aside strong { display: block; margin-bottom: 12px; font-size: 1.2rem; }
.hero-aside ul { margin: 0; padding-left: 20px; color: var(--muted); }
.hero-aside li + li { margin-top: 8px; }

.content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 70px; align-items: start; }
.content-main > * { max-width: 820px; }
.content-main h2 { margin-top: 55px; font-size: clamp(1.85rem, 3.2vw, 2.75rem); }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 32px; }
.content-main p, .content-main li { color: var(--ink-2); }
.content-main ul, .content-main ol { padding-left: 22px; }
.content-main li + li { margin-top: 8px; }
.sidebar { position: sticky; top: 110px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.sidebar strong { display: block; margin-bottom: 13px; }
.sidebar nav { display: grid; gap: 7px; }
.sidebar nav a { padding: 8px 0; color: var(--muted); text-decoration: none; font-size: .9rem; }
.sidebar nav a:hover { color: var(--brand); }
.sidebar .button { width: 100%; margin-top: 20px; }

.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.result-card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.result-card strong { display: block; margin-bottom: 7px; }
.result-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.notice { margin: 28px 0; padding: 22px 24px; border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0; background: var(--brand-wash); }
.notice strong { display: block; margin-bottom: 6px; }
.notice p { margin: 0; }
.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--surface); font-size: .79rem; letter-spacing: .06em; text-transform: uppercase; }
td { color: var(--ink-2); font-size: .93rem; }
tr:last-child td { border-bottom: 0; }

/* Footer */
.site-footer { background: #101011; color: #fff; }
.footer-main { padding: 70px 0 54px; display: grid; grid-template-columns: 1.3fr .8fr .8fr .9fr; gap: 45px; }
.footer-brand p { max-width: 360px; color: #aaaab0; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand .brand-copy small { color: #aaaab0; }
.footer-column strong { display: block; margin-bottom: 17px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #dddde1; }
.footer-column nav { display: grid; gap: 10px; }
.footer-column a { color: #aaaab0; text-decoration: none; font-size: .88rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #2c2c30; color: #85858b; font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a { text-decoration: none; }

/* Responsive */
@media (max-width: 1050px) {
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: .84rem; }
  .hero-grid, .page-hero-grid { gap: 42px; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .metric:nth-child(3) { border-right: 0; }
  .metric:nth-child(n+4) { border-top: 1px solid var(--line); }
  .metric:nth-child(4) { padding-left: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .response-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-main .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 1.23rem; }
  .brand-copy small { font-size: .61rem; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 20px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
  }
  .primary-nav.is-open { display: grid; gap: 4px; }
  .primary-nav a { padding: 13px 8px; font-size: 1rem; }
  .nav-cta { justify-content: center; margin-top: 8px; }
  .hero { padding: 62px 0 68px; }
  .hero-grid, .page-hero-grid, .two-column, .predict-grid, .datacenter-grid, .location-grid, .cta-grid, .contact-layout, .reliability-panel { grid-template-columns: 1fr; }
  .operations-card { min-height: 500px; }
  .section { padding: 82px 0; }
  .two-column, .predict-grid, .datacenter-grid, .location-grid, .cta-grid, .contact-layout, .reliability-panel { gap: 46px; }
  .addon-grid, .three-column { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 42px; }
  .sidebar { position: static; }
  .page-hero { padding: 58px 0 64px; }
  .page-hero-grid { align-items: start; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 24px, 520px); }
  body { font-size: 15.5px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.55rem); }
  h2 { font-size: clamp(1.95rem, 10vw, 2.8rem); }
  .brand-copy small { display: none; }
  .hero::before { mask-image: linear-gradient(to bottom, transparent, #000); }
  .hero-copy .button { width: 100%; }
  .operations-card { min-height: 560px; padding: 18px; }
  .operations-map { min-height: 430px; }
  .node { width: 145px; }
  .node-users { top: 24px; left: 0; }
  .node-network { top: 24px; right: 0; }
  .node-server { bottom: 32px; left: 0; }
  .node-backup { bottom: 28px; right: 0; }
  .hub { width: 170px; min-height: 148px; padding: 14px; }
  .hub img { width: 52px; height: 52px; }
  .operations-footer { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { min-height: 112px; padding: 20px 14px; border-top: 1px solid var(--line); }
  .metric:nth-child(-n+2) { border-top: 0; }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(3) { border-right: 1px solid var(--line); padding-left: 0; }
  .metric:nth-child(4) { padding-left: 14px; }
  .metric:nth-child(5) { grid-column: 1 / -1; border-right: 0; padding-left: 0; }
  .card-grid, .response-grid, .feature-list, .result-grid, .form-grid { grid-template-columns: 1fr; }
  .card { min-height: 270px; padding: 26px; }
  .card-icon { margin-bottom: 35px; }
  .price-card { padding: 26px; }
  .process-list li { grid-template-columns: 54px 1fr; gap: 14px; }
  .rack-visual { min-height: 410px; padding: 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .footer-bottom-links { flex-wrap: wrap; }
  .form-field.full, .form-consent, .form-status { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Intrinsic sizing guards for narrow screens and wide tables */
.content-grid,
.content-main,
.sidebar,
.cta-grid > *,
.page-hero-grid > *,
.predict-grid > *,
.datacenter-grid > *,
.location-grid > *,
.contact-layout > *,
.reliability-panel > *,
.card,
.result-card {
  min-width: 0;
}
.table-wrap { width: 100%; max-width: 100%; }
.cta-contact a { min-width: 0; flex-wrap: wrap; }
.cta-contact strong,
.cta-contact span,
h1, h2, h3, p, li { overflow-wrap: anywhere; }

/* Sprint 3: production form, consent and legal content */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-alert {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 12px;
  outline: none;
}
.form-alert strong { display: block; margin-bottom: 7px; }
.form-alert ul { margin: 0; padding-left: 20px; }
.form-alert-error { border: 1px solid rgba(179,18,23,.3); background: var(--brand-wash); color: #781014; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .8rem; }
.form-note a, .form-consent a { color: var(--brand-dark); }
.form-grid .button[disabled] { cursor: wait; opacity: .68; }
.cf-turnstile { min-height: 65px; }

.thank-you-section { min-height: calc(100vh - 200px); display: grid; align-items: center; background: linear-gradient(180deg, #fff, #f8f7f4); }
.thank-you-card { padding: clamp(32px, 7vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); text-align: center; }
.thank-you-card > img { margin: 0 auto 22px; }
.thank-you-card .lead { max-width: 720px; margin-right: auto; margin-left: auto; }
.notice-box { max-width: 690px; margin: 30px auto; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-align: left; }
.notice-box p { margin: 7px 0 0; }
.primary-nav-simple { margin-left: auto; }

.legal-page { padding: 72px 0 92px; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 70px; align-items: start; }
.legal-content { max-width: 850px; }
.legal-content h1 { margin-bottom: 14px; }
.legal-content h2 { margin-top: 48px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.legal-content h3 { margin-top: 30px; }
.legal-content p, .legal-content li { color: var(--ink-2); }
.legal-content ul { padding-left: 22px; }
.legal-meta { margin: 0 0 36px; color: var(--muted); font-size: .86rem; }
.legal-nav { position: sticky; top: 110px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.legal-nav strong { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: 7px 0; color: var(--muted); text-decoration: none; font-size: .88rem; }
.legal-review-note { margin: 30px 0; padding: 18px 20px; border-left: 4px solid #b07a00; border-radius: 0 10px 10px 0; background: #fff8e7; }

.consent-banner {
  position: fixed;
  z-index: 9999;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #d6d3cd;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 65px rgba(20,20,22,.22);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .2s ease, transform .2s ease;
}
.consent-banner.is-visible { opacity: 1; transform: translateY(0); }
.consent-banner-copy strong { display: block; margin-bottom: 5px; }
.consent-banner-copy p { margin: 0; color: var(--muted); font-size: .85rem; }
.consent-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-banner .button { white-space: nowrap; }
.cookie-settings-trigger {
  position: fixed;
  z-index: 9000;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border: 1px solid #d4d1ca;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--muted);
  box-shadow: 0 5px 20px rgba(0,0,0,.09);
  font: inherit;
  font-size: .72rem;
  cursor: pointer;
}
.cookie-settings-trigger:hover, .cookie-settings-trigger:focus-visible { color: var(--brand); border-color: var(--brand); }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; order: -1; }
  .consent-banner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .form-note { grid-column: auto; }
  .consent-banner { right: 10px; bottom: 10px; left: 10px; padding: 16px; }
  .consent-banner-actions { display: grid; grid-template-columns: 1fr; }
  .consent-banner .button { width: 100%; }
  .cookie-settings-trigger { display: none; }
  .primary-nav-simple { display: flex; position: static; padding: 0; box-shadow: none; border: 0; }
  .primary-nav-simple a { font-size: .84rem; padding: 6px; }
}
.legal-layout > *, .legal-content { min-width: 0; }
.legal-content .table-wrap { min-width: 0; max-width: 100%; }

/* Multilingual navigation */
.language-menu {
  position: relative;
  flex: 0 0 auto;
}
.language-menu summary {
  display: inline-flex;
  min-width: 42px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  cursor: pointer;
  list-style: none;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--muted);
  font-size: .8rem;
}
.language-menu[open] summary,
.language-menu summary:hover {
  border-color: rgba(179,18,23,.35);
  color: var(--brand);
}
.language-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.primary-nav .language-menu-panel a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .86rem;
  white-space: nowrap;
}
.primary-nav .language-menu-panel a:hover,
.primary-nav .language-menu-panel a[aria-current="page"] {
  background: var(--brand-wash);
  color: var(--brand);
}
.language-menu-panel a span {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.response-card h3 { color: #fff; }
.response-card p { margin: 0; color: #bdbdc2; }
.section-footnote { margin: 24px 0 0; color: var(--muted); font-size: .84rem; }

@media (max-width: 1180px) and (min-width: 861px) {
  .header-inner { gap: 16px; }
  .primary-nav { gap: 10px; }
  .primary-nav > a { font-size: .78rem; }
  .nav-cta { padding-inline: 12px; }
}

@media (max-width: 860px) {
  .primary-nav .language-menu { margin: 4px 0; }
  .language-menu summary {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 8px;
    border: 0;
    border-radius: 0;
    font-size: 1rem;
  }
  .language-menu-panel {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 6px;
    border-radius: 10px;
    box-shadow: none;
    background: var(--surface);
  }
  .primary-nav .language-menu-panel a { padding: 10px 9px; }
}
