:root {
  /* ðŸŽ¨ COLOR PALETTE (Meteorite Accurate) */
  --bg-base: #080808;
  --bg-surface: #111111;
  --bg-card: #151515;
  --bg-card-hover: #1C1C1C;
  --bg-input: #141414;
  --bg-kbd: #1A1A1A;

  /* ACCENT COLORS */
  --accent: #E8521A;
  --accent-hover: #F06030;
  --accent-purple: #7C3AED;
  --accent-purple-light: #9B5CF6;
  --accent-glow: rgba(232, 82, 26, 0.15);

  /* TEXT HIERARCHY */
  --text-primary: #FFFFFF;
  --text-dimmed: rgba(255, 255, 255, 0.5);
  --text-secondary: #E0E0E0;
  --text-body: #E5E5E5;
  --text-muted: #A0A0A0;
  --text-faint: #666666;

  /* BORDERS */
  --border-subtle: #1A1A1A;
  --border-default: #222222;
  --border-medium: #2A2A2A;

  /* ðŸŽ¯ TYPOGRAPHY */
  --font-display: "Instrument Serif", serif;
  --font-ui: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* PREMIUM UTILITIES */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-glow: rgba(232, 82, 26, 0.1);
  --radius-premium: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-base);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*:focus-visible {
  outline: 2px solid rgba(232, 82, 26, 0.5);
  outline-offset: 4px;
}

/* Prevent orange outline on click for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 60%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  vertical-align: bottom;
}

.text-accent-orange {
    display: inline-block;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #e8521a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

/* Noise Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E8521A, #9B5CF6);
  z-index: 100000;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease;
  will-change: transform;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(232, 82, 26, 0.5), 0 0 20px rgba(124, 58, 237, 0.3);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-link {
  color: var(--text-dimmed);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  white-space: nowrap;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
}

.back-link svg {
  transition: transform 0.3s ease;
}

.back-link:hover svg {
  transform: translateX(-2px);
}

.nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dimmed);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-links a:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.08);
}

/* Specific fix for the 'orange line' (outline) on click/focus */
.nav-links a:focus,
.nav-links a:focus-visible {
  outline: none;
  background: rgba(232, 82, 26, 0.1);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 200000;
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  background:
    radial-gradient(circle at center, rgba(232, 82, 26, 0.08) 0%, transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #080808;
  background-size: 100% 100%, 40px 40px, 40px 40px, 100% 100%;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  padding-top: 20px;
}

.mobile-menu .logo {
  gap: 12px;
  transform: scale(1.5);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.close-menu:hover {
  opacity: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 32px;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.mobile-nav-links a:hover {
  color: var(--accent);
  opacity: 1;
  transform: scale(1.1);
}

.mobile-nav-links a.studio-link {
  font-size: 18px;
  margin-top: 20px;
  opacity: 0.5;
}

.mobile-nav-links a.studio-link:hover {
  opacity: 1;
}

.mobile-menu-footer {
  margin-top: auto;
}

.btn-block {
  width: 100%;
}

@media (max-width: 1050px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-medium);
}

.lang-btn:focus,
.lang-btn:focus-visible {
  outline: none;
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.05);
}

.lang-btn img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111;
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 8px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-item.active {
  color: var(--accent);
  background: rgba(232, 82, 26, 0.05);
}

.lang-item img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

/* Works With Section */
.works-with {
  margin-top: 60px;
  text-align: center;
}

.works-with-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.works-with-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.1);
}

.logo-item img, .logo-item svg {
  height: 32px;
  width: auto;
  max-width: 48px;
}

@media (max-width: 600px) {
  .works-with-logos {
    gap: 20px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
  border: none;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  color: #fff;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 4px 15px rgba(232, 82, 26, 0.2);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-xl {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 12px;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 40px 0 60px;
  position: relative;
  z-index: 10;
}

.btn-chrome {
    background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(232, 82, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-chrome:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 60px rgba(232, 82, 26, 0.6);
    filter: brightness(1.1);
}

.cta-tagline {
  font-size: 14px;
  color: var(--text-dimmed);
  font-weight: 400;
}



.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-align: center;
}

.feature-benefit {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}

.feature-usage {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  text-align: center;
  width: fit-content;
}





.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}

.btn-ghost {
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-primary);
}


.featured-badges img {
  height: auto;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.featured-badges a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.featured-badges a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.featured-badges a:hover img {
  transform: scale(1.05);
  box-shadow: none;
}

@media (max-width: 768px) {
  .featured-badges {
    gap: 20px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-glows {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 800px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: glow-move 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.glow-1 {
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

.glow-2 {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
  animation-delay: -5s;
}

@keyframes glow-move {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-45%, -55%) scale(1.1) rotate(5deg);
  }
  66% {
    transform: translate(-55%, -45%) scale(0.9) rotate(-5deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

.hero-title {
  font-size: clamp(41.6px, 6.4vw, 73.6px);
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  padding-bottom: 0.1em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 14.4px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Floating Assets Animation */
.hero-floating-assets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-15px) translateX(10px) rotate(2deg); }
  66% { transform: translateY(5px) translateX(-5px) rotate(-1deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-25px) translateX(-15px) rotate(-3deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  40% { transform: translateY(-20px) translateX(20px) rotate(4deg); }
}

@keyframes float-4 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  60% { transform: translateY(-12px) translateX(-10px) rotate(-2deg); }
}

.floating-asset {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.floating-asset:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: scale(1.1) !important;
  z-index: 100;
  box-shadow: 0 20px 40px rgba(232, 82, 26, 0.2);
}

.asset-1 {
  top: 15%;
  left: 6%;
  animation: float-1 8s ease-in-out infinite;
}

.asset-2 {
  top: 12%;
  right: 10%;
  animation: float-2 10s ease-in-out infinite;
}

.asset-3 {
  top: 35%;
  left: 10%;
  animation: float-3 9s ease-in-out infinite;
}

.asset-4 {
  top: 32%;
  right: 6%;
  animation: float-4 11s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-floating-assets {
    display: none;
  }
}

.hero-video-container {
  display: block;
  width: 100%;
  max-width: 1240px;
  margin: 100px auto 0;
  position: relative;
  z-index: 20;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9), 0 0 40px rgba(232, 82, 26, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  transform: perspective(3000px) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.hero-video-container:hover {
  transform: perspective(2000px) rotateX(0deg) translateY(-10px);
  border-color: rgba(232, 82, 26, 0.3);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.9), 0 0 60px rgba(232, 82, 26, 0.15);
}

.hero-video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.04); /* Adjusted scale */
  transform-origin: center center;
}

.interactive-demo-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.interactive-demo-btn:hover {
  background: rgba(255, 122, 0, 0.1) !important;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.4) !important;
  transform: translateY(-2px) !important;
}

.pulse-ring {
  position: absolute;
  inset: -2px;
  border: 2px solid #ff7a00;
  border-radius: inherit;
  animation: pulse-out 2s infinite;
  z-index: -1;
}

@keyframes pulse-out {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.05, 1.15);
    opacity: 0;
  }
}

.hero-mockup-wrapper:hover .mockup-tilt-container {
  transform: rotateX(5deg) translateY(-10px) !important;
}

/* Terminal Section */
.terminal-section {
  padding: 80px 0 140px;
  background: radial-gradient(circle at center, rgba(232, 82, 26, 0.03) 0%, transparent 70%);
}

.terminal-interactive-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .terminal-interactive-wrapper {
    grid-template-columns: 1fr;
  }
}

.terminal-window {
  background: #000;
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  width: 100%;
}

.terminal-header {
  background: #111;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  color: #3EF193;
  background: rgba(62, 241, 147, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.terminal-body {
  padding: 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: #fff;
  min-height: 400px;
  position: relative;
}

/* Sidebar Styles */
.terminal-sidebar {
  padding: 20px;
}

.sidebar-header {
  margin-bottom: 32px;
}

.sidebar-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.sidebar-desc {
  color: var(--text-muted);
  font-size: 15px;
}

.line {
  margin-bottom: 12px;
  line-height: 1.5;
}

.line.command {
  color: #fff;
}

.line.info {
  color: var(--accent-purple-light);
  font-weight: 500;
}

.line.success {
  color: #3EF193;
}

.line.log {
  color: var(--text-muted);
}

.prompt {
  color: var(--accent);
  font-weight: bold;
}

.url {
  color: var(--accent-purple-light);
  text-decoration: underline;
}

.file {
  color: var(--accent);
  font-weight: 600;
}

.size {
  color: var(--text-muted);
}

.feature-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-step {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid transparent;
  border-radius: 16px;
  transition: all 400ms ease;
  cursor: pointer;
  opacity: 0.4;
}

.feature-step.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-medium);
  transform: translateX(10px);
}

.feature-step:hover {
  opacity: 0.8;
}

.step-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 16px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-surface); /* #111111 */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px; /* Large radius from the inspiration image */
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  min-height: 280px;
}

.feature-card:hover {
  background: var(--bg-card-hover); /* #1C1C1C */
  border-color: rgba(232, 82, 26, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card .feature-graphic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.icon-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
  stroke-width: 2px;
}

.feature-card h3 {
  font-family: var(--font-ui); /* Switched to modern sans-serif for this style */
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-card .feature-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dimmed);
  margin-bottom: 0;
}

.feature-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.feature-card .feature-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  width: 100%;
}

/* Spotlight effect removed */

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(232, 82, 26, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 82, 26, 0.1);
}

.feature-icon {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 82, 26, 0.1);
  border-radius: 16px;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(var(--beam-angle), var(--accent), transparent, var(--accent-purple), transparent);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: var(--font-ui);
  font-weight: 600;
}

.border-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: conic-gradient(from var(--beam-angle) at 50% 50%, transparent 0%, var(--accent) 10%, transparent 20%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 500ms;
}

.feature-card:hover .border-beam {
  opacity: 1;
}

@media (max-width: 768px) {
  .feature-card {
    grid-column: span 12 !important;
  }
}

/* Interactive Elements */
.intel-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Tools CTA Section */
.tools-cta {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(232, 82, 26, 0.05), transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.tools-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.tools-cta p {
    font-size: 18px;
    color: var(--text-dimmed);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-xl {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
}

.intel-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.intel-action:hover {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  border-color: rgba(255, 107, 53, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 82, 26, 0.2);
}

.intel-status {
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 6px;
}

.intel-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3EF193;
  border-radius: 50%;
  box-shadow: 0 0 8px #3EF193;
}

.component-pill.interactive:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  cursor: pointer;
}

.layout-box.interactive:hover {
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.1);
  transform: scale(1.15);
  z-index: 10;
  cursor: pointer;
}

.font-sample.interactive:hover {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(232, 82, 26, 0.5);
  cursor: pointer;
}

/* Simulated Toast */
#toast-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10000;
  pointer-events: none;
}

.sim-toast {
  background: #111;
  border: 1px solid var(--border-medium);
  padding: 12px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  animation: toast-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-in {
  from {
    transform: translateX(30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.sim-toast.out {
  animation: toast-out 0.4s forwards;
}

@keyframes toast-out {
  to {
    transform: scale(0.9);
    opacity: 0;
  }
}

.intel-visual {
  height: 180px;
  background: #050505;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.intel-card:hover .intel-visual {
  border-color: rgba(232, 82, 26, 0.3);
}

.intel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* New Intelligent UI Elements */
.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
  animation: scanning-line 3s linear infinite;
  z-index: 2;
}

@keyframes scanning-line {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(140px);
  }
}

.intel-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 8px;
  font-weight: 800;
  padding: 4px 8px;
  background: rgba(62, 241, 147, 0.1);
  color: #3EF193;
  border: 1px solid rgba(62, 241, 147, 0.2);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.box-label {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  color: var(--text-muted);
  white-space: nowrap;
}

.layout-box {
  width: 30px;
  height: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

/* Typography Visuals */
.font-sample {
  font-size: 48px;
  font-family: var(--font-primary);
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.font-meta {
  position: absolute;
  bottom: 24px;
  font-size: 10px;
  color: var(--accent);
  font-family: var(--font-mono);
}

.font-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--text-muted);
}

.scale-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.scale-bar {
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
  border-radius: 2px;
}

.ratio-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  color: #3EF193;
  font-weight: bold;
}

.layout-box.accent {
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.05);
}

.access-rating {
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.6;
}

.deviation-tag {
  position: absolute;
  top: 15%;
  right: 15%;
  font-size: 8px;
  font-family: var(--font-mono);
  color: var(--accent);
  background: rgba(232, 82, 26, 0.1);
  padding: 2px 6px;
  border-radius: 2px;
  animation: pulse-mini 1s infinite alternate;
}

@keyframes pulse-mini {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.intel-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.intel-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Visual Decorators */
.component-pill {
  padding: 4px 12px;
  background: rgba(232, 82, 26, 0.1);
  border: 1px solid rgba(232, 82, 26, 0.3);
  color: var(--accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.layout-box {
  width: 30px;
  height: 30px;
  border: 1px dashed var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.access-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.access-dot.pass {
  background: #3EF193;
  box-shadow: 0 0 15px rgba(62, 241, 147, 0.4);
}

.access-dot.fail {
  background: #FF5F56;
  opacity: 0.3;
}

.align-line {
  width: 1px;
  height: 60%;
  background: var(--accent);
  position: relative;
}

.align-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.terminal-controls {
  display: flex;
  justify-content: flex-start;
}

.btn-rerun {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 300ms ease;
}

.btn-rerun:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-rerun svg {
  transition: transform 600ms ease;
}

.btn-rerun:hover svg {
  transform: rotate(180deg);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Meet Section */
.meet-section {
  padding: 120px 0;
  text-align: left;
}

.meet-title {
  font-size: clamp(40px, 6vw, 84px);
  margin-bottom: 12px;
}

.meet-subtitle {
  font-size: 20px;
  color: var(--text-dimmed);
  margin-bottom: 64px;
  font-weight: 300;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 100px;
}

.pipeline-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pipeline-btn.zipit-active {
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.08);
  color: #fff;
  box-shadow: 0 0 25px var(--accent-glow);
}

.pipeline-arrow {
  color: var(--border-default);
  font-size: 14px;
}

.meet-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: start;
}

.benefit-list {
  list-style: none;
}

.typewriter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.typewriter-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 8px;
  transition: background 300ms ease;
  cursor: default;
}

.typewriter-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.typewriter-done:hover .typewriter-text {
  color: var(--text-secondary);
  opacity: 1;
}

.typewriter-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
  transition: opacity 300ms ease;
}

.typewriter-dash {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 4px;
  transition: opacity 300ms ease;
}

.typewriter-text {
  color: var(--text-secondary);
  transition: all 300ms ease;
}

.typewriter-active .typewriter-text {
  color: var(--text-muted);
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.meet-divider {
  width: 1px;
  height: 100%;
  background: var(--border-subtle);
  min-height: 200px;
}

.why-title {
  font-style: italic;
  font-size: 28px;
  margin-bottom: 32px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-secondary);
}

.why-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 400ms ease;
}

.why-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.check-box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-box.active,
.why-item.checked .check-box {
  background: rgba(232, 82, 26, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.why-item .check-box svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-item.checked .check-box svg {
  opacity: 1;
  transform: scale(1);
}

.check-box svg {
  width: 14px;
  height: 14px;
}

/* Transitions */
@keyframes pipeline-cycle {
  0% {
    border-color: var(--border-default);
    background: transparent;
    color: var(--text-muted);
    box-shadow: none;
  }

  15% {
    border-color: var(--accent);
    background: rgba(232, 82, 26, 0.05);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
  }

  30% {
    border-color: var(--border-default);
    background: transparent;
    color: var(--text-muted);
    box-shadow: none;
  }

  100% {
    border-color: var(--border-default);
    background: transparent;
    color: var(--text-muted);
    box-shadow: none;
  }
}

.pipeline-btn.disabled {
  animation: pipeline-cycle 6s infinite;
}

.pipeline-btn.disabled:nth-child(1) {
  animation-delay: 0s;
}

.pipeline-btn.disabled:nth-child(3) {
  animation-delay: 1.5s;
}

.pipeline-btn.disabled:nth-child(5) {
  animation-delay: 3s;
}

/* Features */
.features {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(232, 82, 26, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: -0.02em;
}

.text-accent-orange {
  display: inline-block;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #e8521a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}

.text-accent-orange::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.1em;
  background: var(--accent);
  opacity: 0.2;
  border-radius: 100px;
  filter: blur(4px);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 48px 32px;
  transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
              rgba(232, 82, 26, 0.08), 
              transparent 70%);
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: 0;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 82, 26, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(232, 82, 26, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-graphic {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.icon-box {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-card:hover .icon-box {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Existing styles up to line 800 */

/* -------------------------------------------------------------------------- */
/* NEW SECTIONS: BROWSERS & CTA */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* NEW SECTIONS: BROWSERS & CTA */
/* -------------------------------------------------------------------------- */

.browsers-section {
  padding: 140px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.browsers-section .reveal {
  text-align: left;
}

.browsers-section .section-title {
  margin-bottom: 40px;
  /* Reduced since tag occupies space */
  text-align: left;
}

.browsers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.browsers-grid .browser-card {
  flex: 0 1 calc(33.333% - 24px);
  min-width: 320px;
  margin: 0;
}

@media (max-width: 1100px) {
  .browsers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .browsers-grid {
    grid-template-columns: 1fr;
  }
}

.browser-card {
  padding: 40px;
  text-align: left;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hover Spotlight & Top Line */
.browser-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 5;
  box-shadow: 0 0 15px var(--accent);
}

.browser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(232, 82, 26, 0.08),
      transparent 70%);
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: 1;
  pointer-events: none;
}

.browser-card:hover::before {
  transform: scaleX(1);
}

.browser-card:hover::after {
  opacity: 1;
}

.browser-card:hover {
  background: rgba(255, 255, 255, 0.015);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(232, 82, 26, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 82, 26, 0.1);
}

.browser-card.recommended::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(232, 82, 26, 0.05), transparent 70%);
  pointer-events: none;
}

.browser-card.recommended::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.browser-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.browser-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-ui);
}

.browser-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.recommended-tag {
  background: #3EF193;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.browser-visual-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 20px;
}

.browser-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform 400ms ease;
}

.browser-card:hover .browser-logo {
  transform: scale(1.1);
}

.browser-download-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  position: relative;
  z-index: 10;
}

.browser-download-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 82, 26, 0.25);
}

.browser-download-btn svg {
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.browser-download-btn:hover svg {
  opacity: 1;
  transform: translateY(1px);
}

.browser-mockup {
  width: 180px;
  height: 120px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #222;
}

.mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #222;
}

.mockup-header::after {
  content: "";
  flex: 1;
  height: 8px;
  background: #1A1A1A;
  border-radius: 4px;
}

.mockup-body {
  padding: 12px;
}

.mockup-line {
  height: 6px;
  background: #1A1A1A;
  border-radius: 3px;
  margin-bottom: 8px;
  width: 90%;
}

.mockup-line.short {
  width: 60%;
}

.scan-indicator {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 24px;
  height: 24px;
  background: rgba(62, 241, 147, 0.1);
  border: 1px solid rgba(62, 241, 147, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-indicator::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #3EF193;
  border-radius: 50%;
  box-shadow: 0 0 10px #3EF193;
}

@media (max-width: 991px) {
  .browsers-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    height: auto;
    min-height: 320px;
  }
}

.pricing-vault {
  padding: 120px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.02em;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.vault-banner {
  background: linear-gradient(135deg, #7C3AED 0%, #E8521A 100%);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.vault-deal-badge {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vault-left h3 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #fff;
}

.vault-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
}

.vault-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-current {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
}

.price-meta {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.price-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.vault-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.v-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.v-check {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.vault-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-vault {
  background: #fff;
  color: #000;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-vault:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vault-urgency {
  width: 100%;
}

.urgency-text {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.urgency-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  overflow: hidden;
}

.urgency-progress {
  height: 100%;
  background: #fff;
  width: 92%;
  border-radius: inherit;
  box-shadow: 0 0 15px #fff;
}

.vault-social {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 12px;
}

@media (max-width: 1200px) {
  .vault-banner {
    grid-template-columns: 1fr;
    padding: 80px 40px 60px;
    text-align: center;
  }
  .vault-left, .vault-features, .vault-right {
    width: 100%;
  }
  .vault-price, .v-feat {
    justify-content: center;
  }
  .vault-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Existing CTA SECTION Styles (Keep for other uses or cleanup) --- */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  background-color: #080808;
  border-top: 1px solid var(--border-subtle);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(232, 82, 26, 0.1) 0%, transparent 70%),
              radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  background-color: #080808;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Decorative Data Nodes */
.cta-decor-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-node {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floating 6s ease-in-out infinite;
  z-index: 1;
}

.decor-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.decor-2 {
  top: 60%;
  left: 15%;
  animation-delay: 1.5s;
}

.decor-3 {
  top: 25%;
  right: 12%;
  animation-delay: 3s;
}

.decor-4 {
  top: 70%;
  right: 8%;
  animation-delay: 4.5s;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 66px);
  font-weight: 500;
  margin-bottom: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-title .text-accent-orange {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-block;
}

.btn-cta {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  color: #fff;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(232, 82, 26, 0.3);
  border: none;
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(232, 82, 26, 0.4);
  filter: brightness(1.1);
}

.btn-cta img {
  width: 24px;
  height: 24px;
}

.cta-subtitle {
  color: #fff;
  font-size: 15px;
  margin-bottom: 64px;
  opacity: 0.9;
}

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-trust .dot {
  width: 3px;
  height: 3px;
  background: var(--border-medium);
  border-radius: 50%;
}

/* How it Works */
.how-it-works {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.section-subtitle {
  color: var(--text-body);
  font-size: 18px;
  margin-bottom: 60px;
}

/* Visual Steps (Try-Icon Style) */
.visual-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.visual-step {
  text-align: center;
}

.visual-step-icon {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 32px;
  aspect-ratio: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 400ms ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.visual-step:hover .visual-step-icon {
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.05);
  transform: translateY(-8px);
}

.sim-window {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  background: var(--bg-card);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sim-nav {
  height: 16px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  background: var(--bg-surface);
}

.sim-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

.sim-content {
  flex: 1;
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Step 1: Scanning Animation */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  animation: scan 3s infinite linear;
  opacity: 0;
  z-index: 10;
}

.visual-step:hover .scan-line {
  opacity: 1;
}

@keyframes scan {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

/* Step 2: Review Pulse */
.sim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sim-box {
  height: 12px;
  border-radius: 3px;
  background: var(--border-medium);
}

.sim-box.accent {
  background: var(--accent);
  animation: pulse-sim 2s infinite;
}

@keyframes pulse-sim {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }
}

/* Step 3: Export Arrow */
.export-btn-sim {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.visual-step:hover .export-btn-sim {
  animation: bounce-sim 0.6s infinite alternate cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes bounce-sim {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.visual-step h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.visual-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .visual-steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pricing Ladder */
.pricing-ladder-container {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(20px);
}

.pricing-ladder-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-ladder-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.pricing-ladder-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.ladder-wrapper {
  margin: 40px 0 60px;
  padding: 0 24px;
}

.ladder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.ladder-line {
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
  overflow: hidden;
}

.ladder-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 50%, transparent 50%);
  background-size: 12px 100%;
  animation: marching-ants 0.8s linear infinite;
}

@keyframes marching-ants {
  from { background-position: 0 0; }
  to { background-position: 12px 0; }
}

.ladder-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #FF5500, #FFD700);
  width: 50%;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
  z-index: 1;
}

.ladder-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-faint);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ladder-step.completed .step-circle {
  background: linear-gradient(135deg, #FF8E35 0%, #FF5500 50%, #E8521A 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 10px 20px rgba(232, 82, 26, 0.3);
}

.ladder-step.current .step-circle {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: scale(1.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 215, 0, 0.2);
}

.ladder-step.future .step-circle {
  border-style: dashed;
  background: #080808; /* Solid background to obscure the line */
  opacity: 1;
  color: #444;
  border-color: #333;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.ladder-step.current .step-label {
  color: #fff;
  font-weight: 800;
}

.ladder-footer {
  display: flex;
  justify-content: center;
}

.ladder-urgency {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.spots-badge {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-ui), sans-serif;
}

.highlight-num {
  color: #FF5500;
  font-weight: 900;
  font-size: 14px;
}

.urgency-text {
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.9;
  font-family: var(--font-ui), sans-serif;
}

@media (max-width: 768px) {
  .pricing-ladder-container {
    padding: 40px 20px;
    margin-bottom: 48px;
    border-radius: 24px;
  }

  .pricing-ladder-subtitle {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .ladder-wrapper {
    margin: 24px 0 40px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ladder {
    min-width: 360px;
    padding: 0 8px;
    justify-content: center;
    gap: 0;
  }

  .ladder-step {
    flex: 1;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 0;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .ladder-step.current .step-circle {
    transform: scale(1.15);
  }

  .step-label {
    font-size: 9px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: center;
    width: 100%;
  }

  .ladder-line {
    top: 20px;
    left: 10%;
    right: 10%;
  }

  .ladder-urgency {
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px;
    text-align: center;
  }

  .urgency-text {
    font-size: 11px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pricing-ladder-container {
    padding: 32px 14px;
    border-radius: 20px;
  }

  .pricing-ladder-title {
    font-size: 28px;
  }

  .pricing-ladder-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .ladder {
    min-width: 320px;
    padding: 0 4px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .ladder-step.current .step-circle {
    transform: scale(1.1);
  }

  .step-label {
    font-size: 8px;
  }

  .ladder-step:not(.current):not(.completed) .step-label {
    display: none;
  }

  .ladder-line {
    top: 18px;
  }

  .ladder-footer {
    padding: 0 4px;
  }

  .spots-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .urgency-text {
    font-size: 10px;
  }
}

/* Pricing */
.pricing {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.pricing-pill {
  display: inline-block;
  background: linear-gradient(180deg, #F97A26 0%, #E65513 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  box-shadow: 0 8px 16px rgba(230, 85, 19, 0.25);
}

/* Hybrid Pricing UI Match (Magic SEO Style) */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .pricing-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

.pricing-card-hybrid {
  background: linear-gradient(180deg, #1e1f26 0%, #16171d 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.pricing-card-hybrid.popular {
  background: #FFFFFF;
  color: #111;
  border: 4px solid var(--accent);
  border-radius: 28px;
  padding: 50px 40px;
  max-width: 420px;
  transform: scale(1.08);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(232, 82, 26, 0.2), 0 0 100px rgba(232, 82, 26, 0.1);
}

.hybrid-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF5500 0%, #E8521A 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(232, 82, 26, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.plan-name-hybrid {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-ui);
}

.plan-price-hybrid {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 32px;
}

.plan-price-hybrid .price-amount {
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-original {
  font-size: 56px;
  color: #888;
  text-decoration: line-through;
  margin-right: 12px;
  align-self: flex-start;
  margin-top: 0px;
  opacity: 0.25;
  font-weight: 700;
}

.pricing-card-hybrid.popular .price-original {
  color: #000;
  opacity: 0.15;
}

.plan-price-hybrid .price-period {
  font-size: 14px;
  color: #888;
  padding-bottom: 12px;
}

.btn-hybrid-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  color: #fff;
  padding: 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(232, 82, 26, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 40px;
  border: none;
}

.btn-hybrid-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(232, 82, 26, 0.4);
  filter: brightness(1.1);
}

.btn-hybrid-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #ef7f25;
  padding: 15px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid #ef7f25;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 40px;
}

.btn-hybrid-outline:hover {
  background: rgba(239, 127, 37, 0.05);
  transform: translateY(-2px);
}

.pricing-card-hybrid.popular .btn-hybrid-primary {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card-hybrid.popular .btn-hybrid-primary:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.plan-features-hybrid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features-hybrid li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.pricing-card-hybrid.popular .plan-features-hybrid li {
  color: #444;
}

.features-check-hybrid {
  color: #FF5500;
  font-weight: bold;
  font-size: 16px;
}

.feature-group-header {
  margin: 24px 0 12px 0 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6B00 !important;
  display: block !important;
  opacity: 1 !important;
}

.pricing-card-hybrid.popular .feature-group-header {
  color: #000 !important;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 4px;
}

.features-overflow-container {
  margin-top: 24px;
}

.features-overflow-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-overflow-container.active .features-overflow-content {
  max-height: 800px; /* Large enough to fit all features */
}

.btn-toggle-features {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #FF5500;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.btn-toggle-features:hover {
  opacity: 0.8;
}

.btn-toggle-features svg {
  transition: transform 0.3s ease;
}

.features-overflow-container.active .btn-toggle-features svg {
  transform: rotate(180deg);
}

.pricing-card-hybrid.popular .btn-toggle-features {
  color: #000;
}

/* =============================================
   SNAPESTER-STYLE PRICING SECTION
   ============================================= */
.pricing-snapester {
  padding: 120px 0 120px;
  background: #FFF9F6;
  position: relative;
}

.pricing-snapester::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 82, 26, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Pricing Pill */
.snap-pricing-pill {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B00 0%, #E8521A 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* Section Title */
.snap-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  color: #080808;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.snap-title-accent {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, #FF6B00, #E8521A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.snap-section-subtitle {
  font-size: 16px;
  color: #555555;
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ---- Pricing Ladder (Slider Style) ---- */
.snap-ladder-container {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 44px 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  border: 1px dashed rgba(255, 85, 0, 0.2);
  box-shadow: 0 10px 45px rgba(255, 85, 0, 0.03);
  text-align: center;
  position: relative;
  z-index: 2;
}

.snap-ladder-urgency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.snap-urgency-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF5500;
  animation: snap-pulse 1.5s ease-in-out infinite;
}

@keyframes snap-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.snap-urgency-count {
  color: #FF5500;
  font-weight: 800;
}

.snap-urgency-label strong {
  color: #000000;
}

.snap-urgency-sublabel {
  font-size: 14px;
  color: #555555;
  margin-bottom: 36px;
}

.snap-urgency-sublabel strong {
  color: #000000;
  font-weight: 700;
}

/* Slider Track */
.snap-ladder-track-wrapper {
  position: relative;
  padding: 0 10px;
}

.snap-price-tooltip {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF5500;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 3;
}

.snap-price-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #FF5500;
}

.snap-slider-thumb {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #FF5500;
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.35);
  z-index: 2;
}

.snap-ladder-track {
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.snap-ladder-track-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF8E35, #FF5500);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Labels under track */
.snap-ladder-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 2px;
}

.snap-label {
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  transition: color 0.3s ease;
}

.snap-label-active {
  color: #FF5500;
  font-weight: 800;
}

.snap-youre-here {
  font-size: 12px;
  color: #FF5500;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* ---- Pricing Cards Grid ---- */
.snap-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Card base */
.snap-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 44px 40px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  position: relative;
}

/* FREE card sits behind & lower */
.snap-card-free {
  margin-top: 60px;
  z-index: 1;
}

.snap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Pro card extra */
.snap-card-pro {
  border: 1px solid rgba(255, 85, 0, 0.4);
  box-shadow: 0 15px 50px rgba(255, 85, 0, 0.06);
  background: #ffffff;
  z-index: 2;
}

.snap-card-pro:hover {
  box-shadow: 0 25px 60px rgba(255, 85, 0, 0.12);
  border-color: #FF5500;
}

/* Card labels */
.snap-card-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777777;
  margin-bottom: 12px;
}

.snap-label-pro {
  color: #FF5500;
}

/* Card title */
.snap-card-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #080808;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}

.snap-card-subtitle {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Card price */
.snap-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.snap-price-big {
  font-size: 56px;
  font-weight: 700;
  color: #080808;
  line-height: 1;
  letter-spacing: -0.03em;
}

.snap-price-period {
  font-size: 16px;
  color: #777777;
  font-weight: 500;
}

.snap-price-original {
  font-size: 28px;
  color: #999999;
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 4px;
}

/* Feature list */
.snap-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.snap-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
  line-height: 1.4;
}

.snap-features li:last-child {
  border-bottom: none;
}

/* Feature icon circles */
.snap-feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.07);
  border: 1px solid rgba(255, 85, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5500;
  transition: all 0.3s ease;
}

.snap-features li:hover .snap-feat-icon {
  background: rgba(255, 85, 0, 0.12);
  transform: scale(1.08);
}

/* Buttons */
.snap-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    color: #080808;
    background: #ffffff;
    border: 1px solid #d2d6dc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.snap-btn-outline:hover {
    background: #FF5500;
    color: #fff;
    border-color: #FF5500;
    transform: translateY(-2px);
}

.snap-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #FF8E35 0%, #FF5500 50%, #E8521A 100%);
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.snap-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 85, 0, 0.3);
  filter: brightness(1.05);
}

/* Payment note */
.snap-payment-note {
  text-align: center;
  font-size: 12px;
  color: #777777;
  margin-top: 16px;
}

.snap-payment-note a {
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.snap-payment-note a:hover {
  color: #FF5500;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .snap-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 32px;
  }

  .snap-card-free {
    margin-top: 0;
    border-radius: 24px;
  }

  .snap-card-pro {
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-snapester {
    padding: 80px 0 80px;
  }

  .snap-ladder-container {
    padding: 32px 24px 32px;
    margin-bottom: 48px;
    border-radius: 18px;
  }
}

/* Popular Badge */
.snap-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF8E35 0%, #FF5500 50%, #E8521A 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(232, 82, 26, 0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid #FFFFFF;
  white-space: nowrap;
  z-index: 3;
}

/* Collapsible Features */
.snap-features-collapsible {
  margin-top: 8px;
  margin-bottom: 24px;
}

.snap-features-overflow {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.snap-features-collapsible.active .snap-features-overflow {
  max-height: 1000px;
}

.snap-toggle-features {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #FF5500;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-family: var(--font-ui);
}

.snap-toggle-features:hover {
  opacity: 0.75;
}

.snap-toggle-features svg {
  transition: transform 0.3s ease;
}

.snap-features-collapsible.active .snap-toggle-features svg {
  transform: rotate(180deg);
}

.snap-feature-group-header {
  margin: 24px 0 12px 0 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF5500 !important;
  display: block !important;
  opacity: 1 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-bottom: 8px !important;
}

.snap-price-period {
  font-size: 16px;
  color: #777777;
  font-weight: 500;
}

.snap-price-original {
  font-size: 28px;
  color: #999999;
  text-decoration: line-through;
  font-weight: 600;
  opacity: 0.6;
}



/* Payment Modal */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.payment-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.payment-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-modal-overlay.active .payment-modal {
  transform: translateY(0) scale(1);
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
}

.payment-modal-close:hover {
  background: #eee;
  color: #333;
}

.payment-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.payment-modal-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.payment-modal-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.payment-modal-header p {
  font-size: 14px;
  color: #888;
}

.payment-modal-header p strong {
  color: #FF5500;
  font-weight: 700;
}

.payment-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid #eee;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: #fff;
}

.payment-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.payment-paypal:hover {
  border-color: #0070E0;
  background: #F7FBFF;
}

.payment-dodo:hover {
  border-color: #FF5500;
  background: #FFFAF7;
}

.payment-option-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-paypal .payment-option-icon {
  background: rgba(0, 112, 224, 0.08);
  color: #0070E0;
}

.payment-dodo .payment-option-icon {
  background: rgba(255, 85, 0, 0.08);
  color: #FF5500;
}

.payment-logo-icon {
  background: #f5f5f5 !important;
}

.payment-logo-icon img {
  object-fit: contain;
}

.payment-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-name {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.payment-option-desc {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.payment-option-arrow {
  color: #ccc;
  transition: transform 0.2s ease;
}

.payment-option:hover .payment-option-arrow {
  transform: translateX(3px);
  color: #888;
}

.payment-modal-secure {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

@media (max-width: 480px) {
  .payment-modal {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .payment-option {
    padding: 14px 16px;
    gap: 12px;
  }

  .payment-option-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

.faq {
  padding: 160px 0;
  position: relative;
  background: radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
}

.section-tag {
  background: rgba(232, 82, 26, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: inline-block;
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(232, 82, 26, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 82, 26, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question span {
  font-size: 18px;
  color: #6f6f6f !important;
  transition: all 0.3s ease;
  font-weight: 500;
  transform: none !important;
  display: block;
}

.faq-question span:first-child {
  padding-right: 20px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  color: var(--accent);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-item.active .faq-question span {
  color: #ffffff !important;
  transform: none !important;
  font-weight: 400;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 32px;
  opacity: 1;
}

.faq-answer-inner {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* FAQ Expandable Content */
.faq-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-more-content.active {
  max-height: 2000px; /* Large enough to fit the remaining FAQs */
}

.faq-view-more-btn {
  display: block;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-ui);
}

.faq-view-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

/* Hide the old tabs if they still exist in HTML */
.faq-tabs {
  display: none !important;
}

/* Live Badge Styles */
.live-badge {
  background: linear-gradient(135deg, #3EF193 0%, #10B981 100%);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px rgba(62, 241, 147, 0.2);
  margin-top: 8px;
  vertical-align: middle;
}

.live-badge.hero-badge {
  margin-top: 0;
  margin-bottom: 16px;
  padding: 6px 16px;
  font-size: 11px;
}

.live-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  animation: pulse-live 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

/* Footer */
.footer {
  margin-top: 0px;
  padding: 120px 0 30px;
  background: radial-gradient(circle at 50% 100%, rgba(232, 82, 26, 0.1) 0%, transparent 50%);
  background-color: #080808;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.footer-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.footer:hover .footer-spotlight {
  opacity: 1;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 60px;
  text-align: left;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand-wrapper {
    align-items: center;
  }
  
  .footer-column {
    align-items: center;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column-title {
  font-size: 13px;
  font-weight: 700;
  color: #837a77;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0px;
}

.footer-logo-asterisk {
  color: var(--accent);
  font-size: 32px;
  animation: spin 20s linear infinite;
  display: inline-block;
  line-height: 1;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  display: block;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}

.footer-links a {
  color: #5e5e5e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright-bar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.heart-beat {
  display: inline-block;
  animation: heartBeat 2s infinite;
  margin: 0 4px;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.25);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

.creator-neon {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-shadow: 0 0 20px rgba(232, 82, 26, 0.3);
}

.creator-neon:hover {
  opacity: 0.8;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible,
.reveal.reveal-active {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.reveal-fade-up {
  transform: translateY(40px);
}

/* Delay Utils */
.reveal[data-delay="100"] {
  transition-delay: 100ms;
}

.reveal[data-delay="200"] {
  transition-delay: 200ms;
}

.reveal[data-delay="300"] {
  transition-delay: 300ms;
}

.reveal[data-delay="400"] {
  transition-delay: 400ms;
}

.reveal[data-delay="500"] {
  transition-delay: 500ms;
}

/* Live Preview Section */
.live-preview {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.explorer-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  z-index: 2;
}

.explorer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
}

.explorer-header {
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
}

.explorer-sim {
  padding: 32px;
  text-align: left;
}

.file-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  gap: 16px;
  font-size: 14px;
}

.file-row:last-child {
  border-bottom: none;
}

.file-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232, 82, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.file-name {
  color: var(--text-primary);
  flex: 1;
  font-weight: 500;
}

.file-meta {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.context-menu-sim {
  position: absolute;
  bottom: 40px;
  right: -40px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 12px;
  width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 3;
  animation: float 4s infinite ease-in-out;
}

.menu-item-sim {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: background 200ms;
}

.menu-item-sim:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.menu-item-sim.accent {
  color: var(--accent);
}

/* Orbiting Platforms */
.orbit-container {
  position: absolute;
  inset: -150px;
  pointer-events: none;
  z-index: 1;
}

.platform-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  transition: opacity 500ms, transform 500ms;
  font-size: 24px;
}

.explorer-wrapper:hover+.orbit-container .platform-icon {
  opacity: 0.5;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(400px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(400px) rotate(-360deg);
  }
}

.icon-1 {
  animation: orbit 30s linear infinite;
  top: 50%;
  left: 50%;
}

.icon-2 {
  animation: orbit 35s linear infinite reverse;
  top: 50%;
  left: 50%;
  animation-delay: -7s;
}

.icon-3 {
  animation: orbit 28s linear infinite;
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

.icon-4 {
  animation: orbit 32s linear infinite reverse;
  top: 50%;
  left: 50%;
  animation-delay: -21s;
}

/* Paywall Modal */
.paywall-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease;
}

.paywall-overlay.active {
  display: flex;
  opacity: 1;
}

.paywall-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 32px;
  padding: 60px;
  max-width: 540px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.paywall-overlay.active .paywall-modal {
  transform: translateY(0);
}

.paywall-limit-tag {
  background: rgba(232, 82, 26, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}

.paywall-title {
  font-size: 40px;
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.paywall-desc {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.paywall-deal {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
}

.deal-price {
  font-size: 48px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.deal-price span {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.deal-label {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Install Guide Modal */
.install-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10001;
  /* Above paywall if needed */
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease;
}

.install-overlay.active {
  display: flex;
  opacity: 1;
}

.install-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 32px;
  padding: 50px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.install-overlay.active .install-modal {
  transform: translateY(0);
}

.install-title {
  font-size: 32px;
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
}

.install-steps {
  text-align: left;
  margin-bottom: 40px;
}

.install-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 300ms ease;
}

.install-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-medium);
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.step-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.close-install {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color 200ms ease;
}

.close-install:hover {
  color: var(--text-primary);
}

/* FAQ Section */
.faq {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(circle at center, rgba(232, 82, 26, 0.03), transparent 70%);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.faq-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab:hover {
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.faq-tab.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}



/* Support Section (Gradient Card Style) */
.support {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.support-container-new {
  background:
    radial-gradient(circle at 10% 20%, rgba(232, 82, 26, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 45% 10%, rgba(124, 58, 237, 0.35) 0%, transparent 40%),
    #18191c;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-info {
  flex: 0 0 45%;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.support-pill {
  background: rgba(232, 82, 26, 0.1);
  color: var(--accent);
  border: 1px solid rgba(232, 82, 26, 0.2);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.support-title {
  font-family: var(--font-ui);
  font-size: 56px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.support-subtitle {
  font-size: 16px;
  color: #bbb;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: auto;
}

.btn-theme {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 40px;
}

.btn-theme:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.support-form-wrapper {
  flex: 1;
  background: #111111;
  border-radius: 20px;
  padding: 50px 60px;
  margin: 12px 12px 12px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.support-form-title {
  font-family: var(--font-ui);
  font-size: 26px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 48px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: flex;
  gap: 32px;
}

.form-group-minimal {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group-minimal input,
.form-group-minimal textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-ui);
}

.form-group-minimal textarea {
  resize: vertical;
  min-height: 50px;
}

.form-group-minimal input::placeholder,
.form-group-minimal textarea::placeholder {
  color: #888;
}

.form-group-minimal input:focus,
.form-group-minimal textarea:focus {
  border-bottom-color: var(--accent);
}

.btn-submit {
  align-self: flex-start;
  min-width: 160px;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .meet-title {
    font-size: 48px;
  }

  .meet-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .meet-divider {
    display: none;
  }

  .intel-section {
    padding: 60px 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .intel-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .intel-grid {
    gap: 24px;
  }

  .section-title {
    font-size: 40px;
  }

  .pipeline-flow,
  .orbit-container,
  .context-menu-sim,
  .browser-mockup,
  .scan-indicator,
  .scan-overlay,
  .footer-logo-asterisk,
  .cta-decor-container {
    display: none;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .support-container-new {
    flex-direction: column;
  }

  .support-info {
    padding: 40px;
  }

  .support-form-wrapper {
    margin: 0;
    border-radius: 0 0 24px 24px;
    padding: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Floating Back Button */
.floating-back {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-back:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

.floating-back img {
  height: 20px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.floating-back span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--font-primary, sans-serif);
}

/* Intelligence Animations */
.intel-visual>* {
  animation: intel-float 3s ease-in-out infinite;
}

.intel-visual>*:nth-child(2) {
  animation-delay: 0.5s;
}

.intel-visual>*:nth-child(3) {
  animation-delay: 1s;
}

@keyframes intel-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Marquee Bridge from N47 Style */
.marquee-bridge {
  background: linear-gradient(90deg, rgba(239, 127, 37, 0.15) 0%, rgba(255, 225, 213, 0.05) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 16px 0; /* Reduced padding for slim look */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: -40px 0 100px;
  position: relative;
  z-index: 1;
  width: 120vw;
  left: -10vw;
  transform: rotate(-2deg) translateZ(0); /* Adjusted rotation */
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  outline: 1px solid transparent;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 85s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 11px; /* Smaller font for slim marquee */
  font-weight: 800;
  letter-spacing: 0.2em; /* Increased spacing to compensate for smaller size */
  line-height: 1.6;
  text-transform: uppercase;
  color: #ec7423;
  white-space: nowrap;
}

.marquee-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ec7423;
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: toastSlideUp 0.3s forwards;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sim-toast.out {
  animation: toastSlideDown 0.3s forwards;
}

@keyframes toastSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastSlideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* --- REVEAL ON APPEAR ANIMATIONS --- */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
  filter: blur(0px) !important;
}

.reveal-fade-up {
  transform: translateY(40px);
}

.reveal-fade-in {
  transform: scale(0.95);
}

.reveal-flip-up {
  transform: translateY(60px) perspective(1500px) rotateX(20deg) scale(0.9);
  filter: blur(8px);
}

.reveal-slide-right {
  transform: translateX(-40px);
}

.reveal-slide-left {
  transform: translateX(40px);
}

/* Stagger for children if parent has .reveal-stagger class */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.reveal-active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.reveal-active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.reveal-active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.reveal-active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.reveal-active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.reveal-active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.reveal-active > *:nth-child(6) { transition-delay: 0.6s; }

/* ── RESPONSIVE REFINEMENTS (Antigravity Optimization) ── */

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .workflow-step {
    padding: 24px 20px !important;
  }
}

.workflow-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 32px 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 82, 26, 0.3);
  transform: translateY(-4px);
}

.featured-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.featured-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media (max-width: 600px) {
  .featured-badges {
    flex-direction: column;
    gap: 20px;
  }
}

.hero-glow-purple {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
  opacity: 0.1;
  filter: blur(100px);
  pointer-events: none;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-lang-item-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.mobile-lang-item-compact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.mobile-lang-item-compact.active {
  background: rgba(232, 82, 26, 0.1);
  border-color: var(--accent);
}

/* ── SEO ENHANCEMENTS ── */
/* Ensure headings are properly spaced and visible */
h1.hero-title {
  margin-top: 20px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

/* Accessibility: Keyboard focus improvements */
a:focus, button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Explore Bar (Sub-Navigation) */
.explore-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 24px 20px 24px;
  gap: 8px;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 10;
}

.explore-bar-item {
  color: #666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 6px 12px;
}

.explore-bar-item:hover {
  color: #fff;
  transform: translateY(-1px);
}

.explore-bar-sep {
  color: #222;
  font-size: 12px;
  font-weight: 200;
  user-select: none;
}

@media (max-width: 768px) {
  .explore-bar {
    padding: 40px 16px 10px 16px;
    gap: 4px;
  }
  .explore-bar-item {
    font-size: 10px;
    padding: 4px 8px;
  }
}

.footer-logo-asterisk {
    color: var(--accent-orange);
    font-size: 44px;
    margin-bottom: 8px;
    animation: spinAsterisk 20s linear infinite;
    display: inline-block;
    line-height: 1;
}

@keyframes spinAsterisk {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Features Hub Card Hover Effects */
.feature-hover-card {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.feature-hover-card:hover {
  border-color: rgba(232, 82, 26, 0.25) !important;
  transform: translateY(-5px);
  background: radial-gradient(circle at center, rgba(232, 82, 26, 0.05) 0%, rgba(255,255,255,0.03) 70%) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(232, 82, 26, 0.04);
}

/* --- URL ANALYSIS INPUT --- */
.hero-input-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 32px;
    position: relative;
    z-index: 20;
}

.input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.input-container:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(232, 82, 26, 0.15);
}

.url-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 16px;
    outline: none;
    min-width: 0;
}

.url-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.analyze-button {
    background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.analyze-button:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.analyze-button svg {
    transition: transform 0.3s ease;
}

.analyze-button:hover svg {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .input-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 12px;
        gap: 12px;
    }
    
    .url-input {
        width: 100%;
        padding: 8px 12px;
        text-align: center;
    }
    
    .analyze-button {
        width: 100%;
        justify-content: center;
    }
}
