:root {
  --ink: #050b11;
  --ink-soft: #07131b;
  --ink-raised: #0a1a25;
  --ink-panel: #0d202c;
  --text: #f4f7f5;
  --body: #bac7cc;
  --muted: #81939c;
  --cyan: #36d4e6;
  --cyan-bright: #78ecf7;
  --green: #45dd9b;
  --violet: #8b78f5;
  --warm: #e8c38f;
  --line: rgba(150, 205, 216, 0.14);
  --line-strong: rgba(150, 205, 216, 0.26);
  --display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", system-ui, sans-serif;
  --sans: "Segoe UI Variable Text", "Aptos", "Segoe UI", system-ui, sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --shell: 1504px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--body);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

main {
  overflow: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cyan-bright);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--cyan);
  color: #031017;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 4px;
}

.shell {
  width: min(var(--shell), calc(100% - 80px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(84px, 7vw, 118px) 0;
  border-top: 1px solid var(--line);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.4rem, 5vw, 5.45rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.55rem, 3.8vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.16;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.15em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.2;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button .icon {
  width: 17px;
  height: 17px;
}

.button--primary {
  background: var(--cyan);
  color: #031017;
}

.button--primary:hover {
  background: var(--cyan-bright);
  color: #031017;
  transform: translateY(-1px);
}

.button--outline,
.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
}

.button--small {
  min-height: 44px;
  padding: 10px 19px;
  border-radius: 4px;
  font-size: 0.94rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-bright);
  font-size: 1rem;
  font-weight: 750;
}

.arrow-link .icon {
  width: 17px;
  transition: transform 180ms ease;
}

.arrow-link:hover .icon {
  transform: translateX(4px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.section-head h2 {
  max-width: 900px;
  margin: 0;
}

.section-head > p {
  max-width: 620px;
  margin: 0;
  color: var(--body);
  font-size: 1.04rem;
  line-height: 1.7;
}

.section-link {
  margin-top: 38px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 17, 0.9);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header[data-scrolled] {
  background: rgba(5, 11, 17, 0.97);
}

.header-shell {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  min-height: 44px;
  width: max-content;
  align-items: center;
}

.site-brand__logo {
  width: 184px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.primary-nav__actions {
  display: none;
}

.primary-nav a,
.text-link {
  position: relative;
  color: #c5d0d4;
  font-size: 1rem;
  font-weight: 620;
}

.primary-nav > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.header-actions::before {
  width: 1px;
  height: 24px;
  order: 1;
  background: var(--line-strong);
  content: "";
}

.header-actions .button {
  order: 2;
}

.header-client-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-client-link .icon {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

/* Homepage hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  background:
    radial-gradient(circle at 9% 18%, rgba(30, 154, 181, 0.14), transparent 31%),
    radial-gradient(circle at 86% 30%, rgba(84, 75, 190, 0.13), transparent 34%),
    linear-gradient(120deg, #051019, #050b11 55%, #090f1f);
  color: var(--text);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(510px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 4vw, 64px);
  align-items: center;
}

.hero-copy {
  z-index: 2;
  padding: 8px 0 30px;
}

.hero-copy .eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.55rem, 4.6vw, 5rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--text);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: #c3d0d4;
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-commercial {
  display: flex;
  width: max-content;
}

.hero-commercial > span {
  display: flex;
  flex-direction: column;
  padding: 2px 25px;
  border-left: 1px solid var(--line-strong);
}

.hero-commercial > span:first-child {
  border-left: 2px solid var(--cyan);
}

.hero-commercial small {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-commercial strong {
  color: var(--text);
  font-size: 1.08rem;
}

.hero-commercial em {
  margin-left: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
}

.hero-visual {
  min-width: 0;
}

.hosting-workspace {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}

.hosting-workspace::before {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 9px;
  width: 64%;
  height: 372px;
  border: 1px solid rgba(113, 217, 233, 0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(40, 89, 116, 0.22), rgba(19, 25, 62, 0.08));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
  content: "";
  transform: rotate(-1.2deg);
}

.workspace-aura {
  position: absolute;
  inset: 5% -4% 1% -1%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 43%, rgba(47, 205, 228, 0.2), transparent 30%),
    radial-gradient(circle at 73% 67%, rgba(116, 94, 255, 0.16), transparent 36%);
  filter: blur(38px);
}

.workspace-browser,
.workspace-control {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(142, 226, 238, 0.3);
  background: #091521;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.08);
}

.workspace-browser {
  top: 10px;
  left: 0;
  z-index: 1;
  width: 66%;
  height: 380px;
  border-radius: 18px;
}

.workspace-browser > header,
.workspace-control > header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.workspace-browser > header {
  position: relative;
  height: 40px;
  justify-content: space-between;
  padding: 0 14px;
  background: linear-gradient(180deg, #183043, #102332);
  color: #8fa2ab;
}

.workspace-browser > header > span {
  display: flex;
  gap: 6px;
}

.workspace-browser > header > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72d9a6;
}

.workspace-browser > header > span i:first-child { background: #f07676; }
.workspace-browser > header > span i:nth-child(2) { background: #ecc56a; }

.browser-address {
  position: absolute;
  left: 50%;
  display: flex;
  width: min(64%, 300px);
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-inline: 10px;
  border-radius: 6px;
  background: rgba(1, 10, 17, 0.38);
  transform: translateX(-50%);
}

.browser-address .icon {
  width: 10px;
  height: 10px;
  color: #79d8b2;
}

.browser-address b {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-browser > header em {
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(81, 222, 177, 0.12);
  color: #8becc1;
  font-family: var(--mono);
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 800;
}

.website-preview {
  height: calc(100% - 40px);
  background: #f7f4ed;
  color: #161d1c;
}

.preview-nav {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  background: #fbfaf7;
  color: #5f5b55;
  font-size: 0.48rem;
}

.preview-nav strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.preview-nav strong i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #23362f;
  color: #f6eee1;
  font-style: normal;
}

.preview-nav > span {
  word-spacing: 8px;
}

.preview-nav > em {
  padding: 7px 10px;
  border-radius: 4px;
  background: #ae8256;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.preview-stage {
  position: relative;
  height: 216px;
  overflow: hidden;
  background: #171b18;
}

.preview-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 14, 0.86), rgba(12, 16, 14, 0.48) 42%, transparent 74%);
  content: "";
}

.preview-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 56%;
}

.preview-copy {
  position: absolute;
  top: 50%;
  left: 25px;
  z-index: 1;
  width: 55%;
  color: #fff;
  transform: translateY(-50%);
}

.preview-copy small {
  display: block;
  margin-bottom: 7px;
  color: #e7be86;
  font-family: var(--mono);
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.preview-copy strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 1.9vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.preview-copy p {
  max-width: 225px;
  margin: 9px 0 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.53rem;
  line-height: 1.45;
}

.preview-copy i {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9c187;
  color: #211b14;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 850;
}

.preview-panels {
  display: grid;
  height: 82px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 9px 11px;
  background: #fbfaf7;
}

.preview-panels > span {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr auto;
  gap: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: #eee8dd;
}

.preview-panels > span > i {
  overflow: hidden;
}

.preview-panels img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-panels > span:first-child img { object-position: 22% 62%; }
.preview-panels > span:nth-child(2) img { object-position: 66% 68%; }
.preview-panels > span:last-child img { object-position: 86% 42%; }

.preview-panels b {
  overflow: hidden;
  padding: 0 6px 5px;
  color: #2d2b28;
  font-size: 0.44rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-control {
  top: 25px;
  right: 22.5%;
  z-index: 3;
  width: 26.5%;
  min-width: 202px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(25, 48, 69, 0.99), rgba(7, 19, 31, 0.995));
}

.workspace-control > header {
  min-height: 40px;
  justify-content: space-between;
  padding: 0 12px;
  color: #a5b5bd;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.workspace-control > header span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.workspace-control > header i,
.control-foot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.workspace-control > header b {
  padding: 4px 6px;
  border-radius: 4px;
  background: rgba(69, 221, 155, 0.1);
  color: #83e9b2;
  font-size: 0.47rem;
}

.control-product {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 15px 14px 13px;
  border-bottom: 1px solid var(--line);
}

.control-product > img {
  width: 42px;
  height: auto;
}

.control-product small,
.control-product strong,
.control-product div > span {
  display: block;
}

.control-product small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.control-product strong {
  color: var(--text);
  font-size: 0.93rem;
}

.control-product div > span {
  color: #8fa4ad;
  font-size: 0.55rem;
}

.control-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 6px;
  background: var(--line);
}

.control-menu span {
  display: flex;
  min-height: 49px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 7px 9px;
  background: #07141f;
  color: #c5d0d4;
}

.control-menu .icon {
  width: 17px;
  height: 17px;
  color: #96deea;
}

.control-menu b {
  font-size: 0.62rem;
}

.control-foot {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-top: 1px solid var(--line);
  color: #9aabb3;
  font-family: var(--mono);
  font-size: 0.45rem;
}

.control-foot span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.control-foot b {
  color: #83e9b2;
  font-size: 0.44rem;
}

.workspace-status {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 4;
  display: grid;
  width: 21%;
  min-width: 168px;
  gap: 10px;
}

.workspace-status > span {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(82, 212, 235, 0.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 43, 61, 0.97), rgba(5, 17, 28, 0.985));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.workspace-status .icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(54, 212, 230, 0.09);
  color: var(--cyan);
}

.workspace-status > span:first-child .icon {
  background: rgba(69, 221, 155, 0.1);
  color: var(--green);
}

.workspace-status > span:last-child .icon {
  background: rgba(139, 120, 245, 0.1);
  color: #aa9aff;
}

.workspace-status b,
.workspace-status small {
  display: block;
}

.workspace-status b {
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.25;
}

.workspace-status small {
  margin-top: 3px;
  color: #8499a2;
  font-size: 0.55rem;
  font-weight: 500;
  line-height: 1.25;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-strip span {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 15px;
  color: #c7d2d5;
  font-size: 0.78rem;
  font-weight: 650;
}

.evidence-strip span + span {
  border-left: 1px solid var(--line);
}

.evidence-strip .icon {
  width: 24px;
  height: 24px;
  color: #a9e8f1;
}

/* Homepage product story */
.product-story {
  background: var(--ink-soft);
}

.product-editorial {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(58px, 8vw, 130px);
  align-items: start;
}

.product-editorial__copy {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.product-editorial__copy h2 {
  max-width: 700px;
  margin-bottom: 25px;
}

.product-editorial__copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.02rem;
}

.honesty-inline {
  margin: 28px 0 24px;
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--warm);
  color: #c9d3d6;
}

.storage-path {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.storage-path li {
  display: grid;
  min-height: 145px;
  grid-template-columns: 48px 1fr 42px;
  gap: 20px;
  align-items: center;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
}

.storage-path li > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.storage-path small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.storage-path h3 {
  margin: 0 0 6px;
  font-size: 1.32rem;
}

.storage-path p {
  margin: 0;
  color: #99aab1;
  font-size: 1rem;
}

.storage-path > li > .icon {
  width: 31px;
  height: 31px;
  color: var(--cyan);
}

.platform-ledger {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(600px, 1.42fr);
  gap: clamp(50px, 7vw, 112px);
  margin-top: clamp(82px, 8vw, 126px);
  padding-top: clamp(48px, 5vw, 72px);
  border-top: 1px solid var(--line-strong);
}

.platform-ledger__intro h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.platform-ledger__intro p:not(.eyebrow) {
  max-width: 520px;
}

.platform-ledger dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
}

.platform-ledger dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.platform-ledger dt {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-weight: 760;
}

.platform-ledger__icon {
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(116, 215, 232, 0.18);
  border-radius: 10px;
  background: rgba(116, 215, 232, 0.055);
}

.platform-ledger__icon .icon {
  width: 22px;
  height: 22px;
}

.platform-ledger__icon--brand {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.platform-ledger__icon--brand img {
  display: block;
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 0 1px rgba(244, 247, 245, 0.72));
  object-fit: contain;
}

.platform-ledger__icon--lucide img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.platform-ledger__name {
  min-width: 0;
}

.platform-ledger dd {
  margin: 0;
  color: #95a7ae;
  font-size: 1rem;
  line-height: 1.55;
}

/* Pricing */
.plans-section,
.plans-page {
  background: #07121a;
}

.plans-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.plans-title-row .section-head {
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
}

.plans-title-row .section-head > p {
  max-width: 760px;
}

.billing-control {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 3px;
}

.billing-control > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.billing-control > div {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.billing-control button {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 3px;
  background: transparent;
  color: #a8b7bc;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.billing-control button[aria-pressed="true"] {
  background: var(--cyan);
  color: #031017;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 30px 25px 26px;
  background: transparent;
}

.plan-card + .plan-card {
  border-left: 1px solid var(--line);
}

.plan-card--recommended {
  background: linear-gradient(180deg, rgba(54, 212, 230, 0.07), transparent 34%);
  box-shadow: inset 0 3px var(--cyan);
}

.plan-card__head > div {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.plan-fit {
  color: var(--cyan-bright);
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.plan-domain-ribbon {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-right: -25px;
  padding: 5px 17px 5px 22px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
  background: linear-gradient(92deg, #70e6ee, #a8f2dc);
  box-shadow: 0 8px 24px rgba(54, 212, 230, 0.16);
  color: #041218;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-card__head h3 {
  margin: 18px 0 8px;
  font-size: 1.65rem;
}

.plan-card__head p {
  min-height: 52px;
  margin: 0;
  color: #99aab0;
  font-size: 1rem;
  line-height: 1.52;
}

.plan-price {
  display: flex;
  min-height: 86px;
  align-items: flex-end;
  padding: 21px 0 4px;
  color: var(--text);
}

.plan-price > span {
  align-self: flex-start;
  margin: 8px 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.plan-price sup {
  align-self: center;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 1rem;
}

.plan-price strong {
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.plan-price small {
  margin: 0 0 2px 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-billing {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-capacity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-capacity > span {
  padding: 15px 0;
}

.plan-capacity > span + span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.plan-capacity small,
.plan-capacity strong {
  display: block;
}

.plan-capacity small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-capacity strong {
  color: var(--text);
  font-size: 1rem;
}

.plan-specs {
  margin: 13px 0 20px;
  padding: 0;
  list-style: none;
}

.plan-specs li {
  display: flex;
  min-height: 41px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(150, 205, 216, 0.09);
  color: #a8b7bc;
  font-size: 1rem;
}

.plan-specs strong {
  color: var(--text);
  font-size: 1rem;
  text-align: right;
}

.plan-specs .is-unresolved strong {
  color: var(--warm);
}

.plan-replication {
  margin: 0 0 20px;
  padding: 16px 0 15px;
  border-top: 1px solid rgba(150, 205, 216, 0.14);
  border-bottom: 1px solid rgba(150, 205, 216, 0.14);
}

.plan-replication > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.plan-replication strong {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 780;
}

.plan-replication a {
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.plan-replication a:hover,
.plan-replication a:focus-visible {
  text-decoration: underline;
}

.plan-replication__cadences {
  display: flex;
  min-height: 28px;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.plan-replication__cadences span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(83, 221, 236, 0.2);
  border-radius: 999px;
  background: rgba(83, 221, 236, 0.055);
  color: #c9e6e9;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1;
}

.plan-replication__note {
  min-height: 34px;
  margin: 9px 0 0;
  color: #879ba3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.plan-card__foot {
  margin-top: auto;
}

.plan-card__foot .button {
  width: 100%;
}

.plan-card__foot > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.plan-comparison-disclosure {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background:
    linear-gradient(105deg, rgba(54, 212, 230, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.012);
}

.plan-comparison-disclosure summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.plan-comparison-disclosure summary::-webkit-details-marker {
  display: none;
}

.plan-comparison-disclosure summary > span {
  display: grid;
  gap: 6px;
}

.plan-comparison-disclosure summary small {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.plan-comparison-disclosure summary strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
}

.plan-comparison-disclosure summary > i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.plan-comparison-disclosure summary > i::before,
.plan-comparison-disclosure summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: translate(-50%, -50%);
}

.plan-comparison-disclosure summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.plan-comparison-disclosure[open] summary {
  border-bottom: 1px solid var(--line-strong);
}

.plan-comparison-disclosure[open] summary > i::after {
  transform: translate(-50%, -50%);
}

.plan-comparison-disclosure__body {
  padding: 24px;
}

.plan-comparison-disclosure__body > p:first-child {
  max-width: 760px;
  margin: 0 0 22px;
  color: #9cadb3;
  font-size: 1rem;
}

.plan-comparison-disclosure .table-note {
  margin-top: 18px;
}

.comparison-scroll-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.commercial-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commercial-note > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 18px 22px;
}

.commercial-note > div + div {
  border-left: 1px solid var(--line);
}

.commercial-note .icon {
  margin-top: 3px;
  color: var(--cyan);
}

.commercial-note p {
  margin: 0;
  color: #8fa1a8;
  font-size: 1rem;
  line-height: 1.55;
}

.commercial-note strong {
  color: #cbd6d9;
}

/* Availability and migration */
.availability-section,
.availability-detail {
  background: var(--ink);
}

.continuity-layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.continuity-layers article {
  min-width: 0;
  padding: 28px 24px 29px 0;
  border-top: 1px solid var(--line-strong);
}

.continuity-layers article + article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.continuity-layers article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 800;
}

.continuity-layers article:last-child > span {
  color: var(--violet);
}

.continuity-layers small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.continuity-layers h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.continuity-layers p {
  margin: 0;
  color: #96a8ae;
  font-size: 1rem;
}


/* Optional cPanel account replication */
.replication-feature {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(54, 212, 230, 0.1), transparent 31%),
    radial-gradient(circle at 92% 20%, rgba(139, 120, 245, 0.08), transparent 26%),
    linear-gradient(112deg, #061018 0%, #07151f 54%, #07131b 100%);
}

.replication-feature::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 199, 211, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 199, 211, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
  pointer-events: none;
}

.replication-feature__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas: "visual copy";
  grid-template-columns: minmax(680px, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(62px, 7vw, 118px);
  align-items: start;
}

.replication-copy {
  grid-area: copy;
  max-width: 590px;
  padding-top: 10px;
}

.replication-copy h2 {
  margin-bottom: 26px;
}

.replication-copy__lede {
  color: #c5d0d4;
  font-size: 1.08rem;
  line-height: 1.72;
}

.replication-ledger {
  margin: 34px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.replication-ledger li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.replication-ledger li > span {
  padding-top: 2px;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.replication-ledger small,
.replication-ledger strong {
  display: block;
}

.replication-ledger small {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.replication-ledger strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.08rem;
}

.replication-ledger p {
  margin: 0;
  color: #98aab0;
  font-size: 1rem;
  line-height: 1.55;
}

.replication-boundary {
  margin: 0;
  padding: 2px 0 2px 22px;
  border-left: 2px solid var(--violet);
  color: #a9b8bd;
  font-size: 1rem;
  line-height: 1.62;
}

.replication-boundary strong {
  color: var(--text);
}

.replication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
  justify-content: flex-end;
}

.replication-visual {
  min-width: 0;
  grid-area: visual;
}

.replication-scene {
  min-width: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.replication-followup {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 28px 38px;
  align-items: center;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.replication-scene__head,
.replication-scene__footer {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.replication-scene__head {
  border-bottom: 1px solid var(--line);
}

.replication-scene__head span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.replication-scene__head strong {
  color: var(--green);
  font-size: 1rem;
  font-weight: 750;
  text-align: right;
}

.replication-scene__field {
  position: relative;
  min-height: clamp(520px, 35vw, 590px);
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
}

.replication-scene__field::before {
  position: absolute;
  z-index: -2;
  top: 20%;
  left: 38%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(57, 208, 230, 0.12);
  content: "";
  filter: blur(90px);
}

.replication-map {
  position: absolute;
  z-index: -3;
  inset: 4% -8% auto;
  width: 116%;
  height: 90%;
  object-fit: contain;
  opacity: 0.58;
  filter: saturate(0.76) contrast(0.9);
  mask-image: radial-gradient(ellipse at 53% 48%, #000 42%, rgba(0, 0, 0, 0.84) 68%, transparent 96%);
}

.replication-route {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  pointer-events: none;
}

.replication-route__base,
.replication-route__progress {
  vector-effect: non-scaling-stroke;
}

.replication-route__base {
  stroke: rgba(120, 236, 247, 0.22);
  stroke-dasharray: 0.015 0.024;
  stroke-width: 1.4;
}

.replication-route__progress {
  opacity: 0;
  stroke: var(--violet);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 7px rgba(139, 120, 245, 0.72));
  will-change: opacity, stroke-dashoffset;
}

.replication-node {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 11px;
  align-items: center;
}

.replication-node--source {
  top: 10%;
  left: 3%;
}

.replication-node--target {
  right: 3%;
  bottom: 7%;
  text-align: right;
}

.replication-node--target {
  flex-direction: row-reverse;
}

.replication-node > i {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(54, 212, 230, 0.1), 0 0 18px rgba(54, 212, 230, 0.5);
}

.replication-node--target > i {
  border-color: var(--violet);
  box-shadow: 0 0 0 6px rgba(139, 120, 245, 0.11), 0 0 18px rgba(139, 120, 245, 0.44);
}

.replication-node small,
.replication-node strong {
  display: block;
}

.replication-node small {
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
}

.replication-node strong {
  color: #dbe6e8;
  font-size: 0.86rem;
}

.replication-account-anchor {
  position: absolute;
  z-index: 2;
  width: clamp(214px, 29cqw, 270px);
}

.replication-account-anchor--source,
.replication-account-anchor--traveller {
  top: 23%;
  left: 2%;
}

.replication-account-anchor--target {
  top: 47%;
  right: 3%;
  opacity: 0.13;
  filter: grayscale(1);
  transform: scale(0.94);
  transform-origin: center;
  will-change: opacity, filter, transform;
}

.replication-account-anchor--traveller {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.96);
  transform-origin: center;
  will-change: opacity, transform;
}

.replication-account {
  overflow: hidden;
  border: 1px solid rgba(131, 217, 232, 0.42);
  border-radius: 7px;
  background: #07131c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38), 0 0 24px rgba(54, 212, 230, 0.1);
}

.replication-account__browser > header {
  display: flex;
  height: 27px;
  align-items: center;
  gap: 10px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(143, 209, 220, 0.18);
  background: #0a1d28;
}

.replication-account__browser > header > span {
  display: flex;
  gap: 3px;
}

.replication-account__browser > header i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.replication-account__browser > header i:nth-child(2) {
  background: var(--warm);
}

.replication-account__browser > header i:nth-child(3) {
  background: var(--green);
}

.replication-account__browser > header b {
  overflow: hidden;
  color: #8ca0a8;
  font-family: var(--mono);
  font-size: 0.49rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.replication-account__browser > div {
  position: relative;
  height: 96px;
  overflow: hidden;
}

.replication-account__browser > div::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 17, 0.78), rgba(5, 11, 17, 0.08) 72%);
  content: "";
}

.replication-account__browser > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.replication-account__browser > div strong {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 14px;
  color: white;
  font-family: var(--display);
  font-size: 0.94rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.replication-account > footer {
  display: grid;
  min-height: 51px;
  grid-template-columns: 31px 1fr 19px;
  gap: 9px;
  align-items: center;
  padding: 6px 10px;
  border-top: 1px solid rgba(143, 209, 220, 0.16);
}

.replication-account > footer > img {
  width: 29px;
  height: auto;
}

.replication-account > footer small,
.replication-account > footer strong {
  display: block;
}

.replication-account > footer small {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

.replication-account > footer strong {
  overflow: hidden;
  color: #dbe5e7;
  font-size: 0.56rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.replication-account > footer em {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(69, 221, 155, 0.13);
  color: var(--green);
}

.replication-account > footer em .icon {
  width: 12px;
  height: 12px;
}

.replication-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.replication-stages li {
  display: flex;
  min-height: 54px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  color: #7f929a;
  font-size: 0.82rem;
  font-weight: 700;
}

.replication-stages li + li {
  border-left: 1px solid var(--line);
}

.replication-stages span {
  color: #6f838c;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.replication-scene[data-stage="primary"] [data-replication-step="primary"],
.replication-scene[data-stage="resetting"] [data-replication-step="primary"],
.replication-scene[data-stage="copying"] [data-replication-step="copying"],
.replication-scene[data-stage="verifying"] [data-replication-step="copying"],
.replication-scene[data-stage="verified"] [data-replication-step="verified"] {
  color: var(--text);
  background: rgba(54, 212, 230, 0.055);
  box-shadow: inset 0 -2px var(--cyan);
}

.replication-scene__footer p {
  max-width: 570px;
  margin: 0;
  color: #8fa1a8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.replication-scene__footer button {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  gap: 9px;
  align-items: center;
  padding: 8px 0 8px 14px;
  background: transparent;
  color: var(--cyan-bright);
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.replication-scene__footer button .icon {
  width: 18px;
  height: 18px;
}

.replication-scene__footer button[hidden] {
  display: none;
}

/* FAQ */
.faq-section {
  background: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.52fr) minmax(600px, 1.48fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro p:not(.eyebrow) {
  max-width: 500px;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.faq-item summary strong {
  font-size: 1rem;
  font-weight: 700;
}

.faq-item summary i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%);
}

.faq-item > div {
  padding: 0 36px 24px 60px;
}

.faq-item > div p {
  max-width: 760px;
  margin: 0;
  color: #a7b6bb;
  font-size: 1rem;
}

/* cPanel journal */
.journal-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 12% 8%, rgba(54, 212, 230, 0.09), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(139, 120, 245, 0.07), transparent 28%),
    #040b11;
}

.journal-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 188, 201, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 188, 201, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 76%, transparent);
  pointer-events: none;
}

.journal-shell {
  position: relative;
  z-index: 1;
}

.journal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: end;
  margin-bottom: clamp(38px, 4vw, 58px);
}

.journal-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.journal-heading > div:last-child {
  padding-bottom: 4px;
}

.journal-heading > div:last-child > p {
  margin: 0 0 22px;
  color: #9eb0b7;
  font-size: 1rem;
  line-height: 1.7;
}

.journal-index-link {
  color: var(--cyan-bright);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.journal-card {
  min-width: 0;
  padding: 30px 26px 34px;
  transition: background-color 220ms ease;
}

.journal-card:first-child {
  padding-left: 0;
}

.journal-card:last-child {
  padding-right: 0;
}

.journal-card + .journal-card {
  border-left: 1px solid var(--line);
}

.journal-card:hover {
  background: rgba(54, 212, 230, 0.025);
}

.journal-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(117, 193, 208, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, #0a202e, #071018);
}

.journal-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 10, 15, 0.72), transparent 58%);
  content: "";
  pointer-events: none;
}

.journal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-card:hover .journal-media img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.journal-media.is-fallback img {
  width: 84px;
  height: 84px;
  margin: calc(50% - 42px) auto 0;
  object-fit: contain;
  opacity: 0.8;
  transform: translateY(-50%);
}

.journal-category {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 15px;
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(92, 225, 239, 0.28);
  border-radius: 999px;
  background: rgba(4, 16, 24, 0.8);
  color: #9aeaf2;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.journal-body {
  display: flex;
  min-height: 276px;
  flex-direction: column;
  padding-top: 23px;
}

.journal-body time {
  color: #789099;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.journal-body h3 {
  margin: 13px 0 14px;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.18;
}

.journal-body h3 a {
  color: var(--text);
}

.journal-body h3 a:hover,
.journal-body h3 a:focus-visible {
  color: var(--cyan-bright);
}

.journal-body p {
  margin: 0 0 24px;
  color: #95a8af;
  font-size: 1rem;
  line-height: 1.62;
}

.journal-read {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--cyan-bright);
  font-size: 0.94rem;
  font-weight: 780;
}

.journal-read span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.journal-read:hover span,
.journal-read:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 1020px) {
  .journal-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journal-heading > div:last-child {
    max-width: 720px;
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    gap: 28px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journal-card:last-child .journal-body {
    min-height: 0;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card,
  .journal-card:first-child,
  .journal-card:last-child {
    display: block;
    grid-column: auto;
    padding: 26px 0 30px;
    border-left: 0;
  }

  .journal-card + .journal-card,
  .journal-card:last-child {
    border-top: 1px solid var(--line);
  }

  .journal-body {
    min-height: 0;
  }
}

/* Closing action */
.final-cta {
  padding: clamp(70px, 7vw, 108px) 0;
  border-top: 1px solid var(--line-strong);
  background:
    linear-gradient(100deg, rgba(54, 212, 230, 0.12), transparent 46%),
    #07131b;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.final-cta h2 {
  max-width: 980px;
  margin-bottom: 18px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
}

.final-cta__grid > div:last-child {
  display: flex;
  gap: 10px;
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #03080d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: 0;
}

.footer-grid > div {
  padding: 0 34px;
}

.footer-grid > div:first-child {
  padding-left: 0;
}

.footer-grid > div + div {
  border-left: 1px solid var(--line);
}

.site-brand--footer {
  margin-bottom: 24px;
}

.site-brand--footer .site-brand__logo {
  width: 184px;
  height: auto;
}

.footer-identity > p {
  max-width: 420px;
  color: #8fa1a8;
  font-size: 1rem;
}

.footer-network {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
}

.footer-network a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9fb0b7;
  font-size: 0.84rem;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-network a:hover {
  color: var(--cyan);
}

.footer-network .icon {
  width: 12px;
}

.footer-grid h2 {
  margin: 3px 0 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-grid li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bdc9cd;
  font-size: 1rem;
}

.footer-grid li .icon {
  width: 13px;
}

.footer-base {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-base p {
  margin: 0;
  color: #71858d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-base p:last-child {
  max-width: 760px;
  justify-self: end;
  text-align: right;
}

/* Interior mastheads */
.interior-hero {
  position: relative;
  padding: 42px 0 clamp(76px, 8vw, 116px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(54, 212, 230, 0.1), transparent 30%),
    linear-gradient(130deg, #06131c, #050b11 58%, #080f1d);
}

.breadcrumbs {
  margin-bottom: clamp(48px, 6vw, 78px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: #4d6570;
  content: "/";
}

.interior-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(58px, 8vw, 132px);
  align-items: end;
}

.interior-hero--single .interior-hero__grid {
  max-width: 1080px;
  grid-template-columns: 1fr;
}

.interior-hero h1 {
  max-width: 1050px;
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 4.7vw, 5rem);
}

.interior-hero .lede {
  max-width: 790px;
  margin: 0;
  color: #bac7cc;
  font-size: clamp(1.13rem, 1.4vw, 1.32rem);
  line-height: 1.6;
}

.interior-hero aside {
  padding: 12px 0 12px clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--line-strong);
}

.interior-hero aside small,
.interior-hero aside strong,
.interior-hero aside span {
  display: block;
}

.interior-hero aside small {
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.interior-hero aside strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.interior-hero aside > span:not(.wp-glyph) {
  margin-top: 5px;
  color: var(--body);
  font-size: 0.95rem;
}

.interior-hero aside p {
  margin: 14px 0 0;
  color: #92a4ab;
  font-size: 1rem;
}

.interior-hero aside > .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--cyan);
}

.wp-glyph {
  display: grid !important;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.about-emblem {
  width: 142px;
  margin-bottom: 22px;
}

/* Plans page */
.plans-page {
  padding-top: 78px;
}

.comparison-section {
  background: var(--ink);
}

.comparison-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #b8c5ca;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--text);
  font-weight: 700;
}

.comparison-table thead th {
  padding-block: 23px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tr > * + * {
  border-left: 1px solid var(--line);
}

.comparison-table th:first-child {
  position: sticky;
  z-index: 1;
  left: 0;
  min-width: 178px;
  background: #07121a;
}

.comparison-table thead th:first-child {
  z-index: 2;
}

.comparison-table tfoot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-bright);
  font-weight: 700;
}

.comparison-table tfoot .icon {
  width: 16px;
}

.unconfirmed {
  color: var(--warm);
}

.table-note {
  max-width: 1080px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Editorial rows shared by inner pages */
.nvme-detail,
.wordpress-path,
.migration-process,
.operator-story,
.contact-options,
.legal-copy {
  background: var(--ink-soft);
}

.detail-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.detail-rows article {
  display: grid;
  min-height: 230px;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 34px 32px 34px 0;
  border-top: 1px solid var(--line);
}

.detail-rows article:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.detail-rows article > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.71rem;
}

.detail-rows h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.detail-rows p {
  margin: 0;
  color: #9aabb1;
  font-size: 1rem;
}

.bottleneck-section,
.wordpress-stack,
.recovery-sequence,
.migration-scope,
.responsibility-map,
.contact-checklist {
  background: var(--ink);
}

.bottleneck-grid,
.wordpress-stack__grid,
.migration-scope__grid,
.operator-story__grid,
.dns-condition__grid,
.contact-checklist > .shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(58px, 8vw, 128px);
  align-items: start;
}

.bottleneck-grid > div:first-child,
.wordpress-stack__grid > div:first-child,
.migration-scope__grid > div:first-child,
.operator-story__grid > div:first-child,
.dns-condition__grid > div:first-child,
.contact-checklist > .shell > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.bottleneck-grid h2,
.wordpress-stack__grid h2,
.migration-scope__grid h2,
.operator-story__grid h2,
.dns-condition__grid h2,
.contact-checklist h2 {
  margin-bottom: 22px;
}

.bottleneck-grid dl,
.dns-condition dl {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.bottleneck-grid dl > div,
.dns-condition dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) 1fr;
  gap: 28px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.bottleneck-grid dt,
.dns-condition dt {
  color: var(--text);
  font-weight: 750;
}

.bottleneck-grid dd,
.dns-condition dd {
  margin: 0;
  color: #98a9af;
  font-size: 1rem;
}

.nvme-fit,
.wordpress-boundaries,
.dns-condition {
  background: var(--ink-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.6fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: end;
  margin-bottom: 48px;
}

.split-heading h2 {
  max-width: 950px;
  margin: 0;
}

.split-heading > p {
  margin: 0;
  font-size: 1rem;
}

.fit-spectrum {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.fit-spectrum > span {
  padding: 28px 0;
}

.fit-spectrum > span:last-child {
  text-align: right;
}

.fit-spectrum small,
.fit-spectrum strong {
  display: block;
}

.fit-spectrum small {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.fit-spectrum strong {
  color: var(--text);
  font-size: 1rem;
}

.fit-spectrum > i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

/* WordPress */
.wp-route {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.wp-route span {
  min-width: 130px;
}

.wp-route small,
.wp-route b {
  display: block;
}

.wp-route small {
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.wp-route b {
  color: var(--text);
  font-size: 0.9rem;
}

.wp-route > i {
  width: clamp(22px, 3vw, 62px);
  height: 1px;
  margin-inline: 10px;
  background: var(--line-strong);
}

.feature-ledger {
  border-bottom: 1px solid var(--line);
}

.feature-ledger article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-ledger article > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 800;
}

.feature-ledger h3 {
  margin: 0 0 7px;
  font-size: 1.23rem;
}

.feature-ledger p {
  margin: 0;
  color: #99aab0;
  font-size: 1rem;
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.boundary-list span {
  position: relative;
  padding: 19px 32px 19px 28px;
  border-top: 1px solid var(--line);
  color: #cbd5d8;
  font-size: 1rem;
}

.boundary-list span:nth-child(even) {
  border-left: 1px solid var(--line);
}

.boundary-list span::before {
  position: absolute;
  top: 27px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  content: "";
}

.migration-preview {
  background: var(--ink);
}

.migration-preview > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-top: 14px;
  padding-bottom: 14px;
}

.migration-preview h2 {
  max-width: 900px;
  margin-bottom: 16px;
}

.migration-preview p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
}

/* Availability detail */
.continuity-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.continuity-steps li {
  position: relative;
  padding: 29px 19px 0 0;
}

.continuity-steps li + li {
  padding-left: 19px;
  border-left: 1px solid var(--line);
}

.continuity-steps li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.continuity-steps strong,
.continuity-steps small {
  display: block;
}

.continuity-steps strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.continuity-steps small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.recovery-board {
  max-width: 1080px;
  margin: 0 auto 46px;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 48, 64, 0.42), rgba(7, 17, 26, 0.58));
}

.recovery-board__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.recovery-board__top span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.recovery-board__top > i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.recovery-board__servers {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 0.46fr) 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.recovery-board__servers article {
  padding: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.recovery-board__servers article > span,
.recovery-board__servers strong,
.recovery-board__servers small {
  display: block;
}

.recovery-board__servers article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.63rem;
}

.recovery-board__servers article .icon {
  width: 34px;
  height: 34px;
  margin: 20px 0;
  color: var(--cyan);
}

.recovery-board__servers strong {
  color: var(--text);
  font-size: 1rem;
}

.recovery-board__servers small {
  color: var(--muted);
  font-size: 0.78rem;
}

.copy-track {
  text-align: center;
}

.copy-track span {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.copy-track i {
  display: block;
  height: 1px;
  margin-top: 9px;
  background: var(--violet);
}

.sequence-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.sequence-notes li {
  min-height: 150px;
  padding: 25px 26px 25px 0;
  border-top: 1px solid var(--line);
}

.sequence-notes li:not(:nth-child(3n + 1)) {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.sequence-notes b,
.sequence-notes span {
  display: block;
}

.sequence-notes b {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1rem;
}

.sequence-notes span {
  color: #92a4aa;
  font-size: 1rem;
}

/* Migration */
.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.process-line li {
  min-height: 250px;
  padding: 28px 24px 28px 0;
}

.process-line li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.process-line li > span {
  display: block;
  margin-bottom: 56px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.process-line h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.process-line p {
  margin: 0;
  color: #93a4aa;
  font-size: 1rem;
}

.migration-scope__grid ul {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.migration-scope__grid li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.migration-scope__grid li > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.migration-scope__grid li p {
  margin: 0;
  color: #96a7ad;
  font-size: 1rem;
}

.migration-scope__grid li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.migration-cta-panel {
  background:
    linear-gradient(105deg, rgba(54, 212, 230, 0.1), transparent 58%),
    var(--ink-soft);
}

.migration-cta-panel > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.migration-cta-panel small {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.migration-cta-panel h2 {
  max-width: 920px;
  margin: 18px 0;
}

.migration-cta-panel p {
  max-width: 760px;
  margin: 0;
}

/* About */
.operator-facts {
  border-bottom: 1px solid var(--line);
}

.operator-facts article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.operator-facts article > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.operator-facts p {
  margin: 0;
  color: #97a8ae;
  font-size: 1rem;
}

.operator-facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.responsibility-grid article {
  padding: 34px 0;
}

.responsibility-grid article:last-child {
  text-align: right;
}

.responsibility-grid > i {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--cyan);
}

.responsibility-grid > i .icon {
  width: 25px;
}

.responsibility-grid small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.responsibility-grid h3 {
  margin: 14px 0 22px;
}

.responsibility-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-grid li {
  color: #99aab0;
  font-size: 1rem;
}

.responsibility-grid li + li {
  margin-top: 8px;
}

/* Contact */
.contact-options__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.7fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: start;
}

.contact-primary {
  padding-right: 40px;
}

.contact-primary > span,
.contact-secondary article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.contact-primary > small,
.contact-secondary small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.contact-primary h2 {
  max-width: 780px;
  margin: 16px 0 22px;
}

.contact-primary p {
  max-width: 700px;
}

.contact-primary .button {
  margin-top: 12px;
}

.contact-secondary {
  border-bottom: 1px solid var(--line);
}

.contact-secondary article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.contact-secondary article > span {
  margin: 3px 0 0;
}

.contact-secondary h2 {
  margin: 10px 0 12px;
  font-size: 1.35rem;
}

.contact-secondary p {
  color: #96a7ad;
  font-size: 1rem;
}

.contact-checklist ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.contact-checklist li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 24px 22px 0;
  border-top: 1px solid var(--line);
}

.contact-checklist li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-checklist li > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.contact-checklist li p {
  margin: 0;
  color: #96a7ad;
  font-size: 1rem;
}

.contact-checklist li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(60px, 9vw, 150px);
  justify-content: center;
  align-items: start;
}

.legal-layout > aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.legal-layout > aside h2 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.legal-layout > aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-layout > aside a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #9eafb5;
  font-size: 1rem;
}

.legal-layout > article > section {
  padding: 0 0 48px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.legal-layout > article > section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-layout article h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal-layout article p {
  color: #a8b6bb;
  font-size: 1rem;
}

.legal-layout code {
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 0.9em;
}

/* 404 */
.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 90px 0;
  background: var(--ink-soft);
}

.not-found h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.not-found p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.06rem;
}

.not-found .shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* Deliberate desktop zigzag: source order stays heading-first for smaller screens. */
@media (min-width: 1101px) {
  .product-editorial.editorial-split--reverse {
    grid-template-columns: minmax(560px, 1.2fr) minmax(360px, 0.8fr);
  }

  .bottleneck-grid.editorial-split--reverse,
  .wordpress-stack__grid.editorial-split--reverse,
  .migration-scope__grid.editorial-split--reverse,
  .operator-story__grid.editorial-split--reverse,
  .dns-condition__grid.editorial-split--reverse,
  .contact-checklist > .shell.editorial-split--reverse {
    grid-template-columns: minmax(560px, 1.28fr) minmax(340px, 0.72fr);
  }

  .editorial-split--reverse > :first-child {
    grid-column: 2;
    grid-row: 1;
  }

  .editorial-split--reverse > :nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .plans-title-row--reverse {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .plans-title-row--reverse .section-head {
    width: min(920px, 100%);
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .plans-title-row--reverse .billing-control {
    grid-column: 1;
    grid-row: 1;
  }

  .faq-layout--reverse {
    grid-template-columns: minmax(600px, 1.48fr) minmax(310px, 0.52fr);
  }

  .faq-layout--reverse .faq-intro {
    grid-column: 2;
    grid-row: 1;
  }

  .faq-layout--reverse .faq-list {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Tablet */
@media (max-width: 1240px) {
  .shell {
    width: min(var(--shell), calc(100% - 52px));
  }

  .hero-grid {
    grid-template-columns: minmax(430px, 0.9fr) minmax(480px, 1.1fr);
  }

  .workspace-control {
    right: 21.5%;
    width: 29%;
    min-width: 194px;
  }

  .workspace-status {
    width: 22%;
    min-width: 160px;
  }

  .workspace-status small {
    display: none;
  }

  .preview-nav > span {
    display: none;
  }

  .platform-ledger {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card:nth-child(3) {
    border-left: 0;
  }

  .plan-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .continuity-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .continuity-steps li:nth-child(4) {
    border-left: 0;
  }

  .continuity-steps li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-line li:nth-child(4) {
    border-left: 0;
  }

  .process-line li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .replication-feature__grid {
    grid-template-areas:
      "copy"
      "visual";
    grid-template-columns: 1fr;
  }

  .replication-copy {
    max-width: 820px;
  }

  .replication-visual {
    width: 100%;
    max-width: 980px;
    margin-top: 12px;
    margin-inline: auto;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 70px;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: auto;
    display: none;
    width: min(440px, calc(100% - 40px));
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 12px 20px;
    border: 1px solid var(--line-strong);
    background: rgba(5, 11, 17, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  }

  .primary-nav[data-open] {
    display: grid;
  }

  .primary-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .primary-nav__actions a {
    min-height: 48px;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    font-size: 1rem;
  }

  .primary-nav__actions a::after {
    display: none;
  }

  .primary-nav__actions .button {
    border-color: transparent;
    color: #031017;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .product-editorial,
  .faq-layout,
  .interior-hero__grid,
  .bottleneck-grid,
  .wordpress-stack__grid,
  .migration-scope__grid,
  .operator-story__grid,
  .dns-condition__grid,
  .contact-checklist > .shell,
  .contact-options__grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .interior-hero__grid > div:first-child {
    max-width: 800px;
  }

  .hosting-workspace {
    max-width: 760px;
    margin-inline: auto;
  }

  .product-editorial__copy,
  .faq-intro,
  .bottleneck-grid > div:first-child,
  .wordpress-stack__grid > div:first-child,
  .migration-scope__grid > div:first-child,
  .operator-story__grid > div:first-child,
  .dns-condition__grid > div:first-child,
  .contact-checklist > .shell > div:first-child {
    position: static;
  }

  .platform-ledger dl {
    grid-template-columns: 1fr;
  }

  .evidence-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evidence-strip span:nth-child(4) {
    border-left: 0;
  }

  .evidence-strip span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .commercial-note,
  .continuity-layers,
  .continuity-steps,
  .process-line {
    grid-template-columns: 1fr;
  }

  .commercial-note > div + div,
  .continuity-layers article + article,
  .continuity-steps li + li,
  .process-line li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .commercial-note > div + div {
    padding-left: 22px;
  }

  .continuity-steps li,
  .continuity-steps li + li,
  .process-line li,
  .process-line li + li {
    min-height: 0;
    padding: 25px 0;
  }

  .plans-title-row,
  .section-head,
  .split-heading,
  .final-cta__grid,
  .migration-preview > .shell,
  .migration-cta-panel > .shell {
    grid-template-columns: 1fr;
  }

  .billing-control {
    justify-self: start;
  }

  .interior-hero aside {
    padding: 32px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .wp-route {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wp-route span {
    min-width: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .wp-route > i {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout > aside {
    position: static;
  }

  .legal-layout > aside nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-layout > aside a {
    padding-right: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 0;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    padding: 0 20px;
    border-left: 1px solid var(--line);
  }

  .footer-grid > .footer-identity {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .section {
    padding: 70px 0;
  }

  .site-brand__logo {
    width: 164px;
    height: auto;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-commercial {
    width: 100%;
  }

  .hero-commercial > span {
    width: 50%;
    padding-inline: 15px;
  }

  .replication-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .replication-actions,
  .replication-actions .button {
    width: 100%;
  }

  .replication-followup {
    grid-template-columns: 1fr;
  }

  .replication-actions {
    justify-content: flex-start;
  }

  .replication-scene__head,
  .replication-scene__footer {
    gap: 14px;
  }

  .replication-scene__head strong {
    max-width: 48%;
  }

  .replication-scene__field {
    min-height: 480px;
  }

  .replication-map {
    inset: 4% auto auto -24%;
    width: 148%;
    max-width: none;
  }

  .replication-account-anchor {
    width: min(214px, 57cqw);
  }

  .replication-account-anchor--source,
  .replication-account-anchor--traveller {
    left: 0;
  }

  .replication-account-anchor--target {
    right: 0;
  }

  .replication-stages li {
    min-height: 60px;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    align-items: flex-start;
    padding-inline: 10px;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .replication-scene__footer {
    align-items: flex-start;
    padding: 14px 0;
  }

  .replication-scene__footer p {
    font-size: 0.84rem;
  }

  .hosting-workspace {
    min-height: 500px;
  }

  .hosting-workspace::before {
    top: 16px;
    width: 86%;
    height: 292px;
  }

  .workspace-browser {
    top: 8px;
    width: 88%;
    height: 302px;
  }

  .workspace-browser > header {
    height: 36px;
  }

  .browser-address {
    width: 66%;
    height: 22px;
  }

  .workspace-browser > header em,
  .preview-nav > em,
  .preview-nav > span {
    display: none;
  }

  .website-preview {
    height: calc(100% - 36px);
  }

  .preview-nav {
    height: 36px;
    padding-inline: 10px;
  }

  .preview-stage {
    height: 176px;
  }

  .preview-copy {
    left: 16px;
    width: 64%;
  }

  .preview-copy small,
  .preview-copy p {
    display: none;
  }

  .preview-copy strong {
    margin-bottom: 12px;
    font-size: 1.48rem;
  }

  .preview-panels {
    height: 54px;
    gap: 5px;
    padding: 6px 7px;
  }

  .preview-panels > span {
    grid-template-rows: 1fr;
  }

  .preview-panels b {
    display: none;
  }

  .workspace-control {
    top: 118px;
    right: 0;
    width: 48%;
    min-width: 170px;
  }

  .workspace-control > header {
    min-height: 38px;
    padding-inline: 9px;
  }

  .workspace-control > header b,
  .control-product small,
  .control-product div > span,
  .control-foot {
    display: none;
  }

  .control-product {
    padding: 10px;
  }

  .control-product > img {
    width: 35px;
  }

  .control-menu {
    grid-template-columns: 1fr;
    padding: 5px;
  }

  .control-menu span {
    min-height: 33px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 6px 8px;
  }

  .control-menu span:nth-child(n + 4) {
    display: none;
  }

  .control-menu .icon {
    width: 15px;
    height: 15px;
  }

  .workspace-status {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .workspace-status > span {
    min-height: 60px;
    padding: 9px 10px;
  }

  .workspace-status .icon {
    width: 28px;
    height: 28px;
  }

  .workspace-status b {
    font-size: 0.67rem;
  }

  .evidence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-strip span {
    min-height: 62px;
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .evidence-strip span:nth-child(odd) {
    border-left: 0;
  }

  .evidence-strip span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .evidence-strip span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .storage-path li {
    grid-template-columns: 34px 1fr;
  }

  .storage-path > li > .icon {
    display: none;
  }

  .platform-ledger dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-grid,
  .commercial-note,
  .continuity-layers,
  .detail-rows,
  .boundary-list,
  .sequence-notes,
  .contact-checklist ol {
    grid-template-columns: 1fr;
  }

  .plan-card + .plan-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .plan-card {
    padding: 28px 22px;
  }

  .plan-comparison-disclosure summary {
    min-height: 78px;
    padding: 16px 18px;
  }

  .plan-comparison-disclosure__body {
    padding: 20px 0 20px 18px;
  }

  .plan-comparison-disclosure__body > p:first-child,
  .plan-comparison-disclosure .table-note,
  .comparison-scroll-hint {
    margin-right: 18px;
  }

  .plan-comparison-disclosure .comparison-wrap {
    border-right: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 13px;
  }

  .commercial-note > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .continuity-layers article + article,
  .detail-rows article:nth-child(even),
  .boundary-list span:nth-child(even),
  .sequence-notes li:not(:nth-child(3n + 1)),
  .contact-checklist li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .detail-rows article,
  .detail-rows article:nth-child(even) {
    min-height: 0;
    padding: 28px 0;
  }

  .continuity-steps,
  .process-line {
    grid-template-columns: 1fr;
  }

  .continuity-steps li,
  .continuity-steps li + li,
  .process-line li,
  .process-line li + li {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .continuity-steps li > span,
  .process-line li > span {
    margin-bottom: 18px;
  }

  .fit-spectrum,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .fit-spectrum > i {
    width: 100%;
  }

  .fit-spectrum > span:last-child,
  .responsibility-grid article:last-child {
    text-align: left;
  }

  .responsibility-grid > i {
    min-height: 64px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .recovery-board {
    padding: 22px;
  }

  .recovery-board__servers {
    grid-template-columns: 1fr;
  }

  .copy-track {
    padding: 10px 0;
  }

  .contact-checklist li,
  .contact-checklist li:nth-child(even) {
    padding: 20px 0;
  }

  .final-cta__grid > div:last-child {
    flex-direction: column;
  }

  .final-cta .button,
  .migration-preview .button,
  .migration-cta-panel .button,
  .not-found .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 0;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    padding: 0 20px;
    border-left: 1px solid var(--line);
  }

  .footer-grid > .footer-identity {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .footer-base {
    grid-template-columns: 1fr;
  }

  .footer-base p:last-child {
    justify-self: start;
    text-align: left;
  }

  .legal-layout > aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .site-brand__logo {
    width: 152px;
  }

  .hero-commercial {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-commercial > span {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > .footer-identity {
    grid-column: auto;
  }

  .legal-layout > aside nav {
    grid-template-columns: 1fr;
  }

  .replication-ledger li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .replication-scene__head {
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .replication-scene__head strong {
    max-width: none;
    text-align: left;
  }

  .replication-scene__field {
    min-height: 520px;
  }

  .replication-map {
    inset: 7% auto auto -42%;
    width: 184%;
  }

  .replication-route {
    display: none;
  }

  .replication-scene__field::after {
    position: absolute;
    z-index: -1;
    top: 34%;
    left: 50%;
    width: 1px;
    height: 28%;
    background: linear-gradient(var(--cyan), var(--violet));
    content: "";
    opacity: 0.5;
  }

  .replication-account-anchor {
    width: min(205px, 67cqw);
  }

  .replication-account-anchor--source,
  .replication-account-anchor--traveller {
    top: 17%;
    left: 0;
  }

  .replication-account-anchor--target {
    top: 57%;
    right: 0;
  }

  .replication-node--source {
    top: 4%;
    left: 0;
  }

  .replication-node--target {
    right: 0;
    bottom: 2%;
  }

  .replication-stages {
    display: none;
  }

  .replication-scene__footer {
    min-height: 0;
    flex-direction: column;
  }

  .replication-scene__footer button {
    padding-left: 0;
  }
}

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

  .replication-account-anchor--traveller {
    display: none;
  }
}
