/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Core Colors */
  --primary: #00ffff;
  --primary-dim: #00cccc;
  --primary-dark: #007777;
  --secondary: #ff00ff;
  --secondary-dim: #cc00cc;
  --accent: #39ff14;
  --accent-dim: #2ecc11;

  /* Backgrounds */
  --bg-deep: #0a0a0f;
  --bg-dark: #0d0d15;
  --bg-medium: #1a1a2e;
  --bg-light: #252540;
  --bg-card: #12121f;
  --bg-card-hover: #1a1a30;

  /* Text */
  --text-primary: #e0e0f0;
  --text-secondary: #a0a0c0;
  --text-muted: #606080;
  --text-bright: #ffffff;

  /* Glows */
  --glow-primary:
    0 0 10px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1);
  --glow-primary-strong:
    0 0 10px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.2),
    0 0 80px rgba(0, 255, 255, 0.1);
  --glow-secondary:
    0 0 10px rgba(255, 0, 255, 0.3), 0 0 30px rgba(255, 0, 255, 0.1);
  --glow-secondary-strong:
    0 0 10px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.2);
  --glow-accent:
    0 0 10px rgba(57, 255, 20, 0.3), 0 0 30px rgba(57, 255, 20, 0.1);
  --glow-text-primary: 0 0 8px rgba(0, 255, 255, 0.6);
  --glow-text-secondary: 0 0 8px rgba(255, 0, 255, 0.6);
  --glow-text-accent: 0 0 8px rgba(57, 255, 20, 0.6);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Typography */
  --font-display: "Orbitron", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --font-body: "Rajdhani", sans-serif;

  /* Borders */
  --border-color: rgba(0, 255, 255, 0.15);
  --border-color-hover: rgba(0, 255, 255, 0.4);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary);
  text-shadow: var(--glow-text-secondary);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  outline: none;
}

::selection {
  background: rgba(0, 255, 255, 0.3);
  color: var(--text-bright);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dim);
}

/* ============================================
   SCANLINE OVERLAY
   ============================================ */
.scanline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* ============================================
   GRID BACKGROUND
   ============================================ */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

#main-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 2px 30px rgba(0, 255, 255, 0.08);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-bracket {
  color: var(--text-muted);
  font-weight: 400;
}

.logo-text {
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
}

.logo-accent {
  color: var(--secondary);
  text-shadow: var(--glow-text-secondary);
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 8px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: all var(--transition-base);
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: var(--glow-primary);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-cta {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.15),
    rgba(255, 0, 255, 0.15)
  );
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.3),
    rgba(255, 0, 255, 0.3)
  );
  box-shadow: var(--glow-primary);
}

.nav-cta::after {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 28px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

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

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 20px auto 0;
  box-shadow: var(--glow-primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.2),
    rgba(0, 255, 255, 0.05)
  );
  border-color: var(--primary);
  color: var(--primary);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.35),
    rgba(0, 255, 255, 0.15)
  );
  box-shadow: var(--glow-primary-strong);
  color: var(--text-bright);
  text-shadow: var(--glow-text-primary);
  transform: translateY(-2px);
}

.btn-glow {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 40px rgba(0, 255, 255, 0.1);
  }
}

.btn-secondary {
  background: transparent;
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  text-shadow: var(--glow-text-secondary);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(0, 255, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(255, 0, 255, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.05);
  width: fit-content;
  margin-bottom: 32px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    border-color: rgba(57, 255, 20, 0.3);
  }
  50% {
    border-color: rgba(57, 255, 20, 0.6);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--primary);
  text-shadow:
    0 0 20px rgba(0, 255, 255, 0.5),
    0 0 60px rgba(0, 255, 255, 0.2);
  animation: titleGlitch1 8s ease-in-out infinite;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--secondary);
  text-shadow:
    0 0 20px rgba(255, 0, 255, 0.5),
    0 0 60px rgba(255, 0, 255, 0.2);
  margin-top: -8px;
  animation: titleGlitch2 8s ease-in-out infinite;
}

@keyframes titleGlitch1 {
  0%,
  92%,
  100% {
    transform: none;
  }
  93% {
    transform: skewX(-2deg) translateX(-2px);
  }
  94% {
    transform: skewX(3deg) translateX(3px);
  }
  95% {
    transform: skewX(-1deg);
  }
}

@keyframes titleGlitch2 {
  0%,
  88%,
  100% {
    transform: none;
  }
  89% {
    transform: skewX(2deg) translateX(2px);
  }
  90% {
    transform: skewX(-3deg) translateX(-3px);
  }
  91% {
    transform: skewX(1deg);
  }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.platform-label {
  color: var(--text-secondary);
}

.platform-icon {
  color: var(--text-secondary);
}

.platform-divider {
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 500px;
  z-index: 1;
}

/* Phone Frame */
.hero-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.phone-frame {
  width: 200px;
  height: 400px;
  border: 2px solid var(--primary);
  border-radius: 24px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--glow-primary-strong),
    inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: var(--bg-deep);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-top: none;
}

.phone-screen {
  padding: 20px 16px;
  height: calc(100% - 24px);
  position: relative;
  overflow: hidden;
}

.screen-line {
  height: 2px;
  margin-bottom: 12px;
  border-radius: 1px;
}

.screen-line-1 {
  width: 70%;
  background: linear-gradient(90deg, var(--primary), transparent);
  animation: screenLineAnim 3s ease-in-out infinite;
}

.screen-line-2 {
  width: 50%;
  background: linear-gradient(90deg, var(--secondary), transparent);
  animation: screenLineAnim 3s ease-in-out 0.5s infinite;
}

.screen-line-3 {
  width: 85%;
  background: linear-gradient(90deg, var(--accent), transparent);
  animation: screenLineAnim 3s ease-in-out 1s infinite;
}

@keyframes screenLineAnim {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.8);
  }
}

.screen-block {
  border-radius: 4px;
  margin-bottom: 10px;
}

.screen-block-1 {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  border: 1px solid rgba(0, 255, 255, 0.2);
  animation: blockPulse 4s ease-in-out infinite;
}

.screen-block-2 {
  width: 100%;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 255, 0.1),
    rgba(57, 255, 20, 0.1)
  );
  border: 1px solid rgba(255, 0, 255, 0.2);
  animation: blockPulse 4s ease-in-out 1s infinite;
}

.screen-block-3 {
  width: 60%;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(57, 255, 20, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  border: 1px solid rgba(57, 255, 20, 0.2);
  animation: blockPulse 4s ease-in-out 2s infinite;
}

@keyframes blockPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.screen-hud {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
}

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

.hud-bar-fill {
  display: block;
  width: 89%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  animation: hpBar 5s ease-in-out infinite;
}

@keyframes hpBar {
  0%,
  100% {
    width: 89%;
  }
  30% {
    width: 72%;
  }
  60% {
    width: 95%;
  }
}

/* Hex Grid */
.hex-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hex {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexFloat 6s ease-in-out infinite;
}

.hex-1 {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
  border-color: rgba(0, 255, 255, 0.2);
}
.hex-2 {
  top: 15%;
  right: 5%;
  animation-delay: 1s;
  border-color: rgba(255, 0, 255, 0.2);
}
.hex-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
  border-color: rgba(57, 255, 20, 0.15);
}
.hex-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 0.5s;
  border-color: rgba(0, 255, 255, 0.15);
}
.hex-5 {
  top: 35%;
  left: -5%;
  animation-delay: 1.5s;
  border-color: rgba(255, 0, 255, 0.15);
  width: 40px;
  height: 40px;
}
.hex-6 {
  bottom: 30%;
  right: -2%;
  animation-delay: 3s;
  border-color: rgba(57, 255, 20, 0.2);
  width: 50px;
  height: 50px;
}

@keyframes hexFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
    opacity: 1;
  }
}

/* Floating Data */
.floating-data {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border: 1px solid;
  background: rgba(10, 10, 15, 0.8);
  animation: floatData 5s ease-in-out infinite;
}

.floating-data-1 {
  top: 8%;
  right: 15%;
  color: var(--primary);
  border-color: rgba(0, 255, 255, 0.3);
  animation-delay: 0s;
}

.floating-data-2 {
  bottom: 20%;
  left: 10%;
  color: var(--secondary);
  border-color: rgba(255, 0, 255, 0.3);
  animation-delay: 1.5s;
}

.floating-data-3 {
  top: 45%;
  right: 0;
  color: var(--accent);
  border-color: rgba(57, 255, 20, 0.3);
  animation-delay: 3s;
}

@keyframes floatData {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.05);
}

.about-card-main {
  grid-column: span 2;
}

.card-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--primary);
  border-style: solid;
  transition: border-color var(--transition-base);
}

.about-card:hover .card-corner {
  border-color: var(--secondary);
}

.card-corner-tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.card-corner-tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}
.card-corner-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}
.card-corner-br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.about-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-shadow: var(--glow-text-primary);
  transition: all var(--transition-base);
}

.about-card:hover .about-card-icon {
  border-color: var(--secondary);
  color: var(--secondary);
  text-shadow: var(--glow-text-secondary);
  box-shadow: var(--glow-secondary);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--section-padding);
  background: linear-gradient(
    180deg,
    var(--bg-deep),
    var(--bg-dark),
    var(--bg-deep)
  );
  position: relative;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow);
}

.feature-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.06);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 255, 255, 0.08);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-number {
  color: rgba(0, 255, 255, 0.15);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-wrap {
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: var(--glow-accent);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-bar {
  width: 100%;
  height: 3px;
  background: rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  width: 0;
  transition: width 1.5s ease;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: var(--section-padding);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.6rem;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-bright);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.1);
  animation: statPulseAnim 3s ease-out infinite;
  pointer-events: none;
}

@keyframes statPulseAnim {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Live Feed */
.live-feed {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  margin-bottom: 60px;
  max-height: 220px;
  overflow: hidden;
  position: relative;
}

.live-feed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
}

.live-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
  animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes liveDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.live-feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live-feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(0, 255, 255, 0.03);
  border-left: 2px solid var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  animation: feedSlideIn 0.5s ease;
}

@keyframes feedSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.live-feed-item .feed-icon {
  color: var(--primary);
  font-size: 0.9rem;
}

.live-feed-item .feed-time {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(255, 0, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #ffcc00;
  font-size: 0.85rem;
}

.testimonial-stars .far {
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  display: block;
}

.author-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-dark));
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--border-color-hover);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-q-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition:
    transform var(--transition-base),
    color var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--primary);
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
  padding: var(--section-padding);
  position: relative;
}

.signup-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  );
  opacity: 0.3;
}

.signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.signup-info {
  padding-top: 20px;
}

.signup-title {
  text-align: left;
}

.signup-info .section-line {
  margin: 20px 0 0;
}

.signup-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.signup-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.signup-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.signup-perks li i {
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  font-size: 1rem;
}

.signup-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 0, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.counter-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  text-shadow: var(--glow-text-secondary);
  animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Form */
.signup-form-wrap {
  position: relative;
}

.form-decoration-top {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  margin-bottom: 0;
}

.form-decoration-bottom {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--secondary),
    var(--primary)
  );
}

.signup-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom: none;
  padding: 36px;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-label i {
  color: var(--primary);
  font-size: 0.8rem;
}

.form-optional {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: none;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  color: var(--text-bright);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow:
    0 0 0 2px rgba(0, 255, 255, 0.1),
    var(--glow-primary);
}

.form-input.error {
  border-color: #ff4444;
  box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1);
}

.form-error {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #ff4444;
  display: block;
  margin-top: 4px;
  min-height: 18px;
}

/* Checkboxes */
.form-checkbox-group {
  margin-bottom: 14px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-color);
  background: var(--bg-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  margin-top: 2px;
}

.form-checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.form-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.form-checkbox-label a {
  color: var(--primary);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.85rem;
  padding: 18px;
}

.form-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* Form Success */
.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 48px 36px;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.success-code {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 32px;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.success-code span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.success-code strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  letter-spacing: 3px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.trust-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 1.8rem;
  color: var(--accent);
  text-shadow: var(--glow-text-accent);
  margin-bottom: 16px;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-primary);
  text-shadow: var(--glow-text-primary);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-shadow: var(--glow-text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--primary);
  text-shadow: none;
  transform: translateX(4px);
}

.footer-links li a i {
  font-size: 0.8rem;
  width: 16px;
}

.footer-support-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.footer-bottom-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-address {
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
}

.footer-company {
  font-size: 0.75rem !important;
}

.footer-bottom-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer-age-badge,
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer-age-badge {
  border-color: rgba(255, 200, 0, 0.3);
  color: #ffcc00;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}

.cookie-icon {
  color: var(--primary);
  font-size: 1.3rem;
  text-shadow: var(--glow-text-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid;
}

.btn-cookie-accept {
  background: rgba(0, 255, 255, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-cookie-accept:hover {
  background: rgba(0, 255, 255, 0.3);
  box-shadow: var(--glow-primary);
}

.btn-cookie-necessary {
  background: transparent;
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

.btn-cookie-necessary:hover {
  border-color: var(--text-secondary);
  color: var(--text-bright);
}

.btn-cookie-settings {
  background: transparent;
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.btn-cookie-settings:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-color);
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 20px;
}

.cookie-setting-row strong {
  color: var(--text-primary);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}

.cookie-setting-row p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--text-muted);
  transition: all var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(0, 255, 255, 0.2);
  border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.toggle-switch.disabled .toggle-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-settings-panel .btn-cookie {
  margin-top: 12px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: 72px;
}

.legal-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg-medium), var(--bg-deep));
  border-bottom: 1px solid var(--border-color);
}

.legal-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.legal-content {
  background: #fafafa;
  color: #1a1a2e;
  padding: 48px;
  margin: 40px 0 60px;
  border: 1px solid var(--border-color);
  line-height: 1.8;
  position: relative;
}

.legal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
}

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00cccc;
  display: inline-block;
}

.legal-content p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #333;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 0.93rem;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-content a {
  color: #0088aa;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #cc00cc;
}

.legal-content strong {
  color: #1a1a2e;
}

.legal-info-box {
  background: #f0f0f0;
  border-left: 4px solid #00cccc;
  padding: 20px 24px;
  margin: 16px 0;
}

.legal-info-box p {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.legal-footer-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
  text-align: center;
}

.legal-footer-note p {
  font-size: 0.88rem;
  color: #666;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gdpr-right-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 0;
  transition: all var(--transition-base);
}

.gdpr-right-card:hover {
  border-color: #00cccc;
  box-shadow: 0 4px 20px rgba(0, 204, 204, 0.1);
}

.gdpr-right-icon {
  font-size: 1.5rem;
  color: #00cccc;
  margin-bottom: 12px;
}

.gdpr-right-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.gdpr-right-card p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 6px;
}

.gdpr-right-card p:first-of-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #00cccc;
}

/* ============================================
   ANIMATIONS - SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* Staggered delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }

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

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

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

  .signup-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gdpr-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-left: 1px solid var(--border-color);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    padding: 16px 24px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 24px 80px;
  }

  .hero-title-line1,
  .hero-title-line2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

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

  .about-card-main {
    grid-column: span 1;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .legal-content {
    padding: 24px;
  }

  .gdpr-rights-grid {
    grid-template-columns: 1fr;
  }

  .signup-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .stat-number {
    font-size: 1.8rem;
  }

  .legal-content {
    padding: 16px;
  }

  .signup-form {
    padding: 24px 16px;
  }
}

/* ============================================
   FOCUS STYLES FOR ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
