: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.38);
  --text-secondary: #CCCCCC;
  --text-body: #999999;
  --text-muted: #666666;
  --text-faint: #444444;

  /* 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;
}

* {
  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;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 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 {
  background: linear-gradient(to bottom, #fb923c, #f97316, rgba(249, 115, 22, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  vertical-align: bottom;
  letter-spacing: -0.025em;
}

/* 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='3' 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: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(8, 8, 8, 0.85);
  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%;
}

.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;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color 250ms ease;
}

.nav-links a:hover {
  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: 900px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* 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;
}

.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-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:hover img {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(232, 82, 26, 0.2);
}

@media (max-width: 768px) {
  .featured-badges {
    gap: 20px;
  }
}

/* Hero Section */
.hero {
  padding: 160px 0 180px;
  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(120px);
  opacity: 0.15;
}

.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%);
}

.hero-title {
  font-size: clamp(52px, 8vw, 92px);
  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: 18px;
  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;
}

/* 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;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Intelligent Design Section */
.intel-outer-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}

.intel-section {
  padding: 120px 80px;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

/* Background element for section card */
.intel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(232, 82, 26, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.intel-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.intel-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  transition: all 400ms ease;
}

/* 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;
}

.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: 100px;
  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-size: 64px;
  line-height: 1.1;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 40px;
  border-radius: 20px;
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1;
}

/* Border Beam Effect */
.feature-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--beam-angle, 0deg),
      transparent 0deg,
      var(--accent) 30deg,
      transparent 60deg);
  -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;
  z-index: -1;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 82, 26, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner local glow (Radial) */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(232, 82, 26, 0.08),
      transparent 40%);
  z-index: -1;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

/* 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 .section-title {
  margin-bottom: 40px;
  /* Reduced since tag occupies space */
  text-align: center;
}

.browsers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
}

.browser-card {
  padding: 48px;
  text-align: left;
  position: relative;
  background: var(--bg-base);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 400ms ease;
  height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  /* Ensure glow stays inside if rounded */
}

/* 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);
}

.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: 100px;
  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 {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}

/* --- CTA SECTION --- */
.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 bottom center, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0.1) 40%, transparent 80%);
  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='3' 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, 96px);
  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: #fff;
  color: #000;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  background: #000;
  color: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.btn-cta img {
  width: 20px;
  height: 20px;
}

.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 */
.pricing {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}

.pricing-card.pro {
  border-color: rgba(124, 58, 237, 0.3);
}

.plan-name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}

.plan-price {
  font-size: 56px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.plan-price span {
  font-size: 16px;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 48px;
}

.plan-features li {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li::before {
  content: "✓";
  color: var(--accent);
}

/* FAQ */
.faq {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
}

.faq-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}

.faq-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.faq-tab.active {
  background: linear-gradient(135deg, #ef7f25 0%, #E8521A 100%);
  color: #fff;
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: 0 4px 15px rgba(232, 82, 26, 0.2);
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms ease;
}

.faq-item:hover {
  border-color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 30px;
}

/* Footer */
.footer {
  padding: 120px 40px 60px;
  background:
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
    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%;
  border-top: none;
  text-align: center;
  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 {
  position: relative;
  z-index: 2;
}

.footer-logo-asterisk {
  color: var(--accent);
  font-size: 40px;
  margin-bottom: 20px;
  animation: spin 20s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text-primary);
  margin-bottom: 40px;
  display: block;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 100;
  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 {
  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 {
  opacity: 1;
  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);
}

/* Support Section */
.support {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(circle at bottom center, rgba(232, 82, 26, 0.05), transparent 60%);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.support-info .section-title {
  font-size: 56px;
  margin-bottom: 24px;
}

.support-info .section-subtitle {
  max-width: 440px;
  margin-bottom: 48px;
  text-align: left;
}

.support-direct {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.support-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.support-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 2px;
}

.support-text a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  transition: color 200ms ease;
}

.support-text a:hover {
  color: var(--accent-hover);
}

.support-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  transition: all 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(232, 82, 26, 0.02);
  box-shadow: 0 0 0 4px rgba(232, 82, 26, 0.08);
}

.btn-block {
  width: 100%;
  padding: 16px;
}

/* 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-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-form-wrapper {
    padding: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Floating Back Button */
.floating-back {
  position: fixed;
  bottom: 24px;
  right: 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%);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: -40px 0 60px;
  position: relative;
  z-index: 0;
  width: 110vw;
  left: -5vw;
  transform: rotate(-2deg) translateZ(0);
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  outline: 1px solid transparent;
  top: 60px;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ec7423;
}

.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%);
  }
}