@import url("data:text/css,");

:root {
  --bg: #061321;
  --surface: #0a1b2d;
  --surface-2: #102840;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.23);
  --text: #f7fbff;
  --muted: #a9bdd2;
  --accent: #28c7ff;
  --accent-2: #075dff;
  --danger: #ff5d7a;
  --radius: 24px;
  --header-height: 78px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 0%, rgba(7, 93, 255, 0.11), transparent 34%),
    radial-gradient(circle at 20% 12%, rgba(40, 199, 255, 0.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.modal-open,
body.transitioning {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--accent);
  color: #02111d;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.grid-floor {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -22vh;
  height: 52vh;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(40, 199, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 199, 255, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(420px) rotateX(66deg) scale(1.4);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, #000, transparent 76%);
}

.pointer-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  background: radial-gradient(circle, rgba(40, 199, 255, 0.3), rgba(7, 93, 255, 0.1) 42%, transparent 70%);
  filter: blur(18px);
  transition: opacity 0.3s ease;
}

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

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #04101c;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.boot-screen.done {
  opacity: 0;
  visibility: hidden;
}

.boot-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.boot-mark > span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.08em;
  animation: bootPulse 1s infinite alternate ease-in-out;
}

.boot-line {
  width: 210px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.boot-line::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: bootLine 0.9s infinite ease-in-out;
}

.boot-mark small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
}

@keyframes bootPulse {
  to {
    border-color: var(--accent);
    box-shadow: 0 0 36px rgba(40, 199, 255, 0.18);
  }
}

@keyframes bootLine {
  from { transform: translateX(-110%); }
  to { transform: translateX(350%); }
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 13, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.site-header.hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
}

.brand-mark,
.footer-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(145deg, #141a24, #090c11);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.brand-text {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.beta-pill {
  border: 1px solid rgba(40, 199, 255, 0.28);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.text-button {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after,
.text-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.text-button:hover {
  color: var(--text);
}

.desktop-nav a:hover::after,
.text-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 190px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 18px auto;
  z-index: 79;
  display: grid;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 17, 24, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(-18px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(150px, 19vh, 210px);
  padding-bottom: 90px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 22%;
  z-index: -1;
  width: 44%;
  height: 34%;
  background: rgba(7, 93, 255, 0.09);
  filter: blur(90px);
  border-radius: 50%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(40, 199, 255, 0.75);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(40, 199, 255, 0.3);
  border-radius: inherit;
  animation: ping 1.6s infinite ease-out;
}

@keyframes ping {
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

.hero-title {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0;
  font-size: clamp(64px, 10.4vw, 156px);
  line-height: 0.79;
  letter-spacing: -0.085em;
  font-weight: 950;
}

.hero-title span {
  display: block;
}

.hero-title .accent-line {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(245, 247, 251, 0.8);
  text-stroke: 1.4px rgba(245, 247, 251, 0.8);
}

.hero-copy {
  max-width: 580px;
  margin: 38px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.domain-machine {
  width: min(720px, 100%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 17, 24, 0.72);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.domain-label {
  padding: 3px 8px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.domain-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 68px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #06111e;
}

.domain-input-wrap {
  min-width: 0;
  flex: 1;
}

.domain-row input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.domain-suffix {
  color: var(--muted);
  white-space: nowrap;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 750;
}

.domain-indicator {
  border: 1px solid rgba(40, 199, 255, 0.25);
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--accent);
  background: rgba(40, 199, 255, 0.06);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.domain-indicator.invalid {
  border-color: rgba(255, 102, 94, 0.25);
  background: rgba(255, 102, 94, 0.06);
  color: var(--danger);
}

.domain-hint {
  margin: 9px 8px 0;
  color: #778294;
  font-size: 11px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.deploy-button,
.ghost-button,
.small-button,
.plan-button,
.modal-submit {
  border: 0;
  cursor: pointer;
}

.deploy-button {
  position: relative;
  min-width: 220px;
  min-height: 56px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 12px 0 20px;
  border-radius: 14px;
  color: #02111d;
  background: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 50px rgba(40, 199, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deploy-button:hover {
  box-shadow: 0 18px 70px rgba(40, 199, 255, 0.24);
}

.button-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--text);
  background: #041320;
  font-size: 17px;
}

.button-progress {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: #041320;
  transform: scaleX(0);
  transform-origin: left;
}

.ghost-button {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.ghost-button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 22px;
  color: #788394;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-meta span::before {
  content: "↳";
  margin-right: 7px;
  color: var(--accent);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 19%;
  right: -4%;
  width: min(38vw, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: 0.7;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-ring-a {
  inset: 4%;
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-a::before,
.orbit-ring-b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(40, 199, 255, 0.65);
}

.orbit-ring-b {
  inset: 21%;
  border-style: dashed;
  animation: orbitSpin 13s linear infinite reverse;
}

.orbit-core {
  width: 36%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 93, 255, 0.14), rgba(13, 17, 24, 0.72));
  box-shadow: inset 0 0 50px rgba(7, 93, 255, 0.1);
}

.orbit-core span {
  font-size: clamp(28px, 5vw, 68px);
  font-weight: 900;
}

.orbit-core small {
  color: var(--muted);
  letter-spacing: 0.2em;
}

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

.deploy-stage {
  position: relative;
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto 140px;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(40, 199, 255, 0.34), rgba(7, 93, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.42);
}

.deploy-panel {
  overflow: hidden;
  border-radius: 29px;
  background: #071727;
}

.panel-topbar {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29303b;
}

.window-dots span:first-child { background: #ff6259; }
.window-dots span:nth-child(2) { background: #f4c94a; }
.window-dots span:nth-child(3) { background: #54d46b; }

.panel-version {
  justify-self: end;
}

.deploy-layout {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  min-height: 520px;
}

.drop-zone {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 60px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(40, 199, 255, 0.06), transparent 36%),
    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: auto, 34px 34px, 34px 34px;
}

.drop-zone.dragging {
  background-color: rgba(40, 199, 255, 0.05);
}

.file-cube {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(40, 199, 255, 0.32);
  border-radius: 24px;
  color: var(--accent);
  background: rgba(40, 199, 255, 0.05);
  box-shadow: 0 20px 70px rgba(40, 199, 255, 0.08);
  transform: rotate(-7deg);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.drop-zone:hover .file-cube {
  transform: rotate(4deg) translateY(-8px);
}

.file-cube::before,
.file-cube::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(40, 199, 255, 0.16);
  border-radius: 18px;
}

.file-cube span {
  font-weight: 950;
  letter-spacing: 0.12em;
}

.drop-zone h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.055em;
}

.drop-zone p {
  margin: 8px 0 22px;
  color: var(--muted);
}

.small-button {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  background: #111722;
  font-size: 12px;
  font-weight: 800;
}

.small-button:hover {
  border-color: var(--accent);
}

.terminal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #04101a;
}

.terminal-header {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #707b8c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.terminal-lines {
  flex: 1;
  overflow: auto;
  padding: 28px;
  color: #d9dfeb;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(12px, 1.4vw, 15px);
}

.terminal-lines p {
  margin: 0 0 10px;
}

.terminal-lines .muted {
  color: #657083;
}

.terminal-prompt,
.terminal-ok {
  color: var(--accent);
}

.terminal-info {
  color: #95a3ff;
}

.terminal-warning {
  color: #ffcc66;
}

.deployment-result {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: rgba(40, 199, 255, 0.04);
  transform: translateY(100%);
  opacity: 0;
  transition: 0.55s cubic-bezier(.2,.8,.2,1);
}

.deployment-result.show {
  transform: translateY(0);
  opacity: 1;
}

.deployment-result > div {
  display: grid;
  gap: 2px;
}

.result-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.deployment-result strong {
  font-size: clamp(16px, 2.4vw, 25px);
}

.result-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.manifesto {
  padding: 120px 0 150px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 88px;
  align-items: start;
}

.manifesto-copy {
  position: sticky;
  top: 120px;
}

.manifesto-copy h2,
.pricing-heading h2,
.trust-copy h2,
.faq-layout > h2 {
  margin: 0;
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.manifesto-copy p {
  max-width: 470px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

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

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 38px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, padding 0.25s ease;
}

.step-card::after {
  content: attr(data-step);
  position: absolute;
  right: 10px;
  top: 34px;
  color: #2b3340;
  font-size: 12px;
  font-weight: 900;
}

.step-card:hover {
  padding-left: 22px;
  background: linear-gradient(90deg, rgba(40, 199, 255, 0.04), transparent);
}

.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--accent);
  background: var(--surface);
  font-size: 25px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.step-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.difference-section {
  padding: 70px 0 150px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.difference-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 10%, rgba(7, 93, 255, 0.09), transparent 35%),
    var(--surface);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.difference-card.wide {
  grid-column: span 2;
  min-height: 300px;
}

.card-code {
  margin-bottom: 60px;
  color: #677285;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.difference-card h3 {
  max-width: 600px;
  margin: 0 0 12px;
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.difference-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.price-line {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 18px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #06111e;
}

.price-line span {
  color: #677285;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.price-line strong {
  color: var(--accent);
  font-size: 19px;
}

.chat-chip {
  position: absolute;
  left: 32px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid rgba(40, 199, 255, 0.2);
  border-radius: 999px;
  color: #cdd5df;
  background: rgba(40, 199, 255, 0.05);
  font-size: 11px;
  font-weight: 800;
}

.chat-chip span {
  color: var(--accent);
}

.mini-interface {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 45%;
  height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #07182a;
}

.mini-interface div {
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: #1d2430;
}

.mini-interface div:nth-of-type(2) { width: 76%; }
.mini-interface div:nth-of-type(3) { width: 52%; }

.mini-live {
  float: right;
  color: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.server-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: center;
}

.server-card .card-code {
  margin-bottom: 36px;
}

.server-visual {
  display: grid;
  gap: 12px;
  perspective: 800px;
}

.server-unit {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(180deg, #141a24, #0b0e14);
  transform: rotateY(9deg);
}

.server-unit span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #343e4d;
}

.server-unit span:last-child {
  margin-left: auto;
  width: 42%;
  height: 5px;
  border-radius: 999px;
}

.server-unit.active {
  border-color: rgba(40, 199, 255, 0.26);
  box-shadow: 0 0 50px rgba(40, 199, 255, 0.08);
}

.server-unit.active span:first-child {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(40, 199, 255, 0.65);
}

.pricing-section {
  padding: 90px 0 160px;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 24, 35, 0.98), rgba(10, 13, 19, 0.98));
  transform-style: preserve-3d;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.price-card.featured {
  border-color: rgba(40, 199, 255, 0.34);
  background:
    radial-gradient(circle at 80% 0%, rgba(40, 199, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #0d2940, #071827);
}

.featured-stripe {
  position: absolute;
  top: 18px;
  right: -40px;
  width: 180px;
  transform: rotate(32deg);
  padding: 7px;
  color: #02111d;
  background: var(--accent);
  text-align: center;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-index {
  color: #596476;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.plan-badge {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price-card h3 {
  margin: 62px 0 8px;
  font-size: 41px;
  letter-spacing: -0.055em;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 19px;
}

.plan-price strong {
  font-size: 48px;
  letter-spacing: -0.06em;
}

.plan-price span {
  margin-bottom: 9px;
  color: var(--muted);
}

.price-card > p {
  min-height: 54px;
  margin: 0 0 26px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  color: #cbd2dd;
  font-size: 13px;
}

.price-card li::before {
  content: "↳";
  margin-right: 9px;
  color: var(--accent);
}

.plan-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--text);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.plan-button:hover {
  border-color: var(--accent);
}

.plan-button.primary-plan {
  color: #02111d;
  border-color: var(--accent);
  background: var(--accent);
}

.trust-section {
  padding: 100px 0 160px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
  align-items: center;
}

.status-console {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #061524;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.35);
}

.console-heading {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.console-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid var(--line);
}

.service-row > span:first-child {
  color: #d6dce5;
  font-size: 13px;
}

.service-row strong {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.service-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #171d27;
}

.service-meter i {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform-origin: left;
  animation: meterIn 1.2s both ease-out;
}

@keyframes meterIn {
  from { transform: scaleX(0); }
}

.status-note {
  margin: 0;
  padding: 18px 20px;
  color: #687486;
  font-size: 10px;
}

.trust-points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.trust-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-points span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.trust-points p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding: 80px 0 160px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.faq-layout > h2 {
  position: sticky;
  top: 120px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 780;
}

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

.faq-list summary span {
  color: var(--accent);
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -3px 0 28px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  place-items: center;
  margin-bottom: 80px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 40%, rgba(7, 93, 255, 0.18), transparent 35%),
    #090c12;
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  text-align: center;
}

.final-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.final-copy h2 {
  margin: 26px 0 18px;
  overflow-wrap: anywhere;
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.final-copy p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
}

.final-copy .deploy-button {
  margin-inline: auto;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  border: 1px solid var(--line-strong);
  color: var(--text);
  cursor: pointer;
}

.footer-brand strong {
  letter-spacing: 0.16em;
}

.footer-brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 40px 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #5f6a7a;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.transition-layer {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow: hidden;
  display: grid;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
}

.transition-layer.active {
  visibility: visible;
  pointer-events: auto;
}

.transition-slice {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.55s cubic-bezier(.76,0,.24,1);
}

.slice-a {
  top: 0;
  transform-origin: top;
}

.slice-b {
  bottom: 0;
  transform-origin: bottom;
}

.transition-layer.active .transition-slice {
  transform: scaleY(1);
}

.transition-layer.reveal .slice-a {
  transform: translateY(-110%);
}

.transition-layer.reveal .slice-b {
  transform: translateY(110%);
}

.transition-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  color: #02111d;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.35s ease 0.25s;
}

.transition-layer.active .transition-copy {
  opacity: 1;
  transform: scale(1);
}

.transition-copy span {
  font-size: clamp(54px, 12vw, 180px);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.transition-copy strong {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.25em;
}

.transition-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.13;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.15) 3px 4px);
  mix-blend-mode: multiply;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 5, 8, 0.84);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.signup-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: min(850px, calc(100svh - 40px));
  overflow: auto;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: #0a0e14;
  box-shadow: 0 50px 170px rgba(0, 0, 0, 0.65);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.modal-backdrop.open .signup-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #10151d;
  cursor: pointer;
  font-size: 24px;
}

.modal-plan {
  display: grid;
  align-content: end;
  padding: 38px;
  background:
    radial-gradient(circle at 30% 20%, rgba(40, 199, 255, 0.16), transparent 35%),
    linear-gradient(150deg, #121a21, #090d12);
  border-right: 1px solid var(--line);
}

.modal-plan span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.modal-plan strong {
  margin-top: 14px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.modal-plan small {
  margin-top: 20px;
  color: var(--muted);
}

.modal-content {
  padding: 54px;
}

.modal-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.modal-content h2 {
  margin: 13px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.modal-content > p {
  margin: 0 0 28px;
  color: var(--muted);
}

#signupForm {
  display: grid;
  gap: 15px;
}

#signupForm label {
  display: grid;
  gap: 7px;
}

#signupForm label > span {
  color: #aeb7c5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#signupForm input,
#signupForm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  padding: 13px 14px;
  color: var(--text);
  background: #070a0f;
  resize: vertical;
}

#signupForm input:focus,
#signupForm textarea:focus {
  border-color: rgba(40, 199, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(40, 199, 255, 0.06);
}

.modal-domain {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #070a0f;
}

.modal-domain:focus-within {
  border-color: rgba(40, 199, 255, 0.48);
}

.modal-domain input {
  border: 0 !important;
  box-shadow: none !important;
}

.modal-domain span {
  padding-right: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.modal-submit {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 12px;
  color: #02111d;
  background: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.form-note {
  margin: 0 !important;
  color: #6f7a8c !important;
  font-size: 10px;
}

.secret-terminal {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.secret-terminal.open {
  opacity: 1;
  visibility: visible;
}

.secret-terminal-window {
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(40, 199, 255, 0.38);
  border-radius: 17px;
  background: #050807;
  box-shadow: 0 0 100px rgba(40, 199, 255, 0.12);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.secret-topbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(40, 199, 255, 0.18);
  color: #8ea485;
  font-size: 11px;
}

.secret-topbar button {
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.secret-output {
  min-height: 280px;
  max-height: 56vh;
  overflow: auto;
  padding: 20px;
  color: #c4f6a0;
  font-size: 13px;
}

.secret-output p {
  margin: 0 0 8px;
}

.secret-input-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-top: 1px solid rgba(40, 199, 255, 0.18);
  color: var(--accent);
}

.secret-input-row input {
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--accent);
  background: transparent;
  font-family: inherit;
}

.toast-region {
  position: fixed;
  z-index: 980;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  width: min(340px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  background: rgba(14, 19, 27, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  transform: translateX(120%);
  animation: toastIn 0.35s forwards cubic-bezier(.2,.8,.2,1), toastOut 0.35s 3.7s forwards ease;
}

.toast strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.toast span {
  color: var(--muted);
  font-size: 12px;
}

@keyframes toastIn {
  to { transform: translateX(0); }
}

@keyframes toastOut {
  to { transform: translateX(120%); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.ready .reveal {
  animation: revealIn 0.75s forwards cubic-bezier(.2,.8,.2,1);
}

body.ready .reveal:nth-of-type(2) { animation-delay: 0.08s; }
body.ready .reveal:nth-of-type(3) { animation-delay: 0.16s; }
body.ready .reveal:nth-of-type(4) { animation-delay: 0.24s; }
body.ready .reveal:nth-of-type(5) { animation-delay: 0.32s; }

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

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.8,.2,1);
}

.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    min-width: auto;
  }

  .text-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-orbit {
    top: 14%;
    right: -16%;
    opacity: 0.35;
  }

  .manifesto-grid,
  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .manifesto-copy,
  .faq-layout > h2 {
    position: static;
  }

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

  .price-card {
    min-height: auto;
  }

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

@media (max-width: 800px) {
  :root {
    --header-height: 68px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding-inline: 14px;
  }

  .beta-pill {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-title {
    font-size: clamp(55px, 18vw, 110px);
  }

  .domain-row {
    flex-wrap: wrap;
  }

  .domain-input-wrap {
    flex: 1 1 55%;
  }

  .domain-suffix {
    flex: 0 0 auto;
  }

  .domain-indicator {
    margin-left: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .deploy-button,
  .ghost-button {
    width: 100%;
  }

  .hero-orbit {
    display: none;
  }

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

  .drop-zone {
    min-height: 430px;
    padding: 35px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .terminal-card {
    min-height: 360px;
  }

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

  .difference-card.wide {
    grid-column: auto;
  }

  .difference-card {
    min-height: 360px;
  }

  .price-line {
    position: static;
    width: fit-content;
    margin-top: 28px;
  }

  .server-card {
    grid-template-columns: 1fr;
  }

  .server-visual {
    order: 2;
  }

  .service-row {
    grid-template-columns: 1fr auto;
  }

  .service-meter {
    grid-column: span 2;
    grid-row: 2;
  }

  .signup-modal {
    grid-template-columns: 1fr;
  }

  .modal-plan {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .modal-plan strong {
    writing-mode: initial;
    transform: none;
  }

  .modal-content {
    padding: 34px 20px;
  }

  .final-cta {
    min-height: 580px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 13px;
  }

  .hero {
    padding-bottom: 65px;
  }

  .hero-title {
    font-size: clamp(52px, 20vw, 94px);
  }

  .domain-row {
    min-height: 0;
  }

  .domain-input-wrap {
    flex: 1 1 100%;
  }

  .domain-row input {
    font-size: 23px;
  }

  .domain-suffix {
    font-size: 16px;
  }

  .domain-indicator {
    font-size: 8px;
  }

  .deploy-stage {
    width: calc(100% - 14px);
    border-radius: 22px;
  }

  .deploy-panel {
    border-radius: 21px;
  }

  .panel-topbar {
    grid-template-columns: auto 1fr;
  }

  .panel-title {
    justify-self: end;
    font-size: 8px;
  }

  .panel-version {
    display: none;
  }

  .deployment-result {
    align-items: start;
    flex-direction: column;
  }

  .difference-card,
  .price-card {
    padding: 24px;
  }

  .mini-interface {
    width: calc(100% - 48px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .pointer-glow,
  .hero-orbit {
    display: none;
  }
}


/* Speedwave v2 */
body {
  background:
    radial-gradient(circle at 75% 8%, rgba(0, 128, 255, 0.22), transparent 32%),
    radial-gradient(circle at 16% 18%, rgba(40, 199, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #061321 0%, #071727 50%, #06111e 100%);
}

.speed-streaks {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .28;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.speed-streaks::before,
.speed-streaks::after {
  content: "";
  position: absolute;
  width: 70vw;
  height: 1px;
  right: -15vw;
  top: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), rgba(40,199,255,.3), transparent);
  box-shadow:
    0 44px rgba(40,199,255,.45),
    0 108px rgba(255,255,255,.22),
    0 176px rgba(7,93,255,.35),
    0 252px rgba(255,255,255,.14);
  transform: rotate(-8deg);
  animation: speedDrift 8s linear infinite;
}

.speed-streaks::after {
  top: 65%;
  right: auto;
  left: -20vw;
  opacity: .5;
  transform: rotate(7deg);
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes speedDrift {
  0% { translate: 12vw 0; opacity: .1; }
  50% { opacity: .9; }
  100% { translate: -24vw 0; opacity: .1; }
}

.brand-mark-image,
.boot-logo,
.footer-logo {
  overflow: visible;
}

.brand-mark-image {
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo,
.boot-logo img,
.footer-logo img,
.orbit-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 128, 255, .35));
}

.boot-logo {
  width: 106px !important;
  height: 106px !important;
  border: 0 !important;
  background: transparent !important;
}

.footer-logo {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.orbit-core {
  width: 45%;
  padding: 18px;
  border-color: rgba(40, 199, 255, .35);
  background: radial-gradient(circle, rgba(40,199,255,.13), rgba(6,19,33,.72));
}

.orbit-core img {
  width: 86%;
  height: 76%;
}

.orbit-core small {
  margin-top: 4px;
  color: #d7efff;
}

.hero-title .accent-line {
  background: linear-gradient(90deg, #f7fbff, #59d9ff 48%, #0c68ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 55px rgba(40,199,255,.15);
}

.domain-machine,
.deploy-panel,
.price-card,
.difference-card,
.status-console,
.signup-modal {
  box-shadow: 0 35px 120px rgba(0, 73, 155, .12), 0 20px 70px rgba(0,0,0,.25);
}

.deploy-button,
.modal-submit,
.plan-button.primary-plan {
  background: linear-gradient(100deg, #f7fbff 0%, #68ddff 46%, #1a7cff 100%);
  color: #03111e;
}

.locale-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 15px;
}

.locale-select-wrap {
  position: relative;
}

.locale-select-wrap select {
  min-width: 58px;
  height: 36px;
  padding: 0 25px 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  appearance: none;
  color: var(--text);
  background:
    linear-gradient(45deg, transparent 50%, #8fb6cf 50%) calc(100% - 12px) 15px / 5px 5px no-repeat,
    linear-gradient(135deg, #8fb6cf 50%, transparent 50%) calc(100% - 8px) 15px / 5px 5px no-repeat,
    rgba(7, 24, 42, .88);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
}

.locale-select-wrap select:hover,
.locale-select-wrap select:focus {
  border-color: rgba(40,199,255,.55);
}

.prototype-logo-note {
  color: #46647d;
}

@media (max-width: 1040px) {
  .locale-controls {
    margin-right: 8px;
  }
}

@media (max-width: 560px) {
  .locale-controls {
    gap: 4px;
  }
  .locale-select-wrap select {
    min-width: 48px;
    width: 48px;
    padding-left: 7px;
    font-size: 9px;
  }
  .brand-text {
    display: none;
  }
  .prototype-logo-note {
    display: none;
  }
}


/* =========================================================
   CLYVARD SPEEDWAVE V3 — cache-safe final overrides
   ========================================================= */

:root {
  --bg: #071a2c;
  --surface: #0a2238;
  --surface-2: #0e2d49;
  --line: rgba(204, 235, 255, 0.14);
  --line-strong: rgba(214, 240, 255, 0.30);
  --text: #f8fcff;
  --muted: #a9c1d6;
  --accent: #2bc9ff;
  --accent-2: #176cff;
  --danger: #ff6682;
}

html,
body {
  background: #071a2c;
}

body {
  background:
    radial-gradient(circle at 76% 7%, rgba(24, 112, 255, .28), transparent 32%),
    radial-gradient(circle at 17% 16%, rgba(43, 201, 255, .15), transparent 27%),
    linear-gradient(180deg, #071a2c 0%, #08243c 48%, #061726 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,.035) 46.1% 46.25%, transparent 46.35%),
    linear-gradient(115deg, transparent 0 56%, rgba(43,201,255,.045) 56.1% 56.25%, transparent 56.35%);
}

.status-dot,
.window-dots span:nth-child(3) {
  background: var(--accent) !important;
  box-shadow: 0 0 16px rgba(43, 201, 255, .78) !important;
}

.beta-pill,
.domain-indicator,
.section-label,
.result-kicker,
.card-code,
.chat-chip span,
.mini-live,
.service-row strong,
.modal-kicker,
.modal-plan span,
.final-kicker,
.secret-topbar button,
.secret-input-row,
.terminal-prompt,
.terminal-ok {
  color: var(--accent) !important;
}

.beta-pill,
.domain-indicator,
.chat-chip,
.server-unit.active,
.secret-terminal-window {
  border-color: rgba(43, 201, 255, .32) !important;
}

.domain-indicator,
.chat-chip {
  background: rgba(43, 201, 255, .075) !important;
}

.brand {
  min-width: 205px;
  gap: 10px;
}

.brand-mark.brand-mark-image {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.brand-logo {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  object-fit: contain !important;
  transform: none !important;
}

.boot-logo {
  display: block !important;
  width: 82px !important;
  height: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: transparent !important;
}

.boot-logo img {
  display: block !important;
  width: 82px !important;
  height: 82px !important;
  object-fit: contain !important;
}

.hero-orbit {
  right: -1% !important;
  width: min(34vw, 430px) !important;
  opacity: .66 !important;
}

.orbit-core {
  width: 38% !important;
  padding: 14px !important;
  overflow: hidden !important;
}

.orbit-core img {
  display: block !important;
  width: 112px !important;
  height: 112px !important;
  max-width: 72% !important;
  max-height: 72% !important;
  object-fit: contain !important;
}

.footer-logo {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: transparent !important;
}

.footer-logo img {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
}

.hero-title .accent-line {
  background: linear-gradient(90deg, #f9fdff 0%, #76ddff 52%, #2b7cff 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  -webkit-text-stroke: 0 !important;
}

.deploy-button,
.modal-submit,
.plan-button.primary-plan {
  background: linear-gradient(100deg, #ffffff 0%, #77deff 48%, #267cff 100%) !important;
  color: #031322 !important;
  box-shadow: 0 17px 60px rgba(32, 158, 255, .22) !important;
}

.button-arrow {
  background: #05223a !important;
}

.domain-machine,
.deploy-panel,
.difference-card,
.price-card,
.status-console,
.signup-modal,
.final-cta {
  background-color: rgba(7, 31, 52, .84) !important;
  border-color: rgba(201, 234, 255, .16) !important;
  box-shadow:
    0 35px 120px rgba(0, 74, 150, .16),
    0 22px 80px rgba(0, 0, 0, .25) !important;
}

.domain-row,
.terminal-card,
.mini-interface,
.price-line {
  background: rgba(3, 18, 31, .88) !important;
}

.locale-controls {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-right: 14px !important;
}

.locale-select-wrap {
  position: relative !important;
  display: block !important;
}

.locale-select-wrap select {
  display: block !important;
  width: auto !important;
  min-width: 64px !important;
  height: 38px !important;
  padding: 0 27px 0 11px !important;
  border: 1px solid rgba(204,235,255,.20) !important;
  border-radius: 11px !important;
  outline: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  color: #eff9ff !important;
  background:
    linear-gradient(45deg, transparent 50%, #8bdcff 50%) calc(100% - 13px) 16px / 5px 5px no-repeat,
    linear-gradient(135deg, #8bdcff 50%, transparent 50%) calc(100% - 9px) 16px / 5px 5px no-repeat,
    rgba(7, 31, 52, .96) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
  cursor: pointer !important;
}

.locale-select-wrap select:hover,
.locale-select-wrap select:focus {
  border-color: rgba(43,201,255,.72) !important;
  box-shadow: 0 0 0 3px rgba(43,201,255,.08) !important;
}

.locale-select-wrap option {
  color: #081928 !important;
  background: #f5fbff !important;
}

.speed-streaks::before,
.speed-streaks::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.92), rgba(43,201,255,.42), transparent) !important;
  box-shadow:
    0 44px rgba(43,201,255,.46),
    0 108px rgba(255,255,255,.25),
    0 176px rgba(23,108,255,.42),
    0 252px rgba(255,255,255,.15) !important;
}

@media (max-width: 1040px) {
  .brand {
    min-width: 0 !important;
  }
  .locale-controls {
    margin-right: 7px !important;
  }
}

@media (max-width: 620px) {
  .brand-text,
  .beta-pill {
    display: none !important;
  }
  .locale-select-wrap select {
    min-width: 52px !important;
    width: 52px !important;
    padding-left: 8px !important;
    padding-right: 19px !important;
  }
  .hero-orbit {
    display: none !important;
  }
}
