@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist", sans-serif;
  --font-geist-mono: "Geist Mono", monospace;
  --bg: #07070a;
  --bg-soft: #0b0a10;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(167, 139, 250, 0.28);
  --violet-950: #2e1065;
  --violet-800: #5b21b6;
  --violet-700: #6d28d9;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;
  --violet-300: #c4b5fd;
  --text: #f8f7ff;
  --text-soft: #aba8b5;
  --text-muted: #777481;
  --green: #66f2b2;
  --container: 76rem;
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow-glow: 0 0 80px rgba(124, 58, 237, 0.18);
}

@theme inline {
  --color-background: var(--bg);
  --color-foreground: var(--text);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% -10%, rgba(109, 40, 217, 0.15), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-geist-sans), Inter, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

::selection {
  background: rgba(139, 92, 246, 0.36);
  color: white;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

:focus-visible {
  border-radius: 0.4rem;
  outline: 2px solid var(--violet-400);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-140%);
  border: 1px solid var(--violet-400);
  border-radius: 0.6rem;
  background: #121016;
  color: white;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--violet-700), #c084fc, white);
  box-shadow: 0 0 14px var(--violet-500);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 28rem;
  height: 28rem;
  transform: translate3d(
    calc(var(--cursor-x, -40rem) - 50%),
    calc(var(--cursor-y, -40rem) - 50%),
    0
  );
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.09), transparent 66%);
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header[data-scrolled] {
  border-color: rgba(255, 255, 255, 0.065);
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.25rem;
  max-width: min(42vw, 10.5rem);
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.brand-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 2.25rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 1rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.75rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-400), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 0.7rem;
  background: rgba(124, 58, 237, 0.12);
  color: #e9ddff;
  font-size: 0.8rem;
  font-weight: 580;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  border-color: rgba(196, 181, 253, 0.5);
  background: rgba(124, 58, 237, 0.22);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(48rem, 100svh);
  overflow: hidden;
  align-items: center;
  padding: 8.5rem 0 6rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10rem;
  background: linear-gradient(transparent, var(--bg));
  content: "";
}

.hero-aurora {
  position: absolute;
  z-index: -4;
  top: -20rem;
  left: 50%;
  width: min(86rem, 130vw);
  height: 58rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(124, 58, 237, 0.32), transparent 40%),
    radial-gradient(ellipse at 70% 48%, rgba(168, 85, 247, 0.18), transparent 36%),
    radial-gradient(ellipse at 52% 20%, rgba(96, 165, 250, 0.12), transparent 34%);
  filter: blur(42px);
  opacity: 0.9;
  animation: aurora-drift 13s ease-in-out infinite alternate;
}

.hero-grid,
.process-grid-bg,
.cta-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 32%, transparent 5%, var(--bg) 72%);
  content: "";
}

.hero-noise {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-radial-gradient(circle at 17% 29%, white 0 0.4px, transparent 0.7px 3px),
    repeating-radial-gradient(circle at 73% 61%, white 0 0.35px, transparent 0.6px 4px);
  background-size: 7px 11px, 13px 9px;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(30rem, 1.07fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6.5rem);
}

.hero-copy,
.hero-visual,
.infrastructure-copy,
.infrastructure-visual,
.technology-copy,
.technology-cloud {
  min-width: 0;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--violet-300);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 590;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker-icon {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
}

.kicker-line {
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.55), transparent);
}

.hero h1 {
  max-width: 12ch;
  margin: 1.55rem 0 1.6rem;
  color: #faf9ff;
  font-size: clamp(3.3rem, 6.45vw, 6.15rem);
  font-weight: 520;
  letter-spacing: -0.072em;
  line-height: 0.95;
}

.hero h1 span,
.infrastructure-copy h2 span,
.cta-inner h2 span {
  display: block;
  background: linear-gradient(
    105deg,
    #ffffff 5%,
    #d8c9ff 36%,
    #9f72ff 65%,
    #f4eaff 96%
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 39rem;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    transform 200ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 45%,
    transparent 65%
  );
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
  border-color: rgba(196, 181, 253, 0.24);
  background: linear-gradient(135deg, var(--violet-600), #9333ea);
  box-shadow:
    0 12px 36px rgba(109, 40, 217, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: white;
}

.button-primary:hover {
  box-shadow:
    0 18px 48px rgba(109, 40, 217, 0.42),
    0 0 0 4px rgba(139, 92, 246, 0.09);
}

.button-primary svg,
.header-cta svg,
.text-link svg,
.service-card a svg,
.button-light svg {
  transition: transform 180ms ease;
}

.button-primary:hover svg,
.header-cta:hover svg,
.text-link:hover svg,
.service-card a:hover svg,
.button-light:hover svg {
  transform: translateX(0.22rem);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #d6d3dc;
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary span {
  color: var(--violet-400);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: -0.38rem;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.35), rgba(255, 255, 255, 0.05)),
    #15131b;
  color: var(--violet-300);
  font-size: 0.58rem;
  font-weight: 700;
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.hero-proof p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  font-size: 0.7rem;
}

.hero-proof strong {
  color: #d7d4df;
  font-weight: 580;
}

.hero-proof p span {
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 35rem;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-visual::before {
  position: absolute;
  width: 88%;
  height: 68%;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.18);
  content: "";
  filter: blur(80px);
}

.operation-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 37rem);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) rotateY(-4deg) rotateX(2deg);
  border: 1px solid rgba(196, 181, 253, 0.16);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(24, 21, 32, 0.96), rgba(9, 8, 13, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    0 0 70px rgba(109, 40, 217, 0.12);
  transition: transform 250ms ease-out;
  transform-style: preserve-3d;
}

.operation-panel::after,
.server-shell::after,
.service-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(167, 139, 250, 0.12),
    transparent 34%
  );
  content: "";
  pointer-events: none;
}

.panel-glow {
  position: absolute;
  top: -10rem;
  right: -9rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  filter: blur(60px);
  pointer-events: none;
}

.panel-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 3rem;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.window-dots {
  display: flex;
  gap: 0.32rem;
}

.window-dots span,
.code-head > span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #3c3843;
}

.window-dots span:first-child,
.code-head > span:first-child {
  background: #8b5cf6;
}

.window-dots span:nth-child(2),
.code-head > span:nth-child(2) {
  background: #6d5b8f;
}

.panel-bar p {
  margin: 0;
  color: #c4bfca;
  font-size: 0.68rem;
  font-weight: 560;
}

.panel-live {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.35rem;
  color: #8c8994;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.panel-live span,
.status-dot,
.footer-status i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(102, 242, 178, 0.7);
}

.panel-body {
  display: grid;
  grid-template-columns: 3.35rem 1fr;
  min-height: 27.5rem;
}

.panel-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  padding-top: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.panel-sidebar span {
  width: 1rem;
  height: 1rem;
  border: 1px solid #4a4651;
  border-radius: 0.28rem;
}

.panel-sidebar span.active {
  border-color: var(--violet-500);
  background: rgba(139, 92, 246, 0.25);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.panel-content {
  min-width: 0;
  padding: 1.2rem;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.panel-heading > div {
  display: grid;
  gap: 0.25rem;
}

.panel-heading span {
  color: #77727e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-heading strong {
  color: #d8d4df;
  font-size: 0.74rem;
  font-weight: 540;
}

.panel-heading .panel-badge {
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 0.35rem;
  background: rgba(124, 58, 237, 0.09);
  color: var(--violet-300);
  font-size: 0.45rem;
}

.signal-map {
  position: relative;
  height: 17rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at center, rgba(109, 40, 217, 0.12), transparent 48%),
    rgba(2, 2, 4, 0.28);
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

.core-node {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  transform: translate(-50%, -50%);
}

.core-node > div {
  position: relative;
  display: flex;
  width: 4.1rem;
  height: 4.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(196, 181, 253, 0.24), transparent 38%),
    #151020;
  box-shadow:
    0 0 35px rgba(124, 58, 237, 0.3),
    inset 0 0 15px rgba(124, 58, 237, 0.2);
  color: #d9ccff;
}

.core-ring {
  position: absolute;
  inset: -0.55rem;
  border: 1px dashed rgba(167, 139, 250, 0.24);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

.core-node strong {
  color: #d7d2df;
  font-size: 0.58rem;
}

.core-node > span {
  color: #6f6a76;
  font-size: 0.45rem;
}

.service-node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 4.6rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.45rem;
  background: rgba(20, 17, 27, 0.92);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: #918a9b;
  font-size: 0.5rem;
}

.service-node svg {
  color: var(--violet-400);
}

.node-sites {
  top: 16%;
  left: 8%;
}

.node-systems {
  top: 17%;
  right: 7%;
}

.node-ai {
  bottom: 14%;
  left: 9%;
}

.node-api {
  right: 8%;
  bottom: 14%;
}

.connection {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 37%;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.55), transparent);
}

.connection::after {
  position: absolute;
  top: -1px;
  left: 10%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--violet-300);
  box-shadow: 0 0 8px var(--violet-400);
  content: "";
  animation: signal-travel 2.8s linear infinite;
}

.connection-a {
  transform: rotate(212deg);
}

.connection-b {
  transform: rotate(328deg);
}

.connection-c {
  transform: rotate(148deg);
}

.connection-d {
  transform: rotate(32deg);
}

.telemetry-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.telemetry-row > div {
  display: grid;
  gap: 0.3rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.015);
}

.telemetry-row span {
  color: #696470;
  font-size: 0.43rem;
}

.telemetry-row strong {
  color: #c3bdca;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
}

.telemetry-row i {
  height: 2px;
  overflow: hidden;
  border-radius: 1rem;
  background: #25212b;
}

.telemetry-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet-700), var(--violet-400));
  box-shadow: 0 0 8px var(--violet-500);
}

.floating-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.65rem;
  background: rgba(15, 13, 20, 0.8);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  color: #aaa4b1;
  font-size: 0.58rem;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-pill-top {
  top: 11%;
  right: -2%;
}

.floating-pill-bottom {
  bottom: 8%;
  left: -3%;
  color: var(--violet-300);
  animation-delay: -2.4s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 50%;
}

.orbit-one {
  width: 30rem;
  height: 30rem;
}

.orbit-two {
  width: 37rem;
  height: 37rem;
  border-style: dashed;
  animation: spin 50s linear infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateX(-50%);
  color: #514e57;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 2rem;
  overflow: hidden;
  background: #2d2a31;
}

.hero-scroll span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--violet-400);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.capabilities-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background: #08070b;
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  min-height: 4.4rem;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 1.75rem;
  color: #74707c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--violet-600);
  box-shadow: 0 0 10px var(--violet-700);
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 9.5rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

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

.section-heading-center .eyebrow {
  justify-content: center;
}

.eyebrow > span {
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-500), transparent);
}

.section-heading h2,
.infrastructure-copy h2,
.technology-copy h2,
.faq-heading h2,
.cta-inner h2 {
  margin: 1.2rem 0 1.25rem;
  color: #f4f2f8;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-description {
  max-width: 42rem;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.section-heading-center .section-description {
  margin-inline: auto;
}

.services-section {
  overflow: hidden;
}

.services-section::before {
  position: absolute;
  top: 7%;
  right: -20%;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: rgba(76, 29, 149, 0.12);
  content: "";
  filter: blur(100px);
}

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

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 23rem;
  flex-direction: column;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(255, 255, 255, 0.018);
  transition:
    transform 250ms ease-out,
    border-color 250ms ease,
    box-shadow 250ms ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.card-spot {
  position: absolute;
  top: -6rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.09);
  filter: blur(50px);
  pointer-events: none;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon,
.difference-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.2), rgba(255, 255, 255, 0.025));
  color: var(--violet-300);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-index {
  color: #3d3943;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
}

.service-eyebrow {
  margin: 2.1rem 0 0.5rem;
  color: var(--violet-400);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card h3,
.difference-card h3,
.process-list h3 {
  margin: 0;
  color: #e4e1e9;
  font-size: 1.18rem;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.service-card > p:last-of-type,
.difference-card p,
.process-list p,
.commitment-card > p {
  margin: 0.8rem 0 0;
  color: #8e8995;
  font-size: 0.86rem;
  line-height: 1.68;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #b7b1bf;
  font-size: 0.73rem;
  font-weight: 580;
}

.service-card > a:hover {
  color: var(--violet-300);
}

.portfolio-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.045), transparent 34%),
    #08070b;
}

.portfolio-aurora {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 48rem;
  height: 24rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(91, 33, 182, 0.11);
  filter: blur(110px);
  pointer-events: none;
}

.cases-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.case-card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.36),
    0 0 45px rgba(76, 29, 149, 0.1);
}

.case-browser {
  margin: 0.75rem 0.75rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 0.45rem);
  background: #0c0b0f;
}

.case-browser-bar {
  display: grid;
  min-height: 2.35rem;
  grid-template-columns: 3.2rem 1fr 3.2rem;
  align-items: center;
  padding-inline: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.025);
}

.case-browser-dots {
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.case-browser-dots i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #403c46;
}

.case-browser-dots i:first-child {
  background: #7c3aed;
}

.case-domain {
  overflow: hidden;
  color: #625d69;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.48rem;
  letter-spacing: 0.02em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111016;
}

.case-preview::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 65%, rgba(7, 7, 10, 0.32));
  content: "";
  pointer-events: none;
}

.case-preview iframe {
  width: 333.333%;
  height: 333.333%;
  transform: scale(0.3);
  border: 0;
  transform-origin: top left;
  pointer-events: none;
}

.case-preview-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}

.case-preview-link::after {
  padding: 0.65rem 0.9rem;
  transform: translateY(0.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: rgba(8, 7, 12, 0.82);
  color: #f3effa;
  content: "Abrir site ↗";
  font-size: 0.68rem;
  font-weight: 620;
  opacity: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.case-preview-link:is(:hover, :focus-visible)::after {
  transform: translateY(0);
  opacity: 1;
}

.case-content {
  display: flex;
  min-height: 17.5rem;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem 1.5rem 1.55rem;
}

.case-type {
  margin: 0;
  color: var(--violet-400);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.53rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 0.75rem 0 0;
  color: #ece9f1;
  font-size: 1.3rem;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.case-content > p:not(.case-type) {
  margin: 0.85rem 0 0;
  color: #89838f;
  font-size: 0.84rem;
  line-height: 1.68;
}

.case-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.6rem;
  color: #c6bfce;
  font-size: 0.73rem;
  font-weight: 590;
}

.case-link svg {
  transition: transform 180ms ease;
}

.case-link:hover {
  color: var(--violet-300);
}

.case-link:hover svg {
  transform: translate(0.16rem, -0.16rem);
}

.infrastructure-section {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background: #09080c;
}

.infrastructure-aurora {
  position: absolute;
  top: 5%;
  left: -12rem;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.14);
  filter: blur(100px);
}

.infrastructure-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.infrastructure-copy h2 span {
  margin-top: 0.08em;
}

.infrastructure-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.infrastructure-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b4aeba;
  font-size: 0.84rem;
}

.infrastructure-list > div > span {
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(102, 242, 178, 0.18);
  border-radius: 50%;
  background: rgba(102, 242, 178, 0.06);
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--violet-300);
  font-size: 0.8rem;
  font-weight: 580;
}

.server-shell {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 1rem;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(124, 58, 237, 0.06), transparent 48%),
    #0e0c12;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(76, 29, 149, 0.13);
  transition: transform 250ms ease-out;
}

.server-head,
.server-footer {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.6rem;
  color: #7e7886;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  letter-spacing: 0.04em;
}

.server-head > div,
.server-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.server-head > span {
  color: var(--green);
}

.server-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.server-module {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 10.5rem;
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 58, 237, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.018);
}

.server-module::before {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 2.5rem;
  height: 1px;
  background: var(--violet-500);
  box-shadow: 0 0 10px var(--violet-500);
  content: "";
}

.server-module svg {
  margin-top: 0.6rem;
  color: var(--violet-400);
}

.module-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #554f5c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.48rem;
}

.module-status i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(102, 242, 178, 0.6);
}

.server-module strong {
  margin-top: 0.85rem;
  overflow-wrap: anywhere;
  color: #c8c2cf;
  font-size: 0.76rem;
  font-weight: 550;
}

.server-module small {
  margin-top: 0.25rem;
  color: #5d5862;
  font-size: 0.54rem;
}

.module-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.22rem;
  height: 1.5rem;
  margin-top: auto;
}

.module-bars i {
  width: 0.26rem;
  border-radius: 1rem;
  background: linear-gradient(var(--violet-500), rgba(124, 58, 237, 0.12));
  animation: equalize 2.8s ease-in-out infinite alternate;
}

.module-bars i:nth-child(1) {
  height: 40%;
}

.module-bars i:nth-child(2) {
  height: 85%;
  animation-delay: -1s;
}

.module-bars i:nth-child(3) {
  height: 60%;
  animation-delay: -1.8s;
}

.module-bars i:nth-child(4) {
  height: 100%;
  animation-delay: -0.5s;
}

.server-footer {
  min-height: 3.6rem;
  padding-top: 0.5rem;
}

.server-footer i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
}

.differences-section {
  overflow: hidden;
}

.differences-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.difference-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 19rem;
  align-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform 250ms ease-out,
    border-color 250ms ease;
}

.difference-card:hover {
  border-color: rgba(167, 139, 250, 0.22);
}

.difference-card-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 80% 18%, rgba(124, 58, 237, 0.2), transparent 32%),
    linear-gradient(140deg, rgba(124, 58, 237, 0.09), rgba(255, 255, 255, 0.015));
}

.difference-card > div:last-child > span {
  color: #47424c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
}

.difference-card h3 {
  margin-top: 0.65rem;
}

.difference-card-featured h3 {
  font-size: 1.55rem;
}

.process-section {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background: #09080c;
}

.process-grid-bg {
  mask-image: radial-gradient(circle at 25% 55%, black, transparent 62%);
  opacity: 0.55;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.process-orbit {
  position: sticky;
  top: 9rem;
  display: grid;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.process-orbit::before {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  content: "";
  filter: blur(70px);
}

.process-orbit-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #6d28d9, #2e1065);
  box-shadow:
    0 0 55px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 2rem;
  font-weight: 500;
}

.process-orbit-ring {
  position: absolute;
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 50%;
}

.ring-a {
  width: 58%;
  height: 58%;
  border-style: dashed;
  animation: spin 22s linear infinite;
}

.ring-b {
  width: 88%;
  height: 88%;
  animation: spin-reverse 35s linear infinite;
}

.ring-a::before,
.ring-b::before {
  position: absolute;
  top: 50%;
  left: -0.3rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--violet-400);
  box-shadow: 0 0 14px var(--violet-500);
  content: "";
}

.orbit-label {
  position: absolute;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.4rem;
  background: rgba(12, 10, 16, 0.84);
  color: #817b88;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.5rem;
}

.label-a {
  top: 8%;
}

.label-b {
  top: 48%;
  right: 0;
}

.label-c {
  bottom: 8%;
}

.label-d {
  top: 48%;
  left: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  min-width: 0;
  padding: 0 0 2.3rem;
}

.process-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 0.8rem;
  background: #111016;
  color: var(--violet-400);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
}

.process-list li:hover .process-number {
  border-color: rgba(167, 139, 250, 0.42);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.16);
}

.process-list p {
  max-width: 31rem;
}

.process-line {
  position: absolute;
  z-index: 1;
  top: 3rem;
  bottom: 0;
  left: 1.5rem;
  width: 1px;
  background: linear-gradient(rgba(139, 92, 246, 0.34), rgba(255, 255, 255, 0.04));
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li:last-child .process-line {
  display: none;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(34rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.code-snippet {
  margin-top: 2.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: #0c0b10;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.code-head {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-head small {
  margin-left: 0.5rem;
  color: #5f5966;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
}

.code-snippet pre {
  margin: 0;
  overflow-x: auto;
  padding: 1.25rem;
  color: #8c8691;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  line-height: 1.8;
}

.code-purple {
  color: #c4b5fd;
}

.code-blue {
  color: #93c5fd;
}

.code-green {
  color: #86efac;
}

.code-string {
  color: #f0abfc;
}

.technology-cloud {
  position: relative;
  display: grid;
  min-height: 36rem;
  place-items: center;
  isolation: isolate;
}

.technology-cloud::before {
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.14);
  content: "";
  filter: blur(90px);
}

.technology-cloud::after {
  position: absolute;
  z-index: -1;
  width: 27rem;
  height: 27rem;
  border: 1px dashed rgba(167, 139, 250, 0.12);
  border-radius: 50%;
  content: "";
  animation: spin 60s linear infinite;
}

.tech-core {
  display: grid;
  width: 10rem;
  height: 10rem;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.12), transparent 30%),
    rgba(17, 13, 25, 0.92);
  box-shadow:
    0 0 65px rgba(109, 40, 217, 0.24),
    inset 0 0 30px rgba(124, 58, 237, 0.1);
}

.tech-core strong {
  color: #d7d1df;
  font-size: 0.75rem;
  font-weight: 560;
}

.tech-core small {
  color: #615b67;
  font-size: 0.5rem;
}

.tech-chip {
  position: absolute;
  top: calc(50% + sin(calc(var(--tech-index) * 22.5deg)) * 15rem);
  left: calc(50% + cos(calc(var(--tech-index) * 22.5deg)) * 16rem);
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  background: rgba(14, 12, 19, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #908a97;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: tech-float 5s ease-in-out infinite;
  animation-delay: calc(var(--tech-index) * -0.28s);
}

.tech-chip i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--violet-500);
  box-shadow: 0 0 8px var(--violet-600);
}

.metrics-section {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at center, rgba(109, 40, 217, 0.06), transparent 55%),
    #09080c;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  min-width: 0;
  padding: clamp(2.2rem, 5vw, 4.2rem) clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.metric:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.metric strong {
  display: block;
  background: linear-gradient(180deg, white, #ad9ac9);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 450;
  letter-spacing: -0.07em;
  line-height: 1;
  -webkit-background-clip: text;
}

.metric p {
  margin: 0.65rem 0 0;
  color: #77717e;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.commitments-section {
  overflow: hidden;
}

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

.commitment-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 26rem;
  flex-direction: column;
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.11), transparent 36%),
    rgba(255, 255, 255, 0.018);
  transition:
    transform 250ms ease-out,
    border-color 250ms ease;
}

.commitment-card:hover {
  border-color: rgba(167, 139, 250, 0.24);
}

.commitment-card::before {
  position: absolute;
  top: -2rem;
  right: 1.4rem;
  color: rgba(167, 139, 250, 0.075);
  content: "“";
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
}

.commitment-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4d4852;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
}

.commitment-top i {
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 2rem;
  color: var(--violet-400);
  font-style: normal;
  text-transform: uppercase;
}

.commitment-card blockquote {
  position: relative;
  margin: 3.5rem 0 0;
}

.commitment-card blockquote p {
  margin: 0;
  color: #ddd8e4;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 470;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.commitment-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 2rem;
}

.commitment-signature .brand-icon {
  width: 2.3rem;
  height: 2.3rem;
}

.commitment-signature > div {
  display: grid;
  gap: 0.2rem;
}

.commitment-signature strong {
  color: #bcb6c3;
  font-size: 0.68rem;
  font-weight: 570;
}

.commitment-signature small {
  color: #5f5965;
  font-size: 0.55rem;
}

.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: #09080c;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 8.5rem;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.5rem;
  align-items: center;
  gap: 0.8rem;
  min-height: 5.5rem;
  padding: 0.8rem 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: #504a56;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
}

.faq-list summary strong {
  color: #c8c2ce;
  font-size: 0.95rem;
  font-weight: 530;
}

.faq-list summary > i {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.faq-list summary > i::before,
.faq-list summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1px;
  background: var(--violet-400);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-list summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary strong {
  color: var(--violet-300);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 42rem;
  margin: -0.2rem 0 0;
  padding: 0 1.5rem 1.75rem 3.2rem;
  color: #89838f;
  font-size: 0.85rem;
  line-height: 1.75;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) 0;
  isolation: isolate;
}

.cta-grid {
  background-size: 3.5rem 3.5rem;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  opacity: 0.75;
}

.cta-aurora {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: min(70rem, 120vw);
  height: 35rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(124, 58, 237, 0.3), transparent 60%),
    radial-gradient(ellipse at 45% 55%, rgba(168, 85, 247, 0.15), transparent 50%);
  filter: blur(40px);
}

.cta-inner {
  display: flex;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.07);
  box-shadow: 0 0 45px rgba(124, 58, 237, 0.2);
}

.cta-icon .brand-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-centered > span:last-child {
  transform: scaleX(-1);
}

.cta-inner h2 {
  max-width: 13ch;
  margin-top: 1.5rem;
}

.cta-inner > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 0;
  color: #a8a2af;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.button-light {
  margin-top: 2.2rem;
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
  background: #f5f3f8;
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.13);
  color: #100d15;
}

.button-light:hover {
  box-shadow:
    0 18px 50px rgba(255, 255, 255, 0.19),
    0 0 0 5px rgba(255, 255, 255, 0.06);
}

.cta-inner > small {
  margin-top: 1rem;
  color: #625d68;
  font-size: 0.58rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: #060609;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(26rem, 0.9fr);
  gap: 4rem;
  padding-block: 4.5rem 3.5rem;
}

.footer-brand > p {
  max-width: 28rem;
  margin: 1.2rem 0 1.6rem;
  color: #716c77;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #77717d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.53rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-links strong {
  margin-bottom: 0.25rem;
  color: #c0bac6;
  font-size: 0.7rem;
  font-weight: 570;
}

.footer-links a {
  color: #6f6975;
  font-size: 0.72rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover {
  transform: translateX(0.2rem);
  color: var(--violet-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #48444c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  filter: blur(5px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 700ms ease;
}

.js [data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js [data-delay="1"] {
  transition-delay: 80ms;
}

.js [data-delay="2"] {
  transition-delay: 160ms;
}

.js [data-delay="3"] {
  transition-delay: 240ms;
}

.js [data-delay="4"] {
  transition-delay: 320ms;
}

.js [data-delay="5"] {
  transition-delay: 400ms;
}

@keyframes aurora-drift {
  0% {
    transform: translateX(-52%) rotate(-3deg) scale(0.98);
  }
  100% {
    transform: translateX(-48%) rotate(4deg) scale(1.04);
  }
}

@keyframes brand-sheen {
  0%,
  70%,
  100% {
    transform: translateX(-70%) rotate(18deg);
  }
  84% {
    transform: translateX(70%) rotate(18deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.65rem);
  }
}

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

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

@keyframes signal-travel {
  from {
    left: 5%;
  }
  to {
    left: 95%;
  }
}

@keyframes scroll-line {
  0% {
    top: -60%;
  }
  100% {
    top: 110%;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes equalize {
  0% {
    transform: scaleY(0.55);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes tech-float {
  0%,
  100% {
    translate: -50% -50%;
  }
  50% {
    translate: -50% calc(-50% - 0.35rem);
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.95fr);
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7.4vw, 5.4rem);
  }

  .operation-panel {
    transform: none;
  }

  .floating-pill-top {
    right: 0;
  }

  .floating-pill-bottom {
    left: 0;
  }

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

  .difference-card-featured {
    grid-column: span 2;
  }

  .technology-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
    gap: 3rem;
  }

  .tech-chip {
    top: calc(50% + sin(calc(var(--tech-index) * 22.5deg)) * 13rem);
    left: calc(50% + cos(calc(var(--tech-index) * 22.5deg)) * 13rem);
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 4.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    transform: translateY(-1rem);
    visibility: hidden;
    overflow-y: auto;
    background: rgba(7, 7, 10, 0.97);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms step-end;
  }

  .mobile-nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 0ms step-start;
  }

  .mobile-nav .container {
    display: grid;
    padding-block: 2rem;
  }

  .mobile-nav a:not(.button) {
    display: flex;
    min-height: 4.75rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #d8d4df;
    font-size: 1.35rem;
    font-weight: 520;
    letter-spacing: -0.04em;
  }

  .mobile-nav a:not(.button) span {
    color: var(--violet-500);
    font-family: var(--font-geist-mono), monospace;
    font-size: 0.55rem;
  }

  .mobile-nav .button {
    margin-top: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-layout,
  .infrastructure-layout,
  .technology-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 11vw, 6rem);
  }

  .hero-visual {
    width: 100%;
    max-width: 42rem;
    min-height: 33rem;
    margin: 1rem auto 0;
  }

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

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

  .case-card {
    width: min(100%, 42rem);
    margin-inline: auto;
  }

  .infrastructure-layout {
    gap: 4rem;
  }

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

  .process-layout {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
    gap: 3rem;
  }

  .technology-cloud {
    min-height: 39rem;
    order: -1;
  }

  .tech-chip {
    top: calc(50% + sin(calc(var(--tech-index) * 22.5deg)) * 15rem);
    left: calc(50% + cos(calc(var(--tech-index) * 22.5deg)) * 16rem);
  }

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

  .commitment-card {
    min-height: 20rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .mobile-nav {
    top: 4.25rem;
  }

  .hero {
    padding: 7.4rem 0 5rem;
  }

  .hero h1 {
    margin-top: 1.2rem;
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 29rem;
  }

  .operation-panel {
    width: 100%;
    border-radius: 1rem;
  }

  .panel-body {
    grid-template-columns: 2.4rem 1fr;
    min-height: 24rem;
  }

  .panel-content {
    padding: 0.8rem;
  }

  .panel-heading strong {
    font-size: 0.62rem;
  }

  .panel-heading .panel-badge {
    display: none;
  }

  .signal-map {
    height: 15.5rem;
  }

  .service-node {
    min-width: 0;
    padding: 0.4rem;
  }

  .service-node span {
    display: none;
  }

  .telemetry-row > div {
    padding: 0.4rem;
  }

  .telemetry-row span {
    font-size: 0.38rem;
  }

  .floating-pill {
    font-size: 0.5rem;
  }

  .floating-pill-top {
    top: 3%;
  }

  .floating-pill-bottom {
    bottom: 1%;
  }

  .orbit-two {
    width: 30rem;
    height: 30rem;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading {
    margin-bottom: 2.4rem;
  }

  .section-heading h2,
  .infrastructure-copy h2,
  .technology-copy h2,
  .faq-heading h2,
  .cta-inner h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .services-grid,
  .differences-grid,
  .server-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    min-height: 20rem;
  }

  .difference-card-featured {
    grid-column: auto;
  }

  .server-module {
    min-height: 9rem;
  }

  .process-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-orbit {
    position: relative;
    top: auto;
    width: min(100%, 23rem);
  }

  .process-list li {
    grid-template-columns: 2.7rem 1fr;
    padding-bottom: 1.9rem;
  }

  .process-number {
    width: 2.55rem;
    height: 2.55rem;
  }

  .process-line {
    top: 2.55rem;
    left: 1.27rem;
  }

  .technology-cloud {
    min-height: auto;
    padding: 1rem 0;
  }

  .technology-cloud::after,
  .tech-core {
    display: none;
  }

  .technology-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
  }

  .tech-chip {
    position: static;
    min-height: 2.5rem;
    transform: none;
    animation: none;
  }

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

  .metric {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .metric:nth-child(odd) {
    border-left: 0;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    grid-template-columns: 1.8rem 1fr 1.2rem;
    min-height: 5rem;
    gap: 0.6rem;
  }

  .faq-list summary strong {
    font-size: 0.88rem;
  }

  .faq-answer p {
    padding-left: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

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

@media (max-width: 420px) {
  .brand-logo {
    height: 2rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-kicker {
    font-size: 0.58rem;
  }

  .kicker-line {
    display: none;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .operation-panel {
    transform: scale(0.98);
  }

  .floating-pill {
    display: none;
  }

  .panel-content {
    padding: 0.6rem;
  }

  .panel-heading > div > span {
    display: none;
  }

  .signal-map {
    height: 14.5rem;
  }

  .telemetry-row {
    gap: 0.25rem;
  }

  .telemetry-row > div {
    padding: 0.35rem;
  }

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

  .metric {
    border-right: 0;
    border-left: 0;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  [data-tilt] {
    transform: none !important;
  }
}

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

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

  .marquee-track {
    transform: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Guided sales chatbot */
.chatbot {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 175;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #f8f7ff;
  font-family: var(--font-sans);
}

.chatbot [hidden] {
  display: none !important;
}

.chatbot button,
.chatbot a,
.chatbot input {
  font: inherit;
}

.chatbot button,
.chatbot a {
  min-height: 2.75rem;
}

.chatbot-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(196, 181, 253, 0.38);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(109, 40, 217, 0.96), rgba(76, 29, 149, 0.96)),
    #4c1d95;
  box-shadow: 0 1rem 2.5rem rgba(15, 8, 40, 0.48);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.chatbot-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 214, 254, 0.7);
  box-shadow: 0 1.25rem 3rem rgba(76, 29, 149, 0.42);
}

.chatbot-trigger img,
.chatbot-header > img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.chatbot-trigger span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  display: flex;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(38rem, calc(100dvh - 6.5rem));
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(139, 92, 246, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(28, 20, 52, 0.97), rgba(10, 9, 20, 0.98));
  box-shadow: 0 1.5rem 4rem rgba(3, 2, 12, 0.64);
  backdrop-filter: blur(18px);
  animation: chatbot-enter 180ms ease-out;
}

@keyframes chatbot-enter {
  from {
    opacity: 0;
    transform: translateY(0.5rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  padding: 0.85rem 0.85rem 0.75rem 1rem;
  border-bottom: 1px solid rgba(196, 181, 253, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.chatbot-header > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.15rem;
}

.chatbot-header strong {
  width: fit-content;
  max-width: 100%;
  outline: none;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.chatbot-header > div > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c4b5fd;
  font-size: 0.68rem;
}

.chatbot-header i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0.6rem rgba(134, 239, 172, 0.6);
}

.chatbot-close {
  display: inline-grid;
  width: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0.8rem;
  color: #ddd6fe;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.chatbot-status {
  flex: none;
  margin: 0;
  padding: 0.48rem 1rem;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
  color: #a78bfa;
  background: rgba(6, 5, 14, 0.32);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-content,
.chatbot-home {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(167, 139, 250, 0.55) transparent;
}

.chatbot-content {
  padding: 1rem;
}

.chatbot-home {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.chatbot-home p,
.chatbot-complete-copy,
.chatbot-privacy {
  margin: 0;
  color: #c4c0d1;
  font-size: 0.8rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.chatbot-question {
  margin: 0 0 0.85rem;
  color: #fff;
  outline: none;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.chatbot-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
}

.chatbot-option,
.chatbot-primary,
.chatbot-secondary,
.chatbot-direct,
.chatbot-whatsapp,
.chatbot-controls button,
.chatbot-controls-direct {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.85rem;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.chatbot-option,
.chatbot-secondary,
.chatbot-direct,
.chatbot-controls button,
.chatbot-controls-direct {
  border: 1px solid rgba(196, 181, 253, 0.2);
  color: #ede9fe;
  background: rgba(255, 255, 255, 0.045);
}

.chatbot-option {
  justify-content: flex-start;
  text-align: left;
}

.chatbot-option:hover,
.chatbot-secondary:hover,
.chatbot-direct:hover,
.chatbot-controls button:hover:not(:disabled),
.chatbot-controls-direct:hover {
  border-color: rgba(196, 181, 253, 0.55);
  background: rgba(139, 92, 246, 0.16);
}

.chatbot-primary {
  border: 1px solid rgba(221, 214, 254, 0.34);
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  font-weight: 700;
}

.chatbot-whatsapp {
  margin-top: 0.85rem;
  border: 1px solid rgba(134, 239, 172, 0.72);
  color: #07150d;
  background: #86efac;
  font-weight: 800;
}

.chatbot-primary:hover,
.chatbot-whatsapp:hover {
  filter: brightness(1.08);
}

.chatbot-name-form {
  display: grid;
  min-width: 0;
  gap: 0.6rem;
}

.chatbot-name-form label {
  color: #ddd6fe;
  font-size: 0.78rem;
  font-weight: 700;
}

.chatbot-name-form input {
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 0.75rem;
  color: #fff;
  background: rgba(4, 3, 12, 0.58);
}

.chatbot-name-form input[aria-invalid="true"] {
  border-color: #fca5a5;
}

.chatbot-error {
  margin: 0;
  color: #fecaca;
  font-size: 0.74rem;
  line-height: 1.45;
}

.chatbot-name-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
}

.chatbot-summary {
  display: grid;
  grid-template-columns: minmax(5.25rem, auto) minmax(0, 1fr);
  gap: 0.38rem 0.65rem;
  margin: 0.85rem 0;
  padding: 0.8rem;
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
}

.chatbot-summary dt {
  color: #a78bfa;
  font-weight: 700;
}

.chatbot-summary dd {
  min-width: 0;
  margin: 0;
  color: #ede9fe;
  overflow-wrap: anywhere;
}

.chatbot-privacy {
  padding: 0.7rem;
  border-left: 2px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  font-size: 0.72rem;
}

.chatbot-content > .chatbot-direct {
  margin-top: 0.55rem;
}

.chatbot-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  flex: none;
  padding: 0.7rem 1rem 0.85rem;
  border-top: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(5, 4, 13, 0.58);
}

.chatbot-controls button,
.chatbot-controls-direct {
  padding-block: 0.55rem;
  font-size: 0.7rem;
}

.chatbot-controls-direct {
  border-color: rgba(134, 239, 172, 0.38);
  color: #d1fae5;
  background: rgba(134, 239, 172, 0.08);
}

.chatbot-direct-icon {
  width: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  justify-self: center;
  border-color: rgba(134, 239, 172, 0.72);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
}

.chatbot-direct-icon:hover {
  border-color: #86efac;
  background: #20bd5a;
}

.chatbot-direct-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.chatbot-controls button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.chatbot :is(button, a, input):focus-visible {
  outline: 3px solid #ddd6fe;
  outline-offset: 2px;
}

.chatbot :is(#chatbot-title, .chatbot-question):focus {
  outline: none;
}

@media (max-width: 520px) {
  .chatbot {
    right: calc(0.75rem + env(safe-area-inset-right));
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: calc(0.75rem + env(safe-area-inset-left));
  }

  .chatbot-panel {
    right: 0;
    left: 0;
    width: 100%;
    max-height: min(
      38rem,
      calc(
        100dvh - 6.5rem - env(safe-area-inset-top) -
          env(safe-area-inset-bottom)
      )
    );
  }

  .chatbot-trigger span {
    font-size: 0.76rem;
  }

  .chatbot-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .chatbot-summary dd {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 340px) {
  .chatbot-trigger {
    width: 2.75rem;
    padding-inline: 0;
    border-radius: 50%;
  }

  .chatbot-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .chatbot-header {
    padding-left: 0.75rem;
  }

  .chatbot-content,
  .chatbot-home {
    padding-inline: 0.75rem;
  }

  .chatbot-controls {
    padding-inline: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chatbot *,
  .chatbot *::before,
  .chatbot *::after {
    animation: none !important;
    transition: none !important;
  }
}
