:root {
  --ink: #07111f;
  --muted: #647084;
  --line: rgba(12, 25, 48, 0.12);
  --green: #13bd72;
  --cyan: #3ddcff;
  --blue: #5875ff;
  --rose: #ff6b9f;
  --amber: #f6b84f;
  --panel: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 90px rgba(31, 44, 86, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(61, 220, 255, 0.22), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 107, 159, 0.16), transparent 24%),
    radial-gradient(circle at 74% 48%, rgba(19, 189, 114, 0.14), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f8fbff 100%);
  overflow-x: hidden;
}

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

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

.page-shell {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 0 46px 42px;
}

.topbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 48% 46%, #ffffff 0 14%, transparent 15%),
    conic-gradient(from 120deg, var(--green), var(--cyan), var(--rose), var(--amber), var(--green));
  box-shadow: 0 14px 34px rgba(19, 189, 114, 0.28);
  transform: rotate(12deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 22px;
  font-weight: 950;
}

.brand-text em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  color: #1f2b3d;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.78;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #058653;
  opacity: 1;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, #0bbf70, #3ddcff 55%, #5875ff);
  box-shadow:
    0 18px 44px rgba(42, 142, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.34), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  min-height: 44px;
  padding: 0 22px;
  color: #142033;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 36px rgba(31, 44, 86, 0.08);
  backdrop-filter: blur(14px);
}

.btn-soft {
  color: #162236;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 42px rgba(31, 44, 86, 0.1);
  backdrop-filter: blur(16px);
}

.btn-large {
  min-width: 172px;
  height: 58px;
  padding: 0 28px;
  font-size: 16px;
}

.btn-outline {
  min-height: 52px;
  padding: 0 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 255, 211, 0.42);
  box-shadow: 0 0 38px rgba(19, 189, 114, 0.16) inset;
}

.hero-section {
  min-height: 695px;
  display: grid;
  grid-template-columns: minmax(480px, 0.88fr) minmax(610px, 1.12fr);
  align-items: center;
  gap: 34px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
  padding: 0 16px;
  color: #223047;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(31, 44, 86, 0.08);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(19, 189, 114, 0.12), 0 0 20px rgba(19, 189, 114, 0.62);
}

.hero-copy h1 {
  margin: 34px 0 24px;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #08a85a, #18c8ff 50%, #745cff);
  background-clip: text;
}

.hero-desc {
  max-width: 620px;
  margin: 0 0 22px;
  color: #46566b;
  font-size: 20px;
  line-height: 1.8;
}

.prompt-demo {
  width: min(100%, 620px);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 11px 14px;
  color: #233249;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 46px rgba(31, 44, 86, 0.08);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.prompt-label {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #057f59;
  border-radius: 999px;
  background: rgba(19, 189, 114, 0.12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#typingPrompt {
  min-width: 0;
}

.prompt-demo i {
  width: 2px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #13bd72, #3ddcff);
  animation: cursorPulse 1.2s ease-in-out infinite;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #26384f;
  font-size: 14px;
  font-weight: 900;
}

.hero-trust span {
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 12px 34px rgba(31, 44, 86, 0.06);
}

.hero-visual {
  min-height: 610px;
  position: relative;
  isolation: isolate;
  perspective: 1300px;
  transform-style: preserve-3d;
  transform: translate(36px, 24px) scale(0.88);
  transform-origin: center;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-one {
  width: 690px;
  height: 430px;
  right: 48px;
  top: 80px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 44%, rgba(61, 220, 255, 0.36), transparent 40%),
    radial-gradient(circle at 72% 55%, rgba(255, 107, 159, 0.22), transparent 44%),
    radial-gradient(circle at 54% 62%, rgba(19, 189, 114, 0.28), transparent 45%);
  filter: blur(70px);
}

.hero-glow-two {
  width: 780px;
  height: 390px;
  right: 16px;
  top: 124px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(61, 220, 255, 0.32), rgba(19, 189, 114, 0.26), rgba(255, 107, 159, 0.2), transparent);
  mask: radial-gradient(ellipse, transparent 41%, #000 43%, #000 47%, transparent 50%);
  transform: rotate(-9deg) translateZ(-80px);
}

.float-card {
  position: absolute;
  overflow: hidden;
  --card-scale: 1;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 28px 70px rgba(18, 34, 76, 0.24),
    0 0 32px rgba(61, 220, 255, 0.2),
    0 0 0 1px rgba(255,255,255,0.16) inset;
  transform-style: preserve-3d;
  animation: cardFloat 8s ease-in-out infinite;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.float-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 30%, rgba(0,0,0,0.58) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.32), transparent 28%, rgba(255,255,255,0.08) 72%, transparent);
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.22);
  pointer-events: none;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.float-card span,
.float-card strong {
  position: absolute;
  left: 20px;
  z-index: 4;
  text-shadow: 0 4px 22px rgba(0,0,0,0.48);
}

.float-card span {
  bottom: 48px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card strong {
  bottom: 20px;
  font-size: 18px;
}

.card-car {
  width: 365px;
  height: 226px;
  left: 84px;
  top: 70px;
  z-index: 5;
  --card-transform: rotateY(-25deg) rotateX(8deg) rotateZ(-6deg) translateZ(110px);
  transform: var(--card-transform);
}

.card-beach {
  width: 330px;
  height: 214px;
  left: 34px;
  top: 322px;
  z-index: 3;
  --card-transform: rotateY(23deg) rotateX(7deg) rotateZ(-8deg) translateZ(58px);
  transform: var(--card-transform);
  animation-delay: -2.2s;
}

.card-space {
  width: 286px;
  height: 354px;
  right: 72px;
  top: 156px;
  z-index: 4;
  --card-transform: rotateY(-19deg) rotateX(8deg) rotateZ(7deg) translateZ(82px);
  transform: var(--card-transform);
  animation-delay: -4.4s;
}

.float-card:hover {
  animation-play-state: paused;
  --card-scale: 1.045;
  box-shadow:
    0 38px 92px rgba(18, 34, 76, 0.32),
    0 0 52px rgba(61, 220, 255, 0.34),
    0 0 0 1px rgba(255,255,255,0.2) inset;
}

.hero-visual:has(.float-card:hover) .float-card:not(:hover) {
  opacity: 0.68;
  filter: saturate(0.82) blur(0.2px);
}

body.hero-typed .float-card {
  animation-name: cardFloat, cardClarity;
  animation-duration: 8s, 900ms;
  animation-timing-function: ease-in-out, ease;
  animation-iteration-count: infinite, 1;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  padding: 10px 14px;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.58);
  box-shadow: 0 18px 44px rgba(18, 34, 76, 0.16);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.chip-one {
  left: 314px;
  top: 54px;
}

.chip-two {
  right: 64px;
  top: 98px;
}

.chip-three {
  left: 252px;
  bottom: 40px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 4px 0 44px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.feature-item {
  min-height: 126px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-item i {
  display: inline-flex;
  margin-bottom: 14px;
  color: #058653;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  transition: color 0.24s ease;
}

.feature-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 220, 255, 0.26);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 22px 58px rgba(31, 44, 86, 0.14);
}

.feature-item:hover strong {
  color: #078c62;
}

.workspace-section {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(680px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 58px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 117, 255, 0.28), transparent 30%),
    radial-gradient(circle at 60% 76%, rgba(19, 189, 114, 0.2), transparent 34%),
    radial-gradient(circle at 22% 24%, rgba(61, 220, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #06101d 0%, #0a1a22 42%, #0b1022 74%, #05070d 100%);
  box-shadow: 0 34px 110px rgba(7, 16, 24, 0.36);
}

.workspace-copy p:first-child {
  margin: 0 0 16px;
  color: #7debc3;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-copy h2 {
  margin: 0 0 22px;
  font-size: 40px;
  line-height: 1.18;
}

.workspace-copy h2 span {
  color: transparent;
  background: linear-gradient(100deg, #7debc3, #69ddff, #b7a7ff);
  background-clip: text;
}

.workspace-desc {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.9;
}

.workspace-copy ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.workspace-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

.workspace-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7debc3;
  box-shadow: 0 0 18px rgba(125, 235, 195, 0.75);
}

.workspace-mock {
  min-width: 0;
  min-height: 505px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(7, 12, 22, 0.9);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.34),
    0 0 76px rgba(61, 220, 255, 0.1);
  backdrop-filter: blur(18px);
}

.mock-top {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 0 6px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.mock-top::-webkit-scrollbar {
  display: none;
}

.mock-top button {
  min-width: max-content;
  padding: 9px 13px;
  color: rgba(255,255,255,0.62);
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.mock-top button:hover,
.mock-top button.active {
  color: #dffef5;
  border-color: rgba(125, 235, 195, 0.28);
  background: rgba(19, 189, 114, 0.18);
  box-shadow: 0 0 24px rgba(19, 189, 114, 0.16) inset;
}

.mock-body {
  display: grid;
  grid-template-columns: 92px minmax(360px, 1fr) 244px;
  gap: 14px;
  height: 430px;
}

.mock-sidebar {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.045);
}

.mock-sidebar img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, filter 0.24s ease;
}

.mock-sidebar img:hover {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(125, 235, 195, 0.44);
  box-shadow: 0 18px 38px rgba(0,0,0,0.3), 0 0 28px rgba(61, 220, 255, 0.14);
  filter: saturate(1.08);
}

.mock-sidebar:hover + .mock-canvas .stage-main {
  box-shadow:
    0 38px 82px rgba(0,0,0,0.46),
    0 0 58px rgba(61, 220, 255, 0.16) !important;
}

.mock-canvas {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 18%, rgba(88, 117, 255, 0.2), transparent 25%),
    radial-gradient(circle at 35% 78%, rgba(19, 189, 114, 0.16), transparent 28%),
    linear-gradient(150deg, #101827, #111f2f 48%, #071018);
}

.canvas-toolbar {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(4, 10, 18, 0.56);
  backdrop-filter: blur(14px);
}

.canvas-toolbar span {
  font-size: 14px;
  font-weight: 950;
}

.canvas-toolbar b {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}

.canvas-stage {
  position: absolute;
  inset: 68px 18px 18px;
}

.canvas-stage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  box-shadow:
    0 24px 54px rgba(0,0,0,0.32),
    0 0 30px rgba(61, 220, 255, 0.08);
}

.canvas-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageResolve 900ms ease both;
}

.stage-main {
  left: 50%;
  top: 50%;
  width: min(70%, 460px);
  aspect-ratio: 4 / 3;
  transform: translate(-50%, -50%) rotateX(2deg);
  z-index: 3;
  border-radius: 22px !important;
  box-shadow:
    0 34px 74px rgba(0,0,0,0.42),
    0 0 44px rgba(246, 184, 79, 0.1) !important;
}

.stage-main img.is-loading {
  animation: imageResolve 760ms ease both;
}

.stage-main::after,
.stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), transparent 36%, rgba(255,255,255,0.06) 78%, transparent);
  pointer-events: none;
}

.stage-card {
  z-index: 2;
}

.stage-avatar {
  left: 2%;
  bottom: 6%;
  width: 28%;
  aspect-ratio: 3 / 4;
  transform: rotate(-5deg);
  z-index: 4;
}

.stage-space {
  right: 1%;
  top: 3%;
  width: 34%;
  aspect-ratio: 16 / 10;
  transform: rotate(5deg);
}

.stage-brand {
  right: 7%;
  bottom: 5%;
  width: 36%;
  aspect-ratio: 16 / 10;
  transform: rotate(-2deg);
}

.mock-panel {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.mock-panel label {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 900;
}

.mock-panel div {
  min-height: 38px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  background: rgba(255,255,255,0.07);
  font-size: 12px;
  line-height: 1.45;
}

.mock-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.mock-count span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  font-weight: 900;
}

.mock-count .on {
  color: #052016;
  background: #7debc3;
}

.mock-panel strong {
  margin-top: 4px;
  font-size: 14px;
}

.mock-panel small {
  color: rgba(255,255,255,0.56);
}

.mock-panel button {
  height: 44px;
  margin-top: 4px;
  color: #ffffff;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #0bbf70, #2fd6ff);
  box-shadow: 0 16px 38px rgba(47, 214, 255, 0.18);
  font-weight: 950;
}

.scenes-section {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 36px;
  padding: 66px 0 52px;
}

.scene-title p {
  margin: 0 0 16px;
  color: #058653;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-title h2 {
  margin: 0 0 22px;
  font-size: 39px;
  line-height: 1.2;
}

.scene-title h2 span {
  color: transparent;
  background: linear-gradient(100deg, #08a85a, #18c8ff, #745cff);
  background-clip: text;
}

.scene-desc {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.scene-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55)),
    rgba(255,255,255,0.68);
  box-shadow: 0 18px 48px rgba(31, 44, 86, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,220,255,0.12), transparent 34%, rgba(255,107,159,0.1));
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.scene-card:hover,
.scene-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(19, 189, 114, 0.35);
  box-shadow:
    0 26px 70px rgba(31, 44, 86, 0.18),
    0 0 34px rgba(19, 189, 114, 0.12);
}

.scene-card:hover::before,
.scene-card.is-active::before {
  opacity: 1;
}

.scene-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.86), transparent 22%),
    linear-gradient(135deg, #eef7ff, #eafaf5);
}

.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.28s ease;
}

.scene-card:hover .scene-image img,
.scene-card.is-active .scene-image img {
  transform: scale(1.035);
}

.scene-meta {
  position: relative;
  z-index: 1;
  padding: 18px 6px 6px;
}

.scene-meta strong {
  display: block;
  margin-bottom: 8px;
  color: #101929;
  font-size: 21px;
  transition: color 0.24s ease;
}

.scene-meta span {
  display: inline-flex;
  max-width: 100%;
  color: #526278;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.scene-card.is-active .scene-meta span {
  color: #047a4b;
}

.scene-card:hover .scene-meta strong,
.scene-card.is-active .scene-meta strong {
  color: #078c62;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition: max-height 0.24s ease, opacity 0.24s ease, transform 0.24s ease, margin 0.24s ease;
}

.scene-tags b {
  padding: 6px 9px;
  color: #047a4b;
  border-radius: 999px;
  background: rgba(19, 189, 114, 0.1);
  font-size: 11px;
  font-weight: 950;
}

.scene-card:hover .scene-tags,
.scene-card.is-active .scene-tags {
  max-height: 40px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  min-height: 146px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 10%, rgba(61, 220, 255, 0.18), transparent 30%),
    radial-gradient(circle at 74% 8%, rgba(255, 107, 159, 0.12), transparent 26%),
    rgba(255,255,255,0.76);
  box-shadow: var(--shadow);
}

.final-cta .btn-large {
  min-width: 210px;
  height: 64px;
  font-size: 18px;
  animation: ctaBreath 2.8s ease-in-out infinite;
}

.cta-mark {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 22px;
  background: linear-gradient(135deg, #0bbf70, #3ddcff 58%, #5875ff);
  box-shadow: 0 18px 44px rgba(42, 142, 255, 0.22);
  font-weight: 950;
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--ink);
  font-size: 18px;
}

.footer p {
  margin: 8px 0 0;
}

.footer-stat {
  color: #078c62;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  font-weight: 800;
}

.footer-links a {
  color: #31445d;
  text-underline-offset: 5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover {
  color: #078c62;
  text-decoration: underline;
  text-decoration-color: rgba(19, 189, 114, 0.5);
}

@keyframes cursorPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.82); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes cardFloat {
  0%, 100% { transform: var(--card-transform) translateY(0) scale(var(--card-scale)); }
  50% { transform: var(--card-transform) translateY(-7px) scale(var(--card-scale)); }
}

@keyframes cardClarity {
  from { opacity: 0.76; filter: blur(2px) saturate(0.92); }
  to { opacity: 1; filter: blur(0) saturate(1); }
}

@keyframes imageResolve {
  from { opacity: 0.58; filter: blur(8px) saturate(0.86); transform: scale(1.025); }
  to { opacity: 1; filter: blur(0) saturate(1); transform: scale(1); }
}

@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 18px 44px rgba(42, 142, 255, 0.24), 0 0 0 1px rgba(255,255,255,0.28) inset; }
  50% { box-shadow: 0 22px 56px rgba(61, 220, 255, 0.32), 0 0 30px rgba(19, 189, 114, 0.22); }
}

@media (max-width: 1240px) {
  .page-shell {
    padding: 0 24px 34px;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .workspace-section,
  .scenes-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    gap: 6px;
  }

  .hero-visual {
    min-height: 560px;
    transform: translate(0, 8px) scale(0.94);
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .workspace-section {
    padding: 38px 26px;
  }

  .mock-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .mock-panel {
    display: none;
  }

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

@media (max-width: 760px) {
  .page-shell {
    padding: 0 16px 30px;
  }

  .topbar {
    height: 68px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text em {
    display: none;
  }

  .btn-ghost {
    min-height: 40px;
    padding: 0 16px;
  }

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

  .eyebrow {
    align-items: flex-start;
    max-width: 100%;
    min-height: auto;
    padding: 9px 13px;
    line-height: 1.45;
  }

  .hero-copy h1 {
    margin-top: 26px;
    font-size: 42px;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.75;
  }

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

  .btn-large {
    width: 100%;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust span {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 500px;
    margin: 10px -8px 0;
    perspective: none;
    transform: none;
  }

  .hero-glow-one {
    width: 100%;
    height: 360px;
    right: 0;
    top: 58px;
    filter: blur(56px);
  }

  .hero-glow-two {
    display: none;
  }

  .float-card {
    border-radius: 20px;
  }

  .card-car {
    width: min(68vw, 270px);
    height: 170px;
    left: 8%;
    top: 18px;
    --card-transform: rotateZ(-5deg);
    transform: var(--card-transform);
  }

  .card-space {
    width: min(48vw, 190px);
    height: 246px;
    right: 7%;
    top: 145px;
    --card-transform: rotateZ(6deg);
    transform: var(--card-transform);
  }

  .card-beach {
    width: min(70vw, 282px);
    height: 180px;
    left: 12%;
    top: 308px;
    --card-transform: rotateZ(-4deg);
    transform: var(--card-transform);
  }

  .floating-chip {
    display: none;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .feature-item {
    min-height: auto;
    padding: 22px;
  }

  .workspace-section {
    padding: 30px 16px;
    border-radius: 22px;
  }

  .workspace-copy h2,
  .scene-title h2 {
    font-size: 31px;
  }

  .workspace-mock {
    padding: 12px;
    min-height: auto;
  }

  .mock-body {
    grid-template-columns: 1fr;
    height: 390px;
  }

  .mock-sidebar {
    display: none;
  }

  .canvas-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .canvas-stage {
    inset: 86px 12px 12px;
  }

  .stage-main {
    width: 78%;
  }

  .stage-avatar {
    width: 38%;
    left: 0;
  }

  .stage-space {
    width: 36%;
    right: 0;
  }

  .stage-brand {
    width: 45%;
    right: 4%;
  }

  .scenes-section {
    padding-top: 46px;
  }

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

  .scene-card {
    border-radius: 20px;
  }

  .scene-image {
    aspect-ratio: 16 / 11;
  }

  .final-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 26px 18px;
  }

  .final-cta .btn-large {
    width: 100%;
    min-width: 0;
  }

  .footer {
    flex-direction: column;
  }
}
