:root {
  color-scheme: dark;
  --bg: #0d0f0e;
  --bg-soft: #151917;
  --panel: rgba(22, 27, 25, 0.78);
  --panel-solid: #171d1b;
  --text: #eef5ef;
  --muted: #a7b5ac;
  --muted-strong: #c8d5cc;
  --line: rgba(238, 245, 239, 0.14);
  --cyan: #62e6ff;
  --lime: #b8ff5d;
  --magenta: #ff6bd6;
  --amber: #ffd66b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.26);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(115deg, rgba(13, 15, 14, 0.98), rgba(13, 15, 14, 0.7)),
    linear-gradient(155deg, rgba(98, 230, 255, 0.08), transparent 34%),
    linear-gradient(24deg, transparent 55%, rgba(184, 255, 93, 0.07)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 88px
    );
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 42vh;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(13, 15, 14, 0.94), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(184, 255, 93, 0.045) 0,
      rgba(184, 255, 93, 0.045) 1px,
      transparent 1px,
      transparent 26px
    );
  mask-image: linear-gradient(to top, black, transparent);
}

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

button {
  font: inherit;
}

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

#hero-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 15, 14, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand,
.nav,
.language-switcher,
.hero-actions,
.panel-topline,
.tool-list,
.domain-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  width: 36px;
  height: 36px;
  padding: 5px;
  border: 1px solid rgba(238, 245, 239, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(184, 255, 93, 0.18), rgba(98, 230, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
  object-fit: contain;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(98, 230, 255, 0.12);
  filter: drop-shadow(0 0 10px rgba(98, 230, 255, 0.12));
}

.nav {
  justify-content: center;
  gap: 8px;
}

.nav a,
.header-action,
.secondary-button,
.primary-button,
.copy-button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
}

.nav a {
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(238, 245, 239, 0.12);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  transform: translateY(-1px);
}

.header-action,
.language-switcher button,
.secondary-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher {
  --language-offset: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: end;
  gap: 0;
  width: 288px;
  min-height: 54px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(238, 245, 239, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(11, 14, 13, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -18px 34px rgba(0, 0, 0, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.45);
}

.language-switcher::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.language-switcher::before {
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(100deg, transparent 0 24%, rgba(255, 255, 255, 0.16) 42%, transparent 62%),
    radial-gradient(circle at 82% 18%, rgba(98, 230, 255, 0.16), transparent 26%);
  opacity: 0.58;
}

.language-liquid {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  z-index: 0;
  width: calc((100% - 10px) / 3);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  filter: blur(0.2px) contrast(1.08) saturate(1.45);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.94), transparent 17%),
    radial-gradient(circle at 72% 74%, rgba(98, 230, 255, 0.58), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(184, 255, 93, 0.46), transparent 30%),
    linear-gradient(135deg, rgba(184, 255, 93, 0.88), rgba(98, 230, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -14px 24px rgba(7, 16, 13, 0.16),
    0 0 0 7px rgba(184, 255, 93, 0.12),
    0 14px 38px rgba(98, 230, 255, 0.26);
  backdrop-filter: blur(16px) saturate(1.65);
  transform: translateX(var(--language-offset));
  transition: transform 760ms cubic-bezier(0.14, 1.18, 0.22, 1);
  will-change: transform;
}

.language-liquid::before,
.language-liquid::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.language-liquid::before {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.3), transparent 22%),
    radial-gradient(circle at 74% 50%, rgba(184, 255, 93, 0.22), transparent 28%);
  filter: blur(5px) contrast(1.35);
  opacity: 0.74;
}

.language-liquid::after {
  inset: 2px 10px auto 10px;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent);
  opacity: 0.52;
}

.language-switcher button {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: auto;
  border: 1px solid transparent;
  min-height: 44px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font-size: 12px;
  font-weight: 780;
  text-align: center;
  transition:
    color 220ms ease,
    transform 220ms ease,
    text-shadow 220ms ease;
}

.language-switcher button[aria-pressed="true"] {
  border-color: transparent;
  color: var(--text);
  background: transparent;
  font-weight: 800;
  text-shadow:
    0 1px 10px rgba(7, 16, 13, 0.58),
    0 0 18px rgba(184, 255, 93, 0.24);
  transform: translateY(-1px);
}

.language-switcher button:hover {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .language-liquid,
  .language-liquid::before,
  .language-liquid::after,
  .language-switcher button {
    transition: none;
    animation: none;
  }
}

.primary-button,
.copy-button {
  border: 0;
  color: #07100d;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, var(--lime), var(--cyan));
  font-weight: 760;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -14px 24px rgba(7, 16, 13, 0.12),
    0 12px 34px rgba(98, 230, 255, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-button:hover,
.copy-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(184, 255, 93, 0.22);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(98, 230, 255, 0.34);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(98, 230, 255, 0.12), rgba(184, 255, 93, 0.06));
}

.secondary-button {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 26px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.66fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 76px 0 70px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-text,
.split-section p,
.section-note,
.flow-card p,
.rule-grid p {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.65vw, 20px);
}

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

.tool-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: -18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(238, 245, 239, 0.14);
}

.tool-strip-label {
  display: block;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.tool-chip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 46px;
  max-width: 100%;
  padding: 8px 9px;
  border-bottom: 1px solid rgba(238, 245, 239, 0.12);
  color: var(--muted-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    radial-gradient(circle at 82% 18%, rgba(98, 230, 255, 0.12), transparent 30%);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.15;
}

.tool-chip::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, transparent);
}

.tool-chip > * {
  position: relative;
  z-index: 1;
}

.tool-logo {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
  padding: 0;
}

.hero-panel,
.terminal-card,
.flow-card,
.rule-grid article,
.pricing-grid article,
.security-grid article,
.domain-stack {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-panel::before,
.terminal-card::before,
.flow-card::before,
.rule-grid article::before,
.pricing-grid article::before,
.security-grid article::before,
.domain-stack::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(98, 230, 255, 0.08), transparent 28%);
  opacity: 0.72;
}

.flow-card::after,
.rule-grid article::after,
.pricing-grid article::after,
.security-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 22% 18%, #000 0 34%, transparent 72%);
}

.rule-grid article::after {
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(184, 255, 93, 0.24) 1px, transparent 1.5px),
    linear-gradient(135deg, transparent 0 48%, rgba(98, 230, 255, 0.14) 49% 51%, transparent 52%);
  background-size: 18px 18px, 30px 30px;
  mask-image: radial-gradient(circle at 70% 18%, #000 0 28%, transparent 68%);
}

.pricing-grid article::after {
  inset: auto -22px -28px auto;
  width: 150px;
  height: 132px;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b8ff5d' stroke-opacity='.42' stroke-width='1.5'%3E%3Cpath d='M18 122h144M42 92h96M66 62h48'/%3E%3Ccircle cx='42' cy='92' r='18'/%3E%3Ccircle cx='138' cy='92' r='18'/%3E%3Cpath d='M90 26v108'/%3E%3C/g%3E%3Cg fill='%2362e6ff' fill-opacity='.18'%3E%3Ccircle cx='90' cy='26' r='5'/%3E%3Ccircle cx='18' cy='122' r='4'/%3E%3Ccircle cx='162' cy='122' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  mask-image: linear-gradient(135deg, transparent 0 6%, #000 36%, #000 78%, transparent 100%);
}

.pricing-grid article:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.44' stroke-width='1.5'%3E%3Cpath d='M90 20c28 30 48 56 48 86a48 48 0 0 1-96 0c0-30 20-56 48-86Z'/%3E%3Cpath d='M68 96h44M90 74v44'/%3E%3Cpath d='M38 130c20 12 84 12 104 0'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.2'%3E%3Ccircle cx='90' cy='20' r='5'/%3E%3Ccircle cx='42' cy='106' r='4'/%3E%3Ccircle cx='138' cy='106' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-grid article:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffc75f' stroke-opacity='.44' stroke-width='1.5'%3E%3Crect x='42' y='26' width='96' height='108' rx='14'/%3E%3Cpath d='M62 58h56M62 82h42M62 106h56'/%3E%3Cpath d='M138 74h22M149 63v22'/%3E%3C/g%3E%3Cg fill='%2362e6ff' fill-opacity='.18'%3E%3Ccircle cx='42' cy='48' r='4'/%3E%3Ccircle cx='138' cy='134' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-grid article:nth-child(4)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ff6bd6' stroke-opacity='.42' stroke-width='1.5'%3E%3Cpath d='M90 32v96M42 80h96'/%3E%3Cpath d='M62 52 42 32H22v40'/%3E%3Cpath d='m118 52 20-20h20v40'/%3E%3Cpath d='m62 108-20 20H22V88'/%3E%3Cpath d='m118 108 20 20h20V88'/%3E%3Ccircle cx='90' cy='80' r='22'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.18'%3E%3Ccircle cx='90' cy='80' r='5'/%3E%3Ccircle cx='42' cy='32' r='4'/%3E%3Ccircle cx='138' cy='128' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-grid article:nth-child(5)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.44' stroke-width='1.5'%3E%3Cpath d='M34 134h112'/%3E%3Cpath d='M48 134V50l52-24v108'/%3E%3Cpath d='M132 134V72l-32-18'/%3E%3Cpath d='M66 70h10M66 94h10M66 118h10'/%3E%3Cpath d='M114 92h8M114 116h8'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.2'%3E%3Ccircle cx='100' cy='26' r='5'/%3E%3Ccircle cx='48' cy='134' r='4'/%3E%3Ccircle cx='146' cy='134' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.security-grid article::after {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(98, 230, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 93, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(98, 230, 255, 0.24), transparent 28%);
  background-size: 20px 20px, 20px 20px, 100% 100%;
  mask-image: radial-gradient(circle at 80% 20%, #000 0 34%, transparent 74%);
}

.flow-card > *,
.rule-grid article > *,
.pricing-grid article > *,
.security-grid article > *,
.hero-panel > *,
.terminal-card > *,
.domain-stack > * {
  position: relative;
  z-index: 1;
}

.prompt-card::before,
.domain-stack::after,
.install-counter::after {
  position: absolute;
  content: "";
  pointer-events: none;
  opacity: 0.26;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 460px);
  padding: 0;
  transform: translateY(var(--parallax, 0));
}

.chat-demo {
  background:
    linear-gradient(145deg, rgba(98, 230, 255, 0.12), transparent 32%),
    rgba(17, 21, 20, 0.86);
}

.chat-demo-header,
.panel-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
}

.chat-thread {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.chat-message {
  display: grid;
  gap: 7px;
  max-width: 88%;
  padding: 14px;
  border: 1px solid rgba(238, 245, 239, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.chat-message.user {
  justify-self: end;
  border-color: rgba(184, 255, 93, 0.28);
  background: linear-gradient(135deg, rgba(184, 255, 93, 0.14), rgba(98, 230, 255, 0.08));
}

.chat-message p {
  margin: 0;
  color: var(--muted-strong);
}

.chat-role {
  color: var(--lime);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.chat-link {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.step svg,
.rule-icon svg,
.security-mark svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.content-section,
.split-section,
.stats-section,
.final-cta {
  position: relative;
  margin-top: 108px;
  padding: 96px 0;
  background: transparent;
}

.content-section::before,
.split-section::before,
.stats-section::before,
.final-cta::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%),
    linear-gradient(90deg, transparent, rgba(98, 230, 255, 0.08), transparent),
    rgba(12, 16, 15, 0.74);
  border-top: 1px solid rgba(238, 245, 239, 0.1);
  border-bottom: 1px solid rgba(238, 245, 239, 0.08);
  transform: translateX(-50%) skewY(-1.2deg);
  transform-origin: center;
}

.content-section::after,
.split-section::after,
.stats-section::after,
.final-cta::after {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg width='680' height='260' viewBox='0 0 680 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.38' stroke-width='1.5'%3E%3Cpath d='M48 184h120l42-70h118l42 70h126'/%3E%3Cpath d='M112 74h92m44 0h160m44 0h116'/%3E%3Ccircle cx='210' cy='114' r='26'/%3E%3Ccircle cx='370' cy='184' r='34'/%3E%3Crect x='492' y='42' width='92' height='92' rx='18'/%3E%3Cpath d='M516 88h44M538 66v44'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.2'%3E%3Ccircle cx='48' cy='184' r='5'/%3E%3Ccircle cx='168' cy='184' r='5'/%3E%3Ccircle cx='328' cy='114' r='5'/%3E%3Ccircle cx='496' cy='184' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right max(22px, calc((100vw - var(--max)) / 2)) top 28px;
  background-size: min(48vw, 680px) auto;
  mix-blend-mode: screen;
  transform: translateX(-50%);
}

.split-section::after {
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg width='640' height='300' viewBox='0 0 640 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b8ff5d' stroke-opacity='.34' stroke-width='1.5'%3E%3Crect x='68' y='64' width='164' height='116' rx='18'/%3E%3Cpath d='M104 104h92M104 134h52M264 122h112m0 0-28-28m28 28-28 28'/%3E%3Crect x='410' y='78' width='118' height='118' rx='22'/%3E%3Cpath d='M450 138h38M469 119v38'/%3E%3C/g%3E%3Cg fill='%2362e6ff' fill-opacity='.22'%3E%3Ccircle cx='264' cy='122' r='6'/%3E%3Ccircle cx='376' cy='122' r='6'/%3E%3Ccircle cx='528' cy='196' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-position: left max(18px, calc((100vw - var(--max)) / 2)) top 34px;
}

.security-section::after {
  opacity: 0.36;
  background-image: url("data:image/svg+xml,%3Csvg width='620' height='300' viewBox='0 0 620 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.32' stroke-width='1.5'%3E%3Ccircle cx='408' cy='142' r='86'/%3E%3Cpath d='M322 142h172M408 56a132 132 0 0 1 0 172M408 56a132 132 0 0 0 0 172'/%3E%3Cpath d='M104 182c0 38 26 58 58 70 32-12 58-32 58-70v-78c-22 0-42-10-58-24-16 14-36 24-58 24v78Z'/%3E%3Cpath d='m142 172 16 16 34-40'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.22'%3E%3Ccircle cx='322' cy='142' r='6'/%3E%3Ccircle cx='494' cy='142' r='6'/%3E%3Ccircle cx='408' cy='56' r='5'/%3E%3Ccircle cx='408' cy='228' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: right max(16px, calc((100vw - var(--max)) / 2)) top 18px;
}

.content-section > *,
.split-section > *,
.stats-section > *,
.final-cta > * {
  position: relative;
}

.split-section::before,
.final-cta::before {
  background:
    linear-gradient(135deg, rgba(98, 230, 255, 0.09), transparent 32%),
    linear-gradient(90deg, transparent, rgba(184, 255, 93, 0.07), transparent),
    rgba(17, 22, 20, 0.78);
  transform: translateX(-50%) skewY(1.2deg);
}

.stats-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 40px;
  align-items: center;
  margin-top: 72px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 40px;
  align-items: center;
}

.stats-copy {
  max-width: 760px;
}

.stats-copy p {
  color: var(--muted);
}

.install-counter {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(184, 255, 93, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 255, 93, 0.14), rgba(98, 230, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  container-type: inline-size;
}

.install-counter::after {
  right: -18px;
  bottom: -34px;
  width: 148px;
  height: 148px;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.52' stroke-width='2'%3E%3Cpath d='M90 24v132M24 90h132'/%3E%3Ccircle cx='90' cy='90' r='54'/%3E%3Ccircle cx='90' cy='90' r='18'/%3E%3Cpath d='M52 52l76 76M128 52l-76 76'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.34'%3E%3Ccircle cx='90' cy='24' r='5'/%3E%3Ccircle cx='156' cy='90' r='5'/%3E%3Ccircle cx='90' cy='156' r='5'/%3E%3Ccircle cx='24' cy='90' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.install-counter span,
.install-counter small {
  color: var(--muted);
  font-weight: 720;
}

.install-counter strong {
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(30px, 16cqw, 56px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.section-heading {
  display: block;
  max-width: 860px;
  margin-bottom: 30px;
}

.flow-grid,
.rule-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.flow-grid::before {
  position: absolute;
  top: 44px;
  left: 11%;
  right: 11%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  opacity: 0.48;
}

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

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.flow-card,
.rule-grid article,
.pricing-grid article,
.security-grid article {
  min-height: 204px;
  padding: 24px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.flow-card:hover,
.rule-grid article:hover,
.pricing-grid article:hover,
.security-grid article:hover {
  border-color: rgba(184, 255, 93, 0.34);
  background: rgba(25, 33, 30, 0.82);
  transform: translateY(-2px);
}

.security-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(98, 230, 255, 0.09), rgba(184, 255, 93, 0.045)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.security-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border: 1px solid rgba(184, 255, 93, 0.34);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(184, 255, 93, 0.08);
  font-size: 22px;
}

.rule-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border: 1px solid rgba(98, 230, 255, 0.26);
  border-radius: 8px;
  color: var(--cyan);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.18), transparent 26%),
    rgba(98, 230, 255, 0.08);
  box-shadow: 0 14px 34px rgba(98, 230, 255, 0.1);
  font-size: 23px;
}

.security-grid p {
  color: var(--muted);
}

.step {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border: 1px solid rgba(98, 230, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(98, 230, 255, 0.08);
  font-size: 22px;
}

.step em {
  position: absolute;
  right: -8px;
  bottom: -9px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 5px;
  border: 1px solid rgba(238, 245, 239, 0.14);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(13, 15, 14, 0.82);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.terminal-card,
.prompt-card {
  overflow: hidden;
}

.prompt-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(184, 255, 93, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(184, 255, 93, 0.16), rgba(98, 230, 255, 0.08)),
    rgba(17, 22, 20, 0.82);
  box-shadow: var(--shadow-soft);
}

.prompt-card::before {
  top: 16px;
  right: 16px;
  width: 188px;
  height: 126px;
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='170' viewBox='0 0 260 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b8ff5d' stroke-opacity='.4' stroke-width='2'%3E%3Crect x='24' y='34' width='126' height='82' rx='16'/%3E%3Cpath d='M50 62h72M50 84h44M168 74h50m0 0-18-18m18 18-18 18'/%3E%3Crect x='188' y='106' width='42' height='42' rx='12'/%3E%3Cpath d='M202 127h14M209 120v14'/%3E%3C/g%3E%3Cg fill='%2362e6ff' fill-opacity='.25'%3E%3Ccircle cx='168' cy='74' r='5'/%3E%3Ccircle cx='218' cy='74' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.prompt-card-label {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(238, 245, 239, 0.13);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
  font-size: 18px;
  font-weight: 680;
}

.prompt-card .copy-button {
  position: relative;
  z-index: 1;
}

.install-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.install-steps li {
  position: relative;
  padding-left: 28px;
}

.install-steps li::before {
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid rgba(184, 255, 93, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0 3px, transparent 4px);
  transform: translateY(3px);
}

.terminal-card::after {
  position: absolute;
  inset: 43px 0 0;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 19px,
    rgba(184, 255, 93, 0.035) 20px
  );
}

.terminal-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.terminal-bar span:nth-child(1) {
  background: var(--magenta);
}

.terminal-bar span:nth-child(2) {
  background: var(--amber);
}

.terminal-bar span:nth-child(3) {
  background: var(--lime);
}

.terminal-bar strong {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #dfffea;
  font-size: 14px;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.terminal-card .copy-button {
  margin: 0 22px 22px;
}

.domain-stack {
  position: relative;
  padding: 18px;
}

.domain-stack::after {
  right: 12px;
  bottom: 12px;
  width: 210px;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='200' viewBox='0 0 260 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2362e6ff' stroke-opacity='.36' stroke-width='2'%3E%3Crect x='24' y='34' width='92' height='62' rx='14'/%3E%3Cpath d='M42 58h56M42 76h28'/%3E%3Cpath d='M116 66h54a32 32 0 0 1 32 32v10'/%3E%3Crect x='154' y='116' width='78' height='44' rx='12'/%3E%3Cpath d='M174 138h38'/%3E%3C/g%3E%3Cg fill='%23b8ff5d' fill-opacity='.28'%3E%3Ccircle cx='116' cy='66' r='5'/%3E%3Ccircle cx='202' cy='108' r='5'/%3E%3Ccircle cx='154' cy='138' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.domain-row {
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.domain-row:first-child {
  border-color: rgba(184, 255, 93, 0.28);
  background:
    linear-gradient(90deg, rgba(184, 255, 93, 0.1), transparent),
    rgba(255, 255, 255, 0.04);
}

.domain-row + .domain-row,
.domain-note {
  margin-top: 12px;
}

.domain-row strong {
  color: var(--cyan);
}

.domain-row.muted strong {
  color: var(--muted);
}

.domain-note {
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin: 30px 0 8px;
  color: var(--lime);
  font-size: 34px;
  font-weight: 850;
}

.pricing-grid article {
  min-height: 176px;
}

.pricing-grid article:nth-child(5) {
  border-color: rgba(98, 230, 255, 0.3);
}

.pricing-grid article.free-tier {
  border-color: rgba(184, 255, 93, 0.48);
  background:
    linear-gradient(145deg, rgba(184, 255, 93, 0.14), rgba(98, 230, 255, 0.06)),
    var(--panel);
}

.pricing-grid article.free-tier .price {
  color: var(--cyan);
}

.pricing-grid span {
  display: block;
  max-width: 180px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.35;
}

.pricing-grid article.free-tier span {
  color: var(--cyan);
}

.section-note {
  max-width: 880px;
  margin: 22px 0 0;
}

.final-cta {
  min-height: 420px;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 26px;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--max));
  margin: 84px auto 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(98, 230, 255, 0.24), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(184, 255, 93, 0.16), transparent 30%),
    var(--bg);
}

.checkout-shell {
  display: grid;
  align-content: center;
  width: min(100% - 32px, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.checkout-brand {
  margin-bottom: 28px;
}

.checkout-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 7vw, 54px);
  border: 1px solid rgba(238, 245, 239, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(10, 14, 12, 0.86);
  box-shadow: var(--shadow);
}

.checkout-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, transparent 20%, #000 58%, transparent);
}

.checkout-card > * {
  position: relative;
  z-index: 1;
}

.checkout-card h1 {
  max-width: 620px;
  font-size: clamp(38px, 8vw, 72px);
}

.checkout-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted-strong);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible {
  color: var(--text);
}

.legal-dialog {
  width: min(100% - 32px, 760px);
  max-height: min(760px, calc(100vh - 48px));
  padding: 0;
  border: 1px solid rgba(238, 245, 239, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: rgba(18, 22, 20, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.legal-dialog::backdrop {
  background: rgba(3, 5, 4, 0.72);
  backdrop-filter: blur(6px);
}

.legal-dialog-card {
  display: grid;
  max-height: inherit;
  overflow: hidden;
}

.legal-dialog-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.legal-dialog-header h2 {
  font-size: clamp(24px, 4vw, 34px);
}

.legal-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.legal-dialog-body {
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  padding: 24px;
}

.legal-dialog-body section {
  display: grid;
  gap: 8px;
}

.legal-dialog-body h3 {
  color: var(--lime);
  font-size: 16px;
}

.legal-dialog-body p {
  margin: 0;
  color: var(--muted-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 580ms ease,
    transform 580ms ease;
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switcher {
    grid-column: auto;
    justify-self: end;
  }

  .hero,
  .split-section,
  .stats-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 64px;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

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

  .tool-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

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

  .flow-grid::before {
    display: none;
  }

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

  .content-section,
  .split-section,
  .stats-section,
  .final-cta {
    margin-top: 72px;
    padding: 82px 0;
  }
}

@media (max-width: 600px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
    padding: 12px;
  }

  .brand {
    min-height: 36px;
  }

  .nav {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 0;
  }

  .nav a {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(238, 245, 239, 0.1);
    background: rgba(255, 255, 255, 0.035);
  }

  .language-switcher {
    justify-self: stretch;
    width: 100%;
  }

  .language-switcher button {
    width: auto;
  }

  .header-action {
    display: none;
  }

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

  .primary-button,
  .secondary-button,
  .copy-button {
    display: grid;
    place-items: center;
    width: 100%;
  }

  .hero {
    padding-top: 46px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 52px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-text {
    margin-top: 20px;
    font-size: 17px;
  }

  .chat-message {
    max-width: 94%;
  }

  .chat-link {
    font-size: 15px;
  }

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

  .tool-chip {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .hero-panel,
  .prompt-card,
  .flow-card,
  .rule-grid article,
  .pricing-grid article {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }

  .flow-grid,
  .rule-grid,
  .pricing-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .split-section,
  .stats-section,
  .final-cta {
    margin-top: 58px;
    padding: 66px 0;
  }

  .install-counter {
    padding: 22px;
  }

  .install-counter strong {
    font-size: clamp(30px, 18cqw, 50px);
  }

  .prompt-card {
    padding: 18px;
  }

  .prompt-card p {
    padding: 14px;
    font-size: 16px;
  }

  .flow-card,
  .rule-grid article,
  .pricing-grid article {
    min-height: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
