:root {
  --ink: #121316;
  --muted: #626873;
  --paper: #fbfcfd;
  --line: rgba(18, 19, 22, .12);
  --teal: #12d6ff;
  --coral: #ff6a4f;
  --amber: #f6b642;
  --lime: #b8f05d;
  --blue: #078bff;
  --violet: #0d3dde;
  --deep: #07142c;
  --shadow: 0 28px 90px rgba(5, 16, 42, .3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #fff;
  background: rgba(10, 13, 22, .64);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(22px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.brand-mark {
  width: 42px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(7, 139, 255, .26));
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}
.nav a:hover { color: #fff; }
.top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
  align-items: center;
  gap: 34px;
  padding: 112px clamp(18px, 5vw, 76px) 52px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 38%, rgba(7, 139, 255, .32), transparent 31%),
    radial-gradient(circle at 62% 68%, rgba(18, 214, 255, .18), transparent 28%),
    radial-gradient(circle at 20% 12%, rgba(184, 240, 93, .12), transparent 25%),
    #090b12;
}
#hero3d,
.css-scene,
.hero-panel {
  will-change: transform;
}
#hero3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 30, .97) 0%, rgba(7, 16, 42, .82) 38%, rgba(7, 16, 42, .08) 70%),
    linear-gradient(180deg, rgba(7, 16, 42, .14), rgba(7, 16, 42, .82));
  pointer-events: none;
}
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 3;
}

.css-scene {
  position: absolute;
  z-index: 2;
  top: 112px;
  right: clamp(34px, 6vw, 96px);
  width: min(48vw, 660px);
  height: 560px;
  perspective: 980px;
  transform-style: preserve-3d;
  pointer-events: none;
  isolation: isolate;
}
.scene-core {
  position: absolute;
  left: 45%;
  top: 43%;
  width: 142px;
  height: 142px;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(32deg);
  animation: cubeSpin 12s linear infinite;
}
.scene-core span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.34);
  background: linear-gradient(135deg, rgba(184,240,93,.92), rgba(0,194,178,.76));
  box-shadow: 0 0 42px rgba(184,240,93,.34), inset 0 0 34px rgba(255,255,255,.22);
  backface-visibility: hidden;
}
.scene-core span:nth-child(1) { transform: translateZ(71px); }
.scene-core span:nth-child(2) { transform: rotateY(180deg) translateZ(71px); }
.scene-core span:nth-child(3) { transform: rotateY(90deg) translateZ(71px); background: linear-gradient(135deg, rgba(88,115,255,.86), rgba(0,194,178,.68)); }
.scene-core span:nth-child(4) { transform: rotateY(-90deg) translateZ(71px); background: linear-gradient(135deg, rgba(255,101,74,.84), rgba(246,182,66,.72)); }
.scene-core span:nth-child(5) { transform: rotateX(90deg) translateZ(71px); }
.scene-core span:nth-child(6) { transform: rotateX(-90deg) translateZ(71px); }
.scene-orbit {
  position: absolute;
  left: 26%;
  top: 28%;
  width: 420px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform-style: preserve-3d;
  box-shadow: 0 0 28px rgba(88,115,255,.16);
}
.orbit-a {
  transform: rotateX(72deg) rotateZ(-18deg);
  animation: orbitFloat 7s ease-in-out infinite;
}
.orbit-b {
  width: 500px;
  height: 260px;
  left: 18%;
  top: 24%;
  border-color: rgba(0,194,178,.24);
  transform: rotateX(68deg) rotateZ(32deg);
  animation: orbitFloat 8.5s ease-in-out infinite reverse;
}
.scene-card {
  position: absolute;
  width: 210px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #10131d;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
  transform-style: preserve-3d;
  backdrop-filter: blur(16px);
  animation: cardDrift 7s ease-in-out infinite;
  backface-visibility: hidden;
}
.scene-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(0,194,178,.24);
}
.scene-card b {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.scene-card span {
  display: block;
  margin-top: 6px;
  color: #5f6878;
  font-size: 14px;
  font-weight: 700;
}
.scene-card-site {
  left: 4%;
  top: 14%;
  transform: rotateY(28deg) rotateX(6deg) translateZ(36px);
}
.scene-card-docs {
  right: 0;
  top: 18%;
  transform: rotateY(-30deg) rotateX(7deg) translateZ(72px);
  animation-delay: -.9s;
}
.scene-card-docs::before { background: var(--amber); box-shadow: 0 14px 28px rgba(246,182,66,.26); }
.scene-card-chat {
  right: 8%;
  bottom: 11%;
  transform: rotateY(-24deg) rotateX(-8deg) translateZ(54px);
  animation-delay: -1.7s;
}
.scene-card-chat::before { background: var(--blue); box-shadow: 0 14px 28px rgba(88,115,255,.26); }
.scene-card-leads {
  left: 12%;
  bottom: 8%;
  transform: rotateY(30deg) rotateX(-7deg) translateZ(44px);
  animation-delay: -2.4s;
}
.scene-card-leads::before { background: var(--coral); box-shadow: 0 14px 28px rgba(255,101,74,.25); }
.scene-floor {
  position: absolute;
  left: 16%;
  right: 2%;
  bottom: 6%;
  height: 180px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotateX(68deg) translateZ(-82px);
  opacity: .72;
}

@keyframes cubeSpin {
  from { transform: rotateX(-18deg) rotateY(32deg); }
  to { transform: rotateX(342deg) rotateY(392deg); }
}
@keyframes cardDrift {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}
@keyframes orbitFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: 14px; }
}
.eyebrow,
.section-head p,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 84px);
  line-height: .96;
  letter-spacing: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.hero h1 span { display: block; }
.hero-copy > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.7vw, 22px);
}
.hero-rate {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  max-width: 520px;
}
.hero-rate strong {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.hero-rate span {
  color: rgba(255,255,255,.66);
  font-size: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(18, 19, 22, .18);
}
.btn.primary {
  color: #111;
  background: linear-gradient(135deg, var(--lime), #fff06a);
  box-shadow: 0 15px 42px rgba(184, 240, 93, .24);
}
.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}
.btn.secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.proof-row span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.07);
  font-size: 13px;
}
.proof-row b { color: #fff; }

.hero-panel {
  align-self: end;
  justify-self: end;
  width: min(330px, 100%);
  margin-bottom: 1vh;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 15px;
  background: rgba(9, 11, 18, .54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
  transform-origin: center;
}
.panel-head {
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}
.panel-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}
.panel-head span:nth-child(2) { background: var(--amber); }
.panel-head span:nth-child(3) { background: var(--teal); }
.panel-kicker {
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.chat-line {
  max-width: 88%;
  margin: 10px 0;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 14px;
}
.chat-line.user {
  margin-left: auto;
  color: #101216;
  background: #fff;
}
.chat-line.ai {
  color: #fff;
  background: linear-gradient(135deg, rgba(0,194,178,.9), rgba(88,115,255,.78));
}
.mini-products {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.mini-products div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 8px;
  color: #111;
  background: rgba(255,255,255,.88);
}
.mini-products small { color: var(--muted); }

.strip {
  display: flex;
  overflow: hidden;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 76px);
  color: #fff;
  background: #10131d;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.strip span {
  flex: 1 0 max-content;
  font-weight: 800;
}

.section.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 76px) 16px;
}
.metric-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(7, 139, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,253,.96)),
    radial-gradient(circle at top right, rgba(7,139,255,.12), transparent 34%);
  box-shadow: 0 18px 48px rgba(7, 30, 75, .08);
}
.metric-card strong {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.section.process-section {
  padding-top: 24px;
}

.simple-process {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,248,255,.96)),
    radial-gradient(circle at 82% 18%, rgba(7,139,255,.13), transparent 28%);
}
.simple-process .section-head {
  max-width: 960px;
}
.simple-process > p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.section {
  padding: clamp(30px, 3.5vw, 46px) clamp(18px, 5vw, 76px);
}
.section-head {
  max-width: 780px;
  margin-bottom: 20px;
}
.section h2,
.lead-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}
.steps,
.role-grid,
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.steps article,
.role-grid article,
.pricing article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(12, 18, 30, .06);
}
.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 900;
}
.steps h3,
.role-grid h3,
.pricing h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.steps p,
.role-grid p,
.pricing p,
.dark-band p,
.lead-section p {
  margin: 0;
  color: var(--muted);
}
.split { background: #eef7ff; }
.role-grid article:nth-child(2) { border-top: 4px solid var(--amber); }
.role-grid article:first-child { border-top: 4px solid var(--blue); }

.showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  gap: 38px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,101,74,.22), transparent 30%),
    radial-gradient(circle at 26% 78%, rgba(0,194,178,.18), transparent 28%),
    #11141f;
  border-radius: 8px;
}
.showcase h2 {
  max-width: 780px;
}
.showcase-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 19px;
}
.showcase-stack {
  display: grid;
  gap: 10px;
}
.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.board-row span { color: rgba(255,255,255,.66); }
.board-row.ok b { color: var(--lime); }
.board-row.warn b { color: var(--amber); }
.showcase-note {
  margin-top: 12px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.showcase-note strong {
  display: block;
  font-size: 20px;
}
.showcase-note span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.7);
}

.pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-section {
  background:
    linear-gradient(180deg, #fff, #f4f8ff);
}
.pricing article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing article:first-child {
  color: #fff;
  background:
    radial-gradient(circle at 92% 14%, rgba(18,214,255,.2), transparent 24%),
    linear-gradient(135deg, #07142c, #0a2462);
}
.pricing article:first-child p { color: rgba(255,255,255,.72); }
.price {
  margin: 8px 0 18px;
  color: var(--teal);
  font-weight: 900;
  font-size: 28px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.price-muted {
  color: var(--coral);
}
.pricing .btn { margin-top: auto; }
.price-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.price-list li {
  padding-left: 18px;
  position: relative;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.contact-card {
  width: 100%;
  margin-top: auto;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: #11141f;
}
.contact-card strong,
.lead-sidecard strong {
  display: block;
  font-size: 24px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.contact-card a,
.lead-sidecard a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
}
.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.compare-section {
  padding-top: 28px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compare-grid article {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(12, 18, 30, .08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 18, 30, .05);
}
.compare-grid h3 {
  margin: 0 0 14px;
  font-size: 26px;
}

.faq-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(7,139,255,.08), transparent 24%),
    #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.faq-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(7, 30, 75, .1);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 46px rgba(7, 30, 75, .06);
}
.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.legal-section {
  background:
    linear-gradient(180deg, #ffffff, #f3f8ff);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.legal-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(7, 139, 255, .14);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(7, 30, 75, .07);
}
.legal-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
}
.legal-grid p {
  margin: 0;
  color: var(--muted);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .58fr);
  gap: 36px;
  align-items: start;
  padding: clamp(34px, 4vw, 54px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 22%, rgba(18,214,255,.16), transparent 28%),
    linear-gradient(135deg, rgba(7,20,44,.98), rgba(9,32,84,.95)),
    #07142c;
  color: #fff;
}
.lead-section p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.lead-copy {
  display: grid;
  gap: 22px;
}
.lead-sidecard {
  max-width: 360px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.lead-sidecard span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
}
.lead-benefits {
  display: grid;
  gap: 10px;
  max-width: 460px;
}
.lead-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
}
.lead-benefits span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(184,240,93,.38);
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  outline: none;
  background: #fff;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,88,233,.13);
}
.lead-form textarea { resize: vertical; }
.submit {
  width: 100%;
  border: 0;
}
.form-note {
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
}
.form-note.ok { color: #117a42; }
.form-note.err { color: #bf2d1e; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: rgba(255,255,255,.74);
  background: #111316;
  font-size: 14px;
}
.footer span {
  color: #fff;
  font-weight: 900;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
.footer p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.56);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer a:hover { color: #fff; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
  }
  .hero-panel {
    width: min(520px, 100%);
    margin-bottom: 0;
    margin-top: 18px;
    justify-self: start;
    transform: none;
  }
  .css-scene {
    top: 52%;
    right: -40px;
    width: 620px;
    max-width: none;
    height: 470px;
    opacity: .84;
    transform: scale(.72);
    transform-origin: top right;
  }
  .steps,
  .metrics-band,
  .role-grid,
  .pricing,
  .faq-grid,
  .legal-grid,
  .showcase,
  .compare-grid,
  .lead-section {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    height: 64px;
    padding-inline: 14px;
    gap: 8px;
    width: 100vw;
  }
  .brand {
    gap: 8px;
    font-size: 16px;
  }
  .brand-mark {
    width: 36px;
    height: 29px;
  }
  .top-action {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 30;
    min-height: 36px;
    padding-inline: 10px;
    width: 62px;
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
  }
  .top-action::after {
    content: "Демо";
    font-size: 12px;
  }
  .hero {
    padding: 92px 16px 34px;
    min-height: 920px;
    display: block;
    width: 100%;
    max-width: 100vw;
  }
  .hero-copy,
  .hero-copy > p {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }
  .css-scene {
    top: 488px;
    right: -132px;
    transform: scale(.56);
    opacity: .9;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-rate strong {
    font-size: 28px;
  }
  .proof-row span {
    width: 100%;
  }
  .section,
  .lead-section {
    padding-inline: 16px;
  }
  .steps article,
  .metric-card,
  .compare-grid article,
  .faq-grid article,
  .legal-grid article,
  .role-grid article,
  .pricing article {
    min-height: 0;
    padding: 22px;
  }
  .lead-form {
    padding: 22px;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
