:root {
  --bg: #05060d;
  --bg-soft: #0c1330;
  --card: #0d1635;
  --card-alt: #151024;
  --text: #f2f4ff;
  --muted: #a9afc8;
  --line: rgba(152, 164, 223, 0.25);
  --blue: #2f6dff;
  --purple: #8a49ff;
  --cyan: #21d2ff;
  --black: #020307;
  --shadow: 0 24px 50px rgba(5, 8, 24, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgba(47, 109, 255, 0.22), transparent 34%),
    radial-gradient(circle at 88% 11%, rgba(138, 73, 255, 0.2), transparent 38%),
    radial-gradient(circle at 44% 100%, rgba(33, 210, 255, 0.1), transparent 42%),
    linear-gradient(150deg, #010205 0%, #030510 45%, #060712 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: -28% -15%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    conic-gradient(from 25deg, transparent 0deg, rgba(47, 109, 255, 0.11) 120deg, transparent 210deg, rgba(138, 73, 255, 0.1) 340deg, transparent 360deg),
    radial-gradient(circle, rgba(138, 73, 255, 0.15), transparent 52%);
  filter: blur(36px);
  animation: ambientSpin 22s linear infinite;
  opacity: 0.9;
}

body::after {
  background-image:
    linear-gradient(rgba(130, 146, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 146, 220, 0.045) 1px, transparent 1px),
    radial-gradient(circle, rgba(188, 202, 255, 0.16) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px, 120px 120px;
  background-position: 0 0, 0 0, 16px 24px;
  opacity: 0.16;
  animation: ambientDrift 30s linear infinite;
}

main,
.topbar,
.footer {
  width: min(1280px, 94%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 1rem;
  position: static;
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(188, 197, 255, 0.45);
  box-shadow: 0 8px 18px rgba(47, 109, 255, 0.25);
}

.topbar-cta {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  transition: 180ms ease;
  background: rgba(6, 10, 24, 0.72);
}

.topbar-cta:hover {
  border-color: rgba(138, 73, 255, 0.8);
  background: rgba(138, 73, 255, 0.18);
}

.hero {
  min-height: calc(100svh - 88px);
  padding: 1.2rem 0 2.3rem;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.6rem;
  align-items: center;
  position: relative;
}

.desktop-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.36rem;
  text-decoration: none;
  color: #b8c7ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.desktop-scroll-indicator:hover {
  opacity: 1;
}

.scroll-cue {
  width: 20px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(174, 193, 255, 0.7);
  display: inline-flex;
  justify-content: center;
  padding-top: 5px;
  background: linear-gradient(180deg, rgba(10, 19, 48, 0.85), rgba(6, 10, 24, 0.65));
}

.scroll-cue::before {
  content: '';
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b8d8ff 0%, #8ca1ff 100%);
  box-shadow: 0 0 10px rgba(119, 155, 255, 0.6);
  animation: scrollCueMove 1.35s ease-in-out infinite;
}

.eyebrow {
  margin: 0;
  color: #9eb0ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-copy h1 span {
  background: linear-gradient(130deg, #8ddaff 0%, #9f80ff 70%, #d2b8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.subtitle strong {
  color: #d6ddff;
}

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

.hero-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 10px 25px rgba(88, 89, 255, 0.35);
}

.btn-outline {
  color: var(--text);
  background: rgba(9, 14, 36, 0.75);
  border: 1px solid var(--line);
}

.metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.9rem;
}

.metrics article {
  background: linear-gradient(145deg, rgba(13, 22, 53, 0.88), rgba(21, 16, 36, 0.88));
  border: 1px solid rgba(165, 176, 239, 0.22);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metrics strong {
  display: block;
  font-size: 1rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-scene {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  overflow: hidden;
  isolation: isolate;
}

.phone-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 255, 0.5), rgba(138, 73, 255, 0.1) 62%, transparent 78%);
  filter: blur(12px);
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

.chat-stream-bg {
  position: absolute;
  inset: 8% 2% 8%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  pointer-events: none;
  z-index: 0;
}

.bg-chat-lane {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  opacity: 0.62;
}

.lane-left {
  transform: translateY(-36%);
  animation: backgroundChatsDown 18s linear infinite;
}

.lane-right {
  transform: translateY(-54%);
  animation: backgroundChatsUp 20s linear infinite;
}

.bg-chat-bubble {
  display: block;
  max-width: 94%;
  font-size: 0.67rem;
  line-height: 1.34;
  padding: 0.42rem 0.56rem;
  border-radius: 10px;
  color: rgba(234, 240, 255, 0.82);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(146, 164, 245, 0.26);
  box-shadow: 0 8px 18px rgba(4, 8, 20, 0.22);
}

.bg-chat-bubble.inbound {
  justify-self: start;
  background: rgba(49, 69, 150, 0.28);
}

.bg-chat-bubble.outbound {
  justify-self: end;
  background: rgba(113, 73, 183, 0.24);
  text-align: right;
}

.phone {
  width: min(320px, 92%);
  aspect-ratio: 9 / 18;
  border-radius: 32px;
  padding: 13px;
  background: linear-gradient(180deg, #14192d, #07090f);
  border: 1px solid rgba(230, 235, 255, 0.16);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(9deg);
  animation: float 5.2s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

.phone::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  border: 1px solid rgba(138, 73, 255, 0.22);
  transform: translateZ(-8px);
}

.phone-notch {
  width: 34%;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: #06080f;
  margin: 0 auto;
}

.phone-screen {
  margin-top: 10px;
  border-radius: 24px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, #0b122d 0%, #050810 100%);
  border: 1px solid rgba(182, 194, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(174, 184, 230, 0.18);
  background: rgba(7, 11, 25, 0.88);
}

.chat-brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.chat-brand-mini img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(185, 195, 255, 0.45);
}

.chat-header strong {
  font-size: 0.86rem;
}

.chat-header small {
  color: #8fd3ff;
  font-weight: 600;
  font-size: 0.72rem;
}

.chat-feed {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(180deg, rgba(7, 13, 27, 0.35), rgba(6, 12, 23, 0.45));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 138, 214, 0.65) transparent;
}

.chat-feed::-webkit-scrollbar {
  width: 5px;
}

.chat-feed::-webkit-scrollbar-thumb {
  background: rgba(122, 138, 214, 0.65);
  border-radius: 999px;
}

.msg {
  max-width: 90%;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  word-break: break-word;
}

.msg.animated {
  opacity: 0;
  transform: translateY(12px);
  animation: message 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.inbound {
  background: rgba(53, 79, 173, 0.35);
  border: 1px solid rgba(91, 123, 255, 0.52);
  align-self: flex-start;
}

.outbound {
  background: rgba(138, 73, 255, 0.28);
  border: 1px solid rgba(164, 110, 255, 0.55);
  align-self: flex-end;
}

.msg.thinking {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 50px;
  padding: 0.58rem 0.62rem;
}

.msg.thinking .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8c4ff;
  opacity: 0.55;
  animation: thinkingDot 1.25s infinite ease-in-out;
}

.msg.thinking .dot.d2 {
  animation-delay: 0.14s;
}

.msg.thinking .dot.d3 {
  animation-delay: 0.28s;
}

.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 1.15s; }
.delay-3 { animation-delay: 2.1s; }
.delay-4 { animation-delay: 3.05s; }
.delay-5 { animation-delay: 4s; }

.phone-input-wrap {
  margin-top: auto;
  border-top: 1px solid rgba(173, 184, 235, 0.12);
  background: linear-gradient(180deg, rgba(5, 10, 26, 0.85), rgba(5, 10, 26, 0.96));
}

.typing {
  padding: 0.55rem 0.85rem 0.2rem;
  color: #96a8f4;
  font-size: 0.74rem;
}

.phone-input {
  padding: 0.45rem 0.7rem 0.78rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.phone-input input {
  width: 100%;
  border: 1px solid rgba(157, 170, 233, 0.25);
  background: rgba(12, 18, 42, 0.95);
  color: var(--text);
  border-radius: 8px;
  font: inherit;
  font-size: 0.74rem;
  padding: 0.48rem 0.58rem;
}

.phone-input input:focus {
  outline: 2px solid rgba(138, 73, 255, 0.52);
  outline-offset: 1px;
}

.phone-input button {
  border: 1px solid rgba(164, 180, 255, 0.2);
  border-radius: 8px;
  padding: 0.46rem 0.65rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, rgba(47, 109, 255, 0.95), rgba(138, 73, 255, 0.95));
  cursor: pointer;
}

.phone-input button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.products,
.contact {
  margin-top: 1.45rem;
  background: linear-gradient(145deg, rgba(12, 19, 48, 0.73), rgba(21, 16, 36, 0.8));
  border: 1px solid rgba(170, 182, 243, 0.18);
  border-radius: 20px;
  padding: 1.35rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 36px rgba(6, 10, 25, 0.36);
}

.offer-layout {
  margin-top: clamp(2.3rem, 5vw, 4.8rem);
  padding: clamp(0.6rem, 1.7vw, 1.2rem) 0 clamp(1.6rem, 3vw, 2.8rem);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(1.2rem, 3.2vw, 3rem);
  align-items: start;
  isolation: isolate;
}

.offer-layout::before {
  content: '';
  position: absolute;
  inset: 8% -4% 6% -8%;
  background:
    linear-gradient(116deg, rgba(16, 33, 84, 0.62) 0%, rgba(22, 28, 72, 0.28) 44%, rgba(19, 13, 40, 0.54) 100%);
  clip-path: polygon(0 14%, 54% 0, 100% 24%, 94% 86%, 46% 100%, 0 76%);
  opacity: 0.92;
  z-index: 0;
}

.offer-layout::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(118, 168, 255, 0.26), transparent 35%),
    radial-gradient(circle at 86% 78%, rgba(151, 98, 255, 0.23), transparent 34%),
    radial-gradient(circle at 52% 54%, rgba(35, 206, 255, 0.08), transparent 38%);
  opacity: 0.72;
  pointer-events: none;
  z-index: 1;
}

.offer-layout .products,
.offer-layout .contact {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.offer-layout .products-grid {
  max-width: none;
}

.offer-layout .section-head {
  justify-content: flex-start;
  padding-bottom: 0.55rem;
}

.offer-layout .section-head h2 {
  text-align: left;
  max-width: 24ch;
  letter-spacing: 0.015em;
}

.offer-layout-bg {
  position: absolute;
  inset: -16% -8%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.offer-grid-wave {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(104deg, rgba(108, 144, 255, 0.14) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(0deg, rgba(134, 157, 255, 0.09) 0 1px, transparent 1px 28px);
  opacity: 0.38;
  animation: offerGridDrift 24s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 1) 84%, transparent 100%);
}

.offer-ribbon-track {
  position: absolute;
  left: -12%;
  width: 124%;
  display: flex;
  gap: 2.6rem;
  white-space: nowrap;
  font-size: 0.66rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(193, 210, 255, 0.72);
  opacity: 0.72;
}

.offer-ribbon-track span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(152, 177, 255, 0.42);
  background: linear-gradient(130deg, rgba(24, 40, 96, 0.36), rgba(34, 20, 74, 0.34));
}

.ribbon-top {
  top: 18%;
  transform: rotate(-7deg);
  animation: offerRibbonDriftA 20s linear infinite;
}

.ribbon-bottom {
  bottom: 12%;
  transform: rotate(6deg);
  animation: offerRibbonDriftB 22s linear infinite;
}

.offer-energy-line {
  position: absolute;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  opacity: 0.5;
  filter: drop-shadow(0 10px 20px rgba(8, 14, 38, 0.35));
}

.offer-energy-line path {
  fill: none;
  stroke: rgba(152, 198, 255, 0.84);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: offerPathFlow 5.6s linear infinite;
}

.line-a {
  left: 8%;
  top: 26%;
  animation: offerLineFloatA 12s ease-in-out infinite;
}

.line-b {
  right: 6%;
  bottom: 20%;
  animation: offerLineFloatB 14s ease-in-out infinite;
}

.offer-floating-chat {
  position: absolute;
  max-width: 210px;
  font-size: 0.68rem;
  line-height: 1.34;
  padding: 0.45rem 0.58rem;
  border-radius: 11px;
  color: rgba(226, 235, 255, 0.86);
  border: 1px solid rgba(148, 174, 255, 0.34);
  background: linear-gradient(136deg, rgba(19, 31, 76, 0.54), rgba(30, 20, 61, 0.46));
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 28px rgba(4, 9, 23, 0.3);
}

.float-chat-1 {
  left: 2%;
  top: 31%;
  animation: offerFloatChatA 8.5s ease-in-out infinite;
}

.float-chat-2 {
  left: 52%;
  top: 10%;
  animation: offerFloatChatB 9.3s ease-in-out infinite;
}

.float-chat-3 {
  right: 4%;
  bottom: 33%;
  animation: offerFloatChatA 10.4s ease-in-out infinite reverse;
}

.float-chat-4 {
  right: 37%;
  bottom: 3%;
  animation: offerFloatChatB 8.2s ease-in-out infinite reverse;
}

.offer-product-shell {
  margin-left: -0.9rem;
  margin-right: 0.45rem;
  transform: rotate(-0.55deg) translateY(-6px);
  border-radius: 34px 18px 30px 14px;
  border-color: rgba(145, 173, 255, 0.32);
  background:
    linear-gradient(160deg, rgba(14, 28, 69, 0.9), rgba(8, 13, 30, 0.86)),
    radial-gradient(circle at 18% 8%, rgba(102, 163, 255, 0.16), transparent 44%);
  box-shadow:
    0 24px 42px rgba(4, 10, 28, 0.55),
    inset 0 1px 0 rgba(215, 227, 255, 0.07);
}

.offer-product-shell::before {
  content: 'DEMO INTERATIVO';
  position: absolute;
  top: -12px;
  left: 1.1rem;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #d3e9ff;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(166, 204, 255, 0.56);
  background: linear-gradient(130deg, rgba(42, 92, 188, 0.92), rgba(45, 35, 110, 0.92));
}

.offer-contact-shell {
  margin-top: clamp(2.4rem, 6vw, 5.8rem);
  margin-right: -0.85rem;
  transform: rotate(0.7deg);
  border-radius: 18px 36px 18px 30px;
  border-color: rgba(170, 182, 243, 0.26);
  background:
    linear-gradient(142deg, rgba(12, 21, 54, 0.92), rgba(25, 15, 47, 0.9)),
    radial-gradient(circle at 85% 14%, rgba(156, 108, 255, 0.2), transparent 42%);
  box-shadow:
    0 22px 36px rgba(4, 8, 22, 0.52),
    inset 0 1px 0 rgba(226, 233, 255, 0.06);
}

.offer-contact-shell::before {
  content: 'PROPOSTA';
  position: absolute;
  top: -11px;
  right: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #efe8ff;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 172, 255, 0.46);
  background: linear-gradient(130deg, rgba(110, 70, 182, 0.88), rgba(45, 35, 110, 0.94));
}

.offer-contact-shell .contact-copy {
  padding: 0.2rem 0.2rem 0.3rem;
}

.offer-contact-shell .contact-form {
  border-radius: 14px;
  border-color: rgba(186, 197, 255, 0.28);
  background: linear-gradient(150deg, rgba(6, 11, 27, 0.9), rgba(10, 13, 30, 0.84));
  box-shadow: inset 0 1px 0 rgba(247, 250, 255, 0.06);
}

.offer-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #d5ecff 0%, #7eb7ff 62%, rgba(126, 183, 255, 0) 100%);
  box-shadow: 0 0 16px rgba(126, 183, 255, 0.65);
  opacity: 0.65;
}

.spark-1 {
  left: 8%;
  top: 14%;
  animation: offerSparkDriftA 8.5s ease-in-out infinite;
}

.spark-2 {
  left: 46%;
  top: 10%;
  animation: offerSparkDriftB 10.5s ease-in-out infinite;
}

.spark-3 {
  right: 13%;
  bottom: 16%;
  animation: offerSparkDriftA 9.3s ease-in-out infinite reverse;
}

.spark-4 {
  right: 42%;
  bottom: 8%;
  animation: offerSparkDriftB 7.6s ease-in-out infinite reverse;
}

.spark-5 {
  left: 32%;
  bottom: 30%;
  animation: offerSparkDriftA 6.6s ease-in-out infinite;
}

.spark-6 {
  right: 18%;
  top: 28%;
  animation: offerSparkDriftB 8.8s ease-in-out infinite;
}

.section-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1rem;
}

.section-head h2 {
  margin: 0;
  max-width: 34ch;
  text-align: center;
  line-height: 1.14;
  font-size: clamp(1.24rem, 2.2vw, 1.9rem);
}

.product-switch {
  margin-top: 1.2rem;
}

.products-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
  max-width: 980px;
  margin-inline: auto;
}

.product-switch-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-tab {
  font: inherit;
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  letter-spacing: 0.01em;
  min-height: 76px;
  background:
    linear-gradient(130deg, rgba(26, 44, 102, 0.9), rgba(41, 17, 79, 0.86));
  border: 1px solid rgba(147, 165, 250, 0.38);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 20px rgba(9, 14, 38, 0.35);
  position: relative;
  overflow: hidden;
}

.product-tab::before {
  content: '';
  position: absolute;
  inset: -160% auto auto -30%;
  width: 45%;
  height: 300%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(18deg);
  opacity: 0.55;
  animation: tabShine 4.5s linear infinite;
  pointer-events: none;
}

.product-tab.active {
  background: linear-gradient(130deg, rgba(47, 109, 255, 0.4), rgba(138, 73, 255, 0.36));
  border-color: rgba(160, 177, 255, 0.92);
  box-shadow: 0 12px 28px rgba(76, 91, 230, 0.42);
  transform: translateY(-2px);
}

.product-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 177, 255, 0.78);
}

.product-tab:nth-child(2)::before {
  animation-delay: 1.1s;
}

.product-panel {
  padding: 1.22rem;
  border-radius: 20px;
  border: 1px solid rgba(170, 182, 243, 0.24);
  background: linear-gradient(160deg, rgba(9, 16, 40, 0.9), rgba(7, 11, 25, 0.82));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(3, 8, 24, 0.38);
}

.product-panel::before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  top: -110px;
  right: -88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 156, 255, 0.22), transparent 72%);
  z-index: -1;
}

.product-panel::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(104, 162, 255, 0.95), rgba(165, 113, 255, 0.95));
  opacity: 0.86;
}

.product-panel[data-product-panel="bot_ia"] {
  background: linear-gradient(160deg, rgba(10, 21, 52, 0.9), rgba(8, 12, 28, 0.82));
}

.product-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 182, 243, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(4, 9, 28, 0.45);
}

.product-panel.is-selected {
  border-color: rgba(160, 177, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(15, 22, 50, 0.5),
    0 0 0 1px rgba(129, 163, 255, 0.26);
}

.product-panel h3 {
  margin-top: 0.5rem;
  line-height: 1.22;
}

.product-panel p,
.product-panel li {
  color: var(--muted);
}

.product-panel ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.product-panel .btn {
  margin-top: auto;
  align-self: flex-start;
}

.botia-showcase {
  margin: 0 0 1.15rem;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 0.35rem;
  align-items: start;
}

.botia-chatboard {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(137, 156, 249, 0.35);
  padding: 2.25rem 0.82rem 0.82rem;
  background: rgba(6, 11, 24, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: grid;
  min-height: 320px;
  align-content: start;
  gap: 0.5rem;
  overflow: hidden;
}

.botia-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  opacity: 0.88;
}

.botia-chatboard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 24, 0.24), rgba(7, 10, 24, 0.48));
  pointer-events: none;
}

.botia-badge {
  position: absolute;
  top: 0.62rem;
  right: 0.58rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(199, 209, 255, 0.5);
  z-index: 2;
}

.botia-wa-logo {
  position: absolute;
  top: 0.58rem;
  left: 0.58rem;
  width: 28px;
  height: 28px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 194, 94, 0.6);
  box-shadow:
    0 0 0 2px rgba(35, 178, 88, 0.2),
    0 8px 18px rgba(0, 0, 0, 0.34);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: waBadgePulse 2.1s ease-in-out infinite;
  z-index: 2;
}

.botia-bubble {
  max-width: 90%;
  font-size: 0.78rem;
  line-height: 1.3;
  padding: 0.5rem 0.58rem;
  border-radius: 9px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(2, 8, 20, 0.22);
}

.botia-bubble.inbound {
  justify-self: start;
  background: rgba(255, 255, 255, 0.91);
  color: #0f1a35;
}

.botia-bubble.outbound {
  justify-self: end;
  background: rgba(204, 255, 233, 0.9);
  color: #123025;
}

.botia-metrics {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr;
  justify-items: stretch;
  align-content: start;
}

.botia-metrics article {
  --mx: 50%;
  --my: 50%;
  border-radius: 10px;
  border: 1px solid rgba(170, 182, 243, 0.24);
  background: linear-gradient(145deg, rgba(10, 14, 36, 0.92), rgba(15, 16, 36, 0.88));
  width: 100%;
  min-height: 98px;
  padding: 0.68rem 0.72rem;
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
  text-align: left;
  display: block;
}

.botia-metrics article::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(86, 133, 255, 0.3), transparent 45%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.botia-metrics article::after {
  content: '';
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(84, 145, 255, 0.92), rgba(145, 100, 255, 0.92));
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.botia-metrics article:hover,
.botia-metrics article.active {
  transform: translateY(-3px);
  border-color: rgba(173, 194, 255, 0.6);
  box-shadow: 0 12px 26px rgba(5, 9, 25, 0.42);
}

.botia-metrics article:hover::before,
.botia-metrics article.active::before {
  opacity: 1;
}

.botia-metrics article:hover::after,
.botia-metrics article.active::after {
  transform: scaleX(1);
}

.botia-metrics strong {
  display: block;
  font-size: 0.86rem;
}

.botia-metrics span {
  color: #aeb8e8;
  font-size: 0.77rem;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0.6rem;
}

.contact-copy p {
  color: var(--muted);
}

.selected-product {
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: #cfc8ff;
  font-weight: 700;
}

.contact-note {
  max-width: 50ch;
}

.contact-form {
  display: grid;
  gap: 0.4rem;
  background: rgba(4, 6, 14, 0.72);
  border: 1px solid rgba(167, 179, 239, 0.18);
  border-radius: 12px;
  padding: 1rem;
}

.contact-form label {
  font-size: 0.86rem;
  color: #bec7ef;
  margin-top: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(166, 177, 235, 0.22);
  background: rgba(6, 11, 29, 0.85);
  color: var(--text);
  border-radius: 10px;
  font: inherit;
  padding: 0.67rem 0.72rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(138, 73, 255, 0.55);
  outline-offset: 1px;
}

.contact-form .btn {
  margin-top: 0.75rem;
}

.footer {
  padding: 1.5rem 0 2.2rem;
  color: #93a0ce;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(166, 177, 235, 0.32);
  background: rgba(7, 12, 31, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(175, 190, 255, 0.72);
  box-shadow: 0 10px 18px rgba(8, 14, 38, 0.4);
}

.social-link:focus-visible {
  outline: 2px solid rgba(171, 186, 255, 0.84);
  outline-offset: 2px;
}

.social-link-instagram:hover {
  background: linear-gradient(130deg, #f58529, #dd2a7b 55%, #8134af);
  border-color: rgba(245, 133, 41, 0.9);
}

.social-link-linkedin:hover {
  background: #0a66c2;
  border-color: rgba(10, 102, 194, 0.9);
}

.social-link-whatsapp:hover {
  background: #25d366;
  border-color: rgba(37, 211, 102, 0.9);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks-card {
  width: min(700px, 92%);
  background: linear-gradient(145deg, rgba(12, 19, 48, 0.8), rgba(21, 16, 36, 0.85));
  border: 1px solid rgba(170, 182, 243, 0.2);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.thanks-card .btn {
  margin-right: 0.55rem;
  margin-top: 0.7rem;
  display: inline-block;
}

.thanks-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(176, 187, 246, 0.45);
  margin-bottom: 0.65rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 16, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 999;
}

.contact-modal.is-open {
  display: grid;
}

.contact-modal-card {
  width: min(460px, 95%);
  border-radius: 14px;
  border: 1px solid rgba(170, 182, 243, 0.28);
  background: linear-gradient(150deg, rgba(10, 18, 44, 0.95), rgba(22, 15, 40, 0.94));
  box-shadow: 0 18px 34px rgba(5, 9, 24, 0.48);
  padding: 1rem;
}

.contact-modal-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.contact-modal-card p {
  margin: 0;
  color: var(--muted);
}

.contact-modal-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.986);
  filter: blur(7px);
  transition:
    opacity 840ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 840ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes ambientSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes ambientDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(30px, 12px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes pulse {
  0%,
  100% { transform: scale(0.95); opacity: 0.72; }
  50% { transform: scale(1.07); opacity: 0.98; }
}

@keyframes float {
  0%,
  100% { transform: rotateY(-18deg) rotateX(9deg) translateY(0); }
  50% { transform: rotateY(-16deg) rotateX(8deg) translateY(-8px); }
}

@keyframes message {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes backgroundChatsDown {
  0% { transform: translateY(-36%); }
  100% { transform: translateY(10%); }
}

@keyframes backgroundChatsUp {
  0% { transform: translateY(12%); }
  100% { transform: translateY(-58%); }
}

@keyframes offerGridDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(28px, 16px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes offerRibbonDriftA {
  0% { transform: translateX(0) rotate(-7deg); }
  100% { transform: translateX(-24%) rotate(-7deg); }
}

@keyframes offerRibbonDriftB {
  0% { transform: translateX(-18%) rotate(6deg); }
  100% { transform: translateX(0) rotate(6deg); }
}

@keyframes offerPathFlow {
  0% { stroke-dashoffset: 0; opacity: 0.55; }
  50% { opacity: 0.92; }
  100% { stroke-dashoffset: -120; opacity: 0.55; }
}

@keyframes offerLineFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -10px, 0); }
}

@keyframes offerLineFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, 12px, 0); }
}

@keyframes offerFloatChatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(8px, -10px, 0) rotate(1.6deg); }
}

@keyframes offerFloatChatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(-8px, 10px, 0) rotate(-1.4deg); }
}

@keyframes offerSparkDriftA {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.42; }
  50% { transform: translate3d(6px, -16px, 0); opacity: 0.95; }
}

@keyframes offerSparkDriftB {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.38; }
  50% { transform: translate3d(-8px, 12px, 0); opacity: 0.88; }
}

@keyframes scrollCueMove {
  0% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
}

@keyframes thinkingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.38; }
  40% { transform: translateY(-3px); opacity: 1; }
}

@keyframes tabShine {
  0% { transform: translateX(0) rotate(18deg); opacity: 0; }
  8% { opacity: 0.45; }
  30% { transform: translateX(460%) rotate(18deg); opacity: 0; }
  100% { transform: translateX(460%) rotate(18deg); opacity: 0; }
}

@keyframes waBadgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 2px rgba(35, 178, 88, 0.2), 0 8px 18px rgba(0, 0, 0, 0.34); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 4px rgba(35, 178, 88, 0.18), 0 10px 22px rgba(0, 0, 0, 0.36); }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-bottom: 1.2rem;
  }

  .desktop-scroll-indicator {
    display: none;
  }

  .phone {
    transform: rotateY(-12deg) rotateX(7deg);
  }

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

  .offer-layout {
    margin-top: 1.8rem;
    padding: 0.35rem 0 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .offer-layout::before {
    inset: 4% -2% 2% -2%;
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
    opacity: 0.85;
  }

  .offer-layout::after {
    opacity: 0.62;
  }

  .offer-layout .section-head {
    justify-content: center;
  }

  .offer-layout .section-head h2 {
    text-align: center;
    max-width: 34ch;
  }

  .offer-layout-bg {
    inset: -8% -2%;
    opacity: 0.66;
  }

  .offer-product-shell,
  .offer-contact-shell {
    margin: 0;
    transform: none;
    border-radius: 24px;
  }

  .offer-contact-shell {
    margin-top: 0.35rem;
  }

  .offer-product-shell::before,
  .offer-contact-shell::before {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .offer-floating-chat {
    display: none;
  }

  .offer-ribbon-track {
    opacity: 0.58;
    font-size: 0.6rem;
  }

  .product-switch-featured {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: flex;
    justify-content: center;
    padding-bottom: 0.1rem;
  }

  .section-head h2 {
    margin: 0;
    max-width: 34ch;
    text-align: center;
  }

  .botia-showcase {
    grid-template-columns: 1fr;
  }

  .botia-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .topbar {
    position: static;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-actions .hero-nav-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(151, 186, 255, 0.82);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.17),
      0 0 0 1px rgba(123, 169, 255, 0.35),
      0 0 14px rgba(69, 116, 255, 0.38),
      0 0 24px rgba(141, 93, 255, 0.24);
    animation: ledEdgePulse 1.9s ease-in-out infinite;
  }

  .hero-actions .hero-nav-btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 10px;
    border: 1px solid rgba(182, 213, 255, 0.22);
    pointer-events: none;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 56px;
    padding: 0.72rem 0.62rem;
    font-size: 0.96rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
  }

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

  .phone-scene {
    min-height: 500px;
    overflow: visible;
    padding-bottom: 1.2rem;
  }

  .chat-stream-bg {
    inset: 4% 1% 14%;
    opacity: 0.45;
  }

  .bg-chat-bubble {
    font-size: 0.62rem;
    padding: 0.38rem 0.5rem;
  }

  .phone {
    transform: rotateY(-6deg) rotateX(4deg);
    animation: floatMobile 4.6s ease-in-out infinite;
  }

  .products,
  .contact {
    padding: 1.1rem;
  }

  .offer-layout {
    gap: 0.82rem;
    padding-bottom: 0.6rem;
  }

  .offer-layout::before {
    inset: 3% -2% 2%;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 92%);
  }

  .offer-layout-bg {
    inset: -10% -4%;
    opacity: 0.62;
  }

  .offer-ribbon-track {
    left: -28%;
    width: 156%;
    font-size: 0.55rem;
    gap: 1.4rem;
  }

  .ribbon-top {
    top: 14%;
  }

  .ribbon-bottom {
    bottom: 9%;
  }

  .offer-energy-line {
    width: 220px;
    opacity: 0.38;
  }

  .line-a {
    left: -8%;
    top: 24%;
  }

  .line-b {
    right: -12%;
    bottom: 16%;
  }

  .offer-product-shell::before,
  .offer-contact-shell::before {
    position: static;
    display: inline-flex;
    margin-bottom: 0.55rem;
  }

  .offer-contact-shell .contact-copy {
    padding-top: 0;
  }

  .phone-input {
    grid-template-columns: 1fr;
  }

  .phone-input button {
    width: 100%;
  }

  .chat-gpt-indicator {
    left: 47%;
    width: min(86%, 250px);
  }

  .chat-gpt-indicator.indicator-muted {
    transform: translateX(-50%);
  }
}


.chat-gpt-indicator {
  position: absolute;
  left: calc(50% + 176px);
  top: 93%;
  transform: translateY(-50%);
  width: 176px;
  border-radius: 12px;
  border: 1px solid rgba(160, 191, 255, 0.55);
  background: linear-gradient(135deg, rgba(9, 20, 50, 0.92), rgba(24, 15, 48, 0.9));
  padding: 0.44rem 0.56rem;
  box-shadow: 0 16px 28px rgba(5, 9, 25, 0.42);
  animation: chatIndicatorPulse 1.8s ease-in-out infinite;
  z-index: 5;
}

.chat-gpt-indicator strong {
  display: block;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #e9efff;
}

.chat-gpt-indicator span {
  display: block;
  margin-top: 0.2rem;
  color: #b7c4f7;
  font-size: 0.72rem;
  line-height: 1.25;
}

.chat-gpt-indicator::after {
  content: '';
  position: absolute;
  left: -11px;
  top: 56%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 11px 8px 0;
  border-color: transparent rgba(119, 146, 240, 0.86) transparent transparent;
  filter: drop-shadow(-2px 0 2px rgba(3, 7, 24, 0.55));
  animation: chatArrowNudge 1.2s ease-in-out infinite;
}

.chat-gpt-indicator.indicator-muted {
  opacity: 0.7;
  animation-duration: 2.8s;
}

.phone-input input {
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.phone-input input.input-attention {
  border-color: rgba(132, 175, 255, 0.96);
  box-shadow: 0 0 0 2px rgba(83, 131, 255, 0.28), 0 0 24px rgba(138, 73, 255, 0.34);
  animation: inputAttention 1.05s ease-in-out infinite;
}

@keyframes chatIndicatorPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 16px 28px rgba(5, 9, 25, 0.42);
  }
  50% {
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 20px 32px rgba(8, 14, 40, 0.48);
  }
}

@keyframes chatArrowNudge {
  0%,
  100% {
    left: -11px;
  }
  50% {
    left: -15px;
  }
}

@keyframes inputAttention {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(83, 131, 255, 0.24), 0 0 12px rgba(138, 73, 255, 0.26);
  }
  50% {
    box-shadow: 0 0 0 2px rgba(83, 131, 255, 0.4), 0 0 26px rgba(138, 73, 255, 0.45);
  }
}

@keyframes ledEdgePulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      0 0 0 1px rgba(123, 169, 255, 0.3),
      0 0 10px rgba(69, 116, 255, 0.3),
      0 0 18px rgba(141, 93, 255, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 0 0 1px rgba(143, 189, 255, 0.42),
      0 0 18px rgba(76, 127, 255, 0.48),
      0 0 30px rgba(157, 107, 255, 0.3);
  }
}

@keyframes floatMobile {
  0%,
  100% {
    transform: rotateY(-6deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(4deg) translateY(-4px);
  }
}

@media (max-width: 980px) {
  .chat-gpt-indicator {
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    width: min(92%, 360px);
    text-align: center;
  }

  .chat-gpt-indicator::after {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-width: 11px 9px 0 9px;
    border-color: rgba(119, 146, 240, 0.86) transparent transparent transparent;
    animation: none;
  }

  .chat-gpt-indicator.indicator-muted {
    transform: translateX(-50%);
  }
}

.mobile-chat-indicator {
  display: none;
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at 14% 12%, rgba(47, 109, 255, 0.16), transparent 36%),
      radial-gradient(circle at 88% 11%, rgba(138, 73, 255, 0.15), transparent 40%),
      radial-gradient(circle at 44% 100%, rgba(33, 210, 255, 0.08), transparent 44%),
      linear-gradient(155deg, #010204 0%, #02050d 50%, #04060d 100%);
  }

  body::before {
    opacity: 0.7;
  }

  body::after {
    opacity: 0.12;
  }

  #chat-gpt-indicator {
    display: none !important;
  }

  .mobile-chat-indicator {
    display: block !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: min(92%, 320px) !important;
    margin: 0.9rem auto 0;
    text-align: center;
    padding: 0.55rem 0.65rem;
    animation: chatIndicatorPulse 1.8s ease-in-out infinite;
  }

  .mobile-chat-indicator::after {
    display: none !important;
  }
}



