:root {
  --orange: #ff5b22;
  --orange-dark: #ec4f18;
  --ink: #202124;
  --muted: #6d7178;
  --soft: #f7f7f4;
  --line: #e7e4de;
  --panel: #ffffff;
  --grid-dot: rgba(32, 33, 36, 0.09);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle, var(--grid-dot) 1px, transparent 1.5px) 0 0 / 18px 18px,
    #fff;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.brand,
.mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 58px;
  color: var(--orange);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  fill: currentColor;
  display: block;
}

.brand-word {
  display: none;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 780;
}

.nav-menu {
  position: static;
}

.nav-menu summary {
  list-style: none;
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.mega-panel {
  position: absolute;
  top: 78px;
  left: 50%;
  display: grid;
  width: min(980px, calc(100dvw - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(32, 33, 36, 0.14);
  transform: translateX(-50%);
}

.mega-panel-small {
  width: min(620px, calc(100dvw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-menu:not([open]) .mega-panel {
  display: none;
}

.mega-column h3 {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  margin-top: 11px;
  color: #545a62;
  font-size: 14px;
  line-height: 1.4;
}

.mega-column a:hover,
.main-nav a:hover,
.main-nav summary:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
  font-size: 14px;
  font-weight: 780;
}

.attack-link,
.login-link,
.sales-link {
  display: none;
}

.primary-pill,
.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
}

.primary-pill,
.primary-button {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(255, 91, 34, 0.22);
}

.ghost-button {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.92) 18%, rgba(255,255,255,.92) 82%, rgba(255,255,255,.72)),
    radial-gradient(circle at 50% 100%, rgba(255, 91, 34, 0.13), transparent 42%);
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

.hero-grid {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: 36px;
  padding: 84px 0 88px;
}

.event-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 10px 14px;
  color: #4e535b;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.event-strip a {
  color: var(--orange-dark);
}

.hero-copy h1,
.final-cta h2 {
  margin: 0;
  max-width: 900px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-console {
  min-height: 430px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(32, 33, 36, 0.1);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4c525c;
  font-size: 13px;
  font-weight: 760;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb49b;
}

.console-map {
  position: relative;
  min-height: 280px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,91,34,.22), transparent 32%),
    radial-gradient(circle, rgba(32,33,36,.08) 1px, transparent 1.5px) 0 0 / 20px 20px,
    #fff;
}

.orbit,
.core-dot,
.node {
  position: absolute;
}

.orbit {
  inset: 48px;
  border: 1px dashed rgba(255,91,34,.5);
  border-radius: 50%;
  animation: rotate 16s linear infinite;
}

.orbit-b {
  inset: 78px 36px;
  animation-duration: 22s;
  animation-direction: reverse;
}

.core-dot {
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 18px rgba(255,91,34,.12);
}

.node {
  display: grid;
  min-width: 58px;
  height: 38px;
  place-items: center;
  color: var(--orange-dark);
  background: #fff;
  border: 1px solid #ffd0bd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(32,33,36,.09);
}

.node-1 { top: 36px; left: 18%; }
.node-2 { top: 90px; right: 14%; }
.node-3 { bottom: 44px; left: 20%; }
.node-4 { bottom: 70px; right: 20%; }

.console-lines {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.console-lines p {
  margin: 0;
  padding: 12px 14px;
  color: #5d636c;
  background: #fff;
  border: 1px solid #efede8;
  border-radius: 12px;
  font-size: 13px;
}

.console-lines span {
  display: inline-block;
  min-width: 48px;
  color: var(--orange-dark);
  font-weight: 900;
}

.section-heading {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.why-heading h2,
.nav-map h2,
.pricing-section h2,
.workflow-section h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.earth-section,
.domain-server-section,
.pricing-section,
.workflow-section,
.nav-map {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.domain-server-section {
  padding-top: 40px;
}

.domain-shop {
  display: grid;
  gap: 22px;
}

.domain-search,
.server-bundles article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(32,33,36,.06);
}

.domain-search {
  container-type: inline-size;
  padding: 28px;
}

.domain-search label {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
}

.domain-search p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-alert {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  background: #fff7f2;
  border: 1px solid #ffd3bd;
  border-radius: 18px;
}

.pentagon-badge {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--orange-dark);
  background: #fff;
  border: 3px solid var(--orange);
  clip-path: polygon(50% 3%, 97% 38%, 79% 96%, 21% 96%, 3% 38%);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.price-alert strong {
  display: block;
  font-size: 16px;
}

.price-alert p {
  margin: 4px 0 0;
  font-size: 13px;
}

.domain-field {
  display: grid;
  gap: 10px;
}

.domain-field input,
.domain-field select {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

.suffix-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.suffix-dot {
  padding-left: 16px;
  color: var(--orange-dark);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.suffix-control select {
  min-height: 52px;
  padding-left: 4px;
  background-color: transparent;
  border: 0;
}

.suffix-select,
.suffix-custom {
  text-transform: uppercase;
}

.suffix-custom,
.domain-field button {
  grid-column: 1 / -1;
}

.domain-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #707781 50%),
    linear-gradient(135deg, #707781 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.domain-field select optgroup {
  font-weight: 850;
}

.domain-field select option {
  font-weight: 500;
}

.domain-field button,
.server-bundles a {
  min-height: 54px;
  cursor: pointer;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 14px;
  font-weight: 900;
}

.server-bundles {
  display: grid;
  gap: 16px;
}

.server-bundles article {
  padding: 24px;
}

.server-bundles article.highlight {
  border-color: rgba(255,91,34,.42);
  box-shadow: 0 24px 80px rgba(255,91,34,.13);
}

.server-bundles span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.server-bundles h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

.bundle-price {
  margin: 18px 0 14px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.bundle-price small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 14px;
}

.server-bundles ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  color: #4d545d;
  list-style: none;
}

.server-bundles li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.server-bundles a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.earth-layout {
  display: grid;
  gap: 18px;
}

.earth-card {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(32,33,36,.06);
}

.earth-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 44px;
  line-height: 1;
}

.earth-card h3 {
  margin: 0;
  font-size: 22px;
}

.earth-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.earth-orb {
  position: relative;
  width: 170px;
  height: 170px;
  margin-bottom: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--orange), rgba(255,91,34,.24) 42%, transparent 64%);
}

.earth-orb span {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,.8);
  border-radius: 50%;
  animation: rotate 14s linear infinite;
}

.earth-orb span:nth-child(2) {
  inset: 34px 6px;
  animation-direction: reverse;
}

.earth-orb span:nth-child(3) {
  inset: 6px 34px;
  animation-duration: 20s;
}

.logo-wall {
  overflow: hidden;
  padding: 28px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.logo-track,
.feature-marquee {
  display: flex;
  width: max-content;
  gap: 46px;
  animation: marquee 34s linear infinite;
}

.logo-track span,
.feature-marquee span {
  color: #33373d;
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.fortune-section {
  padding: 84px 0;
  overflow: hidden;
  background: #fff;
}

.brand-river {
  display: grid;
  gap: 18px;
}

.river-row {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: marquee 42s linear infinite;
}

.river-row.reverse {
  animation-direction: reverse;
  animation-duration: 50s;
}

.river-row span {
  min-width: 160px;
  padding: 20px 28px;
  text-align: center;
  color: #31343a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 50px rgba(32,33,36,.04);
}

.why-section {
  position: relative;
  min-height: 1180px;
  padding: 0 0 110px;
  background:
    radial-gradient(circle, var(--grid-dot) 1px, transparent 1.5px) 0 0 / 18px 18px,
    #fff;
}

.why-sticky {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 100px;
  padding: 18px 30px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
}

.mini .brand-mark {
  width: 58px;
}

.small-logo-strip {
  display: none;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 900;
}

.small-logo-strip span:nth-child(2),
.small-logo-strip span:nth-child(5) {
  font-size: 13px;
}

.why-heading {
  padding-top: 240px;
}

.driver-stage {
  width: min(1510px, calc(100% - 36px));
  margin: 80px auto 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.infra-panel,
.shipping-panel {
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.infra-panel {
  padding: 56px 34px;
  background: rgba(255,255,255,.78);
  border-left: 1px solid var(--line);
}

.infra-panel h3,
.shipping-panel h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: 0;
}

.infra-panel p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.infra-status-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-top: 22px;
}

.floating-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  color: #4f5660;
  background: rgba(255,255,255,.9);
  border: 1px solid #e9e5de;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 16px 40px rgba(32,33,36,.08);
  animation: floaty 4s ease-in-out infinite;
}

.tag-a {
  color: #266847;
  border-color: #cce9d8;
}

.tag-b {
  color: var(--orange-dark);
  border-color: #ffd3bd;
  animation-delay: 1.1s;
}

.dot-city {
  position: absolute;
  inset: auto 40px 0 40px;
  height: 120px;
  display: flex;
  align-items: end;
  gap: 46px;
  opacity: .6;
}

.dot-city span {
  width: 42px;
  height: var(--h, 70px);
  background-image: radial-gradient(circle, var(--orange) 1.2px, transparent 1.6px);
  background-size: 7px 7px;
}

.dot-city span:nth-child(1) { --h: 88px; }
.dot-city span:nth-child(2) { --h: 62px; }
.dot-city span:nth-child(3) { --h: 106px; }
.dot-city span:nth-child(4) { --h: 74px; }
.dot-city span:nth-child(5) { --h: 116px; }
.dot-city span:nth-child(6) { --h: 82px; }

.shipping-panel {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
}

.ship-inner {
  padding: 40px;
  text-align: center;
  transition: transform 360ms ease, opacity 360ms ease;
}

.ship-inner.is-changing {
  transform: translateY(14px);
  opacity: 0;
}

.shipping-panel p {
  max-width: 520px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.84);
  line-height: 1.75;
}

.driver-dots {
  width: min(760px, calc(100% - 36px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.driver-dots button,
.tab-buttons button {
  min-height: 44px;
  cursor: pointer;
  color: #4c525c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.driver-dots button.active,
.tab-buttons button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.tab-shell {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(32,33,36,.06);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-buttons button {
  padding: 0 18px;
}

.price-grid {
  display: none;
  gap: 14px;
}

.price-grid.active {
  display: grid;
}

.price-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.price-grid h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  margin: 22px 0 4px;
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.price-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.price-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: #4d545d;
  list-style: none;
}

.price-grid li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.workflow-section {
  display: grid;
  gap: 34px;
}

.agent-terminal {
  min-height: 390px;
  padding: 28px;
  color: #dce7dd;
  background: #121417;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(18,20,23,.18);
  font-family: "Cascadia Code", Consolas, monospace;
  overflow: hidden;
}

.agent-terminal p {
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: terminalLine 900ms ease forwards;
}

.agent-terminal p:nth-child(2) { animation-delay: .35s; }
.agent-terminal p:nth-child(3) { animation-delay: .7s; }
.agent-terminal p:nth-child(4) { animation-delay: 1.05s; }
.agent-terminal p:nth-child(5) { animation-delay: 1.4s; }
.agent-terminal p:nth-child(6) { animation-delay: 1.75s; }

.agent-terminal span {
  color: #86efac;
  font-weight: 900;
}

.agent-terminal em {
  color: #8da0ad;
  font-style: normal;
}

.cursor-line::after {
  content: "_";
  color: var(--orange);
  animation: blink 1s steps(2, start) infinite;
}

.nav-map-grid {
  display: grid;
  gap: 16px;
}

.nav-map-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.nav-map-grid h3 {
  margin: 0 0 12px;
  color: var(--orange-dark);
}

.nav-map-grid p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.nav-map-grid a {
  display: block;
  margin-top: 10px;
  color: #4d545d;
  font-size: 14px;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 80px;
  padding: 64px 28px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.final-cta p {
  max-width: 720px;
  margin: 20px auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-marquee {
  margin-top: 36px;
}

.site-footer {
  display: grid;
  gap: 34px;
  padding: 54px 28px;
  background: #f4f3ef;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-icp {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #5b626b;
  font-size: 13px;
  line-height: 1.6;
}

.footer-icp a {
  color: #4d545d;
}

.footer-icp a:hover {
  color: var(--orange-dark);
}

.footer-links {
  display: grid;
  gap: 26px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin-top: 9px;
  color: #5b626b;
  font-size: 14px;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes floaty {
  50% { transform: translateY(-12px); }
}

@keyframes terminalLine {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@media (min-width: 720px) {
  .brand-word,
  .demo-badge,
  .attack-link,
  .login-link,
  .sales-link {
    display: inline-flex;
  }

  .hero-copy h1,
  .final-cta h2 {
    font-size: 70px;
  }

  .earth-layout,
  .server-bundles,
  .price-grid.active,
  .nav-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .domain-field {
    grid-template-columns: minmax(0, 1fr) minmax(136px, 176px);
  }

  .driver-dots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1120px) {
  .main-nav {
    display: flex;
  }

  .hero-grid {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
  }

  .hero-copy h1,
  .final-cta h2 {
    font-size: 88px;
  }

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

  .domain-shop {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }

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

  .driver-stage {
    grid-template-columns: 1fr 1fr;
  }

  .infra-panel h3,
  .shipping-panel h3 {
    font-size: 58px;
  }

  .small-logo-strip {
    display: flex;
  }

  .price-grid.active {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-grid[data-tab-panel="zero"].active,
  .price-grid[data-tab-panel="compute"].active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .nav-map-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 320px 1fr;
    padding-inline: max(28px, calc((100% - 1180px) / 2));
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 18px;
  }

  .header-actions {
    gap: 8px;
  }

  .primary-pill {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-copy h1,
  .final-cta h2 {
    font-size: 42px;
  }

  .section-heading h2,
  .why-heading h2,
  .nav-map h2,
  .pricing-section h2,
  .workflow-section h2 {
    font-size: 30px;
  }

  .why-sticky {
    grid-template-columns: auto auto;
  }

  .infra-panel h3,
  .shipping-panel h3 {
    font-size: 38px;
  }
}

@container (min-width: 660px) {
  .domain-field {
    grid-template-columns: minmax(260px, 1fr) minmax(142px, 176px) 142px;
  }

  .domain-field button {
    grid-column: auto;
  }

  .suffix-custom {
    grid-column: 1 / -1;
  }
}
