@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #7FFF00;
  --accent-secondary: #5cd400;
  --accent-warm: #b8ff57;
  --accent-glow: rgba(127, 255, 0, 0.4);
  --accent-glow-secondary: rgba(127, 255, 0, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(127, 255, 0, 0.25);
  --font-main: 'Roboto', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #000000;
}

body {
  font-family: var(--font-main);
  background: transparent;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  /* Global Center Alignment: Mandatory for Editorial Vibe */
  text-align: center;
}

/* Subtle noise texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.03;
  z-index: 9999;
}

/* === BACKGROUND CANVAS === */
#plexus-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Atmospheric glow overlays */
.glow-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(127, 255, 0, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 80%, rgba(92, 212, 0, 0.025) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

nav,
main,
footer {
  position: relative;
  z-index: 10;
  background: transparent !important;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.6) !important;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo span {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 1;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.btn):hover {
  opacity: 1;
  color: var(--accent-color);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(25px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #fff !important;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent-color) !important;
}

/* === HERO SECTION === */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem 0;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(127, 255, 0, 0.15);
  border-radius: 100px;
  background: rgba(127, 255, 0, 0.03);
}

.hero h1 {
  font-size: clamp(2.3rem, 6.7vw, 4.7rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -3px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero h1 span:first-child {
  display: block;
  color: #fff;
}

.hero h1 span:last-child {
  display: block;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-warm), var(--accent-secondary));
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite, fadeInUp 0.8s 0.2s forwards;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero p {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.4s forwards;
  line-height: 1.8;
}

.open-console-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px dashed rgba(127, 255, 0, 0.3);
}

.open-console-link:hover {
  text-shadow: 0 0 15px rgba(127, 255, 0, 0.4);
  border-bottom: 1px solid var(--accent-color);
}

.service-quote {
  margin-top: 1.2rem;
}

.service-quote .open-console-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-bottom: 2px dashed var(--accent-color);
  display: inline-block;
  padding-bottom: 2px;
}

.service-quote .open-console-link:hover {
  border-bottom-style: solid;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.6s forwards;
}

/* === BUTTONS === */
.btn {
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: transparent;
  color: #ffffff;
  border: none;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 1rem 2.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary::before,
.btn-primary::after {
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.8;
}

.btn-primary::before {
  content: '[';
  margin-right: 0.3rem;
}

.btn-primary::after {
  content: ']';
  margin-left: 0.3rem;
}

.btn-primary:hover {
  text-shadow: 0 0 20px rgba(127, 255, 0, 0.5);
}

.btn-primary:hover::before {
  transform: translateX(-4px);
  opacity: 1;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover::after {
  transform: translateX(4px);
  opacity: 1;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(127, 255, 0, 0.04);
  border-color: var(--glass-border-hover);
  color: var(--accent-color);
}

/* === FEATURES SECTION === */
.features {
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}

/* === SERVICE ROWS === */
.services-list {
  max-width: 640px;
  margin: 0 auto;
}

.service-row {
  text-align: left;
  padding: 2rem 0 2rem 2rem;
  position: relative;
  border-left: 2px solid rgba(127, 255, 0, 0.1);
  transition: all 0.4s ease;
}

.service-row:not(:last-child) {
  margin-bottom: 0;
}

.service-row:hover {
  border-left-color: rgba(127, 255, 0, 0.5);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  opacity: 0.5;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  transition: all 0.4s ease;
}

.service-row:hover .service-number {
  opacity: 1;
}

.service-row h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.6rem;
  transition: color 0.3s ease;
}

.service-row:hover h3 {
  color: var(--accent-color);
}

.service-row>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.service-subtext {
  font-size: 0.85rem;
  color: #fff;
  margin-top: 0.75rem;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 4rem 2rem 0;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--glass-border);
  padding: 3rem 4rem 2rem;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

/* Tightly constrained smoke layers for subtle background glow */
.contact-card::before,
.contact-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  border-radius: 40px;
  opacity: 0.15;
}

.contact-card::before {
  background: radial-gradient(circle at 30% 30%, var(--accent-color), transparent 60%);
  animation: contactSmoke 12s ease-in-out infinite;
}

.contact-card::after {
  background: radial-gradient(circle at 70% 70%, var(--accent-secondary), transparent 60%);
  animation: contactSmoke 16s ease-in-out infinite reverse;
}

.card-accent {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-warm), transparent);
  border-radius: 24px 24px 0 0;
  z-index: 2;
}

.contact-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  font-weight: 500;
  color: #fff;
}

.contact-card>p {
  font-size: 1rem;
  opacity: 0.7;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-icon-link {
  font-size: 2rem;
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon-link:hover {
  transform: scale(1.25) translateY(-5px);
  text-shadow: 0 0 30px rgba(127, 255, 0, 0.5);
}

/* === FOOTER === */
footer {
  padding: 10px 2rem 5rem;
  text-align: center;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.footer-logo {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
  display: inline-block;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.socials a {
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.socials a:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.copyright {
  opacity: 1;
  font-size: 0.8rem;
}

/* === ANIMATIONS === */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SCROLL REVEAL === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-row.reveal-on-scroll:nth-child(1) {
  transition-delay: 0s;
}

.service-row.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.15s;
}

.service-row.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}

/* === MOBILE === */
@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 1.5rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .logo span {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-row {
    padding: 1.5rem 0 1.5rem 1.5rem;
  }

  .service-row h3 {
    font-size: 1.2rem;
  }

  .contact-card {
    padding: 2.5rem 1.5rem;
  }

  .contact-card h2 {
    font-size: 1.8rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .vibe-showcase,
  .contact-section {
    padding: 6rem 1.5rem;
  }

  .features {
    padding: 3rem 1.5rem;
  }

  .system-ticker {
    display: none !important;
  }
}

/* === VIBE CONSOLE (CHATBOT) === */
.vibe-console-collapsed {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(30px) scale(0.95) !important;
}

.console-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.console-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Smoke layer 1 - large slow drift */
.console-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(127, 255, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 65%, rgba(127, 255, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 50% 25%, rgba(92, 212, 0, 0.1) 0%, transparent 65%);
  animation: smokeFloat1 8s ease-in-out infinite;
  pointer-events: none;
}

/* Smoke layer 2 - medium drift */
.console-overlay::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(ellipse 55% 50% at 65% 45%, rgba(127, 255, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 20% 75%, rgba(184, 255, 87, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 65% 40% at 80% 20%, rgba(127, 255, 0, 0.08) 0%, transparent 50%);
  animation: smokeFloat2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes smokeFloat1 {

  0%,
  100% {
    transform: translate(0%, 0%) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(10%, -8%) rotate(4deg) scale(1.15);
  }

  50% {
    transform: translate(-8%, 12%) rotate(-3deg) scale(0.9);
  }

  75% {
    transform: translate(5%, -5%) rotate(2deg) scale(1.1);
  }
}

@keyframes smokeFloat2 {

  0%,
  100% {
    transform: translate(0%, 0%) rotate(0deg) scale(1);
  }

  30% {
    transform: translate(-12%, 8%) rotate(-5deg) scale(1.2);
  }

  60% {
    transform: translate(15%, -6%) rotate(4deg) scale(0.85);
  }

  85% {
    transform: translate(-5%, -10%) rotate(-2deg) scale(1.1);
  }
}

#vibe-console {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: 380px;
  height: min(600px, 80vh);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(127, 255, 0, 0.1);
  font-family: var(--font-mono);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}

#vibe-console.vibe-console-centered {
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  width: 450px;
  height: 600px;
  max-width: 90vw;
  box-shadow: 0 0 100px rgba(127, 255, 0, 0.15);
  border: 1px solid rgba(127, 255, 0, 0.3);
}

@keyframes consoleOpen {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

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

.console-header {
  padding: 1rem;
  background: rgba(127, 255, 0, 0.05);
  border-bottom: 1px solid rgba(127, 255, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: blink 1s infinite;
}

.status-text {
  color: var(--accent-color);
  opacity: 1;
}

.console-title {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 1;
  color: #fff;
}

.console-nav-btn {
  background: transparent;
  border: none;
  color: #fff;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.console-nav-btn:hover {
  opacity: 1;
}

.console-body {
  flex: 1;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  animation: msgFadeIn 0.3s forwards;
}

@keyframes msgFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.msg-timestamp {
  font-size: 0.65rem;
  opacity: 0.4;
}

.msg-content {
  line-height: 1.5;
  word-break: break-word;
}

.system-msg .msg-content {
  color: var(--accent-color);
}

.user-msg {
  align-items: flex-end;
}

.user-msg .msg-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1rem;
  border-radius: 12px 12px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.agent-msg .msg-content {
  color: #fff;
  opacity: 0.9;
  padding-left: 0.5rem;
  border-left: 1px solid var(--accent-color);
}

.agent-activity {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-label {
  font-size: 0.65rem;
  color: var(--accent-color);
  opacity: 0.6;
}

.activity-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.activity-fill {
  width: 30%;
  height: 100%;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
  transition: width 0.3s ease;
}

.console-footer {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.input-wrapper:focus-within {
  border-color: rgba(127, 255, 0, 0.3);
}

.prompt-char {
  color: var(--accent-color);
  font-weight: bold;
}

#chat-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  width: 100%;
}

.console-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.1) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.15;
  z-index: 10;
}

.vibe-toggle-btn {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  border: none;
  color: #000;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(127, 255, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vibe-toggle-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(127, 255, 0, 0.6);
}

.toggle-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  #vibe-console {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 1rem;
    height: 80vh;
  }
}

/* === BOOKING CARD === */
.booking-card {
  background: rgba(127, 255, 0, 0.05);
  border: 1px solid rgba(127, 255, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: cardSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  color: var(--accent-color);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-card h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

.booking-card p {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
  text-align: left;
}

.btn-booking {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-booking:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(127, 255, 0, 0.4);
}

.chat-link {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
}

.chat-link:hover {
  opacity: 0.7;
}

.mini-cta {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.mini-quote-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(127, 255, 0, 0.05);
  color: var(--accent-color);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(127, 255, 0, 0.15);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mini-quote-btn:hover {
  background: rgba(127, 255, 0, 0.15);
  box-shadow: 0 0 15px rgba(127, 255, 0, 0.1);
  transform: translateY(-1px);
  border-color: rgba(127, 255, 0, 0.4);
}

@keyframes contactSmoke {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(15px);
  }

  50% {
    transform: translate(-48%, -52%) scale(1.05) rotate(2deg);
    filter: blur(25px);
  }
}

/* === SYSTEM TICKER === */
.system-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(127, 255, 0, 0.1);
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-color);
  z-index: 1000;
  pointer-events: none;
  letter-spacing: 1.5px;
}

.ticker-label {
  opacity: 0.5;
  font-weight: 700;
}

.ticker-content {
  color: #fff;
  opacity: 0.8;
  min-width: 250px;
}

/* === MAGNETIC INTERACTION === */
.magnetic {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* === SERVICE PAGES === */
.service-page {
  padding-top: 100px;
  min-height: 100vh;
}

.service-hero {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.service-hero .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  line-height: 1.8;
  color: #fff;
}

.service-content h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 3rem 0 1.5rem;
  font-weight: 500;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin: 2rem 0 1rem;
  font-weight: 500;
}

.service-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.service-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.service-content li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-box {
  background: rgba(127, 255, 0, 0.05);
  border: 1px solid var(--accent-color);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 4rem 0;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-strip i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.related-services {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-services h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}

.related-card:hover {
  border-color: rgba(127, 255, 0, 0.3);
  transform: translateY(-3px);
  background: rgba(127, 255, 0, 0.05);
}

.related-card h3,
.related-card h4 {
  color: var(--accent-color) !important;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.related-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* === RECENT RESCUES TICKER === */
.rescues-ticker-container {
  max-width: 800px;
  margin: 0.5rem auto 3rem;
  overflow: hidden;
  background: rgba(127, 255, 0, 0.03);
  border: 1px solid rgba(127, 255, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem 0;
  display: flex;
}

.rescues-ticker {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  gap: 3rem;
  white-space: nowrap;
  animation: rescuesScroll 50s linear infinite;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  align-items: center;
}

.rescues-ticker .rescue-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rescues-ticker i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.rescues-ticker .ticker-dot {
  color: rgba(255, 255, 255, 0.3);
}

@keyframes rescuesScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}