:root {
  --bg: #0b0b0f;
  --bg-soft: #121218;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4f4f0;
  --muted: #aaa99f;
  --cyan: #b9ec2f;
  --blue: #8ecf22;
  --purple: #6f8f18;
  --pink: #d7ff4f;
  --green: #b7e629;
  --leaf: #b7e629;
  --leaf-soft: rgba(183, 230, 41, 0.16);
  --graphite: #8f9088;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family: Inter, "Plus Jakarta Sans", Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(183, 230, 41, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(142, 207, 34, 0.13), transparent 36rem),
    radial-gradient(circle at 50% 70%, rgba(215, 255, 79, 0.08), transparent 35rem),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto, auto, auto, auto;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent, rgba(11, 11, 15, 0.86) 74%);
  z-index: -1;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 22px;
  transition: transform 240ms ease;
}

.site-header.is-scrolled .nav-bar {
  border-color: rgba(183, 230, 41, 0.26);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42), 0 0 32px rgba(183, 230, 41, 0.16);
}

.nav-bar {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 12, 18, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.brand,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: clamp(42px, 5vw, 56px);
  display: block;
  filter: drop-shadow(0 0 16px rgba(183, 230, 41, 0.24));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 20px);
  flex: 1;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 18px rgba(183, 230, 41, 0.45);
}

.nav-cta,
.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #d7ff4f, var(--leaf) 48%, #6f8f18);
  color: #101207;
  box-shadow: 0 0 34px rgba(183, 230, 41, 0.36);
}

.nav-cta {
  min-width: max-content;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.aurora-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.aurora-field span {
  position: absolute;
  left: 50%;
  width: 92vw;
  height: 18rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(183, 230, 41, 0.2), rgba(142, 207, 34, 0.24), rgba(215, 255, 79, 0.16), transparent);
  filter: blur(22px);
  opacity: 0.65;
  transform-origin: center;
  animation: auroraDrift 16s ease-in-out infinite alternate;
}

.aurora-field span:nth-child(1) {
  top: 13%;
  transform: translateX(-50%) rotate(-9deg);
}

.aurora-field span:nth-child(2) {
  top: 33%;
  animation-delay: -5s;
  transform: translateX(-48%) rotate(7deg);
}

.aurora-field span:nth-child(3) {
  top: 58%;
  animation-delay: -9s;
  opacity: 0.42;
  transform: translateX(-52%) rotate(-4deg);
}

.hero-grid,
.feature-band,
.contact-section,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: #dfe5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(183, 230, 41, 0.22);
  border-radius: 999px;
  background: rgba(183, 230, 41, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 790px;
  margin: 22px 0 22px;
  font-size: clamp(3.3rem, 8vw, 7.75rem);
  background: linear-gradient(115deg, #ffffff 8%, #f6ffd4 34%, #b7e629 62%, #8f9088 94%);
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p,
.section-heading p,
.feature-copy > p {
  font-size: clamp(1rem, 1.7vw, 1.23rem);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.nav-cta:hover,
.spec-card:hover {
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.metric-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  font-size: 1.08rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.floating-image-card {
  position: absolute;
  z-index: 4;
  margin: 0;
  width: clamp(118px, 15vw, 178px);
  aspect-ratio: 1.06;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(183, 230, 41, 0.22);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0);
  transition: transform 260ms ease-out;
  animation: cardFloat 7s ease-in-out infinite;
}

.floating-image-card img,
.showcase-card img,
.command-visual img,
.service-image img,
.vibe-image img,
.spec-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.floating-image-card::after,
.showcase-card::after,
.command-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: imageSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}

.image-card-one {
  left: -10px;
  top: 42px;
}

.image-card-two {
  right: -14px;
  bottom: 78px;
  animation-delay: -3s;
}

.mesh-orbit {
  position: absolute;
  width: min(560px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, rgba(183, 230, 41, 0.02), rgba(183, 230, 41, 0.55), rgba(142, 207, 34, 0.55), rgba(215, 255, 79, 0.48), rgba(183, 230, 41, 0.02)),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 58%);
  filter: blur(8px);
  opacity: 0.78;
  animation: spin 14s linear infinite;
}

.console-card,
.glass-panel,
.service-card,
.agent-card,
.price-card,
.faq-list,
.vibe-console {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.console-card {
  position: relative;
  width: min(100%, 570px);
  border-radius: 28px;
  overflow: hidden;
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease-out;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.console-top span:nth-child(2) {
  background: var(--cyan);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-top small {
  margin-left: auto;
  color: var(--muted);
}

.stream-board {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(183, 230, 41, 0.17), transparent 54%);
  background-size: 34px 34px, 34px 34px, auto;
}

.stream-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(183, 230, 41, 0.11), transparent);
  transform: translateY(-100%);
  animation: scanner 4.8s linear infinite;
}

.node-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.node-lines path {
  fill: none;
  stroke: rgba(183, 230, 41, 0.66);
  stroke-width: 2;
  stroke-dasharray: 9 12;
  animation: dash 2.6s linear infinite;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 230, 41, 0.36);
  border-radius: 20px;
  background: rgba(11, 11, 15, 0.86);
  box-shadow: 0 0 30px rgba(183, 230, 41, 0.22);
  color: #ecfbff;
  font-weight: 900;
}

.node-core {
  width: 120px;
  height: 120px;
  inset: 150px auto auto 50%;
  transform: translateX(-50%);
  border-radius: 38px;
  background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(135deg, rgba(183, 230, 41, 0.85), rgba(142, 207, 34, 0.85), rgba(215, 255, 79, 0.75));
  box-shadow: 0 0 60px rgba(142, 207, 34, 0.58);
  font-size: 2.2rem;
}

.n1,
.n2,
.n3,
.n4 {
  width: 82px;
  height: 58px;
  font-size: 0.8rem;
}

.n1 { left: 54px; top: 70px; }
.n2 { right: 54px; top: 80px; }
.n3 { left: 52px; bottom: 80px; }
.n4 { right: 50px; bottom: 88px; }

.code-feed {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.code-feed span,
.prompt-output span {
  display: block;
  color: #dbe6ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.visual-showcase {
  padding-top: 54px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.showcase-card,
.motion-lab {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover,
.motion-lab:hover {
  border-color: rgba(183, 230, 41, 0.38);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 48px rgba(183, 230, 41, 0.15);
}

.showcase-card.tall {
  grid-row: span 2;
}

.showcase-card > div,
.motion-lab > span,
.motion-lab > strong {
  position: relative;
  z-index: 2;
}

.showcase-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(8, 8, 13, 0.62);
  backdrop-filter: blur(18px);
}

.showcase-card span,
.motion-lab span {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.showcase-card strong,
.motion-lab strong {
  display: block;
  max-width: 430px;
  font-size: clamp(1.12rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.motion-lab {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pulse-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(183, 230, 41, 0.16), transparent 38%),
    radial-gradient(circle at 74% 55%, rgba(215, 255, 79, 0.13), transparent 34%);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.pulse-map i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(183, 230, 41, 0.8);
  animation: pulseNode 2.8s ease-in-out infinite;
}

.pulse-map i:nth-child(1) { left: 18%; top: 26%; }
.pulse-map i:nth-child(2) { left: 62%; top: 20%; animation-delay: -0.7s; }
.pulse-map i:nth-child(3) { left: 78%; top: 56%; animation-delay: -1.2s; }
.pulse-map i:nth-child(4) { left: 32%; top: 72%; animation-delay: -1.7s; }
.pulse-map i:nth-child(5) { left: 51%; top: 48%; animation-delay: -2.1s; background: var(--pink); }

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.glass-panel {
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
}

.card-grid,
.agent-grid,
.spec-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.card-grid.four,
.agent-grid,
.spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.agent-card,
.price-card {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-image {
  position: relative;
  height: 132px;
  margin: -10px -10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.service-image::after,
.vibe-image::after,
.spec-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 11, 15, 0.78)),
    radial-gradient(circle at 18% 10%, rgba(183, 230, 41, 0.28), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(215, 255, 79, 0.22), transparent 34%);
  pointer-events: none;
}

.service-card:hover .service-image img,
.spec-card:hover .spec-thumb img,
.vibe-console:hover .vibe-image img {
  transform: scale(1.06);
}

.service-image img,
.vibe-image img,
.spec-thumb img {
  transition: transform 500ms ease;
}

.service-card:hover,
.agent-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 230, 41, 0.38);
  background: linear-gradient(145deg, rgba(183, 230, 41, 0.12), rgba(255, 255, 255, 0.055));
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  background: rgba(183, 230, 41, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(183, 230, 41, 0.26);
  font-weight: 900;
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(183, 230, 41, 0.06), rgba(142, 207, 34, 0.12), rgba(215, 255, 79, 0.06));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  color: #dce2ff;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(215, 255, 79, 0.55);
}

.vibe-console {
  min-height: 390px;
  border-radius: 28px;
  padding: 24px;
}

.vibe-image {
  position: relative;
  height: 164px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.prompt-line {
  padding: 18px;
  border: 1px solid rgba(183, 230, 41, 0.24);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  color: white;
  line-height: 1.5;
}

.prompt-line span {
  color: var(--cyan);
  font-weight: 900;
}

.prompt-output {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.prompt-output .success {
  color: #c4ffe3;
  border-color: rgba(85, 247, 178, 0.3);
}

.products-section {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.product-card {
  position: relative;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  border-color: rgba(183, 230, 41, 0.36);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 54px rgba(142, 207, 34, 0.16);
}

.product-card figure {
  position: relative;
  height: 330px;
  margin: 0;
  overflow: hidden;
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(11, 11, 15, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(183, 230, 41, 0.26), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(215, 255, 79, 0.22), transparent 38%);
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(0.78);
  transition: transform 520ms ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-content {
  padding: 28px;
}

.product-content > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.product-content ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 28px;
  color: #dce2ff;
  line-height: 1.55;
}

.product-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(183, 230, 41, 0.4);
}

.product-cinema {
  border-color: rgba(215, 255, 79, 0.24);
}

.product-career {
  border-color: rgba(85, 247, 178, 0.24);
}

.product-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.product-flow h3 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.06;
  margin: 18px 0 0;
}

.product-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-flow li {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.product-flow strong,
.product-flow span {
  display: block;
}

.product-flow strong {
  color: var(--green);
  margin-bottom: 18px;
}

.product-flow span {
  color: #e4e9ff;
  line-height: 1.45;
}

.incorporation-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 16% 20%, rgba(183, 230, 41, 0.13), transparent 30rem),
    radial-gradient(circle at 84% 66%, rgba(215, 255, 79, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(183, 230, 41, 0.045), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.incorporation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.jurisdiction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.jurisdiction-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(183, 230, 41, 0.28);
  border-radius: 999px;
  background: rgba(183, 230, 41, 0.08);
  color: #eef4d7;
  padding: 0 14px;
  font-weight: 850;
  font-size: 0.9rem;
}

.incorporation-panel {
  position: relative;
  min-height: 440px;
  padding: 30px;
  border: 1px solid rgba(183, 230, 41, 0.24);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(183, 230, 41, 0.14), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.incorporation-panel h3,
.incorporation-panel ul {
  position: relative;
  z-index: 2;
}

.incorporation-panel h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.incorporation-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.incorporation-panel li {
  position: relative;
  padding-left: 28px;
  color: #dce2d4;
  line-height: 1.55;
}

.incorporation-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: var(--leaf);
  box-shadow: 0 0 18px rgba(183, 230, 41, 0.42);
}

.world-orbit {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}

.world-orbit::before,
.world-orbit::after {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(183, 230, 41, 0.16);
  border-radius: 50%;
}

.world-orbit::after {
  inset: 108px 54px;
  transform: rotate(58deg);
}

.world-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 24px rgba(183, 230, 41, 0.7);
  animation: pulseNode 2.8s ease-in-out infinite;
}

.world-orbit i:nth-child(1) { left: 18%; top: 30%; }
.world-orbit i:nth-child(2) { left: 68%; top: 22%; animation-delay: -0.5s; }
.world-orbit i:nth-child(3) { left: 78%; top: 58%; animation-delay: -1s; }
.world-orbit i:nth-child(4) { left: 34%; top: 74%; animation-delay: -1.5s; }
.world-orbit i:nth-child(5) { left: 50%; top: 48%; animation-delay: -2s; }

.incorporation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.incorporation-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038));
  box-shadow: var(--shadow);
}

.incorporation-card strong {
  display: block;
  color: #f4f4f0;
  font-size: 1.12rem;
  margin-bottom: 14px;
}

.incorporation-note {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
}

.agent-card {
  min-height: 230px;
}

.agent-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
}

.agent-command {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.agent-command h3 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 18px 0;
}

.command-visual {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
}

.command-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.78), transparent 54%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 6px);
}

.scan-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 20%;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 24px rgba(183, 230, 41, 0.8);
  animation: scanAcross 4.4s ease-in-out infinite;
}

.trade-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(11, 11, 15, 0), rgba(183, 230, 41, 0.055), rgba(11, 11, 15, 0)),
    radial-gradient(circle at 16% 24%, rgba(85, 247, 178, 0.11), transparent 28rem),
    radial-gradient(circle at 82% 58%, rgba(215, 255, 79, 0.1), transparent 32rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trade-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.trade-copy h2 {
  max-width: 720px;
}

.trade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trade-terminal {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(85, 247, 178, 0.22);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 54px rgba(85, 247, 178, 0.13);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.trade-terminal img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08) brightness(0.78);
}

.trade-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.86), rgba(11, 11, 15, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
}

.trade-overlay {
  position: absolute;
  z-index: 2;
  inset: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.trade-topline,
.trade-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.trade-topline span,
.trade-topline strong,
.trade-status span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  color: #eafff5;
  padding: 10px 13px;
}

.trade-topline span {
  color: var(--green);
  font-weight: 900;
}

.trade-status span {
  color: #dfe7ff;
  font-size: 0.86rem;
}

.trade-status b {
  color: var(--green);
  margin-left: 6px;
}

.trade-chart {
  min-height: 230px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.trade-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--green), var(--cyan), rgba(183, 230, 41, 0.5));
  box-shadow: 0 0 18px rgba(85, 247, 178, 0.34);
  animation: tradeBar 2.6s ease-in-out infinite;
}

.trade-chart i:nth-child(2n) {
  animation-delay: -0.7s;
  background: linear-gradient(180deg, var(--pink), var(--purple), rgba(183, 230, 41, 0.42));
}

.trade-chart i:nth-child(3n) {
  animation-delay: -1.2s;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.trade-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.trade-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 247, 178, 0.34);
}

.trade-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: var(--green);
  border: 1px solid rgba(85, 247, 178, 0.28);
  background: rgba(85, 247, 178, 0.08);
  font-weight: 900;
}

.trade-note {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
}

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

.spec-card {
  text-align: left;
  min-height: 230px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  color: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.spec-thumb {
  position: relative;
  height: 94px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.spec-card strong,
.spec-card span {
  display: block;
}

.spec-card strong {
  font-size: 1.18rem;
  margin-bottom: 14px;
}

.spec-card span {
  color: var(--muted);
  line-height: 1.7;
}

.spec-card.is-active,
.spec-card:focus-visible {
  outline: none;
  border-color: rgba(183, 230, 41, 0.56);
  box-shadow: 0 0 42px rgba(183, 230, 41, 0.16);
}

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

.price-card {
  min-height: 310px;
}

.price-card.featured {
  border-color: rgba(142, 207, 34, 0.48);
  box-shadow: 0 0 60px rgba(142, 207, 34, 0.18), var(--shadow);
}

.price {
  color: white;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.price-card a {
  position: absolute;
  left: 26px;
  bottom: 26px;
  color: var(--cyan);
  font-weight: 850;
}

.contact-hubs {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-hubs p {
  margin: 0;
}

.contact-hubs strong {
  color: white;
  margin-right: 6px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  position: relative;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: white;
  min-height: 58px;
  padding: 22px 16px 8px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field select {
  padding-top: 18px;
}

.field label {
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--muted);
  pointer-events: none;
  transition: transform 160ms ease, font-size 160ms ease, color 160ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(183, 230, 41, 0.52);
  box-shadow: 0 0 0 4px rgba(183, 230, 41, 0.08);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select + label,
.field select:valid + label {
  transform: translateY(-12px);
  font-size: 0.72rem;
  color: var(--cyan);
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #ff9abf;
  font-size: 0.82rem;
}

.field.has-error .field-error {
  display: block;
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: rgba(255, 79, 126, 0.78);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
}

.form-note {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.faq-list {
  max-width: 880px;
  margin: 42px auto 0;
  border-radius: 24px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: white;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-size: 1.25rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
}

.testimonials-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.testimonial-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 12%, rgba(183, 230, 41, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.038));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 230, 41, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44), 0 0 34px rgba(183, 230, 41, 0.13);
}

.quote-mark {
  color: var(--leaf);
  font-size: 4rem;
  line-height: 0.72;
  font-weight: 950;
  margin-bottom: 18px;
  opacity: 0.9;
}

.testimonial-card p {
  min-height: 150px;
  color: #d9ddcf;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: #f4f4f0;
  font-size: 1rem;
  margin-bottom: 6px;
}

.testimonial-card span {
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 850;
}

.client-partner-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-marquee {
  margin-top: 38px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(183, 230, 41, 0.12), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.partner-logo {
  width: clamp(178px, 16vw, 240px);
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 240, 225, 0.88));
  box-shadow: inset 0 0 0 1px rgba(16, 18, 7, 0.05), 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 230, 41, 0.42);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 7, 0.04), 0 0 28px rgba(183, 230, 41, 0.2);
}

.partner-logo img {
  max-width: 86%;
  max-height: 78px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(16, 18, 7, 0.16));
}

.partner-logo-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(183, 230, 41, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(17, 18, 14, 0.98), rgba(39, 42, 31, 0.94));
}

.partner-logo-dark img {
  filter: drop-shadow(0 0 18px rgba(183, 230, 41, 0.2));
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer p + p {
  margin-top: 8px;
}

.footer-logo {
  width: auto;
  height: 64px;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px rgba(183, 230, 41, 0.18));
}

.social-block {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.social-block > p {
  color: #eef4d7;
  font-weight: 850;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  color: #eafbff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(183, 230, 41, 0.14));
}

.social-links a:hover,
.social-links a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(183, 230, 41, 0.42);
  box-shadow: 0 0 24px rgba(183, 230, 41, 0.18);
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  box-shadow: 0 0 42px rgba(183, 230, 41, 0.55);
  cursor: pointer;
  animation: chatGlow 2.8s ease-in-out infinite;
}

.chat-toggle span {
  display: block;
  width: 24px;
  height: 18px;
  margin: auto;
  border: 2px solid white;
  border-radius: 8px 8px 8px 2px;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(360px, calc(100vw - 44px));
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 13, 21, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chatbot.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head small {
  margin-top: 4px;
  color: var(--green);
}

.chat-body {
  padding: 18px;
}

.bot-message,
.user-message {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.user-message {
  margin-left: 38px;
  background: rgba(183, 230, 41, 0.13);
  color: #eafbff;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-chips button,
.chat-input button {
  border: 1px solid rgba(183, 230, 41, 0.24);
  border-radius: 999px;
  background: rgba(183, 230, 41, 0.08);
  color: #eafbff;
  padding: 8px 10px;
  cursor: pointer;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-input input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: white;
  padding: 0 14px;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.thank-you-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(183, 230, 41, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(183, 230, 41, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(18, 18, 24, 0.96), rgba(11, 11, 15, 0.96));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), 0 0 42px rgba(183, 230, 41, 0.14);
  text-align: left;
}

.thank-you-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.thank-you-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  cursor: pointer;
  font-size: 1.35rem;
}

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

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

@keyframes dash {
  to { stroke-dashoffset: -42; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes auroraDrift {
  0% { margin-left: -6vw; filter: blur(24px); }
  100% { margin-left: 6vw; filter: blur(32px); }
}

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes imageSheen {
  0%, 42% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(130%); }
}

@keyframes scanner {
  to { transform: translateY(100%); }
}

@keyframes pulseNode {
  0%, 100% { transform: scale(1); opacity: 0.64; }
  50% { transform: scale(1.8); opacity: 1; }
}

@keyframes scanAcross {
  0%, 100% { left: 16%; opacity: 0.35; }
  50% { left: 84%; opacity: 1; }
}

@keyframes chatGlow {
  0%, 100% { box-shadow: 0 0 34px rgba(183, 230, 41, 0.42); }
  50% { box-shadow: 0 0 56px rgba(215, 255, 79, 0.5); }
}

@keyframes tradeBar {
  0%, 100% { transform: scaleY(0.82); filter: brightness(0.9); }
  50% { transform: scaleY(1.08); filter: brightness(1.18); }
}

@keyframes partnerScroll {
  to { transform: translateX(calc(-50% - 7px)); }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 22px;
    right: 22px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 12, 18, 0.94);
    backdrop-filter: blur(20px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .feature-band,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .showcase-grid,
  .agent-command,
  .trade-hero,
  .product-grid,
  .product-flow,
  .incorporation-hero,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .showcase-card.tall {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .nav-bar {
    min-height: 64px;
    border-radius: 18px;
  }

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 82px 0;
  }

  .hero {
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .metric-row,
  .card-grid.four,
  .agent-grid,
  .spec-grid,
  .pricing-grid,
  .trade-grid,
  .incorporation-grid,
  .product-flow ol {
    grid-template-columns: 1fr;
  }

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

  .product-card figure {
    height: 240px;
  }

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

  .floating-image-card {
    width: 112px;
    border-radius: 18px;
  }

  .image-card-one {
    left: 4px;
    top: 18px;
  }

  .image-card-two {
    right: 4px;
    bottom: 42px;
  }

  .stream-board {
    min-height: 380px;
  }

  .node-core {
    width: 104px;
    height: 104px;
  }

  .n1,
  .n2,
  .n3,
  .n4 {
    width: 70px;
    height: 52px;
  }

  .n1 { left: 24px; }
  .n2 { right: 24px; }
  .n3 { left: 22px; }
  .n4 { right: 22px; }

  .footer {
    display: grid;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-block {
    justify-items: start;
  }

  .showcase-grid {
    grid-template-rows: none;
  }

  .command-visual {
    min-height: 240px;
  }

  .trade-terminal,
  .trade-terminal img {
    min-height: 390px;
  }

  .trade-chart {
    min-height: 170px;
    gap: 8px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
