@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;500;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --panel: rgba(11, 17, 30, 0.64);
  --panel-strong: rgba(10, 15, 28, 0.8);
  --line: rgba(122, 173, 255, 0.24);
  --text: #f2f7ff;
  --muted: #a6b3cd;
  --blue: #3b82f6;
  --cyan: #2F8FFF;
  --green: #2F8FFF;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --max: 1280px;
  --section-gap: 120px;
  --section-title-size: clamp(1.6rem, 3vw, 2.4rem);
  --section-title-spacing: -0.04em;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

:where(section[id], form[id]) {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 100%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(11, 15, 23, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(115, 167, 255, 0.15);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  color: var(--text);
  text-decoration: none;
}

.mark {
  width: 55px;
  height: 60px;
  display: grid;
  place-items: center;
}

.mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(47, 143, 255, 0.35));
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  margin-left: 3px;
  margin-top: 14px;
}

.brand strong {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.gradient-text {
  background: linear-gradient(-135deg, #02BCFF 0%, #4584F5 50%, #5371F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-live {
  display: inline-block;
  background: linear-gradient(90deg, #0B3D91 0%, #02BCFF 25%, #4584F5 50%, #02BCFF 75%, #0B3D91 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradient-live-flow 8s ease-in-out infinite alternate;
}

@keyframes gradient-live-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-text-live {
    animation: none;
  }
}

.brand-name {
  text-shadow: 0 0 22px rgba(47, 143, 255, 0.2);
}

.brand-tld {
  font-size: 0.56em;
  margin-left: 1px;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle,
.mobile-nav,
.mobile-nav-backdrop {
  display: none;
}

.mobile-nav:not([hidden]),
.mobile-nav-backdrop:not([hidden]) {
  display: block;
}

.mobile-nav,
.mobile-nav-backdrop {
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.is-visible,
.mobile-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(115, 167, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 16, 28, 0.58);
  color: var(--text);
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menu-bird {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

.menu-bird img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.35));
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.7px;
  border-radius: 999px;
  background: #eef5ff;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 1;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.menu-toggle.is-open .menu-bird {
  opacity: 0.55;
}

.topnav a {
  color: #cdd8ef;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.topnav a:hover {
  color: #eaf2ff;
  text-shadow: 0 0 14px rgba(47, 143, 255, 0.45);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid rgba(47, 143, 255, 0.35);
  background: rgba(7, 18, 30, 0.82);
  color: #d9f7ff;
  font-size: 0.82rem;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(47, 143, 255, 0.5);
  animation: ping 2s ease-out infinite;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 44%, rgba(2, 188, 255, 0.15), transparent 28%),
    radial-gradient(circle at 76% 44%, rgba(83, 113, 243, 0.12), transparent 24%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.02), transparent 46%);
  z-index: -2;
}

.hero-stage::after {
  content: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 38px 0 44px;
}

.content {
  position: relative;
  padding: 24px 0px 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 255, 0.35);
  background: rgba(9, 17, 30, 0.34);
  backdrop-filter: blur(10px);
  color: #9fc9ff;
  padding: 8px 14px;
  font-size: 0.86rem;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(186, 214, 255, 0.04);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-family: "Space Grotesk", sans-serif;
  max-width: 9ch;
  text-shadow: 0 8px 28px rgba(2, 8, 20, 0.45);
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: text-up 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.line:nth-child(1) { animation-delay: 90ms; }
.line:nth-child(2) { animation-delay: 260ms; }

.line.accent {
  background: linear-gradient(-135deg, #02BCFF 0%, #4584F5 50%, #5371F3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 6px;
}

.subhead {
  margin: 22px 0 0;
  color: #c0cbdf;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  max-width: 560px;
  text-shadow: 0 6px 18px rgba(2, 8, 20, 0.3);
}

.cta-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(79, 140, 249, 0.42);
  padding: 0 20px;
  text-decoration: none;
  color: #f4f8ff;
  background: linear-gradient(135deg, rgba(2, 188, 255, 0.94), rgba(83, 113, 243, 0.88));
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 30px rgba(42, 124, 255, 0.35), 0 0 24px rgba(47, 143, 255, 0.2);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
}

.button:hover {
  transform: none !important;
  box-shadow: 0 4px 16px rgba(42, 124, 255, 0.5), 0 0 32px rgba(47, 143, 255, 0.35) !important;
}

.button.secondary {
  background: rgba(9, 15, 26, 0.55);
  border-color: rgba(109, 163, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(186, 214, 255, 0.08);
}

.button.secondary:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(47, 143, 255, 0.25) !important;
}

.header-cta {
  box-shadow: 0 10px 24px rgba(42, 124, 255, 0.28), 0 0 18px rgba(47, 143, 255, 0.2);
}

.hero-primary {
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, padding 220ms ease;
  overflow: visible !important;
}

.hero-primary .arrow {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.4rem;
  transition: max-width 220ms ease, opacity 220ms ease, margin-left 220ms ease;
}

.hero-primary:hover .arrow {
  max-width: 2ch;
  opacity: 1;
  margin-left: 4px;
}

.hero-secondary {
  background: rgba(8, 14, 25, 0.56);
  backdrop-filter: blur(8px);
  border-color: rgba(116, 173, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(183, 216, 255, 0.08);
}

.play-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  position: relative;
  color: #d6f7ff;
}

.play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 143, 255, 0.55);
  animation: play-radar 2.2s ease-out infinite;
}

.play-glyph {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  transform: translateX(1px);
}

.hero-secondary:hover .play-pulse {
  transform: scale(1.08);
}

.hero-secondary:hover .play-ring {
  border-color: rgba(47, 143, 255, 0.85);
  animation-duration: 1.5s;
}

.button.mini {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.85rem;
}

.preview {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.pulse-anchor {
  position: absolute;
  top: 48%;
  right: -33%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
}

.pulse-anchor::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.26), rgba(83, 113, 243, 0.14) 40%, transparent 72%);
  filter: blur(120px);
  pointer-events: none;
}

.pulse-anchor span {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.24);
  animation: pulse-wave 3.4s ease-out infinite;
}

.pulse-anchor span:nth-child(2) {
  animation-delay: 1s;
}

.pulse-anchor span:nth-child(3) {
  animation-delay: 2s;
}

.prompt-widget {
  position: absolute;
  top: 10%;
  right: 0%;
  transform: translate(-0%, -0%);
  width: min(548px, calc(100% - 24px));
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(113, 173, 255, 0.16);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(3, 7, 15, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 46px rgba(83, 113, 243, 0.12);
}

.widget-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  margin-bottom: 20px;
}

.mac-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #2F8FFF; }

.widget-title {
  color: #d8e5ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.prompt-field {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(71, 85, 105, 0.42);
  background: rgba(2, 6, 23, 0.48);
}

.prompt-label {
  font-size: 0.8rem;
  color: #9fbbe0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.prompt-text {
  margin: 0;
  color: #ebf3ff;
  line-height: 1.6;
  font-size: 1.08rem;
}

.prompt-status {
  margin: 18px 0 0;
  color: #84d6ff;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.step-track {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #a6b3cd;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.step-track span:nth-child(even) {
  color: #9fc9ff;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4cc8ff;
  box-shadow: 0 0 0 0 rgba(76, 200, 255, 0.5);
  animation: blue-ping 2s ease-out infinite;
}

.info-block {
  margin-top: var(--section-gap);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.linear-section {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.linear-section--tight {
  margin-top: var(--section-gap);
}

.positioning-block {
  margin-top: 20px;
}

.positioning-block + .linear-section {
  margin-top: 56px;
}

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

.positioning-card {
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.positioning-card h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.positioning-card--not {
  border-color: rgba(255, 115, 128, 0.3);
  background: linear-gradient(140deg, rgba(30, 10, 16, 0.72), rgba(17, 11, 19, 0.6));
}

.positioning-card--not h2 {
  color: #ffc4c8;
}

.positioning-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.tag--not {
  border: 1px solid rgba(255, 132, 143, 0.4);
  color: #f8b7c0;
  background: rgba(92, 24, 39, 0.28);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.positioning-card--is {
  border-color: rgba(47, 143, 255, 0.38);
  background:
    radial-gradient(circle at 18% 26%, rgba(47, 143, 255, 0.14), transparent 45%),
    linear-gradient(140deg, rgba(9, 18, 31, 0.86), rgba(3, 30, 45, 0.7));
}

.positioning-card--is h2 {
  color: #9fc9ff;
}

.positioning-kicker {
  margin: 0;
  color: #95d7eb;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.positioning-main {
  margin: 8px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #9fc9ff;
  text-shadow: 0 0 26px rgba(47, 143, 255, 0.36);
}

.positioning-note {
  margin: 0;
  color: #bbd2e8;
  line-height: 1.62;
}

.positioning-note-muted {
  margin: 12px 2px 0;
  color: #9ca7bc;
  line-height: 1.58;
  font-size: 0.92rem;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--section-title-size);
  letter-spacing: var(--section-title-spacing);
  color: #f2f7ff;
}

.section-head p {
  margin: 10px 0 0;
  max-width: 760px;
  color: #b8c4da;
  line-height: 1.7;
}

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

.linear-card {
  position: relative;
  padding: 0;
  min-height: 100%;
}

.linear-card:not(:last-child) {
  border-right: 0;
}

.card-visual {
  position: relative;
  min-height: 216px;
  margin-bottom: 18px;
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.action-visual span,
.wave-visual span,
.script-visual span,
.estate-visual span,
.commerce-visual span,
.saas-visual span {
  position: absolute;
  display: block;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.action-visual {
  overflow: visible;
}

.execution-engine-card {
  display: grid;
  place-items: center;
  overflow: visible;
  align-content: start;
}

.execution-scene {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 400 / 300;
}

.execution-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transition: transform 160ms ease-out;
}

.execution-bg-layer-1 {
  z-index: 1;
  opacity: 0.34;
}

.execution-bg-layer-2 {
  z-index: 0;
  opacity: 0.2;
}

.execution-bg-layer-3 {
  z-index: 0;
  opacity: 0.12;
}

.execution-svg {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.iso-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(47, 143, 255, 0.16));
}

.execution-scene .iso-svg {
  max-width: none;
  height: 100%;
}

.execution-caption {
  padding-top: 8px;
  color: #94a3b8;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.wave-visual {
  display: grid;
  place-items: center;
  overflow: visible;
  align-content: start;
}

.wave-scene {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 400 / 300;
}

.wave-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transition: transform 160ms ease-out;
}

.wave-bg-layer-1 {
  z-index: 1;
  opacity: 0.34;
}

.wave-bg-layer-2 {
  z-index: 0;
  opacity: 0.2;
}

.wave-bg-layer-3 {
  z-index: 0;
  opacity: 0.12;
}

.wave-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(47, 143, 255, 0.16));
}

.wave-scene .wave-svg {
  max-width: none;
  height: 100%;
}

.wave-mic {
  transform-origin: center;
  animation: mic-pulse 3s ease-in-out infinite;
}

.wave-mic rect:first-child {
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.3));
}

.voice-bar {
  transform-origin: center bottom;
  animation: voice-bar-breathe 1.4s ease-in-out infinite;
}

.vbar-1 { animation-delay: 0s; }
.vbar-2 { animation-delay: 0.18s; }
.vbar-3 { animation-delay: 0.36s; }
.vbar-4 { animation-delay: 0.24s; }
.vbar-5 { animation-delay: 0.12s; }

.wave-arrow-line {
  stroke-dasharray: 6 5;
  animation: arrow-flow 1.6s linear infinite;
}

.wave-arrow-head {
  animation: arrow-pulse 1.6s ease-in-out infinite;
}

.wave-text-line {
  transform-origin: left center;
  animation: text-line-fill 3.2s ease-in-out infinite;
}

.wave-text-line-1 { animation-delay: 0s; }
.wave-text-line-2 { animation-delay: 0.4s; }
.wave-text-line-3 { animation-delay: 0.8s; }

.wave-caret {
  animation: caret-blink 1s steps(2, start) infinite;
}

.wave-action-btn {
  fill: rgba(47, 143, 255, 0.22);
  stroke: rgba(47, 143, 255, 0.9);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.3));
  animation: approve-glow 2.4s infinite ease-in-out;
}

.script-visual {
  display: grid;
  place-items: center;
  overflow: visible;
  align-content: start;
}

.script-scene {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 400 / 300;
}

.script-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transition: transform 160ms ease-out;
}

.script-bg-layer-1 {
  z-index: 1;
  opacity: 0.34;
}

.script-bg-layer-2 {
  z-index: 0;
  opacity: 0.2;
}

.script-bg-layer-3 {
  z-index: 0;
  opacity: 0.12;
}

.script-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(47, 143, 255, 0.16));
}

.script-scene .script-svg {
  max-width: none;
  height: 100%;
}

.script-code-line {
  transform-origin: left center;
  animation: code-line-pulse 2.6s ease-in-out infinite;
}

.code-line-1 { animation-delay: 0s; }
.code-line-2 { animation-delay: 0.3s; }
.code-line-3 { animation-delay: 0.6s; }
.code-line-4 { animation-delay: 0.9s; }
.code-line-5 { animation-delay: 1.2s; }
.code-line-6 { animation-delay: 1.5s; }

.script-connect-line {
  stroke-dasharray: 6 5;
  animation: arrow-flow 1.6s linear infinite;
}

.script-connect-head {
  animation: arrow-pulse 1.6s ease-in-out infinite;
}

.browser-line {
  transform-origin: left center;
  animation: browser-line-fill 3.2s ease-in-out infinite;
}

.browser-line-1 { animation-delay: 0s; }
.browser-line-2 { animation-delay: 0.4s; }
.browser-line-3 { animation-delay: 0.8s; }

.script-ai-btn {
  fill: rgba(47, 143, 255, 0.22);
  stroke: rgba(47, 143, 255, 0.9);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.3));
  animation: approve-glow 2.4s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .script-bg-layer {
    transition: none !important;
  }
}

.iso-svg .pulse-line {
  stroke-dasharray: 36 16;
  animation: fill-form 3s infinite alternate ease-in-out;
}

.iso-svg .approve-btn {
  fill: rgba(47, 143, 255, 0.22);
  stroke: rgba(47, 143, 255, 0.9);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.3));
  animation: approve-glow 2.4s infinite ease-in-out;
}

/* Execution Engine enhanced animations */
.exec-window-frame {
  filter: drop-shadow(0 0 14px rgba(47, 143, 255, 0.12));
  animation: exec-frame-breathe 4s ease-in-out infinite;
}

.exec-field {
  transition: stroke 300ms ease, filter 300ms ease;
}

.exec-field-1 {
  animation: exec-field-focus 5s ease-in-out infinite;
}

.exec-field-2 {
  animation: exec-field-focus 5s ease-in-out 1.2s infinite;
}

.exec-progress-bar {
  transform-origin: left center;
  animation: exec-progress 5s ease-in-out infinite;
}

.approve-glow {
  animation: approve-glow-pulse 2.4s ease-in-out infinite;
}

.exec-checkmark {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: exec-check-draw 5s ease-in-out infinite;
}

.exec-bird {
  filter: drop-shadow(0 0 6px rgba(47, 143, 255, 0.5));
  animation: exec-bird-fly 5s ease-in-out infinite;
}

.exec-scan-line {
  opacity: 0;
  animation: exec-scan 5s ease-in-out infinite;
}

.exec-particle {
  animation: exec-particle-float 4s ease-in-out infinite;
}

.exec-particle.p1 { animation-delay: 0s; }
.exec-particle.p2 { animation-delay: 0.8s; }
.exec-particle.p3 { animation-delay: 1.6s; }
.exec-particle.p4 { animation-delay: 2.4s; }
.exec-particle.p5 { animation-delay: 3.2s; }

@keyframes exec-frame-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.08));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(47, 143, 255, 0.2));
  }
}

@keyframes exec-field-focus {
  0%, 100% {
    stroke: #27364D;
    filter: none;
  }
  20%, 45% {
    stroke: rgba(47, 143, 255, 0.7);
    filter: drop-shadow(0 0 6px rgba(47, 143, 255, 0.25));
  }
  50%, 70% {
    stroke: #27364D;
    filter: none;
  }
}

@keyframes exec-progress {
  0% {
    width: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    width: 186px;
    opacity: 1;
  }
  60%, 100% {
    width: 186px;
    opacity: 0;
  }
}

@keyframes approve-glow-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

@keyframes exec-check-draw {
  0%, 10% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  25%, 55% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  70%, 100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes exec-bird-fly {
  0%, 8% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
    transform: translate(10px, 10px) scale(0.9);
  }
  20% {
    transform: translate(80px, 25px) scale(0.95);
  }
  30% {
    transform: translate(140px, 35px) scale(1);
    opacity: 1;
  }
  35% {
    transform: translate(145px, 35px) scale(1.1) rotate(-5deg);
  }
  45% {
    transform: translate(140px, 35px) scale(1) rotate(0deg);
    opacity: 1;
  }
  55% {
    transform: translate(145px, 60px) scale(0.95);
  }
  65% {
    transform: translate(140px, 75px) scale(1);
    opacity: 1;
  }
  70% {
    transform: translate(145px, 75px) scale(1.1) rotate(-5deg);
  }
  78% {
    transform: translate(140px, 75px) scale(1) rotate(0deg);
    opacity: 1;
  }
  85% {
    transform: translate(180px, 100px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0;
  }
}

@keyframes exec-scan {
  0%, 10% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(130px);
    opacity: 0.8;
  }
  60%, 100% {
    transform: translateY(130px);
    opacity: 0;
  }
}

@keyframes exec-particle-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-8px) scale(1.4);
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .execution-bg-layer {
    transition: none !important;
  }
}

.action-visual .cursor {
  width: 18px;
  height: 18px;
  left: 14px;
  top: 12px;
  border: 1px solid rgba(2, 188, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(2, 188, 255, 0.28);
  animation: cursor-pulse 3s ease-in-out infinite;
}

.action-visual .cursor::before,
.action-visual .cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(2, 188, 255, 0.9);
}

.action-visual .cursor::before {
  width: 2px;
  height: 22px;
}

.action-visual .cursor::after {
  width: 22px;
  height: 2px;
}

.action-visual .ripple {
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(2, 188, 255, 0.28);
  animation: ripple-loop 3s ease-out infinite;
}

.wave-visual {
  overflow: visible;
}

.wave-bar,
.data-line {
  border-radius: 999px;
  position: absolute;
}

.wave-bar {
  bottom: 16px;
  width: 8px;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.18), rgba(2, 188, 255, 0.72));
  animation: wave-breathe 2.8s ease-in-out infinite;
}

.bar-1 { left: 18px; height: 16px; animation-delay: 0s; }
.bar-2 { left: 34px; height: 30px; animation-delay: 0.18s; }
.bar-3 { left: 50px; height: 22px; animation-delay: 0.36s; }
.bar-4 { left: 66px; height: 38px; animation-delay: 0.24s; }
.bar-5 { left: 82px; height: 26px; animation-delay: 0.12s; }

.data-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(2, 188, 255, 0.08), rgba(83, 113, 243, 0.72), rgba(2, 188, 255, 0.08));
  box-shadow: 0 0 16px rgba(83, 113, 243, 0.18);
}

.data-1 {
  left: 108px;
  right: 18px;
  top: 38px;
  animation: data-sweep 3.2s ease-in-out infinite;
}

.data-2 {
  left: 110px;
  right: 26px;
  top: 56px;
  opacity: 0.7;
  animation: data-sweep 3.2s ease-in-out infinite reverse;
}

.script-visual {
  overflow: visible;
}

.bridge {
  left: 50%;
  top: 50%;
  width: 84px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(2, 188, 255, 0.05), rgba(47, 143, 255, 0.9), rgba(83, 113, 243, 0.05));
  box-shadow: 0 0 18px rgba(2, 188, 255, 0.3);
  animation: bridge-glow 2.4s ease-in-out infinite;
}

.script-tag {
  inset: auto 0 12px 0;
  display: block;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  color: rgba(147, 197, 253, 0.92);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.estate-visual,
.commerce-visual,
.saas-visual {
  overflow: visible;
}

.estate-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.estate-roof,
.estate-base,
.estate-door,
.estate-form-badge,
.commerce-wave,
.commerce-cart,
.commerce-wheel,
.saas-track,
.saas-slider,
.saas-step {
  position: absolute;
  display: block;
}

.estate-roof {
  left: 24px;
  top: 24px;
  width: 72px;
  height: 34px;
  border-top: 1.5px solid rgba(2, 188, 255, 0.9);
  border-left: 1.5px solid rgba(2, 188, 255, 0.9);
  border-right: 1.5px solid rgba(2, 188, 255, 0.9);
  transform: skewY(-28deg) rotate(-45deg);
  transform-origin: left top;
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.24));
}

.estate-base {
  left: 34px;
  top: 44px;
  width: 60px;
  height: 34px;
  border: 1.5px solid rgba(147, 197, 253, 0.84);
  border-top-width: 0;
  border-radius: 0 0 8px 8px;
}

.estate-door {
  left: 58px;
  top: 52px;
  width: 10px;
  height: 18px;
  border-radius: 5px 5px 3px 3px;
  border: 1.5px solid rgba(147, 197, 253, 0.84);
}

.estate-form-badge {
  left: 112px;
  top: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(2, 188, 255, 0.82);
  color: rgba(226, 232, 240, 0.96);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(47, 143, 255, 0.28);
  animation: check-glow 3.2s ease-in-out infinite;
}

.estate-form-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(2, 188, 255, 0.2);
}

.commerce-wave {
  left: 58px;
  right: 58px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 143, 255, 0.02), rgba(47, 143, 255, 0.9), rgba(83, 113, 243, 0.02));
  filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.26));
  transform-origin: center;
  animation: wave-float 2.6s ease-in-out infinite;
}

.wave-1 {
  top: 22px;
  opacity: 0.8;
}

.wave-2 {
  top: 32px;
  opacity: 0.45;
  animation-delay: 0.24s;
}

.commerce-cart {
  left: 70px;
  top: 44px;
  width: 62px;
  height: 28px;
  border-bottom: 1.5px solid rgba(2, 188, 255, 0.92);
  border-left: 1.5px solid rgba(2, 188, 255, 0.92);
  transform: skewX(-12deg);
}

.commerce-cart::before,
.commerce-cart::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(147, 197, 253, 0.92);
  bottom: -10px;
  width: 10px;
  height: 10px;
}

.commerce-cart::before {
  left: 8px;
}

.commerce-cart::after {
  right: 10px;
}

.commerce-wheel {
  bottom: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(147, 197, 253, 0.92);
  box-shadow: 0 0 10px rgba(47, 143, 255, 0.18);
  animation: wheel-pulse 2.8s ease-in-out infinite;
}

.wheel-1 {
  left: 76px;
}

.wheel-2 {
  left: 118px;
}

.saas-track {
  left: 24px;
  right: 24px;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.1), rgba(2, 188, 255, 0.86), rgba(148, 163, 184, 0.1));
  box-shadow: 0 0 12px rgba(2, 188, 255, 0.22);
}

.saas-step {
  top: 32px;
  width: 22px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 255, 0.8);
  color: rgba(226, 232, 240, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.62rem;
  background: rgba(2, 6, 23, 0.04);
  box-shadow: 0 0 0 0 rgba(47, 143, 255, 0.24);
}

.step-1 { left: 20px; }
.step-2 { left: calc(50% - 11px); }
.step-3 { right: 20px; }

.saas-slider {
  top: 37px;
  left: 20px;
  width: 22px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 143, 255, 0.95);
  box-shadow: 0 0 14px rgba(47, 143, 255, 0.34);
  animation: step-slide 4.2s ease-in-out infinite;
}

.linear-card h3 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.linear-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

@keyframes sheen {
  0%, 75% { transform: translateX(-140%); }
  100% { transform: translateX(140%); }
}

@keyframes cursor-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 188, 255, 0.22);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(2, 188, 255, 0);
  }
}

@keyframes ripple-loop {
  0% {
    transform: scale(0.72);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}

@keyframes fill-form {
  0% {
    stroke-dashoffset: 52;
    opacity: 0.34;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes approve-glow {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

@keyframes wave-breathe {
  0%, 100% { transform: scaleY(0.9); opacity: 0.68; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

@keyframes data-sweep {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(8px); }
}

@keyframes layer-snap {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
}

@keyframes bridge-glow {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

@keyframes check-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes wave-float {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.72; }
  50% { transform: translateY(-2px) scaleX(1.04); opacity: 1; }
}

@keyframes wheel-pulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes step-slide {
  0% { left: 20px; }
  33% { left: calc(50% - 11px); }
  66% { left: calc(100% - 42px); }
  100% { left: 20px; }
}

@keyframes mic-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes voice-bar-breathe {
  0%, 100% {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes arrow-flow {
  0% {
    stroke-dashoffset: 22;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes arrow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(2px);
  }
}

@keyframes text-line-fill {
  0%, 100% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes caret-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes code-line-pulse {
  0%, 100% {
    transform: scaleX(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes browser-line-fill {
  0%, 100% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.info-block h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--section-title-size);
  letter-spacing: var(--section-title-spacing);
}

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

.feature {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.feature small {
  color: #95caf7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.feature h3 {
  margin: 10px 0 8px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.how-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.how-step {
  position: relative;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(118, 168, 255, 0.22);
  background: rgba(10, 18, 31, 0.5);
  color: #dde8fa;
  font-weight: 600;
  line-height: 1.4;
}

.how-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(47, 143, 255, 0.84);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(47, 143, 255, 0.3);
}

.how-step-no {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: #9fc9ff;
  margin-bottom: 6px;
}

.how-step-text {
  text-align: left;
}

/* Widget state sequence for How it works step 01 */
.step-demo {
  width: 100%;
  height: 120px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-state-sequence {
  position: relative;
  width: 280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-state-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.widget-state-item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.widget-state-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 84%, rgba(133, 97, 244, 0.34) 0%, rgba(133, 97, 244, 0.08) 38%, rgba(133, 97, 244, 0) 68%),
    radial-gradient(circle at 50% 56%, rgba(7, 34, 51, 0.7), rgba(3, 14, 26, 0.84) 64%, rgba(2, 8, 18, 0.95) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(47, 143, 255, 0.25);
  animation: widget-fab-pulse 2s ease-in-out infinite;
}

.widget-state-fab img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(47, 143, 255, 0.5));
}

.widget-state-panel {
  width: 260px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: linear-gradient(155deg, rgba(8, 13, 24, 0.96), rgba(12, 22, 38, 0.93));
  box-shadow: 0 20px 40px rgba(1, 5, 12, 0.62), 0 0 20px rgba(47, 143, 255, 0.18);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 6px;
}

.widget-state-panel-header {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.widget-state-panel-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(47, 143, 255, 0.4));
}

.widget-state-panel-body {
  min-width: 0;
}

.widget-state-input {
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: rgba(4, 12, 22, 0.84);
  color: #e9f3ff;
  padding: 0 8px;
  font-size: 0.76rem;
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-state-panel-actions {
  display: flex;
  gap: 4px;
}

.widget-state-mic,
.widget-state-send,
.widget-state-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.widget-state-mic {
  border: 1px solid rgba(118, 168, 255, 0.28);
  color: #d6f6ff;
  background: rgba(6, 16, 28, 0.78);
}

.widget-state-mic--active {
  border-color: rgba(47, 143, 255, 0.62);
  background: rgba(11, 47, 84, 0.54);
  color: #e4f8ff;
}

.widget-state-voice-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.widget-state-voice-bars span {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(121, 244, 255, 0.98), rgba(56, 132, 245, 0.92));
  animation: widget-voice-bar 880ms ease-in-out infinite;
}

.widget-state-voice-bars span:nth-child(1) { height: 6px; animation-delay: 0ms; }
.widget-state-voice-bars span:nth-child(2) { height: 10px; animation-delay: 90ms; }
.widget-state-voice-bars span:nth-child(3) { height: 14px; animation-delay: 170ms; }
.widget-state-voice-bars span:nth-child(4) { height: 10px; animation-delay: 250ms; }
.widget-state-voice-bars span:nth-child(5) { height: 6px; animation-delay: 320ms; }

.widget-state-send {
  border: 1px solid rgba(47, 143, 255, 0.62);
  color: #eafffb;
  background: linear-gradient(160deg, rgba(2, 188, 255, 0.92), rgba(69, 132, 245, 0.94));
  font-size: 1rem;
  opacity: 0.5;
}

.widget-state-send--active {
  opacity: 1;
  box-shadow: 0 0 12px rgba(47, 143, 255, 0.4);
}

.widget-state-close {
  border: 1px solid rgba(118, 168, 255, 0.28);
  color: #d6f6ff;
  background: rgba(6, 16, 28, 0.78);
  font-size: 1.1rem;
}

@keyframes widget-fab-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(47, 143, 255, 0.25); }
  50% { box-shadow: 0 0 30px rgba(47, 143, 255, 0.45); }
}

@keyframes widget-voice-bar {
  0%, 100% { transform: scaleY(0.5); opacity: 0.48; }
  50% { transform: scaleY(1); opacity: 1; }
}

.principles-block {
  margin-top: 64px;
}

.principles-block h3 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  letter-spacing: -0.02em;
  color: #f2f7ff;
}

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

.principle-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  padding: 16px 14px 15px 58px;
}

.principle-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(47, 143, 255, 0.42);
  background: rgba(47, 143, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(167, 237, 255, 0.08), 0 0 14px rgba(47, 143, 255, 0.16);
}

.principle-icon::before,
.principle-icon::after {
  content: "";
  position: absolute;
}

.principle-icon--trust::before {
  left: 9px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid rgba(140, 250, 255, 0.95);
  border-bottom: 2px solid rgba(140, 250, 255, 0.95);
  transform: rotate(-45deg);
}

.principle-icon--eu::before {
  left: 7px;
  right: 7px;
  top: 8px;
  height: 4px;
  border-radius: 999px;
  background: rgba(140, 250, 255, 0.95);
  box-shadow: 0 6px 0 rgba(140, 250, 255, 0.72), 0 12px 0 rgba(140, 250, 255, 0.56);
}

.principle-card h4 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #dbf3ff;
  font-size: 0.99rem;
}

.principle-card p {
  margin: 0;
  color: #b7c8e3;
  line-height: 1.58;
  font-size: 0.92rem;
}

.feature-list div {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #d8e3f8;
  line-height: 1.6;
}

.steps strong {
  color: #9bd0ff;
}

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

.faq-intro {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-intro p {
  margin: 0;
  color: #bfccdf;
  line-height: 1.6;
}

.faq-trigger {
  min-height: 38px;
  padding: 0 16px;
  white-space: nowrap;
}

.faq-list details {
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(120, 168, 255, 0.16);
  background: transparent;
  padding: 14px 0 4px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #e7efff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-list summary::marker,
.faq-list summary::-webkit-details-marker {
  display: none;
  content: "";
}

.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(118, 168, 255, 0.28);
  color: #9fc9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  border-color: rgba(47, 143, 255, 0.48);
  background: rgba(47, 143, 255, 0.09);
}

.faq-list p {
  margin: 10px 0 4px;
  color: var(--muted);
  line-height: 1.6;
}

.waitlist {
  margin-top: var(--section-gap);
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.waitlist h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--section-title-size);
  letter-spacing: var(--section-title-spacing);
}

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

.waitlist-form {
  margin-top: 16px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: #c6d6f2;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  max-width: 760px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  border-radius: 14px;
  background: rgba(6, 12, 24, 0.45);
  padding: 6px;
}

.form-row input {
  flex: 1;
  min-height: 48px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: #eff5ff;
  padding: 0 14px;
  font-size: 1rem;
}

.form-row input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(47, 143, 255, 0.62);
}

.form-row input::placeholder {
  color: rgba(201, 226, 255, 0.48);
}

.form-row .button {
  min-height: 48px;
  padding: 0 18px;
}

.microcopy {
  margin-top: 10px;
  color: #8296bb;
  font-size: 0.84rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 0 36px;
  color: #7f92b8;
  border-top: 1px solid rgba(120, 168, 255, 0.12);
  margin-top: var(--section-gap);
}

.footer-left {
  display: grid;
  gap: 8px;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #aebdda;
  text-decoration: none;
  font-size: 0.88rem;
}

.legal-links a:hover {
  color: #e5efff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-right: 96px;
}

.socials a {
  color: #b9c9e6;
  text-decoration: none;
}

.socials a:hover {
  color: #eef4ff;
}

/* Careers page */

.topnav a[aria-current="page"],
.mobile-nav-links a[aria-current="page"] {
  color: #9fc9ff;
}

.careers-hero {
  margin-top: 40px;
  max-width: 760px;
}

.careers-title {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #f2f7ff;
}

.careers-subhead {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.careers-values {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-card {
  border-radius: 16px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  padding: 18px 18px 20px;
}

.value-card h4 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #dbf3ff;
  font-size: 0.99rem;
}

.value-card p {
  margin: 0;
  color: #b7c8e3;
  line-height: 1.58;
  font-size: 0.92rem;
}

.role-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.role-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: rgba(9, 16, 28, 0.55);
  color: #c6d6f2;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.role-filter-pill:hover {
  color: #eaf2ff;
}

.role-filter-pill.is-active {
  border-color: rgba(47, 143, 255, 0.48);
  background: rgba(47, 143, 255, 0.1);
  color: #9fc9ff;
}

.role-list {
  display: grid;
  gap: 12px;
}

.role-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  overflow: hidden;
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.role-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #02bcff, #5371f3);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-card[data-department="Growth & Marketing"]::before {
  background: linear-gradient(180deg, #ff8bd0, #a78bfa);
}

.role-card:hover {
  border-color: rgba(47, 143, 255, 0.3);
  box-shadow: 0 18px 44px rgba(2, 10, 24, 0.35), 0 0 26px rgba(47, 143, 255, 0.08);
}

.role-card.is-open {
  border-color: rgba(47, 143, 255, 0.4);
  background: rgba(9, 18, 31, 0.72);
}

.role-card.is-open::before {
  transform: scaleY(1);
}

.role-summary {
  all: unset;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  overflow: hidden;
}

.role-summary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(47, 143, 255, 0.08) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.role-card:hover .role-summary::after {
  transform: translateX(120%);
}

.role-index {
  flex: 0 0 auto;
  min-width: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5f7aa8;
  transition: color 260ms ease;
}

.role-card.is-open .role-index {
  color: #9fc9ff;
}

.role-summary-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #eef4ff;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(118, 168, 255, 0.28);
  background: rgba(47, 143, 255, 0.06);
  color: #9fc9ff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.role-card[data-department="Growth & Marketing"] .role-tag:first-child {
  border-color: rgba(196, 142, 255, 0.4);
  background: rgba(167, 139, 250, 0.1);
  color: #e3c9ff;
}

.role-chevron {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(118, 168, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 260ms ease, background 260ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #9fc9ff;
  border-bottom: 2px solid #9fc9ff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.role-card.is-open .role-chevron {
  border-color: rgba(47, 143, 255, 0.5);
  background: rgba(47, 143, 255, 0.12);
  transform: rotate(180deg);
}

.role-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-card.is-open .role-panel {
  grid-template-rows: 1fr;
}

.role-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.role-body {
  padding: 0 20px 22px;
  color: #b8c4da;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.role-card.is-open .role-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.role-body h4 {
  margin: 16px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #dbf3ff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.role-body ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.role-apply {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.role-copy-link {
  padding: 0;
  border: 0;
  background: none;
  color: #8bb8ff;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.role-copy-link:hover {
  color: #eaf2ff;
}

.role-copy-link.is-copied {
  color: #9fc9ff;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .role-card,
  .role-card::before,
  .role-summary::after,
  .role-chevron,
  .role-panel,
  .role-body {
    transition: none !important;
  }
}

.careers-empty {
  border-radius: 18px;
  border: 1px dashed rgba(118, 168, 255, 0.28);
  background: rgba(9, 16, 28, 0.4);
  padding: 28px 24px;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.careers-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.demo-modal {
  width: min(560px, calc(100% - 32px));
  border: 1px solid rgba(116, 169, 255, 0.2);
  border-radius: 18px;
  background: rgba(8, 14, 27, 0.88);
  color: #eef4ff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.demo-modal::backdrop {
  background: rgba(1, 5, 12, 0.72);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(132, 176, 255, 0.32);
  color: #c7daff;
  background: rgba(10, 18, 34, 0.7);
  cursor: pointer;
  font-size: 1.4rem;
}

.demo-glow {
  margin-top: 16px;
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(113, 167, 255, 0.3);
  background:
    radial-gradient(circle at center, rgba(47, 143, 255, 0.2), rgba(59, 130, 246, 0.1) 42%, transparent 72%),
    rgba(5, 11, 20, 0.9);
  color: #c4e9ff;
}

.widget-shell {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  justify-items: end;
  --widget-wave-1: rgba(2, 188, 255, 0.44);
  --widget-wave-2: rgba(69, 132, 245, 0.24);
  --widget-wave-3: rgba(83, 113, 243, 0.1);
  --widget-wave-glow: rgba(47, 143, 255, 0.16);
  --widget-panel-bg: linear-gradient(155deg, rgba(8, 13, 24, 0.96), rgba(12, 22, 38, 0.93));
  --widget-panel-border: rgba(118, 168, 255, 0.24);
  --widget-panel-shadow: rgba(47, 143, 255, 0.18);
  --widget-bird-core: rgba(233, 243, 255, 0.96);
  --widget-bird-accent: rgba(2, 188, 255, 0.9);
  --widget-bird-glow: rgba(47, 143, 255, 0.24);
  transition: opacity 180ms ease, transform 180ms ease;
}

.widget-shell.is-hero-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.widget-shell[data-widget-theme="ember"] {
  --widget-wave-1: rgba(255, 162, 88, 0.4);
  --widget-wave-2: rgba(255, 94, 77, 0.22);
  --widget-wave-3: rgba(255, 196, 112, 0.08);
  --widget-wave-glow: rgba(255, 127, 80, 0.16);
  --widget-panel-bg: linear-gradient(155deg, rgba(24, 14, 13, 0.96), rgba(41, 18, 17, 0.93));
  --widget-panel-border: rgba(255, 166, 110, 0.28);
  --widget-panel-shadow: rgba(255, 127, 80, 0.18);
  --widget-bird-core: rgba(255, 242, 232, 0.96);
  --widget-bird-accent: rgba(255, 139, 95, 0.92);
  --widget-bird-glow: rgba(255, 127, 80, 0.24);
}

.widget-shell[data-widget-theme="mono"] {
  --widget-wave-1: rgba(226, 232, 240, 0.34);
  --widget-wave-2: rgba(148, 163, 184, 0.2);
  --widget-wave-3: rgba(226, 232, 240, 0.05);
  --widget-wave-glow: rgba(148, 163, 184, 0.14);
  --widget-panel-bg: linear-gradient(155deg, rgba(11, 15, 23, 0.97), rgba(17, 24, 39, 0.94));
  --widget-panel-border: rgba(148, 163, 184, 0.24);
  --widget-panel-shadow: rgba(148, 163, 184, 0.16);
  --widget-bird-core: rgba(245, 247, 250, 0.94);
  --widget-bird-accent: rgba(203, 213, 225, 0.9);
  --widget-bird-glow: rgba(226, 232, 240, 0.18);
}

.widget-fab {
  width: 68px;
  height: 68px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 46% 84%, rgba(133, 97, 244, 0.34) 0%, rgba(133, 97, 244, 0.08) 38%, rgba(133, 97, 244, 0) 68%),
    radial-gradient(circle at 50% 56%, rgba(7, 34, 51, 0.7), rgba(3, 14, 26, 0.84) 64%, rgba(2, 8, 18, 0.95) 100%);
  overflow: visible;
  cursor: pointer;
  box-shadow: none;
  transform-origin: center;
  animation: bubble-float 4.8s ease-in-out infinite;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 1;
  isolation: isolate;
}

.widget-fab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M 92 50 C 92.84 51.37 93.88 52.88 94.33 54.37 C 94.79 55.85 95.01 57.47 94.72 58.9 C 94.44 60.32 93.61 61.73 92.63 62.93 C 91.64 64.13 90.11 65.13 88.8 66.07 C 87.5 67.02 85.94 67.72 84.8 68.6 C 83.65 69.48 82.64 70.26 81.93 71.33 C 81.21 72.41 80.87 73.64 80.5 75.03 C 80.13 76.42 80.07 78.13 79.7 79.7 C 79.33 81.27 78.99 83.06 78.26 84.43 C 77.53 85.8 76.54 87.11 75.33 87.92 C 74.12 88.72 72.54 89.14 71 89.29 C 69.46 89.43 67.66 89.06 66.07 88.8 C 64.48 88.55 62.88 87.95 61.45 87.76 C 60.02 87.57 58.76 87.41 57.49 87.66 C 56.23 87.91 55.12 88.54 53.87 89.26 C 52.62 89.99 51.37 91.16 50 92 C 48.63 92.84 47.12 93.88 45.63 94.33 C 44.15 94.79 42.53 95.01 41.1 94.72 C 39.68 94.44 38.27 93.61 37.07 92.63 C 35.87 91.64 34.87 90.11 33.93 88.8 C 32.98 87.5 32.28 85.94 31.4 84.8 C 30.52 83.65 29.74 82.64 28.67 81.93 C 27.59 81.21 26.36 80.87 24.97 80.5 C 23.58 80.13 21.87 80.07 20.3 79.7 C 18.73 79.33 16.94 78.99 15.57 78.26 C 14.2 77.53 12.89 76.54 12.08 75.33 C 11.28 74.12 10.86 72.54 10.71 71 C 10.57 69.46 10.94 67.66 11.2 66.07 C 11.45 64.48 12.05 62.88 12.24 61.45 C 12.43 60.02 12.59 58.76 12.34 57.49 C 12.09 56.23 11.46 55.12 10.74 53.87 C 10.01 52.62 8.84 51.37 8 50 C 7.16 48.63 6.12 47.12 5.67 45.63 C 5.21 44.15 4.99 42.53 5.28 41.1 C 5.56 39.68 6.39 38.27 7.37 37.07 C 8.36 35.87 9.89 34.87 11.2 33.93 C 12.5 32.98 14.06 32.28 15.2 31.4 C 16.35 30.52 17.36 29.74 18.07 28.67 C 18.79 27.59 19.13 26.36 19.5 24.97 C 19.87 23.58 19.93 21.87 20.3 20.3 C 20.67 18.73 21.01 16.94 21.74 15.57 C 22.47 14.2 23.46 12.89 24.67 12.08 C 25.88 11.28 27.46 10.86 29 10.71 C 30.54 10.57 32.34 10.94 33.93 11.2 C 35.52 11.45 37.12 12.05 38.55 12.24 C 39.98 12.43 41.24 12.59 42.51 12.34 C 43.77 12.09 44.88 11.46 46.13 10.74 C 47.38 10.01 48.63 8.84 50 8 C 51.37 7.16 52.88 6.12 54.37 5.67 C 55.85 5.21 57.47 4.99 58.9 5.28 C 60.32 5.56 61.73 6.39 62.93 7.37 C 64.13 8.36 65.13 9.89 66.07 11.2 C 67.02 12.5 67.72 14.06 68.6 15.2 C 69.48 16.35 70.26 17.36 71.33 18.07 C 72.41 18.79 73.64 19.13 75.03 19.5 C 76.42 19.87 78.13 19.93 79.7 20.3 C 81.27 20.67 83.06 21.01 84.43 21.74 C 85.8 22.47 87.11 23.46 87.92 24.67 C 88.72 25.88 89.14 27.46 89.29 29 C 89.43 30.54 89.06 32.34 88.8 33.93 C 88.55 35.52 87.95 37.12 87.76 38.55 C 87.57 39.98 87.41 41.24 87.66 42.51 C 87.91 43.77 88.54 44.88 89.26 46.13 C 89.99 47.38 91.16 48.63 92 50 Z' fill='%23071325' fill-opacity='0.44'/%3E%3Cpath d='M 92 50 C 92.84 51.37 93.88 52.88 94.33 54.37 C 94.79 55.85 95.01 57.47 94.72 58.9 C 94.44 60.32 93.61 61.73 92.63 62.93 C 91.64 64.13 90.11 65.13 88.8 66.07 C 87.5 67.02 85.94 67.72 84.8 68.6 C 83.65 69.48 82.64 70.26 81.93 71.33 C 81.21 72.41 80.87 73.64 80.5 75.03 C 80.13 76.42 80.07 78.13 79.7 79.7 C 79.33 81.27 78.99 83.06 78.26 84.43 C 77.53 85.8 76.54 87.11 75.33 87.92 C 74.12 88.72 72.54 89.14 71 89.29 C 69.46 89.43 67.66 89.06 66.07 88.8 C 64.48 88.55 62.88 87.95 61.45 87.76 C 60.02 87.57 58.76 87.41 57.49 87.66 C 56.23 87.91 55.12 88.54 53.87 89.26 C 52.62 89.99 51.37 91.16 50 92 C 48.63 92.84 47.12 93.88 45.63 94.33 C 44.15 94.79 42.53 95.01 41.1 94.72 C 39.68 94.44 38.27 93.61 37.07 92.63 C 35.87 91.64 34.87 90.11 33.93 88.8 C 32.98 87.5 32.28 85.94 31.4 84.8 C 30.52 83.65 29.74 82.64 28.67 81.93 C 27.59 81.21 26.36 80.87 24.97 80.5 C 23.58 80.13 21.87 80.07 20.3 79.7 C 18.73 79.33 16.94 78.99 15.57 78.26 C 14.2 77.53 12.89 76.54 12.08 75.33 C 11.28 74.12 10.86 72.54 10.71 71 C 10.57 69.46 10.94 67.66 11.2 66.07 C 11.45 64.48 12.05 62.88 12.24 61.45 C 12.43 60.02 12.59 58.76 12.34 57.49 C 12.09 56.23 11.46 55.12 10.74 53.87 C 10.01 52.62 8.84 51.37 8 50 C 7.16 48.63 6.12 47.12 5.67 45.63 C 5.21 44.15 4.99 42.53 5.28 41.1 C 5.56 39.68 6.39 38.27 7.37 37.07 C 8.36 35.87 9.89 34.87 11.2 33.93 C 12.5 32.98 14.06 32.28 15.2 31.4 C 16.35 30.52 17.36 29.74 18.07 28.67 C 18.79 27.59 19.13 26.36 19.5 24.97 C 19.87 23.58 19.93 21.87 20.3 20.3 C 20.67 18.73 21.01 16.94 21.74 15.57 C 22.47 14.2 23.46 12.89 24.67 12.08 C 25.88 11.28 27.46 10.86 29 10.71 C 30.54 10.57 32.34 10.94 33.93 11.2 C 35.52 11.45 37.12 12.05 38.55 12.24 C 39.98 12.43 41.24 12.59 42.51 12.34 C 43.77 12.09 44.88 11.46 46.13 10.74 C 47.38 10.01 48.63 8.84 50 8 C 51.37 7.16 52.88 6.12 54.37 5.67 C 55.85 5.21 57.47 4.99 58.9 5.28 C 60.32 5.56 61.73 6.39 62.93 7.37 C 64.13 8.36 65.13 9.89 66.07 11.2 C 67.02 12.5 67.72 14.06 68.6 15.2 C 69.48 16.35 70.26 17.36 71.33 18.07 C 72.41 18.79 73.64 19.13 75.03 19.5 C 76.42 19.87 78.13 19.93 79.7 20.3 C 81.27 20.67 83.06 21.01 84.43 21.74 C 85.8 22.47 87.11 23.46 87.92 24.67 C 88.72 25.88 89.14 27.46 89.29 29 C 89.43 30.54 89.06 32.34 88.8 33.93 C 88.55 35.52 87.95 37.12 87.76 38.55 C 87.57 39.98 87.41 41.24 87.66 42.51 C 87.91 43.77 88.54 44.88 89.26 46.13 C 89.99 47.38 91.16 48.63 92 50 Z' stroke='%2300F0FF' stroke-opacity='0.95' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0.6;
  filter: drop-shadow(0 0 4px rgba(47, 143, 255, 0.24));
  pointer-events: none;
  z-index: 2;
  transform-origin: center;
  transform: translate(-50%, -50%);
  animation: wave-ring-drift 44s linear infinite;
  transition: opacity 140ms ease;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 50% 58%, var(--widget-wave-glow) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(135deg, var(--widget-wave-1) 0%, var(--widget-wave-2) 52%, var(--widget-wave-3) 100%);
  -webkit-mask: center / contain no-repeat url("../images/widget-wave-ring.svg");
  mask: center / contain no-repeat url("../images/widget-wave-ring.svg");
  opacity: 0.82;
  filter: none;
}

.widget-soap {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.widget-logo {
  position: relative;
  z-index: 1;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, var(--widget-bird-core) 0%, var(--widget-bird-accent) 58%, var(--widget-bird-core) 100%);
  -webkit-mask: center / contain no-repeat url("../images/inzee-logo.svg");
  mask: center / contain no-repeat url("../images/inzee-logo.svg");
  box-shadow: 0 0 14px var(--widget-bird-glow);
  transition: opacity 140ms ease, transform 140ms ease;
}

.widget-logo--fab {
  width: 64%;
  height: 64%;
  transform: translate(-3px, 2px);
}

.widget-logo--panel {
  width: 35px;
  height: 40px;
}

.widget-logo {
  display: none;
}

.widget-fab img {
  position: relative;
  z-index: 2;
  width: 64%;
  height: 64%;
  object-fit: contain;
  transform: translate(-3px, 2px) scaleX(-1);
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(88%) sepia(71%) saturate(5608%) hue-rotate(133deg) brightness(102%) contrast(103%);
  transition: opacity 140ms ease;
  pointer-events: none;
}

.widget-fab:hover,
.widget-fab:focus-visible {
  border-color: transparent;
  box-shadow: none;
}

.widget-fab:hover::before,
.widget-fab:focus-visible::before {
  opacity: 1;
}

.widget-fab:hover img,
.widget-fab:focus-visible img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(88%) sepia(71%) saturate(5608%) hue-rotate(133deg) brightness(102%) contrast(103%);
}

.widget-fab img {
  opacity: 0.7;
  filter: none;
}

.widget-fab:hover img,
.widget-fab:focus-visible img {
  opacity: 1;
  filter: none;
}

.widget-fab:focus-visible {
  outline: none;
}

.widget-fab {
  background: transparent;
}

.widget-fab::before {
  background: center / contain no-repeat url("../images/widget-wave-ring.svg");
  opacity: 0.7;
}

.widget-panel {
  margin-top: 12px;
  min-width: 308px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: linear-gradient(155deg, rgba(8, 13, 24, 0.96), rgba(12, 22, 38, 0.93));
  box-shadow: 0 26px 50px rgba(1, 5, 12, 0.62), 0 0 24px rgba(47, 143, 255, 0.18);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  transform-origin: right bottom;
  animation: panel-spring-in 280ms cubic-bezier(0.2, 1.2, 0.2, 1);
  position: relative;
  z-index: 1;
  border-color: var(--widget-panel-border);
  background: var(--widget-panel-bg);
  box-shadow: 0 26px 50px rgba(1, 5, 12, 0.62), 0 0 24px var(--widget-panel-shadow);
}

.widget-panel-leading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.widget-panel-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.widget-panel-brand {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.widget-panel-brand::before,
.widget-panel-brand::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.widget-panel-brand::before {
  background: radial-gradient(circle, rgba(2, 188, 255, 0.14) 0%, rgba(69, 132, 245, 0.08) 48%, rgba(69, 132, 245, 0) 78%);
  filter: blur(6px);
  transform: scale(1.1);
}

.widget-panel-brand::after {
  background: radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.025) 30%, rgba(255, 255, 255, 0) 64%);
  transform: scale(0.9);
}

.widget-panel-brand::before {
  background: radial-gradient(circle, var(--widget-bird-glow) 0%, rgba(69, 132, 245, 0.08) 48%, rgba(69, 132, 245, 0) 78%);
}

.widget-panel-brand::after {
  background: radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0) 64%);
}

.widget-panel-brand img {
  width: 35px;
  height: 40px;
  object-fit: contain;
  transform: none;
  filter: none;
  position: relative;
  z-index: 2;
}

.widget-voice-indicator {
  height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.widget-voice-indicator span {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(121, 244, 255, 0.98), rgba(56, 132, 245, 0.92));
  transform-origin: center bottom;
  animation: voice-bars 880ms ease-in-out infinite;
}

.widget-voice-indicator span:nth-child(1) { height: 10px; animation-delay: 0ms; }
.widget-voice-indicator span:nth-child(2) { height: 18px; animation-delay: 90ms; }
.widget-voice-indicator span:nth-child(3) { height: 24px; animation-delay: 170ms; }
.widget-voice-indicator span:nth-child(4) { height: 16px; animation-delay: 250ms; }
.widget-voice-indicator span:nth-child(5) { height: 11px; animation-delay: 320ms; }

.widget-panel-title {
  font-family: "Space Grotesk", sans-serif;
  color: #e9f3ff;
  font-size: 0.86rem;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.widget-panel-input {
  width: 100%;
  min-width: 0;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: rgba(4, 12, 22, 0.84);
  color: #e9f3ff;
  padding: 0 10px;
  font-size: 0.84rem;
  outline: none;
}

.widget-panel-input:focus {
  border-color: rgba(47, 143, 255, 0.45);
}

.widget-panel-input::placeholder {
  color: rgba(201, 226, 255, 0.48);
}

.widget-panel-status {
  margin-top: 4px;
  color: #9fc9ff;
  font-size: 0.72rem;
}

.widget-panel-mic,
.widget-panel-send,
.widget-panel-close {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 1;
}

.widget-panel-mic {
  border: 1px solid rgba(118, 168, 255, 0.28);
  color: #d6f6ff;
  background: rgba(6, 16, 28, 0.78);
}

.widget-panel-mic-icon--stop {
  display: none;
}

.widget-panel-mic.is-listening {
  border-color: rgba(47, 143, 255, 0.62);
  background: rgba(11, 47, 84, 0.54);
  color: #e4f8ff;
}

.widget-panel-mic.is-listening .widget-panel-mic-icon--mic {
  display: none;
}

.widget-panel-mic.is-listening .widget-panel-mic-icon--stop {
  display: block;
}

.widget-panel-send {
  border: 1px solid rgba(47, 143, 255, 0.62);
  color: #eafffb;
  background: linear-gradient(160deg, rgba(2, 188, 255, 0.92), rgba(69, 132, 245, 0.94));
  font-size: 1.15rem;
}

.widget-panel-send[hidden] {
  display: none;
}

.widget-panel-send:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.widget-panel-close {
  border: 1px solid rgba(118, 168, 255, 0.28);
  color: #d6f6ff;
  background: rgba(6, 16, 28, 0.78);
  font-size: 1.2rem;
}

.widget-panel-close:hover,
.widget-panel-close:focus-visible {
  border-color: rgba(47, 143, 255, 0.44);
  box-shadow: 0 0 0 2px rgba(47, 143, 255, 0.14);
}

.widget-panel-close:focus-visible {
  outline: none;
}

.widget-shell[data-widget-state="popping"] .widget-fab {
  border-color: transparent;
  animation: none;
}

.widget-shell[data-widget-state="closing"] .widget-fab {
  animation: none;
  border-color: transparent;
}

.widget-shell[data-widget-state="popping"] .soap-shimmer,
.widget-shell[data-widget-state="popping"] .widget-soap::after,
.widget-shell[data-widget-state="popping"] .soap-orbit,
.widget-shell[data-widget-state="popping"] .soap-film,
.widget-shell[data-widget-state="closing"] .soap-shimmer,
.widget-shell[data-widget-state="closing"] .widget-soap::after,
.widget-shell[data-widget-state="closing"] .soap-orbit,
.widget-shell[data-widget-state="closing"] .soap-film,
.widget-shell[data-widget-state="active"] .widget-soap::after,
.widget-shell[data-widget-state="active"] .soap-shimmer,
.widget-shell[data-widget-state="active"] .soap-orbit,
.widget-shell[data-widget-state="active"] .soap-film {
  opacity: 0;
}

.widget-shell[data-widget-state="closing"] .widget-soap::after,
.widget-shell[data-widget-state="closing"] .soap-shimmer,
.widget-shell[data-widget-state="closing"] .soap-orbit,
.widget-shell[data-widget-state="closing"] .soap-film {
  animation: soap-return 210ms ease forwards;
}

.widget-shell[data-widget-state="active"] .widget-fab img {
  opacity: 1;
}

.widget-shell[data-widget-state="active"] .widget-fab {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 42px;
  height: 42px;
  z-index: 3;
  transform: none;
  border-color: transparent;
  background: rgba(6, 14, 24, 0.88);
  box-shadow: none;
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.widget-shell[data-widget-state="active"] .widget-fab::before {
  opacity: 0;
}

.widget-shell[data-widget-state="active"] .widget-soap {
  opacity: 0;
}

.widget-shell[data-widget-state="active"] .widget-panel {
  margin-top: 0;
  padding-left: 12px;
}

.widget-shell[data-widget-state="active"] .widget-panel-brand {
  display: grid;
}

.widget-shell[data-widget-state="active"] .widget-fab img {
  width: 64%;
  height: 64%;
  transform: translate(-1px, 1px) scaleX(-1);
}

.widget-shell[data-widget-state="closing"] .widget-panel {
  display: none;
}

@keyframes bubble-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(1deg);
  }
  50% {
    transform: translateY(0.5px) rotate(-0.5deg);
  }
  75% {
    transform: translateY(2px) rotate(-1deg);
  }
}

@keyframes bubble-pop {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.04);
  }
}

@keyframes wave-ring-drift {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

@keyframes voice-bars {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.48;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes soap-shimmer-flow {
  0%,
  100% {
    opacity: 0.8;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 0.55;
    transform: translate(4px, -4px) scale(1.08);
  }
}

@keyframes panel-spring-in {
  0% {
    opacity: 0;
    transform: scale(0.72) translate(26px, 18px);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes bubble-close {
  0% {
    transform: scale(0.8);
  }
  40% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes soap-return {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  animation: rise 880ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 130ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 143, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(47, 143, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 143, 255, 0);
  }
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.72);
    opacity: 0.52;
  }
  100% {
    transform: scale(1.36);
    opacity: 0;
  }
}

@keyframes play-radar {
  0% {
    opacity: 0.72;
    transform: scale(0.88);
  }
  75% {
    opacity: 0;
    transform: scale(1.48);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes blue-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 200, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(76, 200, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 200, 255, 0);
  }
}

@media (max-width: 1120px) {
  .topbar-inner,
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .topnav {
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
  }

  .preview {
    min-height: 580px;
  }

  .content {
    padding: 22px 22px 24px;
  }

  .prompt-widget {
    left: 50%;
    transform: translate(-50%, -8%);
    width: min(520px, calc(100% - 24px));
  }

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

  .linear-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .how-step:not(:last-child)::after {
    display: none;
  }

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

  .linear-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .careers-values {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  :root {
    --section-gap: 92px;
  }

  .hero-stage::before {
    background:
      radial-gradient(circle at 24% 42%, rgba(2, 188, 255, 0.16), transparent 28%),
      radial-gradient(circle at 76% 44%, rgba(83, 113, 243, 0.13), transparent 24%),
      radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.02), transparent 46%);
  }

  .topbar-inner {
    width: min(var(--max), calc(100% - 24px));
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    overflow: visible;
    order: 1;
    flex: 1 1 auto;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 56;
    align-self: start;
    order: 2;
  }

  .topnav {
    display: none;
  }

  .shell {
    padding-top: 70px;
  }

  .hero-stage {
    min-height: auto;
  }

  .info-block,
  .waitlist {
    padding: 0;
  }

  .content {
    padding: 20px 20px 22px;
  }

  .hero-title {
    max-width: none;
    width: 100%;
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero .button {
    width: 100%;
  }

  .linear-section {
    margin-top: 26px;
  }

  .positioning-block + .linear-section {
    margin-top: 42px;
  }

  .positioning-split {
    grid-template-columns: 1fr;
  }

  .card-visual {
    min-height: 88px;
  }

  .section-head p {
    max-width: none;
  }

  .top-actions {
    display: none;
  }

  .careers-hero {
    margin-top: 24px;
  }

  .careers-values {
    margin-top: 26px;
  }

  .role-summary {
    align-items: flex-start;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 54;
    background: rgba(3, 7, 15, 0.58);
    backdrop-filter: blur(6px);
    transition: opacity 240ms ease;
  }

  .mobile-nav {
    position: fixed;
    top: 46px;
    left: 12px;
    right: 12px;
    z-index: 55;
    max-height: calc(100vh - 58px);
    overflow: auto;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(115, 167, 255, 0.2);
    background: rgba(10, 16, 28, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
    transform: translateY(-12px) scale(0.98);
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .mobile-nav.is-visible {
    transform: translateY(0) scale(1);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }

  .mobile-brand {
    display: inline-flex;
    gap: 2px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    align-items: center;
  }

  .mobile-brand-mark {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-right: 6px;
    flex: 0 0 auto;
  }

  .mobile-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(47, 143, 255, 0.35));
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(115, 167, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: #eaf2ff;
    font-size: 1.3rem;
    cursor: pointer;
  }

  .mobile-nav-links {
    display: grid;
    gap: 10px;
  }

  .mobile-nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(115, 167, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: #dfeaff;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .mobile-nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(115, 167, 255, 0.12);
    flex-wrap: wrap;
  }

  body.menu-open {
    overflow: hidden;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .socials {
    padding-right: 0;
  }

  .widget-fab {
    width: 68px;
    height: 68px;
  }

  .widget-shell {
    right: 16px;
    bottom: 16px;
  }

  .widget-panel {
    min-width: 288px;
  }

  .widget-shell[data-widget-state="active"] .widget-panel {
    padding-left: 52px;
  }
}

@media (max-width: 560px) {
  :root {
    --section-gap: 78px;
  }

  .hero-stage::before {
    background:
      radial-gradient(circle at 24% 38%, rgba(2, 188, 255, 0.17), transparent 28%),
      radial-gradient(circle at 76% 42%, rgba(83, 113, 243, 0.14), transparent 24%),
      radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.02), transparent 46%);
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .hero {
    padding: 24px 0 34px;
  }

  .hero-title {
    font-size: clamp(3rem, 18.5vw, 4.9rem);
    line-height: 0.92;
  }

  .subhead {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.46;
    max-width: none;
  }

  .cta-row {
    margin-top: 16px;
    gap: 10px;
  }

  .preview {
    min-height: 318px;
  }

  .topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .menu-toggle {
    margin-top: 0;
  }

  .brand {
    order: 1;
  }

  .menu-toggle {
    order: 2;
  }

  .status {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .shell {
    padding-top: 88px;
  }

  .content {
    padding: 12px 14px 14px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hero .button {
    min-height: 42px;
    font-size: 0.92rem;
  }

  .mobile-nav {
    position: fixed;
    top: 38px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 48px);
    padding: 16px;
  }

  .mobile-brand {
    font-size: 1.25rem;
  }

  .mobile-nav-links a {
    font-size: 0.94rem;
  }

  .mobile-nav-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-nav-footer .button.mini,
  .mobile-nav-footer .status {
    width: 100%;
    justify-content: center;
  }

  .how-flow {
    grid-template-columns: 1fr;
  }

  .how-step {
    min-height: 70px;
    font-size: 0.92rem;
  }

  .principles-block {
    margin-top: 50px;
  }

  .positioning-card {
    padding: 16px;
    border-radius: 18px;
  }

  .positioning-tags {
    gap: 8px;
  }

  .tag {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .faq-intro {
    align-items: stretch;
  }

  .faq-trigger {
    width: 100%;
  }

  .prompt-widget {
    top: auto;
    right: 8px;
    left: 8px;
    bottom: 74px;
    width: auto;
    transform: none;
    padding: 18px 16px 16px;
  }

  .widget-topbar {
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .widget-title {
    font-size: 0.84rem;
  }

  .prompt-field {
    padding: 16px;
  }

  .prompt-text {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .prompt-status {
    display: none;
  }

  .step-track {
    margin-top: 12px;
    gap: 4px 6px;
    font-size: 0.71rem;
    line-height: 1.35;
  }

  .step-track span:nth-child(even) {
    opacity: 0.55;
  }

  .pulse-anchor {
    right: 12px;
    top: 46%;
    transform: translate(0, -50%);
    width: 120px;
    height: 120px;
  }

  .pulse-anchor span {
    width: 120px;
    height: 120px;
  }

  .widget-shell {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .widget-fab {
    width: 68px;
    height: 68px;
  }

  .widget-fab img {
    width: 52%;
    height: 52%;
  }

  .widget-panel {
    min-width: min(352px, calc(100vw - 18px));
    padding: 9px;
    gap: 8px;
  }

  .widget-panel-leading {
    gap: 6px;
  }

  .widget-panel-brand {
    width: 34px;
    height: 34px;
  }

  .widget-panel-brand img {
    width: 35px;
    height: 40px;
  }

  .widget-panel-input {
    height: 32px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .widget-panel-mic,
  .widget-panel-send,
  .widget-panel-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .widget-shell[data-widget-state="active"] .widget-fab {
    left: 8px;
    bottom: 8px;
    width: 38px;
    height: 38px;
  }

  .widget-shell[data-widget-state="active"] {
    left: 12px;
    right: 12px;
  }

  .widget-shell[data-widget-state="active"] .widget-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-width: 0;
    padding-left: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   UI Kit Styles
   ======================================== */

.ui-kit {
  padding: 40px 24px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.ui-kit-header {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(118, 168, 255, 0.2);
}

.ui-kit-header h1 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  background: linear-gradient(-135deg, #02BCFF 0%, #4584F5 50%, #5371F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ui-kit-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.ui-section {
  margin-bottom: 80px;
}

.ui-section-title {
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: #f2f7ff;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(47, 143, 255, 0.3);
}

.ui-section-subtitle {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Color Palette */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.color-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
}

.color-swatch {
  height: 120px;
  position: relative;
}

.color-info {
  padding: 16px;
}

.color-name {
  margin: 0 0 8px;
  font-weight: 600;
  color: #f4f8ff;
  font-size: 1rem;
}

.color-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: "Space Grotesk", monospace;
}

.color-values span {
  display: flex;
  justify-content: space-between;
}

.color-values .label {
  color: #9fc9ff;
  font-weight: 500;
}

/* Typography */
.type-specimen {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  margin-bottom: 16px;
}

.type-specimen h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.type-specimen p {
  margin: 0;
  line-height: 1.6;
}

.type-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(118, 168, 255, 0.15);
  font-size: 0.85rem;
  color: var(--muted);
}

.type-meta-item {
  display: flex;
  justify-content: space-between;
}

.type-meta-item .label {
  color: #9fc9ff;
  font-weight: 500;
}

/* Buttons */
.button-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button-label {
  width: 100%;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-top: 8px;
}

/* Forms */
.form-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #c6d6f2;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-input {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(118, 168, 255, 0.24);
  background: rgba(6, 12, 24, 0.45);
  color: #eff5ff;
  padding: 0 16px;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: rgba(47, 143, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(47, 143, 255, 0.1);
}

.form-input::placeholder {
  color: rgba(201, 226, 255, 0.48);
}

textarea.form-input {
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

/* Brand Assets */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.brand-card {
  border-radius: 16px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.brand-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.brand-card-title {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* Icons */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
}

.icon-item {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Tags & Badges */
.tag-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-primary {
  border: 1px solid rgba(47, 143, 255, 0.4);
  color: #9fc9ff;
  background: rgba(47, 143, 255, 0.1);
}

.tag-secondary {
  border: 1px solid rgba(118, 168, 255, 0.3);
  color: #cdd8ef;
  background: rgba(118, 168, 255, 0.08);
}

.tag-success {
  border: 1px solid rgba(68, 211, 138, 0.4);
  color: #7dffc4;
  background: rgba(68, 211, 138, 0.1);
}

.tag-warning {
  border: 1px solid rgba(247, 194, 72, 0.4);
  color: #ffe08a;
  background: rgba(247, 194, 72, 0.1);
}

/* Status Indicators */
.status-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 255, 0.35);
  background: rgba(7, 18, 30, 0.82);
  color: #d9f7ff;
  font-size: 0.88rem;
}

/* Cards */
.card-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(118, 168, 255, 0.2);
  background: rgba(9, 16, 28, 0.55);
}

.card-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #f4f8ff;
}

.card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Alerts */
.alert-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-info {
  border-color: rgba(47, 143, 255, 0.3);
  background: rgba(47, 143, 255, 0.08);
  color: #9fc9ff;
}

.alert-success {
  border-color: rgba(68, 211, 138, 0.3);
  background: rgba(68, 211, 138, 0.08);
  color: #7dffc4;
}

.alert-warning {
  border-color: rgba(247, 194, 72, 0.3);
  background: rgba(247, 194, 72, 0.08);
  color: #ffe08a;
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.alert-text {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ui-kit {
    padding: 20px 16px 60px;
  }
}
