/* Ceno Hub - fő színek itt módosíthatók. */
:root {
  --bg: #050712;
  --panel: rgba(12, 18, 38, 0.72);
  --panel-strong: rgba(15, 23, 48, 0.88);
  --line: rgba(176, 198, 255, 0.16);
  --text: #f6f8ff;
  --muted: #9ba8c4;
  --purple: #a855f7;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #58f0b2;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.11), transparent 34rem),
    linear-gradient(180deg, #030510 0%, var(--bg) 48%, #080b1a 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.grid-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: 0.55;
}

.orb {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.58;
  animation: drift 12s ease-in-out infinite alternate, huePulse 8s ease-in-out infinite alternate;
}

.orb-one {
  left: -9rem;
  top: 5rem;
  background: rgba(168, 85, 247, 0.34);
}

.orb-two {
  right: -10rem;
  top: 16rem;
  background: rgba(59, 130, 246, 0.28);
  animation-delay: -4s;
}

.orb-three {
  left: 42%;
  bottom: -16rem;
  background: rgba(34, 211, 238, 0.24);
  animation-delay: -8s;
}

.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(226, 238, 255, 0.8);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.95);
  animation: sparkFloat 7s ease-in-out infinite;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(168, 85, 247, 0.08), transparent, rgba(34, 211, 238, 0.08), transparent);
  animation: slowSpin 22s linear infinite;
  opacity: 0.8;
}

.s1 { left: 18%; top: 34%; }
.s2 { right: 22%; top: 24%; animation-delay: -2s; }
.s3 { left: 66%; bottom: 18%; animation-delay: -4s; }

.cursor-glow {
  position: absolute;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 35%);
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), rgba(168, 85, 247, 0.1) 38%, transparent 68%);
  filter: blur(28px);
  transform: translate(-50%, -50%);
  transition: left 0.16s ease, top 0.16s ease;
  opacity: 0.85;
}

.scanline {
  position: absolute;
  inset: 0;
  height: 18rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  animation: scanMove 7s linear infinite;
  opacity: 0.55;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2.2rem, -1.7rem, 0) scale(1.08); }
}

@keyframes sparkFloat {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-34px); opacity: 1; }
}

@keyframes scanMove {
  from { transform: translateY(-32rem); }
  to { transform: translateY(120vh); }
}

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

@keyframes huePulse {
  from { filter: blur(90px) hue-rotate(0deg); }
  to { filter: blur(96px) hue-rotate(22deg); }
}

@keyframes neonBreath {
  0%, 100% { box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48), 0 0 44px rgba(59, 130, 246, 0.14); }
  50% { box-shadow: 0 36px 115px rgba(0, 0, 0, 0.54), 0 0 78px rgba(168, 85, 247, 0.22), 0 0 38px rgba(34, 211, 238, 0.18); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shineSweep {
  0% { transform: translateX(-140%) skewX(-18deg); }
  42%, 100% { transform: translateX(180%) skewX(-18deg); }
}

@keyframes orbitTilt {
  0%, 100% { transform: rotate(-3deg) translateY(0) scale(1); }
  50% { transform: rotate(2deg) translateY(-12px) scale(1.025); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(28px) scale(0.96); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes iconPulse {
  0%, 100% { transform: translateY(0) rotate(0deg); box-shadow: 0 0 34px rgba(80, 168, 255, 0.28); }
  50% { transform: translateY(-3px) rotate(-2deg); box-shadow: 0 0 48px rgba(168, 85, 247, 0.34), 0 0 32px rgba(34, 211, 238, 0.22); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(176, 198, 255, 0.12);
  background: rgba(5, 7, 18, 0.72);
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 34px rgba(80, 168, 255, 0.28);
  animation: iconPulse 3.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.12);
}

.nav-links a.nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue), var(--cyan));
  background-size: 180% 180%;
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.22);
  animation: gradientShift 4s ease-in-out infinite alternate;
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.app-shell {
  min-height: calc(100vh - 78px);
}

.view-section {
  padding: clamp(58px, 8vw, 100px) 0;
  animation: popIn 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.bot-page {
  animation: popIn 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c5d9ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(88, 240, 178, 0.9);
}

h1 {
  margin: 0;
  background: linear-gradient(120deg, #ffffff 0%, #d9ceff 25%, var(--purple) 45%, var(--blue) 68%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lead,
.placeholder-card p,
.project-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 690px;
  margin: 22px auto 0;
  font-size: clamp(17px, 2.2vw, 21px);
}

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

.project-card,
.placeholder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.project-card {
  animation: neonBreath 4.8s ease-in-out infinite;
}

.project-card:nth-child(2) {
  animation-delay: -1.6s;
}

.project-card::before,
.placeholder-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.32), transparent 38%, rgba(34, 211, 238, 0.28));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  background-size: 220% 220%;
  animation: borderFlow 4s linear infinite;
}

.project-card:hover {
  transform: translateY(-12px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(34, 211, 238, 0.36);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.52),
    0 0 54px rgba(34, 211, 238, 0.12);
}

.project-card:hover::before,
.placeholder-card::before {
  opacity: 1;
}

.active-card {
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.active-card .project-icon {
  animation: orbitTilt 4.6s ease-in-out infinite;
}

.locked-card {
  opacity: 0.68;
}

.locked-card:hover {
  opacity: 0.86;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.project-badge,
.locked-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  padding: 0 13px;
  color: #d8ebff;
  background: rgba(34, 211, 238, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-badge.soon {
  border-color: rgba(168, 85, 247, 0.28);
  background: rgba(168, 85, 247, 0.1);
}

.project-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  color: white;
  border: 1px solid rgba(176, 198, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 36px rgba(59, 130, 246, 0.3), 0 0 54px rgba(168, 85, 247, 0.18);
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
}

.project-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.project-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.project-card p {
  min-height: 92px;
  margin: 16px 0 28px;
  font-size: 16px;
}

.card-button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: shineSweep 3.4s ease-in-out infinite;
}

.card-button:hover:not(:disabled) {
  transform: translateY(-3px);
}

.card-button.primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue) 58%, var(--cyan));
  background-size: 180% 180%;
  animation: gradientShift 4s ease-in-out infinite alternate;
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.28), 0 0 24px rgba(168, 85, 247, 0.22);
}

.card-button.secondary,
.card-button.disabled {
  color: #e8efff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.065);
}

.card-button.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.locked-label {
  margin-left: 10px;
  color: #d7c5ff;
}

.lock-icon,
.big-lock {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(186, 132, 255, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 36%, rgba(168, 85, 247, 0.25), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.36),
    inset 0 0 18px rgba(168, 85, 247, 0.18);
}

.lock-icon::before,
.big-lock::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(203, 168, 255, 0.42);
  border-radius: 21px;
  box-shadow: inset 0 0 16px rgba(168, 85, 247, 0.22), 0 0 18px rgba(168, 85, 247, 0.16);
}

.lock-icon::after,
.big-lock::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  animation: shineSweep 2.8s ease-in-out infinite;
}

.lock-shackle,
.lock-body {
  position: absolute;
  z-index: 1;
  display: block;
}

.lock-shackle {
  width: 31px;
  height: 28px;
  top: 17px;
  border: 5px solid rgba(232, 211, 255, 0.96);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.72),
    inset 0 0 12px rgba(255, 255, 255, 0.16);
}

.lock-body {
  width: 40px;
  height: 29px;
  bottom: 16px;
  border: 2px solid rgba(231, 243, 255, 0.9);
  border-radius: 11px;
  background: linear-gradient(135deg, #e15dff 0%, #6557ff 50%, #22d3ee 100%);
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.82),
    0 0 22px rgba(34, 211, 238, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.52);
  transform: translateX(-50%);
}

.lock-chain {
  position: absolute;
  inset: 22px auto auto 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%) rotate(-8deg);
  opacity: 0.34;
}

.lock-chain span,
.lock-chain i {
  display: block;
  width: 48px;
  height: 18px;
  border: 2px solid rgba(216, 198, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.25);
}

.lock-chain i {
  width: 34px;
}

.placeholder {
  display: grid;
  min-height: calc(100vh - 78px);
  align-items: center;
}

.placeholder-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.placeholder-card h1 {
  font-size: clamp(52px, 8vw, 92px);
}

.placeholder-card p {
  max-width: 560px;
  margin: 20px auto 30px;
  font-size: 18px;
}

.back-link {
  position: absolute;
  top: 112px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.back-link:hover {
  color: white;
}

.big-lock {
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 34px;
}

.big-lock .lock-shackle {
  width: 48px;
  height: 42px;
  top: 26px;
  border-width: 7px;
}

.big-lock .lock-body {
  width: 62px;
  height: 44px;
  bottom: 24px;
  border-radius: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-inner {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 72px 14px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 7, 18, 0.92);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-links a {
    border-radius: 14px;
    padding: 13px 14px;
  }

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

  .project-card p {
    min-height: auto;
  }

  .locked-label {
    display: flex;
    margin: 10px 0 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(46px, 17vw, 68px);
  }

  .project-card,
  .placeholder-card {
    border-radius: 22px;
    padding: 22px;
  }

  .card-top {
    margin-bottom: 30px;
  }

  .project-icon,
  .lock-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .card-button {
    width: 100%;
  }
}

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

/* Ceno Bot oldal */
.bot-page {
  padding-bottom: 38px;
}

.bot-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 54px;
  padding: clamp(60px, 8vw, 112px) 0;
}

.bot-copy h2 {
  max-width: 720px;
  margin: 20px 0 0;
  color: white;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.bot-copy p:not(.eyebrow),
.section-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bot-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.bot-preview::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.32), transparent 68%);
  filter: blur(28px);
}

.bot-logo-orbit {
  position: relative;
  width: min(78vw, 330px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(176, 198, 255, 0.18);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.22), 0 0 120px rgba(168, 85, 247, 0.12);
  transform: rotate(-3deg);
  animation: orbitTilt 5.5s ease-in-out infinite;
}

.bot-logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bot-status-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(270px, 76vw);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(10, 16, 36, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  animation: floatCard 4.6s ease-in-out infinite;
}

.bot-status-card strong,
.bot-status-card small {
  display: block;
}

.bot-status-card strong {
  margin-top: 14px;
  font-size: 22px;
}

.bot-status-card small {
  margin-top: 6px;
  color: var(--muted);
}

.live-pill {
  display: inline-flex;
  border: 1px solid rgba(88, 240, 178, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--green);
  background: rgba(88, 240, 178, 0.08);
  font-size: 12px;
  font-weight: 900;
  animation: neonText 2.4s ease-in-out infinite;
}

@keyframes neonText {
  0%, 100% { text-shadow: 0 0 10px rgba(88, 240, 178, 0.25); }
  50% { text-shadow: 0 0 18px rgba(88, 240, 178, 0.9); }
}

.bot-section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.bot-cta h2 {
  margin: 0;
  background: linear-gradient(120deg, #ffffff, #d9ceff 28%, var(--purple), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

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

.bot-feature,
.command-panel,
.dashboard-mock,
.faq-list,
.bot-cta-card,
.stat-tile {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)), var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.bot-feature {
  border-radius: 22px;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: softRise 5.2s ease-in-out infinite;
}

.bot-feature:nth-child(2n) {
  animation-delay: -1.4s;
}

.bot-feature:nth-child(3n) {
  animation-delay: -2.2s;
}

@keyframes softRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.bot-feature:hover {
  transform: translateY(-13px) scale(1.015) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5), 0 0 44px rgba(34, 211, 238, 0.1);
}

.bot-feature b {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.bot-feature h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.bot-feature p,
.command-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.command-panel {
  border-radius: var(--radius);
  padding: 18px;
}

.command-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(176, 198, 255, 0.14);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.055);
}

.command-search span {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.command-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 15px;
}

.command-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.command-item {
  border: 1px solid rgba(176, 198, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.command-item:nth-child(odd) {
  animation: commandGlow 5s ease-in-out infinite;
}

@keyframes commandGlow {
  0%, 100% { box-shadow: inset 0 0 0 rgba(34, 211, 238, 0); }
  50% { box-shadow: inset 0 0 34px rgba(34, 211, 238, 0.045); }
}

.command-item:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.32);
}

.command-item code {
  color: #e7f3ff;
  font-size: 15px;
  font-weight: 900;
}

.command-item p {
  margin-top: 8px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 42px 0;
}

.stat-tile {
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  animation: floatCard 5.8s ease-in-out infinite;
}

.stat-tile:nth-child(2) { animation-delay: -1.1s; }
.stat-tile:nth-child(3) { animation-delay: -2.2s; }
.stat-tile:nth-child(4) { animation-delay: -3.3s; }

.stat-tile:hover {
  transform: translateY(-8px) scale(1.02) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(34, 211, 238, 0.34);
}

.stat-tile strong {
  display: block;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.28);
}

.stat-tile span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-mock {
  border-radius: var(--radius);
  padding: 22px;
  animation: neonBreath 5.4s ease-in-out infinite;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.dashboard-mock:hover {
  transform: translateY(-8px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(34, 211, 238, 0.34);
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: #dce8ff;
  font-weight: 900;
}

.mock-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(88, 240, 178, 0.9);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mock-grid p {
  margin: 0;
  border: 1px solid rgba(176, 198, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mock-grid p:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.32);
}

.mock-grid b,
.mock-grid span {
  display: block;
}

.mock-grid span {
  margin-top: 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.faq-list {
  overflow: hidden;
  border-radius: var(--radius);
}

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

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 22px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-item button:hover {
  background: rgba(255, 255, 255, 0.045);
}

.faq-item button span {
  color: var(--cyan);
  font-size: 22px;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open p {
  display: block;
}

.bot-cta {
  padding: 70px 0;
}

.bot-cta-card {
  border-radius: 34px;
  padding: clamp(32px, 6vw, 70px);
  text-align: center;
  animation: neonBreath 4.5s ease-in-out infinite;
}

.bot-cta-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.bot-cta-card .bot-actions {
  justify-content: center;
}

.bot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.bot-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.bot-footer a {
  color: #c9d6ef;
  font-weight: 800;
}

.bot-footer a:hover {
  color: white;
}

.legal-page {
  padding-top: clamp(64px, 8vw, 108px);
}

.legal-hero-card,
.legal-toc,
.legal-content {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)), var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.legal-hero-card {
  border-radius: 34px;
  padding: clamp(30px, 5vw, 58px);
  margin-bottom: 24px;
}

.legal-hero-card h1 {
  font-size: clamp(48px, 8vw, 96px);
}

.legal-hero-card p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 22px;
}

.legal-toc {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  padding: 18px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: white;
}

.legal-toc a {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.legal-content {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
}

.legal-block + .legal-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0;
}

.legal-block p,
.legal-block li {
  color: #b9c5df;
  line-height: 1.78;
}

.legal-block ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-note {
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 18px;
  padding: 16px;
  background: rgba(34, 211, 238, 0.07);
}

@media (max-width: 900px) {
  .bot-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bot-preview {
    min-height: 340px;
  }

  .bot-feature-grid,
  .command-list,
  .stats-strip,
  .mock-grid {
    grid-template-columns: 1fr;
  }

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

  .bot-footer nav {
    justify-content: flex-start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .bot-actions {
    width: 100%;
  }

  .bot-section {
    padding: 56px 0;
  }
}
