:root {
  --ink: #080a12;
  --ink-2: #0e1220;
  --surface: rgba(18, 23, 38, 0.82);
  --surface-strong: #151b2c;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f6f7fb;
  --muted: #aab2c5;
  --muted-2: #788398;
  --purple: #8b3fe8;
  --blue: #4058ff;
  --cyan: #2dd4bf;
  --green: #61d394;
  --yellow: #f7c948;
  --rose: #fb7185;
  --max: 1180px;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(64, 88, 255, 0.08), transparent 560px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05), transparent 42%, rgba(247, 201, 72, 0.05)),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

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

::selection {
  background: rgba(45, 212, 191, 0.28);
  color: #fff;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--yellow));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  height: 72px;
  margin: 12px auto 0;
  padding: 0 14px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 18, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: clamp(32px, 5vw, 76px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.ghost-link {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  padding: 3px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lang-btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.lang-btn:hover:not([aria-pressed="true"]) {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  --button-bg: rgba(255, 255, 255, 0.08);
  --button-border: rgba(255, 255, 255, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--button-border);
  border-radius: 8px;
  background: var(--button-bg);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-primary {
  --button-bg: linear-gradient(135deg, var(--purple), var(--blue));
  --button-border: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(64, 88, 255, 0.28);
}

.button-secondary {
  --button-bg: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button-compact {
  min-height: 42px;
  padding-inline: 15px;
}

.button-disabled {
  color: var(--muted);
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-button::before {
  content: "";
  display: none;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-button svg {
  width: 19px;
  height: 19px;
}

.mobile-menu {
  position: fixed;
  inset: 96px 16px auto;
  z-index: 99;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 16, 28, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: var(--muted);
  font-weight: 800;
}

.mobile-menu.open {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 86svh;
  margin: 0 auto;
  padding: 72px 0 76px;
}

.hero-media {
  position: absolute;
  inset: -84px calc((100vw - min(var(--max), calc(100vw - 32px))) / -2) -24px;
  z-index: -1;
  overflow: hidden;
  background: #090b14;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 18, 0.92), rgba(8, 10, 18, 0.68) 44%, rgba(8, 10, 18, 0.24)),
    linear-gradient(180deg, rgba(8, 10, 18, 0.34), rgba(8, 10, 18, 0.12) 54%, rgba(8, 10, 18, 0.7));
  pointer-events: none;
}

.launch-video,
.launch-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.12) contrast(1.08);
}

.launch-canvas {
  display: none;
}

.media-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 10, 18, 0.1), rgba(8, 10, 18, 0.72) 52%, rgba(8, 10, 18, 0.1));
  background-size: 74px 74px, 74px 74px, auto;
  mask-image: linear-gradient(180deg, black 0%, black 82%, transparent 100%);
}

.hero-content {
  max-width: 760px;
  padding-bottom: 0;
}

.eyebrow,
.section-label,
.console-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(97, 211, 148, 0.12);
}

.hero-title {
  margin: 20px 0 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #e4e8f4;
  font-size: 1.22rem;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
}

.hero-lead strong {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.08rem;
  white-space: nowrap;
}

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

.hero-console {
  align-self: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 17, 30, 0.78);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  padding: 18px;
}

.console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.console-head > div {
  min-width: 0;
}

.console-head strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.console-badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.09);
  color: #b8fff4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.domain-builder {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.domain-input {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.domain-input input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 0 0 14px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 800;
}

.domain-input em {
  flex: 0 0 auto;
  padding-right: 14px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.9rem;
}

.deploy-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 17px 0 12px;
}

.deploy-track span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.deploy-track span.done {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.deploy-steps {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.deploy-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.deploy-steps li.active {
  color: var(--text);
}

.deploy-steps svg {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}

.console-button {
  width: 100%;
}

.live-url {
  display: block;
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(97, 211, 148, 0.24);
  border-radius: 8px;
  background: rgba(97, 211, 148, 0.08);
  color: #c8ffdc;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.flow-copy h2,
.ai-copy h2,
.final-inner h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.06;
  font-weight: 800;
}

.section-heading p,
.flow-copy p,
.ai-copy p,
.final-inner p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.price-card,
.showcase-card,
.pipeline-step,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.feature-card {
  min-height: 260px;
  padding: 22px;
  transform-style: preserve-3d;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.feature-card:nth-child(2) svg {
  color: var(--yellow);
}

.feature-card:nth-child(3) svg {
  color: var(--green);
}

.feature-card:nth-child(4) svg {
  color: var(--rose);
}

.feature-card h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.flow-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.flow-copy {
  position: sticky;
  top: 110px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #b8fff4;
  font-weight: 800;
}

.text-action svg {
  width: 18px;
  height: 18px;
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline-step {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 22px 96px;
  overflow: hidden;
}

.pipeline-step::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.pipeline-step span {
  position: absolute;
  left: 18px;
  top: 20px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 800;
}

.pipeline-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.pipeline-step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pipeline-step.active {
  background:
    linear-gradient(135deg, rgba(139, 63, 232, 0.28), rgba(45, 212, 191, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.ai-section {
  width: 100%;
  max-width: none;
  padding: 104px max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.1), transparent 46%, rgba(247, 201, 72, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.ai-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.prompt-stack {
  display: grid;
  gap: 10px;
}

.prompt-stack button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 18, 0.64);
  color: var(--text);
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.prompt-stack button::before {
  content: '"';
  color: var(--cyan);
}

.prompt-stack button::after {
  content: '"';
  color: var(--cyan);
}

.prompt-stack button:hover {
  transform: translateX(8px);
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(45, 212, 191, 0.08);
}

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

.showcase-card {
  display: block;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 212, 191, 0.34);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-strong);
}

.showcase-card span {
  display: block;
  padding: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(45, 212, 191, 0.34);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(64, 88, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.price-head span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-head h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.price-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.price-head small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green);
  margin-top: 2px;
}

.price-card li.muted svg {
  color: var(--muted-2);
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 90px 24px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 63, 232, 0.32), rgba(45, 212, 191, 0.12) 52%, rgba(247, 201, 72, 0.11)),
    rgba(255, 255, 255, 0.055);
  text-align: center;
}

.final-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-inner img {
  width: 72px;
  height: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}

.final-inner .button {
  margin-top: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  color: var(--muted);
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 700;
}

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

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 16, 28, 0.97);
  color: var(--muted);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-banner-text strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.cookie-link {
  color: #a78bfa;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-banner button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

#cookie-accept {
  background: #fff;
  color: #0a0d16;
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line) !important;
}

#cookie-reject:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3) !important;
}

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

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

.hero .eyebrow {
  animation: hero-enter 520ms ease both;
}

.hero .hero-title {
  animation: hero-enter 650ms ease 80ms both;
}

.hero .hero-lead {
  animation: hero-enter 650ms ease 150ms both;
}

.hero .hero-actions {
  animation: hero-enter 650ms ease 220ms both;
}

.hero .hero-console {
  animation: hero-enter 700ms ease 300ms both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@keyframes hero-enter {
  from {
    opacity: 1;
    transform: translateY(18px);
  }

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

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

  .menu-button {
    display: inline-flex;
    flex: 0 0 42px;
  }

  .menu-button::before {
    display: block;
  }

  .menu-button svg {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-console {
    max-width: 520px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .feature-grid,
  .proof-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .flow-section,
  .faq-section,
  .ai-panel {
    grid-template-columns: 1fr;
  }

  .flow-copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    width: min(350px, calc(100% - 40px));
    height: 64px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: auto;
    padding-inline: 12px;
  }

  .mobile-menu {
    inset: 86px auto auto 20px;
    width: min(350px, calc(100% - 40px));
  }

  .brand span {
    display: none;
  }

  .button-compact span {
    display: none;
  }

  .header-actions .button-compact {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switcher {
    padding: 2px;
  }

  .lang-btn {
    padding: 3px 8px;
    font-size: 0.68rem;
  }

  .hero {
    width: min(350px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: auto;
    gap: 24px;
    padding: 48px 0 42px;
  }

  .hero-media {
    inset: -76px -14px -18px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(8, 10, 18, 0.88), rgba(8, 10, 18, 0.62) 46%, rgba(8, 10, 18, 0.88)),
      linear-gradient(90deg, rgba(8, 10, 18, 0.78), rgba(8, 10, 18, 0.42));
  }

  .launch-video,
  .launch-canvas {
    object-position: 58% 50%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-lead strong {
    display: inline-block;
    max-width: 100%;
    font-size: 0.92rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
  }

  .hero-console {
    width: 100%;
    overflow: hidden;
  }

  .console-head {
    flex-wrap: wrap;
  }

  .console-badge {
    max-width: 100%;
  }

  .domain-input {
    display: grid;
    align-items: center;
    padding: 10px 0;
  }

  .domain-input input {
    padding-right: 14px;
  }

  .domain-input em {
    padding: 2px 14px 0;
    font-size: 0.8rem;
  }

  .proof-band,
  .feature-grid,
  .showcase-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(350px, calc(100% - 40px));
    padding: 78px 0;
  }

  .section-heading h2,
  .flow-copy h2,
  .ai-copy h2,
  .final-inner h2 {
    font-size: 2.15rem;
  }

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

  .pipeline-step {
    padding-left: 72px;
  }

  .pipeline-step::before {
    left: 50px;
  }

  .ai-section {
    padding: 76px 14px;
  }

  .final-cta {
    width: min(350px, calc(100% - 40px));
    padding: 66px 18px;
  }

  .site-footer {
    display: grid;
    width: min(350px, calc(100% - 40px));
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 14px;
    left: 14px;
    bottom: 14px;
    max-width: none;
  }
}

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

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

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