:root {
  --bg: #070912;
  --bg-2: #0c1020;
  --panel: #11172a;
  --panel-2: #161f36;
  --line: rgba(185, 204, 255, 0.16);
  --text: #f7f9ff;
  --muted: #aeb8d6;
  --soft: #dce5ff;
  --purple: #8d5cff;
  --cyan: #16d9e3;
  --green: #84ffb5;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(141, 92, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(22, 217, 227, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--bg), #090c17 44%, #05070d);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  max-width: 100vw;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 18, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 78px;
  padding: 0 22px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 54px;
  width: 220px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav-links a,
.nav-drop-toggle {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-drop-toggle:hover {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  height: 14px;
  left: -12px;
  position: absolute;
  right: -12px;
  top: 100%;
}

.nav-drop-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: 6px;
  padding: 0;
}

.nav-drop-toggle::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
}

.nav-drop-menu {
  background: rgba(7, 9, 18, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  min-width: 190px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-3px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drop-menu a {
  border-radius: var(--radius);
  display: block;
  padding: 9px 10px;
}

.nav-drop-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
}

.cta-row,
.hero-actions,
.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.button.primary {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  box-shadow: 0 16px 40px rgba(22, 217, 227, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--soft);
}

.button.dark {
  background: #070912;
  color: #fff;
}

.section,
.hero,
.page-hero {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 22px;
  padding-right: 22px;
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: calc(100vh - 78px);
  padding-bottom: 56px;
  padding-top: 60px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

h3 {
  line-height: 1.08;
}

.lede {
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  max-width: 720px;
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  max-width: 720px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 100px;
  padding: 14px;
}

.proof-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  margin-top: 8px;
}

.rig-stage {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 70% 18%, rgba(132, 255, 181, 0.22), transparent 18rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.rig-stage::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, #000, transparent);
  position: absolute;
}

.tower {
  background: linear-gradient(180deg, #1f2b47, #0a0f1e);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 18px 8px 8px;
  bottom: 54px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 22px 70px rgba(0, 0, 0, 0.46);
  height: 420px;
  left: 18%;
  position: absolute;
  width: 58%;
}

.tower-glass {
  background:
    linear-gradient(135deg, rgba(22, 217, 227, 0.14), rgba(141, 92, 255, 0.05)),
    rgba(8, 12, 25, 0.75);
  border: 1px solid rgba(132, 255, 181, 0.2);
  border-radius: 12px;
  inset: 28px 26px 28px 72px;
  position: absolute;
}

.fan {
  animation: spin 6s linear infinite;
  border: 8px solid rgba(22, 217, 227, 0.14);
  border-left-color: var(--cyan);
  border-radius: 50%;
  height: 84px;
  position: absolute;
  right: 34px;
  width: 84px;
}

.fan.one {
  top: 38px;
}

.fan.two {
  top: 148px;
}

.fan.three {
  top: 258px;
}

.gpu {
  background: linear-gradient(90deg, #111827, #293553);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  height: 58px;
  left: 104px;
  position: absolute;
  top: 206px;
  width: 210px;
}

.coolant {
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  border-radius: 999px;
  height: 8px;
  left: 108px;
  position: absolute;
  top: 132px;
  width: 170px;
}

.spec-overlay {
  background: rgba(8, 11, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 24px;
  left: 24px;
  padding: 16px;
  position: absolute;
  width: min(300px, calc(100% - 48px));
}

.spec-overlay strong {
  display: block;
}

.spec-overlay span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
}

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

.section {
  padding-bottom: 72px;
  padding-top: 72px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  max-width: 560px;
}

.grid-3,
.grid-4,
.build-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.showcase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.build-card,
.form-panel,
.quote-card,
.area-card,
.showcase-card,
.trust-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
}

.card,
.area-card {
  padding: 24px;
}

.card p,
.area-card p,
.build-card p,
.quote-card p,
.page-hero p,
.showcase-card p {
  color: var(--muted);
}

.card-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(141, 92, 255, 0.22), rgba(22, 217, 227, 0.16));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  color: rgba(255, 255, 255, 0.08);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 12px;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(141, 92, 255, 0.14), rgba(22, 217, 227, 0.08)),
    #0b1020;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.feature-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px 22px;
}

.benchmark-list {
  display: grid;
  gap: 12px;
}

.benchmark-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.build-card {
  overflow: hidden;
}

.build-top {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px;
}

.price {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 950;
}

.build-body {
  padding: 18px;
}

.spec-list {
  color: var(--soft);
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.spec-list li {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.showcase-card {
  overflow: hidden;
}

.pc-render {
  background:
    radial-gradient(circle at 68% 20%, rgba(132, 255, 181, 0.2), transparent 12rem),
    linear-gradient(135deg, rgba(141, 92, 255, 0.18), rgba(22, 217, 227, 0.08)),
    #0a0f1e;
  border-bottom: 1px solid var(--line);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.pc-render::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.render-case {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, #202b46, #080d19);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  bottom: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  height: 200px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 170px;
  z-index: 1;
}

.render-glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%),
    rgba(5, 8, 16, 0.72);
  border: 1px solid rgba(132, 255, 181, 0.22);
  border-radius: 12px;
  inset: 18px 18px 18px 52px;
  position: absolute;
  z-index: 2;
}

.render-glass::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  height: 120%;
  left: 14px;
  opacity: 0.3;
  position: absolute;
  top: -12px;
  transform: rotate(12deg);
  width: 18px;
}

.render-mobo {
  background:
    linear-gradient(90deg, rgba(132, 255, 181, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(22, 217, 227, 0.1) 1px, transparent 1px),
    rgba(18, 28, 46, 0.7);
  background-size: 14px 14px;
  border: 1px solid rgba(132, 255, 181, 0.18);
  border-radius: 8px;
  height: 112px;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 56px;
  z-index: 3;
}

.render-cable {
  border: 2px solid rgba(207, 215, 255, 0.36);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  height: 56px;
  position: absolute;
  width: 38px;
  z-index: 4;
}

.render-cable.cable-a {
  right: 70px;
  top: 46px;
}

.render-cable.cable-b {
  border-color: rgba(22, 217, 227, 0.35);
  height: 42px;
  right: 68px;
  top: 104px;
}

.render-fan {
  animation: spin 7s linear infinite;
  border: 6px solid rgba(22, 217, 227, 0.12);
  border-left-color: var(--cyan);
  border-radius: 50%;
  height: 48px;
  position: absolute;
  right: 25px;
  width: 48px;
  z-index: 5;
}

.render-fan::after {
  background: radial-gradient(circle, #111827 0 38%, transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  inset: 10px;
  position: absolute;
}

.render-fan.a {
  top: 28px;
}

.render-fan.b {
  top: 94px;
}

.render-gpu {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, #121a2d, #324365);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  height: 32px;
  left: 62px;
  position: absolute;
  top: 124px;
  width: 86px;
  z-index: 6;
}

.render-gpu::after {
  background: linear-gradient(90deg, rgba(22, 217, 227, 0.65), rgba(132, 255, 181, 0.7));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 12px;
  position: absolute;
  right: 12px;
  top: 7px;
}

.render-ram {
  background: linear-gradient(180deg, var(--green), var(--cyan));
  border-radius: 999px;
  box-shadow: 8px 0 0 rgba(132, 255, 181, 0.75), 16px 0 0 rgba(22, 217, 227, 0.7);
  height: 36px;
  left: 48px;
  opacity: 0.78;
  position: absolute;
  top: 40px;
  width: 4px;
  z-index: 5;
}

.render-psu {
  background: linear-gradient(90deg, #111827, #26314f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  bottom: 18px;
  height: 34px;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 4;
}

.render-lightbar {
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  border-radius: 999px;
  height: 6px;
  left: 60px;
  position: absolute;
  top: 72px;
  width: 78px;
  z-index: 7;
}

.render-badge {
  background:
    url("assets/logo-mark.svg") center / 24px 24px no-repeat,
    linear-gradient(135deg, rgba(141, 92, 255, 0.95), rgba(22, 217, 227, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  box-shadow: 0 0 18px rgba(22, 217, 227, 0.22);
  height: 36px;
  left: 18px;
  position: absolute;
  top: 24px;
  width: 36px;
  z-index: 8;
}

.render-foot {
  background: #03050a;
  border-radius: 0 0 5px 5px;
  bottom: -7px;
  height: 7px;
  position: absolute;
  width: 34px;
  z-index: 0;
}

.render-foot.left {
  left: 18px;
}

.render-foot.right {
  right: 18px;
}

.creator-rig .render-case {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 20%, transparent 82%, rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, #eef3ff, #b7c7e9 46%, #141a28);
  border-color: rgba(255, 255, 255, 0.42);
}

.creator-rig .render-lightbar {
  background: linear-gradient(90deg, #ffffff, var(--cyan));
}

.creator-rig .render-badge {
  background:
    url("assets/logo-mark.svg") center / 24px 24px no-repeat,
    linear-gradient(135deg, #ffffff, #16d9e3);
}

.stealth-rig .render-case {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #151b2b, #05070d);
}

.stealth-rig .render-lightbar {
  background: linear-gradient(90deg, #50607d, var(--green));
}

.stealth-rig .render-badge {
  opacity: 0.72;
}

.showcase-copy {
  padding: 20px;
}

.build-tag {
  color: var(--green);
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mini-specs {
  color: var(--soft);
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.mini-specs li {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.authority-band,
.local-authority {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.authority-copy p,
.local-copy p {
  color: var(--muted);
}

.authority-grid,
.trust-grid {
  display: grid;
  gap: 14px;
}

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

.authority-grid div,
.trust-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.authority-grid strong,
.trust-grid strong {
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}

.authority-grid span,
.trust-grid span {
  color: var(--muted);
  display: block;
}

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

.quote-section {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
}

.build-intro {
  padding-bottom: 26px;
}

.build-studio {
  padding-top: 18px;
}

.build-configurator {
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
  padding: 0;
}

.config-header {
  background:
    linear-gradient(135deg, rgba(141, 92, 255, 0.18), rgba(22, 217, 227, 0.12)),
    rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.config-header h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.config-header p {
  color: var(--muted);
  max-width: 720px;
}

.choice-block {
  border: 0;
  margin: 0;
  padding: 24px 26px 0;
}

.choice-block legend {
  color: var(--soft);
  font-size: 1.05rem;
  font-weight: 950;
  margin-bottom: 12px;
}

.choice-grid,
.swatch-grid {
  display: grid;
  gap: 12px;
}

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

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

.choice-card,
.swatch-card {
  display: block;
  position: relative;
}

.choice-card input,
.swatch-card input {
  opacity: 0;
  position: absolute;
}

.choice-card span,
.swatch-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 118px;
  padding: 17px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.choice-card > span {
  color: inherit;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  margin-bottom: 0;
  text-transform: none;
}

.choice-card strong,
.swatch-card strong {
  color: var(--text);
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.choice-card small {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  margin-top: 9px;
  text-transform: none;
}

.choice-card input:checked + span,
.swatch-card:has(input:checked) {
  border-color: rgba(132, 255, 181, 0.68);
  box-shadow: 0 0 0 1px rgba(132, 255, 181, 0.12), 0 18px 42px rgba(22, 217, 227, 0.12);
}

.choice-card input:focus-visible + span,
.swatch-card:has(input:focus-visible) {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.choice-card:hover span,
.swatch-card:hover {
  transform: translateY(-2px);
}

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

.swatch-card {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  min-height: 74px;
}

.swatch {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: block;
  flex: 0 0 auto;
  height: 32px;
  margin-bottom: 0;
  width: 32px;
}

.swatch.dark {
  background: linear-gradient(135deg, #05070d, #23304d);
}

.swatch.white {
  background: linear-gradient(135deg, #f7f9ff, #c7d5ff);
}

.swatch.rgb {
  background: conic-gradient(from 20deg, var(--purple), var(--cyan), var(--green), var(--warning), var(--purple));
}

.swatch.quiet {
  background: linear-gradient(135deg, #111827, #8391b8);
}

.form-grid.compact,
.contact-strip {
  padding: 24px 26px 0;
}

.contact-strip {
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.contact-strip h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 0;
}

.build-configurator .form-actions {
  padding: 24px 26px 26px;
}

.quote-card {
  overflow: hidden;
}

.quote-visual {
  background:
    linear-gradient(rgba(7, 9, 18, 0.24), rgba(7, 9, 18, 0.88)),
    url("https://images.unsplash.com/photo-1593640408182-31c70c8268f5?auto=format&fit=crop&w=1300&q=80") center/cover;
  min-height: 360px;
  padding: 24px;
}

.quote-visual h2 {
  margin-top: 120px;
}

.form-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

label span {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  padding: 0 13px;
  width: 100%;
}

select option {
  background: #10172a;
  color: #fff;
}

textarea {
  min-height: 140px;
  padding: 12px 13px;
  resize: vertical;
}

.page-hero {
  padding-bottom: 52px;
  padding-top: 70px;
}

.page-hero.narrow {
  max-width: 920px;
}

.split {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.content-panel {
  color: var(--soft);
}

.content-panel p {
  color: var(--muted);
}

.local-map {
  background:
    linear-gradient(135deg, rgba(19, 28, 46, 0.98), rgba(11, 16, 32, 0.98)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 420px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.local-map::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  position: absolute;
}

.local-map::after {
  border: 1px dashed rgba(22, 217, 227, 0.28);
  border-radius: 50%;
  content: "";
  height: 250px;
  left: 52%;
  opacity: 0.8;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 360px;
  z-index: 2;
}

.map-title {
  background: rgba(7, 9, 18, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  font-weight: 950;
  left: 24px;
  padding: 12px 14px;
  position: absolute;
  top: 24px;
  z-index: 2;
}

.pin {
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(22, 217, 227, 0.12);
  height: 14px;
  position: absolute;
  width: 14px;
  z-index: 3;
}

.pin span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  left: 20px;
  position: absolute;
  top: -5px;
  white-space: nowrap;
}

.pin.magnolia {
  left: 45%;
  top: 38%;
}

.pin.tomball {
  left: 49%;
  top: 57%;
}

.pin.woodlands {
  left: 64%;
  top: 36%;
}

.pin.spring {
  left: 67%;
  top: 68%;
}

.pin.montgomery {
  left: 39%;
  top: 22%;
}

.pin.houston {
  left: 56%;
  top: 84%;
}

.real-map {
  background:
    radial-gradient(circle at 46% 44%, rgba(22, 217, 227, 0.16), transparent 12rem),
    radial-gradient(circle at 70% 76%, rgba(132, 255, 181, 0.1), transparent 10rem),
    linear-gradient(135deg, #202746 0%, #172033 48%, #152421 100%);
}

.map-water {
  background:
    radial-gradient(ellipse at 40% 22%, rgba(22, 217, 227, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(22, 217, 227, 0.14), rgba(141, 92, 255, 0.04));
  border: 1px solid rgba(22, 217, 227, 0.12);
  border-radius: 46% 54% 43% 57%;
  bottom: -42px;
  left: -52px;
  opacity: 0.55;
  position: absolute;
  top: 110px;
  width: 43%;
  z-index: 1;
}

.map-zone {
  background: radial-gradient(circle, rgba(22, 217, 227, 0.16), rgba(141, 92, 255, 0.12) 45%, transparent 72%);
  border: 1px solid rgba(132, 255, 181, 0.2);
  border-radius: 50%;
  height: 310px;
  left: 31%;
  position: absolute;
  top: 72px;
  width: 480px;
  z-index: 1;
}

.map-road {
  background: rgba(222, 230, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(7, 9, 18, 0.25);
  height: 5px;
  position: absolute;
  transform-origin: center;
  z-index: 3;
}

.map-road span {
  background: rgba(7, 9, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  position: absolute;
  top: -26px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.road-249 {
  left: 34%;
  top: 52%;
  transform: rotate(66deg);
  width: 330px;
}

.road-45 {
  left: 63%;
  top: 52%;
  transform: rotate(83deg);
  width: 360px;
}

.road-99 {
  left: 29%;
  top: 66%;
  transform: rotate(-6deg);
  width: 530px;
}

.road-1488 {
  left: 22%;
  top: 34%;
  transform: rotate(3deg);
  width: 470px;
}

.road-2920 {
  left: 41%;
  top: 73%;
  transform: rotate(-3deg);
  width: 380px;
}

.map-note {
  background: linear-gradient(135deg, rgba(132, 255, 181, 0.16), rgba(22, 217, 227, 0.12));
  border: 1px solid rgba(132, 255, 181, 0.32);
  border-radius: var(--radius);
  bottom: 24px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 950;
  padding: 10px 12px;
  position: absolute;
  right: 24px;
  z-index: 6;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 24px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.contact-methods a,
.contact-methods div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  padding: 14px;
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods span {
  color: var(--muted);
  margin-top: 4px;
}

.contact-rig {
  background:
    radial-gradient(circle at 70% 20%, rgba(132, 255, 181, 0.2), transparent 10rem),
    linear-gradient(135deg, rgba(141, 92, 255, 0.16), rgba(22, 217, 227, 0.1)),
    #0a0f1e;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.contact-form {
  padding: 24px;
}

.legal {
  color: var(--muted);
  max-width: 900px;
}

.site-footer {
  background: #05070d;
  border-top: 1px solid var(--line);
  margin-top: 42px;
}

.footer-inner {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 44px 22px;
}

.footer-inner img {
  height: 54px;
  width: 220px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
}

.footer-inner a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links {
    background: rgba(7, 9, 18, 0.97);
    border-left: 1px solid var(--line);
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 92px 26px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    width: min(340px, 86vw);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-toggle {
    justify-content: center;
    min-height: 40px;
    width: 100%;
  }

  .nav-drop-menu {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    width: 100%;
  }

  .menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    position: relative;
    width: 44px;
    z-index: 50;
  }

  .hero,
  .feature-inner,
  .quote-section,
  .split,
  .authority-band,
  .local-authority,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .build-intro h1,
  .build-intro .lede {
    max-width: min(100%, 38rem);
  }

  .hero {
    min-height: auto;
  }

  .rig-stage {
    min-height: 520px;
  }

  .grid-4,
  .grid-3,
  .showcase-grid,
  .choice-grid.three,
  .swatch-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .brand img,
  .footer-inner img {
    height: 44px;
    width: 178px;
  }

  .nav-wrap {
    max-width: 100%;
    min-height: 68px;
  }

  .hero,
  .page-hero,
  .section {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.55rem);
    line-height: 1.02;
  }

  .page-hero h1,
  .page-hero .lede,
  .local-copy h2,
  .local-copy p,
  .authority-copy h2,
  .authority-copy p,
  .section-heading,
  .section-heading p,
  .content-panel,
  .local-copy,
  .authority-copy {
    max-width: 100%;
  }

  .page-hero h1,
  .page-hero .lede,
  .local-copy h2,
  .local-copy p,
  .authority-copy h2,
  .authority-copy p,
  .content-panel h2,
  .content-panel p {
    max-width: min(326px, calc(100vw - 64px));
    overflow-wrap: break-word;
    width: 100%;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .local-copy h2,
  .authority-copy h2,
  .content-panel h2,
  .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.03;
  }

  .hero-proof,
  .grid-4,
  .grid-3,
  .build-grid,
  .showcase-grid,
  .authority-grid,
  .trust-grid,
  .choice-grid,
  .choice-grid.three,
  .swatch-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rig-stage {
    min-height: 430px;
  }

  .tower {
    height: 330px;
    left: 10%;
    width: 75%;
  }

  .tower-glass {
    inset: 22px 18px 22px 58px;
  }

  .fan {
    height: 62px;
    right: 24px;
    width: 62px;
  }

  .fan.two {
    top: 120px;
  }

  .fan.three {
    top: 202px;
  }

  .gpu {
    left: 76px;
    width: 160px;
  }

  .coolant {
    left: 80px;
    width: 132px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-map {
    min-height: 340px;
  }

  .pin span {
    font-size: 0.74rem;
  }

  .pin.woodlands span,
  .pin.spring span {
    left: auto;
    right: 20px;
  }

  .build-intro {
    padding-bottom: 12px;
  }

  .build-intro h1,
  .build-intro .lede {
    max-width: calc(100vw - 32px);
  }

  .build-studio {
    padding-top: 8px;
  }

  .build-configurator {
    margin-left: -2px;
    margin-right: -2px;
    max-width: calc(100vw - 28px);
    width: calc(100vw - 28px);
  }

  .config-header,
  .choice-block,
  .form-grid.compact,
  .contact-strip,
  .build-configurator .form-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .config-header h2 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
    line-height: 1;
  }

  .choice-card span {
    min-height: 0;
  }

  .swatch-card {
    min-height: 64px;
  }
}
