:root {
  --ink: #0b1531;
  --ink-2: #152347;
  --paper: #f6f4ee;
  --paper-2: #ebe9e2;
  --white: #fffefb;
  --lime: #caff46;
  --lime-deep: #9fdd17;
  --coral: #ff735c;
  --blue: #88a9ff;
  --muted: #657083;
  --line: #d8d9d6;
  --shadow: 0 24px 70px rgba(11, 21, 49, .12);
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 48px));
  --font: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(11, 21, 49, .08) .65px, transparent .65px);
  background-size: 8px 8px;
  content: "";
  opacity: .28;
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 640; letter-spacing: -.045em; line-height: 1.03; }
h1 { font-size: clamp(3.5rem, 8.4vw, 7.8rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.15rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(78px, 10vw, 132px); }
.section-soft { background: var(--paper-2); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink p { color: #b8c2d6; }
.section-actions { margin-top: 34px; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.preview-ribbon {
  min-height: 28px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(246, 244, 238, .92);
  border-bottom: 1px solid rgba(11, 21, 49, .1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img { width: 210px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 28px); }
.language-menu { position: relative; }
.language-menu summary { cursor: pointer; list-style: none; font-size: .84rem; font-weight: 750; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after { content: " ▾"; color: var(--blue); }
.language-menu > div { position: absolute; z-index: 20; top: calc(100% + .7rem); right: 0; display: grid; min-width: 12rem; padding: .45rem; border: 1px solid var(--line); border-radius: .7rem; background: var(--paper); box-shadow: var(--shadow); }
.language-menu a { padding: .45rem .6rem; border-radius: .4rem; color: var(--ink); font-size: .84rem; text-decoration: none; white-space: nowrap; }
.language-menu a:hover, .language-menu a:focus-visible { background: var(--soft); }
.language-menu a[aria-current="page"] { background: var(--soft); color: var(--blue); font-weight: 800; }
.primary-nav > a:not(.button) {
  position: relative;
  color: #36415a;
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}
.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle .icon { width: 28px; height: 28px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11, 21, 49, .18); }
.button-small { min-height: 42px; padding: 10px 17px; }
.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--white); }
.button-light { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.button-ghost { border-color: rgba(255, 255, 255, .45); background: transparent; color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.full { width: 100%; }
.back-link { width: fit-content; display: flex; margin-bottom: 32px; color: var(--muted); font-size: .76rem; font-weight: 750; text-decoration: none; }
.back-link:hover { color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(5px); }
.text-link-light { color: var(--lime); }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #58647a;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.eyebrow-accent { color: #4e6900; }
.eyebrow-light { color: var(--lime); }

.hero {
  min-height: min(770px, calc(100svh - 106px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 40px;
  align-items: center;
  padding-block: clamp(70px, 9vw, 122px);
}
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy h1 span { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero-lead { max-width: 730px; margin-bottom: 32px; color: #4c5870; font-size: clamp(1.12rem, 2vw, 1.38rem); }
.hero-note { margin-top: 26px; color: #59657b; font-size: .88rem; font-weight: 650; }

.boundary-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(11, 21, 49, .16);
  border-radius: 46% 46% 24px 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  isolation: isolate;
}
.boundary-visual::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 46%, rgba(136, 169, 255, .28), transparent 30%), linear-gradient(150deg, #111f43, #070e21 70%);
  content: "";
}
.boundary-visual::after {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px dashed rgba(202, 255, 70, .45);
  border-radius: 44% 44% 14px 14px;
  content: "";
}
.boundary-label { position: absolute; top: 38px; color: var(--lime); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.boundary-core {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 50px rgba(136, 169, 255, .12);
  text-align: center;
  backdrop-filter: blur(12px);
}
.boundary-core .icon { width: 36px; height: 36px; margin-bottom: 12px; color: var(--lime); }
.boundary-core strong { font-size: 1.1rem; }
.boundary-core span { margin-top: 7px; color: #aeb9ce; font-size: .74rem; line-height: 1.4; }
.pulse { position: absolute; inset: -12px; border: 1px solid rgba(202, 255, 70, .32); border-radius: 50%; animation: pulse 3s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; }
.orbit-one { width: 355px; height: 355px; animation: spin 24s linear infinite; }
.orbit-two { width: 455px; height: 455px; animation: spin 34s linear reverse infinite; }
.orbit span { position: absolute; padding: 6px 11px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: #152347; color: #d6dcea; font-size: .68rem; animation: spin 24s linear reverse infinite; }
.orbit span:first-child { top: -15px; left: 46%; }
.orbit span:last-child { right: -25px; bottom: 25%; }
.orbit-two span { animation-direction: normal; animation-duration: 34s; }
.boundary-status { position: absolute; bottom: 32px; display: flex; align-items: center; gap: 8px; color: #dce5c2; font-size: .78rem; font-weight: 700; }
.boundary-status .icon { color: var(--lime); }

@keyframes pulse { 0%, 100% { transform: scale(.97); opacity: .45; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.proof-strip { border-block: 1px solid rgba(11, 21, 49, .13); background: rgba(255, 254, 251, .68); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 138px; display: flex; flex-direction: column; justify-content: center; padding: 24px clamp(18px, 3vw, 40px); border-left: 1px solid rgba(11, 21, 49, .13); }
.proof-grid > div:last-child { border-right: 1px solid rgba(11, 21, 49, .13); }
.proof-grid strong { font-size: clamp(2rem, 3.8vw, 3.6rem); letter-spacing: -.06em; line-height: 1; }
.proof-grid span { max-width: 190px; margin-top: 8px; color: var(--muted); font-size: .82rem; line-height: 1.35; }

.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 650px; font-size: 1.1rem; }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.heading-row > div { max-width: 760px; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.path-card { position: relative; min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 4vw, 46px); overflow: hidden; border: 1px solid var(--ink); border-radius: var(--radius); }
.path-card::after { position: absolute; right: -55px; bottom: -75px; width: 190px; height: 190px; border: 1px solid rgba(11, 21, 49, .15); border-radius: 50%; content: ""; }
.path-card-lime { background: var(--lime); }
.path-card-coral { background: var(--coral); }
.path-card-blue { background: var(--blue); }
.path-card > .icon { width: 42px; height: 42px; margin: 58px 0 34px; }
.path-card h3 { margin-bottom: 14px; font-size: 2rem; }
.path-card p { color: rgba(11, 21, 49, .76); }
.path-card .text-link { margin-top: auto; }
.path-number { color: rgba(11, 21, 49, .65); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.split-feature { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(55px, 9vw, 120px); align-items: center; }
.split-feature h2 { margin-bottom: 26px; }
.split-feature > div:first-child > p { max-width: 640px; font-size: 1.08rem; }
.boundary-list { border-top: 1px solid rgba(255, 255, 255, .18); }
.boundary-list > div { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.boundary-list .icon { width: 30px; height: 30px; color: var(--lime); }
.boundary-list span { display: flex; flex-direction: column; color: #aeb9ce; font-size: .82rem; }
.boundary-list strong { color: var(--white); font-size: 1rem; }
.boundary-list b { padding: 6px 10px; border: 1px solid rgba(202, 255, 70, .45); border-radius: 999px; color: var(--lime); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 254, 251, .92);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: 0 22px 48px rgba(11, 21, 49, .1); }
.product-card[hidden] { display: none; }
.product-card-featured { border-color: var(--ink); background: var(--lime); }
.product-card-top { min-height: 78px; display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.product-card-top img { width: 62px; height: 62px; object-fit: contain; border-radius: 13px; }
.product-card-top > div { display: flex; flex-direction: column; align-items: end; text-align: right; }
.product-card .eyebrow { max-width: 140px; margin-bottom: 7px; font-size: .64rem; }
.product-card h3 { margin: 20px 0 12px; font-size: 1.52rem; }
.product-card p { margin-bottom: 22px; font-size: .92rem; }
.product-card .text-link { margin-top: auto; }
.pill { display: inline-flex; align-items: center; padding: 6px 10px; border: 1px solid rgba(11, 21, 49, .2); border-radius: 999px; color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.platform-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.platform-list span { padding: 4px 8px; border: 1px solid rgba(11, 21, 49, .13); border-radius: 6px; color: #697287; font-size: .67rem; font-weight: 700; }

.compare-panel { display: grid; grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr); gap: clamp(45px, 8vw, 110px); padding: clamp(34px, 6vw, 72px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.compare-panel h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.compare-list { border-top: 1px solid var(--line); }
.compare-list a { display: grid; grid-template-columns: 150px 1fr auto; gap: 18px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.compare-list a:hover strong { color: #4d6900; }
.compare-list span { color: var(--muted); font-size: .86rem; }

.cta-panel { min-height: 290px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(40px, 6vw, 74px); border-radius: var(--radius); background: var(--ink); color: var(--white); }
.cta-panel h2 { max-width: 750px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 4rem); }

.site-footer { padding-top: 76px; background: #070e21; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 55px; padding-bottom: 66px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; margin-top: 22px; color: #95a1b9; font-size: .9rem; }
.footer-top h2 { margin-bottom: 22px; color: #7f8aa2; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-top > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-top a, .footer-bottom a { color: #dbe1ed; font-size: .88rem; text-decoration: none; }
.footer-top a:hover, .footer-bottom a:hover { color: var(--lime); }
.footer-bottom { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .12); color: #7f8aa2; font-size: .75rem; }
.translation-notice { margin-top: 1rem; padding: .8rem 1rem; border: 1px solid #d7b24a; border-radius: .65rem; background: #fff8dd; color: #4c3c11; font-size: .92rem; }
.translation-notice a { margin-left: .35rem; font-weight: 750; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal button { appearance: none; border: 0; background: transparent; color: #dbe1ed; cursor: pointer; font: inherit; padding: 0; }
.footer-legal button:hover { color: var(--lime); }

.page-hero { padding-top: clamp(90px, 12vw, 165px); padding-bottom: clamp(70px, 9vw, 115px); }
.page-hero h1 { max-width: 1100px; margin-bottom: 30px; font-size: clamp(3.4rem, 7.8vw, 7rem); }
.page-hero > p, .page-hero > div > p { max-width: 800px; margin-bottom: 0; color: #4b5870; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.page-hero-dark { width: 100%; margin: 0; background: var(--ink); color: var(--white); }
.page-hero-dark > .shell { width: var(--shell); }
.page-hero-dark h1 { color: var(--white); }
.page-hero-dark > div > p { margin-bottom: 34px; color: #b8c2d6; }

.catalogue-shell { padding-bottom: clamp(90px, 12vw, 150px); }
.catalogue-toolbar { position: sticky; z-index: 20; top: 106px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(246, 244, 238, .94); box-shadow: 0 12px 38px rgba(11, 21, 49, .08); backdrop-filter: blur(16px); }
.search-box { min-width: 270px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.search-box input { width: 100%; min-height: 44px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .86rem; }
.filter-list { display: flex; flex-wrap: wrap; gap: 7px; justify-content: end; }
.filter-list button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .73rem; font-weight: 750; cursor: pointer; }
.filter-list button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.result-count { margin: 26px 0 18px; font-size: .8rem; font-weight: 700; }
.product-grid-catalogue { grid-template-columns: repeat(3, 1fr); }
.empty-state { padding: 70px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state h2 { font-size: 2rem; }

.decision-table { border-top: 1px solid var(--ink); }
.decision-row { display: grid; grid-template-columns: 1fr .6fr 1.3fr; gap: 35px; padding: 24px 12px; border-bottom: 1px solid var(--line); text-decoration: none; }
.decision-row:not(.decision-head):hover { background: var(--white); }
.decision-row span { color: var(--muted); }
.decision-head { color: #697287; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.workflow-card { min-height: 440px; display: flex; flex-direction: column; padding: clamp(32px, 5vw, 58px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.workflow-card:nth-child(2) { background: var(--lime); }
.workflow-card:nth-child(3) { background: var(--coral); }
.workflow-card:nth-child(4) { background: var(--blue); }
.workflow-card h2 { margin: 65px 0 20px; font-size: clamp(2rem, 3.4vw, 3.3rem); }
.workflow-card p { max-width: 560px; color: rgba(11, 21, 49, .74); }
.workflow-products { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.workflow-products a { display: inline-flex; align-items: center; gap: 5px; padding: 8px 11px; border: 1px solid rgba(11, 21, 49, .22); border-radius: 999px; font-size: .72rem; font-weight: 750; text-decoration: none; }
.workflow-products .icon { width: 13px; }

.steps { padding: 0; margin: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .17); }
.steps li > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(202, 255, 70, .5); border-radius: 50%; color: var(--lime); font-size: .75rem; font-weight: 800; }
.steps strong { color: var(--white); }
.steps p { margin: 4px 0 0; font-size: .88rem; }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-case-grid article { padding: 34px; border-top: 5px solid var(--lime-deep); background: var(--white); box-shadow: 0 12px 34px rgba(11, 21, 49, .07); }
.use-case-grid article:nth-child(2) { border-color: var(--coral); }
.use-case-grid article:nth-child(3) { border-color: var(--blue); }
.use-case-grid article > span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.architecture { display: grid; gap: 18px; padding: clamp(25px, 5vw, 60px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.architecture-clients, .architecture-servers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.architecture-clients span, .architecture-servers > div, .architecture-gateway, .architecture-admin { min-height: 78px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; text-align: center; }
.architecture-clients span { color: #546076; font-size: .78rem; font-weight: 750; }
.architecture-line { position: relative; color: #7a8497; font-size: .67rem; font-weight: 750; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.architecture-line::before, .architecture-line::after { position: absolute; top: 50%; width: 34%; height: 1px; background: var(--line); content: ""; }
.architecture-line::before { left: 0; }
.architecture-line::after { right: 0; }
.architecture-gateway { border-color: var(--ink); background: var(--ink); color: var(--white); }
.architecture-gateway span, .architecture-admin span, .architecture-servers span { color: #8792a6; font-size: .75rem; }
.architecture-servers > div { flex-direction: column; background: var(--paper); }
.architecture-servers .icon { color: #587ad1; }
.architecture-admin { border-color: #a1d227; background: var(--lime); color: var(--ink); }
.architecture-admin span { color: #4c6216; }
.planner-prompt { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px; margin-top: 28px; border: 1px solid var(--ink); border-radius: 18px; background: var(--white); }
.planner-prompt h3 { max-width: 700px; margin: 6px 0 10px; font-size: clamp(1.55rem, 2.5vw, 2.35rem); }
.planner-prompt p { max-width: 760px; margin: 0; }
.planner-prompt .button { flex: 0 0 auto; }

.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stage-grid article { min-height: 285px; padding: 32px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.stage-grid article:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stage-grid article:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.stage-grid b { color: #587300; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.stage-grid h3 { margin: 72px 0 12px; }
.stage-grid p { font-size: .86rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr); gap: clamp(45px, 10vw, 130px); align-items: end; margin-bottom: 55px; }
.split-heading p { font-size: 1.05rem; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-grid article { min-height: 270px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 254, 251, .6); }
.capability-grid .icon { width: 34px; height: 34px; margin-bottom: 55px; color: #5b7900; }

.boundary-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.boundary-cards article { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.boundary-card-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 50%; color: var(--ink); }
.boundary-card-icon .icon { width: 30px; height: 30px; }
.boundary-card-icon.lime { background: var(--lime); }
.boundary-card-icon.blue { background: var(--blue); }
.boundary-card-icon.coral { background: var(--coral); }
.boundary-cards h2 { margin: 22px 0 20px; font-size: 2.3rem; }
.boundary-cards p { min-height: 130px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #515d73; font-size: .84rem; }
.check-list .icon { color: #668b00; margin-top: 3px; }
.evidence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, .16); }
.evidence-grid article { min-height: 230px; padding: clamp(30px, 4vw, 48px); background: var(--ink); }
.evidence-grid strong { color: var(--lime); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.evidence-grid p { margin: 55px 0 0; }
.question-list { border-top: 1px solid var(--ink); }
.question-list details { border-bottom: 1px solid var(--line); }
.question-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 27px 4px; font-size: 1.12rem; font-weight: 700; cursor: pointer; list-style: none; }
.question-list summary::-webkit-details-marker { display: none; }
.question-list details[open] summary span { transform: rotate(45deg); }
.question-list summary span { transition: transform .2s ease; }
.question-list details p { max-width: 800px; padding: 0 4px 28px; margin: 0; }

.billing-bar { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 12px 38px rgba(11, 21, 49, .06); }
.billing-bar > div { display: grid; gap: 4px; }
.billing-bar > div span { color: var(--muted); font-size: .74rem; }
.billing-switch { display: grid; gap: 7px; padding: 0; margin: 0; border: 0; }
.billing-switch legend { margin-bottom: 7px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.billing-switch > div { display: flex; gap: 7px; }
.billing-switch button { min-height: 42px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: .72rem; font-weight: 750; cursor: pointer; }
.billing-switch button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.billing-switch > small { color: var(--muted); font-size: .64rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-grid > article { display: flex; flex-direction: column; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.price-grid > article.price-featured { background: var(--lime); transform: translateY(-18px); box-shadow: var(--shadow); }
.price-grid h2 { min-height: 110px; margin: 25px 0 20px; font-size: 2rem; }
.price { margin-bottom: 20px; font-size: clamp(2rem, 3.6vw, 3.5rem); font-weight: 700; letter-spacing: -.06em; }
.price small { font-size: .8rem; letter-spacing: 0; }
.price-grid article > p { min-height: 100px; }
.price-grid .check-list { margin-bottom: 34px; }
.price-grid .button { margin-top: auto; }
.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.rights-grid article { padding: 34px 34px 34px 0; border-bottom: 1px solid var(--line); }
.rights-grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.server-price { display: grid; gap: 14px; }
.server-price > div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.server-price span { color: var(--muted); }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle-grid article { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.principle-grid article > span { color: #608000; font-size: .75rem; font-weight: 850; }
.principle-grid h3 { margin: 85px 0 16px; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); }
.timeline > div { position: relative; padding: 40px 40px 20px; border-top: 2px solid var(--ink); }
.timeline > div::before { position: absolute; top: -8px; left: 38px; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); content: ""; }
.timeline span { font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.timeline h3 { margin: 65px 0 14px; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form { padding: clamp(30px, 5vw, 52px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.contact-form h2 { margin: 8px 0 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: .72rem; font-weight: 750; }
.form-grid input:not([type="checkbox"]), .form-grid select, .form-grid textarea { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper); color: var(--ink); }
.form-grid textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.form-consent { grid-template-columns: auto 1fr; align-items: start; color: var(--ink) !important; font-weight: 500 !important; line-height: 1.55; }
.form-consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--ink); }
.form-trap { position: absolute; left: -10000px; }
.form-privacy-note { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.form-actions [role="status"] { color: var(--muted); font-size: .76rem; }
.form-fallback { margin: 16px 0 0; font-size: .75rem; }
.contact-card { min-height: 510px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(36px, 6vw, 68px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.contact-card h2 { margin-bottom: 24px; }
.contact-card > .button { margin-top: 25px; }
.contact-card-dark { background: var(--ink); color: var(--white); }
.contact-card-dark ul { padding-left: 22px; color: #b8c2d6; }
.contact-card-dark li { margin-bottom: 10px; }
.contact-card-dark .button { margin-top: auto; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.contact-detail span { color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail a { font-size: 1.25rem; font-weight: 700; }
.saved-plan-section { display: grid; gap: 24px; padding: clamp(28px, 5vw, 54px); margin-bottom: 18px; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--lime); }
.saved-plan-section[hidden] { display: none; }
.saved-plan-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.saved-plan-heading h2 { max-width: 760px; margin: 7px 0 10px; }
.saved-plan-heading p { margin: 0; color: #4e641c; }
.saved-plan-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(11,21,49,.28); border-left: 1px solid rgba(11,21,49,.28); }
.saved-plan-summary > div { min-width: 0; padding: 17px; border-right: 1px solid rgba(11,21,49,.28); border-bottom: 1px solid rgba(11,21,49,.28); }
.saved-plan-summary span { display: block; margin-bottom: 6px; color: #4e641c; font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.saved-plan-summary strong { font-size: .84rem; overflow-wrap: anywhere; }
.saved-plan-actions { display: flex; align-items: center; gap: 18px; }
.saved-plan-actions > span { max-width: 480px; color: #4e641c; font-size: .72rem; }
.location { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.location-mark { width: 250px; height: 250px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 4rem; font-weight: 700; letter-spacing: -.08em; text-align: center; }
.location-mark span { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .08em; line-height: 1.5; }

.product-hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: 65px; align-items: center; padding-block: clamp(60px, 9vw, 120px); }
.back-link { display: inline-block; margin-bottom: 52px; color: var(--muted); font-size: .78rem; font-weight: 700; text-decoration: none; }
.product-hero h1 { margin-bottom: 24px; font-size: clamp(4rem, 8vw, 7.5rem); }
.product-hero-copy > p { max-width: 720px; margin-bottom: 32px; font-size: 1.2rem; }
.platform-list-large { margin-top: 26px; }
.platform-list-large span { padding: 6px 10px; font-size: .72rem; }
.product-hero-art { display: grid; place-items: center; }
.product-icon-stage { position: relative; width: min(100%, 440px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50% 50% 20px 50%; background: var(--blue); overflow: hidden; }
.product-icon-stage::before { position: absolute; inset: 28px; border: 1px dashed rgba(11, 21, 49, .35); border-radius: inherit; content: ""; }
.product-icon-stage img { position: relative; z-index: 2; width: 42%; height: 42%; object-fit: contain; filter: drop-shadow(0 22px 25px rgba(11, 21, 49, .22)); }
.product-icon-stage > span { position: absolute; right: 34px; bottom: 34px; padding: 8px 12px; border: 1px solid var(--ink); border-radius: 999px; background: var(--lime); font-size: .7rem; font-weight: 800; }
.stage-ring { position: absolute; width: 73%; height: 73%; border: 1px solid rgba(11, 21, 49, .25); border-radius: 50%; }
.product-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 140px); }
.product-intro h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
.outcome-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.outcome-list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.outcome-list .icon { color: #688c00; }
.privacy-ticket { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 34px; border: 1px solid rgba(202, 255, 70, .46); border-radius: var(--radius); background: rgba(202, 255, 70, .07); }
.privacy-ticket > .icon { width: 48px; height: 48px; color: var(--lime); }
.privacy-ticket div { display: flex; flex-direction: column; }
.privacy-ticket span, .privacy-ticket small { color: #9da9bf; font-size: .74rem; }
.privacy-ticket strong { color: var(--white); font-size: 1.35rem; }
.purchase-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr); gap: clamp(60px, 10vw, 130px); align-items: center; }
.purchase-layout h2 { margin-bottom: 22px; }
.purchase-layout > div:first-child > p { max-width: 650px; }
.product-billing { max-width: 680px; display: grid; gap: 18px; padding: 20px 0 26px; }
.product-billing .billing-switch { justify-items: start; }
.product-price-options { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.product-price-options > div { display: grid; align-content: start; padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); }
.product-price-options > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.product-price-options > div > span { color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-price-options strong { margin: 9px 0 5px; font-size: 1.35rem; }
.product-price-options strong small { color: var(--ink); font-size: .7rem; font-weight: 700; }
.product-price-options > div > small { color: var(--muted); font-size: .66rem; }
.channel-panel { display: grid; border-top: 1px solid var(--ink); }
.channel-panel > span { padding: 15px 0; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.channel-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
.channel-link:hover { color: #587500; }

.planner-hero { padding-bottom: clamp(65px, 9vw, 110px); }
.planner-hero .back-link { display: flex; width: fit-content; margin-bottom: 20px; }
.planner-hero h1 { max-width: 1050px; font-size: clamp(3.4rem, 7.3vw, 7rem); }
.planner-hero > p { max-width: 850px; }
.planner-section { padding-bottom: clamp(90px, 12vw, 150px); }
.planner-presets { display: grid; gap: 25px; padding: clamp(24px, 4vw, 42px); margin-bottom: 24px; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.planner-presets-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
.planner-presets-heading h2 { max-width: 760px; margin: 7px 0 10px; font-size: clamp(2rem, 4vw, 3.8rem); }
.planner-presets-heading p { max-width: 820px; margin: 0; }
.planner-presets-heading > .text-link { flex: 0 0 auto; margin-bottom: 5px; }
.planner-preset-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.planner-preset { min-width: 0; min-height: 185px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); color: var(--ink); text-align: left; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.planner-preset:hover { border-color: var(--ink); transform: translateY(-2px); }
.planner-preset[aria-pressed="true"] { border-color: var(--ink); background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
.planner-preset > span { color: var(--muted); font-size: .6rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.planner-preset > strong { margin: 14px 0 7px; font-size: 1rem; }
.planner-preset > small { color: var(--muted); font-size: .69rem; }
.planner-preset > b { margin-top: auto; padding-top: 17px; font-size: .65rem; }
.planner-preset-custom { border-style: dashed; }
.planner-save-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 2px; color: var(--muted); font-size: .7rem; }
.planner-save-row button { padding: 6px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); font-size: .7rem; font-weight: 800; cursor: pointer; }
.planner-layout { display: grid; grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.planner-controls { position: sticky; top: 124px; max-height: calc(100svh - 145px); display: grid; gap: 22px; padding: clamp(24px, 3.5vw, 38px); overflow-y: auto; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.planner-controls h2, .planner-panel-heading h2 { margin: 6px 0 10px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.planner-controls > div:first-child p { margin: 0; font-size: .82rem; }
#planner-preset-status { padding: 8px 10px; margin-bottom: 9px; border-radius: 8px; background: #eef8ce; color: #405018; font-weight: 750; }
.planner-control-group { padding-top: 22px; border-top: 1px solid var(--line); }
.planner-control-group h3 { margin: 5px 0 0; font-size: 1.15rem; }
.planner-field, .planner-range { display: grid; gap: 8px; }
.planner-field > span, .planner-range > span, .planner-apps legend, .planner-needs legend { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.planner-field select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); }
.planner-field select:disabled { opacity: .6; cursor: not-allowed; }
.planner-field > small, .planner-range > small { color: var(--muted); font-size: .67rem; }
.planner-range > span { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.planner-range output { color: var(--ink); font-size: .86rem; font-weight: 850; letter-spacing: 0; text-transform: none; }
.planner-range input { width: 100%; accent-color: var(--ink); }
.planner-apps { max-height: 230px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 16px; overflow-y: auto; border: 1px solid var(--line); border-radius: 12px; }
.planner-apps[hidden] { display: none; }
.planner-apps legend { grid-column: 1 / -1; padding: 0 6px; }
.planner-apps label { display: flex; gap: 8px; align-items: flex-start; color: #3e4960; font-size: .72rem; }
.planner-apps input, .planner-needs input { flex: 0 0 auto; accent-color: var(--ink); }
.planner-needs { display: grid; gap: 9px; padding: 0; border: 0; }
.planner-needs legend { margin-bottom: 9px; }
.planner-needs label { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: flex-start; padding: 13px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); cursor: pointer; }
.planner-needs input { margin-top: 4px; }
.planner-needs span { display: grid; }
.planner-needs strong { font-size: .8rem; }
.planner-needs small { color: var(--muted); font-size: .68rem; }
.planner-results { min-width: 0; display: grid; gap: 18px; }
.topology-panel, .planner-handoff { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.planner-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; margin-bottom: 28px; }
.planner-panel-heading h2 { margin-bottom: 0; }
.planner-recommendation { flex: 0 0 auto; padding: 7px 11px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .65rem; font-weight: 850; }
.deployment-canvas { display: grid; gap: 10px; padding: clamp(16px, 3vw, 28px); border-radius: 17px; background: var(--paper); }
.deployment-node { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); text-align: center; }
.deployment-node .icon { color: #587ad1; }
.deployment-node small { color: var(--muted); font-size: .67rem; }
.deployment-clients { flex-wrap: wrap; }
.deployment-clients small { flex: 0 0 100%; }
.deployment-routes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.deployment-routes[data-single] { grid-template-columns: 1fr; }
.deployment-route { position: relative; min-width: 0; display: grid; align-content: start; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.deployment-route[hidden] { display: none; }
.deployment-route > div { min-width: 0; display: grid; justify-items: start; gap: 6px; }
.deployment-route > div > .icon { margin-bottom: 3px; color: #587ad1; }
.deployment-route small, .deployment-route p { color: var(--muted); font-size: .67rem; }
.deployment-route p { margin: 0; }
.deployment-local { background: #f7faee; }
.topology-badge { justify-self: start; padding: 5px 8px; border-radius: 999px; background: var(--lime); font-size: .58rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
#planner-gateway-node { padding: 13px; border-radius: 10px; background: var(--ink); color: var(--white); }
#planner-gateway-node[hidden] { display: none; }
#planner-gateway-node .icon { color: var(--lime); }
#planner-gateway-node small { color: #aeb8cc; }
.deployment-workers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.deployment-workers .deployment-node { flex-direction: column; }
.deployment-overflow { border-style: dashed; }
.deployment-ops { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border: 1px dashed var(--line); border-radius: 11px; color: var(--muted); font-size: .68rem; }
.deployment-ops[hidden] { display: none; }
.deployment-ops span { display: grid; }
.deployment-ops strong { color: var(--ink); }
.deployment-ops small { color: var(--muted); }
.planner-decisions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.planner-decisions article { min-width: 0; display: grid; align-content: start; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.planner-decisions span, .planner-decisions small { color: var(--muted); font-size: .65rem; }
.planner-decisions strong { margin: 9px 0 4px; font-size: .95rem; overflow-wrap: anywhere; }
.planner-explanation { display: grid; gap: 18px; padding: clamp(24px, 4vw, 36px); border-radius: var(--radius); background: var(--ink); color: var(--white); }
.planner-explanation h2 { margin: 5px 0 0; font-size: 1.8rem; }
.planner-explanation .check-list { margin: 0; }
.planner-explanation .check-list li { border-color: rgba(255,255,255,.16); color: #e7ebf4; }
.planner-explanation .check-list li > span:first-child { color: var(--lime); font-weight: 900; }
.planner-hardware { display: grid; gap: 5px; padding: 18px; border-radius: 13px; background: rgba(255,255,255,.08); }
.planner-hardware span { color: var(--lime); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.planner-hardware p { margin: 0; color: #bdc6d8; font-size: .75rem; }
.planner-warning { padding: 17px; border: 1px solid #ff997f; border-radius: 12px; background: rgba(255,122,91,.12); }
.planner-warning[hidden] { display: none; }
.planner-warning strong { color: #ffc0b1; }
.planner-warning p { margin: 6px 0 0; color: #f2d8d2; font-size: .74rem; }
.planner-costs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.planner-costs article { min-width: 0; display: grid; align-content: start; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.planner-costs span, .planner-costs small { color: var(--muted); font-size: .68rem; }
.planner-costs strong { margin: 12px 0 4px; font-size: clamp(1.2rem, 2vw, 1.75rem); letter-spacing: -.04em; overflow-wrap: anywhere; }
.planner-costs .planner-cost-total { border-color: var(--ink); background: var(--lime); }
.planner-cost-total span, .planner-cost-total small { color: #4e641c; }
.planner-cart-preview { border-top: 1px solid var(--ink); }
.planner-cart-preview div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.planner-cart-preview span { font-weight: 700; }
.planner-cart-preview > p { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.planner-handoff-total { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 22px 0; }
.planner-handoff-total span { color: var(--muted); font-size: .74rem; }
.planner-handoff-total strong { font-size: 1.8rem; letter-spacing: -.04em; }
.planner-handoff-note { margin: 15px 0 0; color: var(--muted); font-size: .69rem; }
.planner-note { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-2); }
.planner-note p { margin: 8px 0; font-size: .74rem; }
.planner-note a { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; font-size: .74rem; font-weight: 800; text-decoration: none; }
.planner-guidance { grid-template-columns: repeat(4, 1fr); }

.store-section { padding-bottom: clamp(90px, 12vw, 150px); }
.store-planner-callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 22px; margin-bottom: 16px; border: 1px solid var(--ink); border-radius: 15px; background: var(--lime); }
.store-planner-callout > div, .store-planner-callout > a { display: flex; align-items: center; gap: 11px; }
.store-planner-callout > div .icon { width: 28px; height: 28px; }
.store-planner-callout span { display: flex; flex-wrap: wrap; column-gap: 6px; color: #405018; font-size: .78rem; }
.store-planner-callout strong { color: var(--ink); }
.store-planner-callout > a { flex: 0 0 auto; font-size: .76rem; font-weight: 850; text-decoration: none; }
.store-controls {
  position: sticky;
  z-index: 20;
  top: 106px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 244, 238, .95);
  box-shadow: 0 12px 38px rgba(11, 21, 49, .08);
  backdrop-filter: blur(16px);
}
.store-controls label { display: grid; gap: 7px; }
.store-controls label > span, .store-controls legend { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-controls select { min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); }
.store-controls fieldset { display: flex; gap: 7px; padding: 0; margin: 0; border: 0; }
.store-controls legend { margin-bottom: 7px; }
.store-controls button { min-height: 46px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .75rem; font-weight: 750; cursor: pointer; }
.store-controls button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.store-quantity-note { margin: -10px 0 22px; color: var(--muted); font-size: .76rem; }
.store-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; align-items: start; }
.store-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.store-product { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.store-product[data-selected] { border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--lime); }
.store-product-heading { display: flex; gap: 17px; align-items: center; }
.store-product-heading img { width: 54px; height: 54px; object-fit: contain; border-radius: 11px; }
.store-product-heading span { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-product-heading h3 { margin: 3px 0 0; }
.store-product > p { margin: 24px 0; font-size: .88rem; }
.store-product-price { display: flex; align-items: baseline; gap: 5px; margin-top: auto; margin-bottom: 18px; }
.store-product-price strong { font-size: 1.75rem; letter-spacing: -.04em; }
.store-product-price span { color: var(--muted); font-size: .74rem; }
.store-cart { position: sticky; top: 218px; padding: 28px; border: 1px solid var(--ink); border-radius: 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.store-cart h2 { font-size: 1.8rem; }
.cart-empty { color: #aeb8cc; font-size: .86rem; }
.cart-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 12px; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.cart-item-main { min-width: 0; display: grid; }
.cart-item span { color: #aeb8cc; font-size: .7rem; }
.cart-line-total { font-size: .87rem; text-align: right; }
.quantity-control { display: flex; align-items: center; }
.quantity-control button, .quantity-control input { width: 34px; height: 32px; border: 1px solid rgba(255, 255, 255, .25); background: transparent; color: var(--white); text-align: center; }
.quantity-control button { cursor: pointer; }
.quantity-control button:first-child { border-radius: 8px 0 0 8px; }
.quantity-control button:last-child { border-radius: 0 8px 8px 0; }
.quantity-control button:disabled, .quantity-control input:disabled { color: #707c93; cursor: not-allowed; }
.quantity-control input { width: 52px; border-inline: 0; border-radius: 0; appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }
.cart-item .cart-remove { justify-self: end; padding: 0; border: 0; background: transparent; color: var(--lime); font-size: .7rem; cursor: pointer; }
.cart-total { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 10px; padding: 25px 0; }
.cart-total span { color: #aeb8cc; font-size: .72rem; }
.cart-total strong { font-size: 1.7rem; letter-spacing: -.04em; }
.cart-total small { grid-column: 2; color: #aeb8cc; text-align: right; }
.store-cart .button { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.store-cart .button:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.cart-note { margin: 13px 0 0; color: #8f9bb2; font-size: .68rem; text-align: center; }
.order-dialog { width: min(620px, calc(100% - 28px)); padding: clamp(30px, 5vw, 52px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--paper); color: var(--ink); box-shadow: 0 28px 90px rgba(0, 0, 0, .35); }
.order-dialog::backdrop { background: rgba(7, 14, 33, .72); backdrop-filter: blur(5px); }
.order-dialog h2 { font-size: 2.5rem; }
.order-dialog > p { margin: 25px 0; }
.dialog-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.4rem; cursor: pointer; }
.order-summary { border-top: 1px solid var(--ink); }
.order-summary div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.order-summary span { display: grid; }
.order-summary small { color: var(--muted); font-size: .7rem; }
.order-summary strong { font-size: 1.2rem; }
.checkout-verification { display: grid; gap: 9px; min-height: 72px; margin: 20px 0; }
.checkout-verification [role="status"] { color: var(--muted); font-size: .75rem; }
.text-button { border: 0; background: transparent; color: var(--ink); font-weight: 750; text-decoration: underline; cursor: pointer; }

.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.article-card { min-height: 430px; display: flex; flex-direction: column; padding: clamp(30px, 5vw, 52px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.article-card-featured { grid-column: 1 / -1; min-height: 500px; background: var(--lime); }
.article-card > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .72rem; }
.article-card h2 { max-width: 780px; margin: 85px 0 20px; font-size: clamp(2rem, 4vw, 4rem); }
.article-card:not(.article-card-featured) h2 { margin-top: 62px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.article-card p { max-width: 680px; }
.article-card .text-link { margin-top: auto; }
.article-hero { padding-top: clamp(80px, 11vw, 145px); padding-bottom: 70px; }
.article-hero > div { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: .75rem; }
.article-hero h1 { max-width: 1000px; margin: 38px 0 28px; font-size: clamp(3.3rem, 7vw, 6.5rem); }
.article-hero > p { max-width: 820px; font-size: 1.25rem; }
.article-body { max-width: 820px; padding-bottom: 120px; }
.article-intro { padding: 35px 0; border-block: 1px solid var(--ink); color: var(--ink); font-size: 1.35rem; }
.article-body section { padding-top: 55px; }
.article-body section h2 { margin-bottom: 22px; font-size: 2.2rem; }
.article-body section p { font-size: 1.03rem; }
.article-body p + p, .article-body p + ul, .article-body p + ol, .article-body ul + p, .article-body ol + p { margin-top: 18px; }
.article-body ul, .article-body ol { padding-left: 25px; }
.article-body li + li { margin-top: 10px; }
.article-body blockquote { padding: 5px 0 5px 22px; margin: 26px 0; border-left: 4px solid var(--coral); color: var(--muted); }
.article-body pre { max-width: 100%; padding: 20px; overflow-x: auto; border-radius: 10px; background: var(--ink); color: var(--white); }
.article-body code { overflow-wrap: anywhere; }
.article-body aside { padding: 38px; margin-top: 70px; border-radius: var(--radius); background: var(--lime); }
.article-body aside h2 { font-size: 2.2rem; }

.procurement-list { display: grid; gap: 18px; }
.procurement-list > section { display: grid; grid-template-columns: minmax(250px, .7fr) 1fr; gap: 30px 70px; padding: 35px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.procurement-list header { grid-row: 1 / span 4; }
.procurement-list header span { color: #628200; font-size: .72rem; font-weight: 850; }
.procurement-list header h2 { margin-top: 35px; font-size: 2rem; }
.procurement-list label { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.procurement-list input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); }
.evidence-request { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.evidence-request div { min-height: 150px; display: flex; align-items: end; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); font-weight: 700; }

.investor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.investor-grid article { min-height: 330px; padding: 34px; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.investor-grid span { color: #607f00; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.investor-grid h3 { margin: 95px 0 16px; font-size: 1.8rem; }

.legal-hero { padding-top: clamp(80px, 11vw, 145px); padding-bottom: 65px; border-bottom: 1px solid var(--ink); }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(3.5rem, 7vw, 6.5rem); }
.legal-body { max-width: 850px; padding-block: 45px 120px; }
.legal-body section { display: grid; grid-template-columns: 220px 1fr; gap: 50px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.legal-body h2 { font-size: 1.35rem; }
.legal-body p { margin-bottom: 0; }
.legal-body section > div { min-width: 0; }
.legal-body section > div > * + * { margin-top: 15px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li + li { margin-top: 9px; }
.legal-body code { overflow-wrap: anywhere; }
.legal-archive { max-width: 900px; padding-block: clamp(70px, 10vw, 125px); }
.legal-archive h1 { margin: 45px 0 25px; font-size: clamp(2.8rem, 6vw, 5.2rem); }
.legal-archive h2 { margin: 42px 0 16px; }
.legal-archive p + p, .legal-archive p + ul, .legal-archive ul + p { margin-top: 15px; }
.legal-archive ul { padding-left: 24px; }
.archive-notice { padding: 24px; border: 1px solid var(--ink); border-radius: 12px; background: var(--lime); }
.archive-notice p { margin: 7px 0 0; }

.download-panel { display: grid; grid-template-columns: auto 1fr; gap: 45px; align-items: start; padding: clamp(35px, 6vw, 70px); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.download-panel > img { width: 96px; height: 96px; object-fit: contain; }
.download-panel h2 { margin: 28px 0 18px; }

.reveal { animation: reveal .65s ease both; }
.reveal:nth-child(2) { animation-delay: .12s; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } }

[data-enter] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-enter][data-visible] { opacity: 1; transform: none; }

.labs-grid,
.labs-detail { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.labs-card,
.labs-grid > aside,
.labs-download { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--white); box-shadow: var(--shadow); }
.labs-card h2,
.labs-grid h2,
.labs-detail h2 { margin: .7rem 0 .65rem; }
.labs-card .button { margin-top: 1.25rem; }
.labs-warning { border-left: .4rem solid #b45309; background: var(--white); border-radius: 18px; padding: clamp(1.25rem, 3vw, 2rem); }
.labs-warning h2 { margin-top: 0; }
.labs-detail > div > h2:not(:first-of-type) { margin-top: 2.2rem; }
.labs-detail ol { padding-left: 1.25rem; }
.labs-detail li { margin-bottom: .7rem; }
.labs-download { position: sticky; top: 6rem; }
.labs-download dl { display: grid; grid-template-columns: 7rem 1fr; gap: .45rem 1rem; margin: 1.25rem 0; }
.labs-download dt { font-weight: 750; }
.labs-download dd { margin: 0; }
.labs-ack { display: flex; gap: .7rem; align-items: flex-start; margin: 1.25rem 0; }
.labs-ack input { margin-top: .35rem; }
.labs-download [aria-disabled="true"] { opacity: .48; pointer-events: none; }
.labs-download .hash code { display: block; overflow-wrap: anywhere; margin-top: .35rem; }

/* Reviewed legacy translations use their established Bootstrap content
   structure inside the replacement site's navigation and visual shell. */
.localized-shell { --shell: min(1320px, calc(100vw - 48px)); }
.localized-main { min-height: 55vh; overflow: hidden; }
.localized-shell .localized-main h1 { font-size: clamp(2.9rem, 6vw, 5.8rem); }
.localized-shell .localized-main h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
.localized-shell .localized-main h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.localized-shell .localized-main h4 { letter-spacing: -.02em; }
.localized-shell .localized-main > section { border-bottom: 1px solid rgba(11, 21, 49, .08); }
.localized-shell .localized-main > section:first-child { padding-top: clamp(55px, 8vw, 100px) !important; }
.localized-shell .localized-main .bg-gray-100,
.localized-shell .localized-main .bg-gray-200 { background: var(--paper-2) !important; }
.localized-shell .localized-main .bg-dark,
.localized-shell .localized-main .bg-gray-800,
.localized-shell .localized-main .bg-gray-900 { background: var(--ink) !important; }
.localized-shell .localized-main .card,
.localized-shell .localized-main .accordion-item,
.localized-shell .localized-main .border { border-color: var(--line) !important; border-radius: 18px; box-shadow: none; }
.localized-shell .localized-main .btn { border-radius: 999px; font-weight: 700; }
.localized-shell .localized-main .btn-primary { border-color: var(--ink); background: var(--ink); }
.localized-shell .localized-main .btn-outline-primary { border-color: var(--ink); color: var(--ink); }
.localized-shell .localized-main a:not(.btn) { text-underline-offset: 4px; }

@media (max-width: 1180px) {
  .localized-shell .nav-toggle { display: inline-flex; }
  .localized-shell .primary-nav { position: fixed; top: 78px; right: 0; left: 0; max-height: calc(100svh - 78px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; overflow-y: auto; border-bottom: 1px solid var(--ink); background: var(--paper); box-shadow: var(--shadow); }
  .localized-shell .primary-nav[data-open] { display: flex; }
  .localized-shell .primary-nav > a:not(.button) { padding: 16px 5px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .localized-shell .primary-nav > a:not(.button)::after { display: none; }
  .localized-shell .language-menu { padding: 14px 5px; border-bottom: 1px solid var(--line); }
  .localized-shell .language-menu > div { position: static; margin-top: .65rem; box-shadow: none; }
  .localized-shell .primary-nav .button { margin-top: 16px; }
}

@media (max-width: 1060px) {
  :root { --shell: min(100% - 36px, 900px); }
  .primary-nav { gap: 15px; }
  .primary-nav > a:not(.button) { font-size: .82rem; }
  .hero { grid-template-columns: 1fr; }
  .boundary-visual { min-height: 520px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-catalogue { grid-template-columns: repeat(2, 1fr); }
  .planner-preset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stage-grid article { border: 1px solid var(--line); border-radius: 14px !important; }
  .catalogue-toolbar { align-items: stretch; flex-direction: column; }
  .filter-list { justify-content: start; }
  .footer-top { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 900px) {
  .labs-grid, .labs-detail { grid-template-columns: 1fr; }
  .labs-download { position: static; }
  .nav-toggle { display: inline-flex; }
  .primary-nav { position: fixed; top: 106px; right: 0; left: 0; max-height: calc(100svh - 106px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; overflow-y: auto; border-bottom: 1px solid var(--ink); background: var(--paper); box-shadow: var(--shadow); }
  .primary-nav[data-open] { display: flex; }
  .primary-nav > a:not(.button) { padding: 16px 5px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .language-menu { padding: 14px 5px; border-bottom: 1px solid var(--line); }
  .language-menu > div { position: static; margin-top: .65rem; box-shadow: none; }
  .primary-nav .button { margin-top: 16px; }
  .path-grid, .workflow-grid, .boundary-cards, .price-grid, .principle-grid, .use-case-grid, .contact-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 330px; }
  .split-feature, .compare-panel, .split-heading, .product-hero, .product-intro, .purchase-layout { grid-template-columns: 1fr; }
  .compare-list a { grid-template-columns: 120px 1fr auto; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-top: 1px solid rgba(11, 21, 49, .13); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid rgba(11, 21, 49, .13); border-right: 1px solid rgba(11, 21, 49, .13); }
  .architecture-servers { grid-template-columns: 1fr; }
  .planner-prompt { align-items: flex-start; flex-direction: column; }
  .capability-grid, .evidence-grid { grid-template-columns: 1fr; }
  .boundary-cards article p { min-height: 0; }
  .price-grid > article.price-featured { transform: none; }
  .price-grid h2, .price-grid article > p { min-height: 0; }
  .billing-bar { align-items: flex-start; flex-direction: column; }
  .rights-grid { grid-template-columns: 1fr; }
  .rights-grid article, .rights-grid article + article { padding: 28px 0; border-left: 0; }
  .timeline { grid-template-columns: 1fr; gap: 25px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .product-hero-art { order: -1; }
  .product-icon-stage { max-width: 380px; }
  .store-layout { grid-template-columns: 1fr; }
  .store-cart { position: static; }
  .planner-presets-heading, .saved-plan-heading { align-items: flex-start; flex-direction: column; }
  .planner-layout { grid-template-columns: 1fr; }
  .planner-controls { position: static; max-height: none; overflow: visible; }
  .planner-decisions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .planner-costs { grid-template-columns: 1fr; }
  .saved-plan-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid, .investor-grid { grid-template-columns: 1fr; }
  .article-card-featured { grid-column: auto; }
  .evidence-request { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); --radius: 16px; }
  body { font-size: 16px; }
  .preview-ribbon { padding-inline: 10px; font-size: .61rem; }
  .nav-shell { min-height: 70px; }
  .brand img { width: 174px; }
  .primary-nav { top: 98px; max-height: calc(100svh - 98px); }
  .hero { min-height: 0; padding-block: 58px 72px; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-copy h1 span { -webkit-text-stroke-width: 1.4px; }
  .boundary-visual { min-height: 430px; border-radius: 42% 42% 18px 18px; }
  .boundary-core { width: 170px; height: 170px; }
  .orbit-one { width: 285px; height: 285px; }
  .orbit-two { width: 365px; height: 365px; }
  .proof-grid > div { min-height: 112px; padding: 18px; }
  .proof-grid strong { font-size: 2.25rem; }
  .proof-grid span { font-size: .7rem; }
  .section { padding-block: 74px; }
  .section-heading { margin-bottom: 38px; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .product-grid, .product-grid-catalogue { grid-template-columns: 1fr; }
  .product-card { min-height: 360px; }
  .compare-panel { padding: 28px; }
  .compare-list a { grid-template-columns: 1fr auto; }
  .compare-list span { grid-column: 1 / -1; grid-row: 2; }
  .cta-panel { min-height: 0; padding: 34px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .page-hero { padding-top: 72px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .catalogue-toolbar { position: static; }
  .store-controls { position: static; grid-template-columns: 1fr; }
  .store-controls fieldset { flex-wrap: wrap; }
  .billing-switch > div { flex-wrap: wrap; }
  .product-price-options { grid-template-columns: 1fr; }
  .product-price-options > div + div { padding-left: 0; border-left: 0; }
  .store-products { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .store-planner-callout { align-items: flex-start; flex-direction: column; }
  .planner-preset-grid, .saved-plan-summary { grid-template-columns: 1fr; }
  .planner-save-row, .saved-plan-actions { align-items: flex-start; flex-direction: column; }
  .planner-apps, .deployment-workers, .deployment-routes, .planner-decisions { grid-template-columns: 1fr; }
  .planner-panel-heading, .planner-handoff-total { align-items: flex-start; flex-direction: column; }
  .planner-recommendation { white-space: normal; }
  .planner-guidance { grid-template-columns: 1fr; }
  .search-box { min-width: 0; }
  .filter-list { flex-wrap: nowrap; padding-bottom: 5px; overflow-x: auto; }
  .filter-list button { flex: 0 0 auto; }
  .decision-head { display: none; }
  .decision-row { grid-template-columns: 1fr; gap: 5px; padding-block: 22px; }
  .workflow-card { min-height: 390px; padding: 30px; }
  .workflow-card h2 { margin-top: 48px; }
  .architecture { padding: 16px; }
  .architecture-clients { grid-template-columns: 1fr; }
  .architecture-gateway, .architecture-admin { flex-direction: column; }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-grid article { min-height: 230px; }
  .stage-grid h3 { margin-top: 46px; }
  .capability-grid { border: 0; gap: 12px; }
  .capability-grid article { min-height: 230px; border: 1px solid var(--line); }
  .boundary-cards h2 { font-size: 2rem; }
  .question-list summary { font-size: 1rem; }
  .server-price > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .timeline > div { padding-inline: 20px; }
  .timeline > div::before { left: 18px; }
  .location { align-items: flex-start; flex-direction: column; }
  .location-mark { width: 190px; height: 190px; }
  .product-hero { min-height: 0; gap: 40px; padding-top: 45px; }
  .product-hero h1 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .back-link { margin-bottom: 30px; }
  .product-icon-stage { width: min(100%, 320px); }
  .privacy-ticket { padding: 24px; }
  .button-row .button { width: 100%; }
  .procurement-list > section { grid-template-columns: 1fr; padding: 26px; }
  .procurement-list header { grid-row: auto; }
  .procurement-list header h2 { margin-top: 18px; }
  .evidence-request { grid-template-columns: 1fr; }
  .legal-body section { grid-template-columns: 1fr; gap: 8px; }
  .download-panel { grid-template-columns: 1fr; gap: 25px; }
}

@media print {
  .site-header, .site-footer, .page-hero .button-row, .preview-ribbon { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .page-hero, .section { padding-block: 24px; }
  .procurement-list > section { break-inside: avoid; background: #fff; }
}

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