:root {
  --ink: #07163a;
  --muted: #4f5d79;
  --line: #e8e8e8;
  --paper: #fbfdff;
  --white: #ffffff;
  --cyan: #2f74ff;
  --cyan-soft: #d8f7fb;
  --coral: #ff6767;
  --coral-soft: #ffe0e0;
  --purple: #8645f4;
  --blue: #315dff;
  --shadow: 0 18px 46px rgba(22, 24, 28, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 30%, rgba(67, 111, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 66% 72%, rgba(135, 69, 244, 0.16), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, var(--paper) 100%);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1580px, calc(100% - 88px));
  transform: translateX(-50%);
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: fixed;
  left: 50%;
  top: -22px;
  z-index: -1;
  width: 100vw;
  height: 95px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(49, 93, 255, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-action {
  pointer-events: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.brand span span {
  color: inherit;
}

.brand i {
  display: none;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b70ff 0%, #8d46f5 100%);
  box-shadow: 0 10px 24px rgba(49, 93, 255, 0.22);
  overflow: hidden;
}

.brand.mini {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: 34px;
}

.logo-ico {
  width: 48%;
    margin-left: 13px;
    margin-bottom: 2px;
}


.brand.mini > span span {
  color: var(--cyan);
}

.brand.mini i {
  display: block;
  width: 107px;
  height: 10px;
  border-bottom: 4px solid var(--cyan);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.nav-links a {
  padding: 10px 0;
  color: #273653;
  font-size: 20px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 19px;
  font-weight: 500;
  box-shadow: 0 18px 34px rgba(71, 83, 245, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(520px, 1.05fr);
  gap: 30px;
  align-items: center;
  min-height: 100vh;
  width: min(1580px, calc(100% - 88px));
  margin: 0 auto;
  padding: 128px 0 54px;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.features-lead h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 700px;
  color: #061438;
  font-size: clamp(58px, 5.7vw, 72px);
  line-height: 1.05;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #2474ff 5%, #8d45f6 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 505px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-benefits {
  display: grid; 
  grid-auto-flow: column;
  margin-top: 70px;
  align-items: center;
  gap: 45px;
  color: #53617c;
}

.hero-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 56px max-content;
  align-items: center;
  gap: 16px;
}

.hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -9px;
  width: 1px;
  height: 44px;
  background: rgba(49, 93, 255, 0.16);
}

.hero-benefit span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(70, 93, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(49, 93, 255, 0.06);
}

.hero-benefit span svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.3;
}

.hero-benefit p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 13, 16, 0.13);
}

.btn.primary {
  color: var(--white);
  background: var(--ink);
}

.btn.ghost {
  background: var(--white);
}

.hero-cta {
  min-width: 264px;
  min-height: 78px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(71, 83, 245, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  font-size: 23px;
  font-weight: 500;
}

.btn.primary.hero-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.hero-cta svg {
  width: 28px;
  height: 28px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  padding-top: 0;
}

.float-card {
  position: absolute;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(30, 49, 115, 0.2);
  overflow: hidden;
}

.float-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.float-card.mountain img {
  object-position: center 48%;
}

.float-card.portrait img {
  object-position: center 42%;
}

.float-card.fox img {
  object-position: center 44%;
}

.float-card.astronaut img {
  object-position: center 54%;
}

.float-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 19, 47, 0.78);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.float-card figcaption svg {
  width: 15px;
  height: 15px;
  color: #ffd653;
}

.float-card.castle {
  left: 10.5%;
  top: 22px;
  width: 188px;
  height: 194px;
  transform: rotate(7deg);
}

.float-card.mountain {
  right: 1.5%;
  top: 48px;
  width: 408px;
  height: 286px;
  border-radius: 15px;
  transform: rotate(-7deg);
}

.float-card.portrait {
  left: 10%;
  top: 272px;
  width: 305px;
  height: 350px;
  border-radius: 16px;
  transform: rotate(-6deg);
}

.float-card.fox {
  right: 12%;
  top: 376px;
  width: 176px;
  height: 170px;
  transform: rotate(6deg);
}

.float-card.jellyfish {
  left: -3%;
  bottom: -6px;
  width: 184px;
  height: 168px;
  transform: rotate(14deg);
}

.float-card.astronaut {
  right: 2%;
  bottom: 12px;
  width: 370px;
  height: 238px;
  border-radius: 15px;
  transform: rotate(7deg);
}

.glow-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(79, 112, 255, 0.45);
  box-shadow: 0 0 18px rgba(79, 112, 255, 0.7);
}

.dot-a {
  left: 46%;
  top: 205px;
}

.dot-b {
  right: 39%;
  top: 435px;
}

.dot-c {
  left: 42%;
  bottom: 82px;
  background: rgba(137, 69, 244, 0.36);
  box-shadow: 0 0 18px rgba(137, 69, 244, 0.62);
}

.builder-shell {
  border: 1px solid rgba(10, 13, 16, 0.09);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.builder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.builder-top span {
  font-size: clamp(30px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 0.96;
}

.builder-top button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan);
  font: inherit;
  font-weight: 800;
}

.builder-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  padding: 20px;
}

.builder-stage img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 22px;
}

.builder-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #eefcff, #fff4f2);
}

.builder-panel span,
.builder-panel small {
  color: var(--muted);
  font-weight: 700;
}

.builder-panel strong {
  font-size: 27px;
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.builder-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.builder-tools span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 64px;
  background: var(--white);
  color: #3d444d;
  font-weight: 800;
}

.section-pad {
  width: min(1580px, calc(100% - 88px));
  margin: 0 auto;
  padding: 76px 0;
}

.demos {
  position: relative;
  padding-top: 96px;
  scroll-margin-top: 92px;
}

.demos::before,
.demos::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.demos::before {
  left: -34px;
  top: 120px;
  width: 28px;
  height: 28px;
  background: rgba(142, 83, 245, 0.28);
  box-shadow:
    132px -118px 0 rgba(58, 111, 255, 0.22),
    236px 672px 0 rgba(58, 111, 255, 0.24);
  filter: blur(1px);
}

.demos::after {
  right: 52px;
  top: 108px;
  width: 15px;
  height: 15px;
  background: rgba(142, 83, 245, 0.28);
  box-shadow:
    -92px 136px 0 9px rgba(58, 111, 255, 0.16),
    58px 812px 0 9px rgba(58, 111, 255, 0.2);
  filter: blur(1px);
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 860px;
  text-align: center;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 30px;
  padding: 0 18px;
  border-radius: 999px;
  color: #2e52ff;
  background: rgba(70, 93, 255, 0.1);
  font-size: 13px; 
  text-transform: uppercase;
  font-weight: 600;
}

.demo-badge svg {
  width: 17px;
  height: 17px;
}

.section-heading h2 {
  margin-top: 0;
  color: #07163a;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.08;
}

.section-heading h2 span {
  color: transparent;
  background: linear-gradient(100deg, #2474ff 5%, #8d45f6 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 30px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 36px 16px 16px;
  border: 1px solid rgba(58, 111, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 66px rgba(58, 71, 130, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 76px rgba(58, 71, 130, 0.14);
}

.demo-copy {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 0 22px;
}

.demo-copy a:hover {
  color: var(--blue);
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, #8660ff 0%, #2f5fff 100%);
  box-shadow: 0 14px 28px rgba(69, 82, 242, 0.22);
}

.icon-bubble svg {
  width: 30px;
  height: 30px;
}

.demo-copy h3 {
  margin: 5px 0 10px;
  color: #07163a;
  font-size: clamp(23px, 1.7vw, 27px);
  font-weight: 800;
  line-height: 1.15;
}

.demo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.before-after {
  --position: 50%;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.26;
  border-radius: 16px;
  background: #e9eefb;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.demo-visual-link:focus-visible {
  outline: 3px solid rgba(49, 93, 255, 0.45);
  outline-offset: 4px;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cov-posi, center);
  user-select: none;
  pointer-events: none;
}

.compare-image.after {
  clip-path: inset(0 0 0 var(--position));
}

.compare-label {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 22, 58, 0.5);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.before-label {
  left: 14px;
}

.after-label {
  right: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 2;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(7, 22, 58, 0.14);
} 

.demo-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(344px, 100%);
  min-height: 70px;
  margin: 46px auto 0;
  border: 1px solid rgba(49, 93, 255, 0.72);
  border-radius: 14px;
  color: #315dff;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 48px rgba(70, 93, 255, 0.08);
  font-size: 20px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-more:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 58px rgba(70, 93, 255, 0.14);
}

.features {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 58px;
  align-items: start;
}

.features-lead {
  position: sticky;
  top: 130px;
}

.features-lead h2 {
  font-size: clamp(44px, 5.4vw, 82px);
}

.features-lead p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.feature-list span {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 18px;
  border: 1px solid rgba(10, 13, 16, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(22, 24, 28, 0.06);
  color: #20262d;
  font-weight: 800;
  line-height: 1.35;
}

.feature-list svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.faq {
  position: relative;
  padding-top: 86px;
  padding-bottom: 70px;
  scroll-margin-top: 112px;
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.faq::before {
  left: 10%;
  top: 118px;
  width: 20px;
  height: 20px;
  background: rgba(58, 111, 255, 0.18);
  box-shadow:
    1220px 142px 0 8px rgba(142, 83, 245, 0.16),
    1030px 560px 0 8px rgba(58, 111, 255, 0.16);
  filter: blur(1px);
}

.faq::after {
  right: 12%;
  bottom: 132px;
  width: 26px;
  height: 26px;
  background: rgba(58, 111, 255, 0.16);
  filter: blur(1px);
}

.faq-heading {
  margin-bottom: 30px;
}

.faq-heading .demo-badge {
  min-height: 36px;
  margin-bottom: 24px;
  padding: 0 28px;
}

.faq-heading h2 {
  color: #07163a;
  font-size: clamp(44px, 4.7vw, 66px);
  font-weight: 800;
}

.faq-heading p {
  margin-top: 16px;
  font-size: 20px;
}

.faq-list {
  display: grid;
  gap: 8px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(58, 111, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(58, 71, 130, 0.07);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 14px 26px 14px 22px;
  color: #07163a;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #245fff;
  background: linear-gradient(145deg, #f3f7ff, #dfe8ff);
  font-size: 15px;
  font-weight: 800;
}

.faq-item summary::after {
  content: "+";
  justify-self: end;
  color: #245fff;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(10, 22, 58, 0.09);
}

.faq-item[open] summary::after {
  content: "-";
  transform: translateY(-2px);
}

.faq-item p {
  margin: 0;
  padding: 20px 72px 28px 82px;
  color: #4c5a78;
  font-size: 19px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  width: min(1580px, calc(100% - 44px));
  min-height: 620px;
  margin: 88px auto 48px;
  padding: 68px 48px 78px;
  border-radius: 44px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 91% 16%, rgba(140, 61, 255, 0.88), transparent 34rem),
    radial-gradient(circle at 8% 94%, rgba(27, 91, 255, 0.6), transparent 29rem),
    linear-gradient(135deg, #061437 0%, #09183e 45%, #211d5c 76%, #7233ef 100%);
  box-shadow: 0 24px 60px rgba(10, 21, 54, 0.22);
  overflow: hidden;
  scroll-margin-top: 112px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42%;
  width: 72%;
  height: 64%;
  background: radial-gradient(ellipse, rgba(59, 112, 255, 0.22), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.doc-anchor {
  position: absolute;
  top: -112px;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 44px;
  color: #a779ff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta-badge img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.final-cta h2 {
  max-width: 1020px;
  margin: 0;
  font-size:clamp(48px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.final-cta h2 span {
  color: transparent;
  background: linear-gradient(100deg, #3d83ff 2%, #9b55ff 86%);
  -webkit-background-clip: text;
  background-clip: text;
}

.final-cta-text {
  max-width: 850px;
  margin: 42px 0 58px;
  color: rgba(234, 239, 255, 0.78);
  font-size: 21px;
  line-height: 1.45;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 446px;
  min-height: 96px;
  padding: 0 46px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #316dff 0%, #9a2fff 100%);
  box-shadow:
    0 26px 58px rgba(79, 64, 255, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 30px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 34px 68px rgba(79, 64, 255, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.final-cta-button svg {
  width: 35px;
  height: 35px;
}

.cta-spark {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  opacity: 0.88;
  pointer-events: none;
}

.cta-spark::before,
.cta-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #9268ff 100%);
  transform: translate(-50%, -50%);
}

.cta-spark::before {
  width: 12px;
  height: 100%;
}

.cta-spark::after {
  width: 100%;
  height: 12px;
}

.cta-spark-one {
  left: 9.6%;
  top: 17%;
  filter: drop-shadow(0 0 18px rgba(158, 110, 255, 0.72));
}

.cta-spark-two {
  right: 7.2%;
  top: 48%;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 22px rgba(158, 110, 255, 0.82));
}

.cta-spark-three {
  left: 16%;
  bottom: 19%;
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.launch-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.launch-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 1120px) {
  .hero,
  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-visual {
    min-height: 660px;
  }

  .float-card.castle {
    left: 12%;
  }

  .float-card.mountain {
    right: 4%;
  }

  .float-card.portrait {
    left: 20%;
  }

  .float-card.jellyfish {
    left: 7%;
  }

  .features-lead {
    position: static;
  }

  .demo-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  .demo-card {
    max-width: 720px;
  }

}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section-pad {
    width: calc(100% - 28px);
  }
  .logo-ico { 
    margin-left: 11px;
  }

  .site-header {
    top: 14px;
    align-items: flex-start;
  }

  .site-header::before {
    top: -43px;
  }

  .brand {
    font-size: 28px;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand i {
    width: 80px;
  }
  

  .nav-links {
    gap: 0; 
  }

  .nav-links a {
    padding: 8px 7px;
    font-size: 16px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 56px);
  }

  .hero-text {
    margin: 24px 0 30px;
    font-size: 18px;
  } 

  .hero-benefits {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
  }

  .hero-benefit {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-benefit:not(:last-child)::after {
    display: none;
  }

  .hero-benefit span {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .hero-benefit span svg {
    width: 25px;
    height: 25px;
  }

  .hero-benefit p {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-cta {
    min-width: 210px;
    min-height: 62px;
    font-size: 18px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 40px;
  }

  .float-card {
    border-width: 2px;
    border-radius: 11px;
  }

  .float-card.castle {
    left: 4%;
    top: 20px;
    width: 106px;
    height: 108px;
  }

  .float-card.mountain {
    right: 1%;
    top: 34px;
    width: 218px;
    height: 158px;
  }

  .float-card.portrait {
    left: 7%;
    top: 188px;
    width: 178px;
    height: 210px;
  }

  .float-card.fox {
    right: 2%;
    top: 230px;
    width: 104px;
    height: 100px;
  }

  .float-card.jellyfish {
    left: 1%;
    bottom: 12px;
    width: 112px;
    height: 102px;
  }

  .float-card.astronaut {
    right: 1%;
    bottom: 22px;
    width: 220px;
    height: 144px;
  }

  .float-card figcaption {
    left: 8px;
    bottom: 8px;
    gap: 5px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .glow-dot {
    width: 9px;
    height: 9px;
  }

  .builder-stage {
    grid-template-columns: 1fr;
  }

  .builder-stage img {
    min-height: 280px;
  }

  .builder-tools {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(38px, 16vw, 46px);
  }

  .section-heading p {
    font-size: 19px;
  }

  .demo-copy {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .icon-bubble {
    width: 56px;
    height: 56px;
  }

  .demo-copy b {
    display: none;
  }

  .demo-grid {
    grid-template-columns: minmax(300px, 1fr);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .faq {
    padding-top: 62px;
    padding-bottom: 42px;
  }

  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-heading h2 {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .faq-heading p {
    font-size: 17px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 58px;
    padding: 12px 16px 12px 14px;
    font-size: 16px;
  }

  .faq-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .faq-item summary::after {
    font-size: 28px;
  }

  .faq-item p {
    padding: 16px 18px 22px 62px;
    font-size: 15px;
    line-height: 1.6;
  }

  .final-cta {
    width: calc(100% - 28px);
    min-height: 0;
    margin: 62px auto 34px;
    padding: 64px 20px 72px;
    border-radius: 28px;
    scroll-margin-top: 92px;
  }

  .final-cta-badge {
    gap: 10px;
    margin-bottom: 30px;
    font-size: 15px;
  }

  .final-cta-badge img {
    width: 30px;
    height: 30px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 5.4vw, 82px);
    line-height: 1.1;
  }

  .final-cta-text {
    margin: 28px 0 40px;
    font-size: 17px;
    line-height: 1.55;
  }

  .final-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 70px;
    gap: 14px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 21px;
  }

  .final-cta-button svg {
    width: 25px;
    height: 25px;
  }

  .cta-spark-one {
    left: 9%;
    top: 14%;
    width: 28px;
    height: 28px;
  }

  .cta-spark-two {
    right: 8%;
    top: 55%;
    width: 34px;
    height: 34px;
  }

  .cta-spark-three {
    left: 13%;
    bottom: 14%;
  }

}
