:root {
  --bg-deep: #08080a;
  --bg-primary: #0e0e12;
  --bg-card: #151519;
  --bg-elevated: #1c1c22;
  --bg-hover: #22222a;
  --accent: #ff4d1a;
  --accent-soft: rgba(255, 77, 26, 0.15);
  --accent-glow: rgba(255, 77, 26, 0.3);
  --accent-hover: #ff6233;
  --green: #22c55e;
  --green-soft: rgba(34, 197, 94, 0.15);
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #d1d1d6;
  --text-dim: #8e8e93;
  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(255, 77, 26, 0.3);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0f 50%, #08080a 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: white;
}

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

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 6px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  height: 32px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(255, 77, 26, 0.2);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 40px rgba(255, 77, 26, 0.25), 0 4px 15px rgba(255, 77, 26, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 60px rgba(255, 77, 26, 0.35), 0 8px 25px rgba(255, 77, 26, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--border-accent);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 77, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7.5vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-check {
  color: var(--green);
  font-size: 14px;
}

/* ===== WHY REDDIT ===== */
.why-reddit {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-reddit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

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

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-stat {
  margin-top: 48px;
  text-align: center;
  padding: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}

.why-stat strong {
  color: var(--accent);
}

.why-stat span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== PROBLEM ===== */
.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem-intro {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem-kicker {
  font-size: 17px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  gap: 16px;
}

.pain-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.pain-card:hover {
  border-color: var(--border-accent);
  transform: translateX(6px);
}

.pain-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--bg-primary);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.how-step {
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s;
}

.how-step:hover {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.12) 0%, rgba(59, 130, 246, 0.09) 50%, rgba(34, 197, 94, 0.08) 100%);
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 77, 26, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.meta-proof {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.meta-proof strong {
  color: var(--text-primary);
}

.demo-area {
  margin-top: 64px;
}

.video-callout {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.video-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
}

.video-callout-badge svg {
  width: 14px;
  height: 14px;
}

.video-callout-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.video-callout-arrow {
  margin-top: 0;
  opacity: 0.7;
  animation: callout-bounce 2s ease-in-out infinite;
}

@keyframes callout-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: opacity;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.video-modal-content {
  width: 100%;
  max-width: 960px;
}

.video-modal-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px rgba(255, 77, 26, 0.15), 0 0 0 1px rgba(255,255,255,0.05);
}

.video-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.screenshots-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.screenshot-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.screenshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.5s;
}

.screenshot-placeholder:hover img {
  transform: scale(1.05);
}

.screenshot-placeholder:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.screenshot-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  padding: 10px 0;
}

.screenshot-icon {
  font-size: 24px;
  color: var(--text-dim);
}

/* Gallery Overlay */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
}

.gallery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  z-index: 1;
}

.gallery-content img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  opacity: 0;
  transform: translateY(40px);
}

.gallery-caption {
  text-align: center;
  margin-top: 24px;
  max-width: 600px;
  opacity: 0;
}

.gallery-feature-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.gallery-caption p.gallery-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  margin: 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-caption p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}

.gallery-counter {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.gallery-dismiss-mobile {
  display: none;
}

.gallery-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.gallery-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.gallery-nav:hover {
  background: var(--bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
  left: 24px;
}

.gallery-next {
  right: 24px;
}

/* ===== USE CASES ===== */
.usecase-tabs {
  display: flex;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.usecase-tab {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.usecase-tab:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.usecase-tab.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.usecase-panels {
  margin-top: 32px;
}

.usecase-panel {
  display: none;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.usecase-panel.active {
  display: grid;
}

.usecase-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.usecase-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.usecase-goal {
  padding: 18px 24px;
  background: var(--bg-elevated);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
}

.usecase-goal span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.usecase-screenshot {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.usecase-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.usecase-screenshot:hover img {
  transform: scale(1.05);
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--bg-primary);
}

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

.features-trust-line {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

.feature-screenshot {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.feature-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-screenshot img {
  transform: scale(1.05);
}

.feature-screenshot .placeholder-icon {
  font-size: 32px;
  color: var(--text-dim);
}

.feature-body {
  padding: 28px;
  flex: 1;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-body p.feature-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ===== VALUE COMPARISON ===== */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.value-col {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-manual {
  background: var(--bg-card);
}

.value-arc {
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.06), rgba(59, 130, 246, 0.04));
  border-color: var(--border-accent);
}

.value-col-header {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-col-header .tag {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-old {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
}

.tag-new {
  background: var(--green-soft);
  color: var(--green);
}

.value-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.value-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.value-list .icon-x {
  color: #ef4444;
  font-size: 14px;
  margin-top: 4px;
}

.value-list .icon-check {
  color: var(--green);
  font-size: 14px;
  margin-top: 4px;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-card-label {
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.stat-card-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.value-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-secondary);
}

.value-bottom strong {
  color: var(--text-primary);
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

/* ===== BROWSER ADVANTAGE ===== */
.browser-callout {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.browser-callout h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.browser-callout>p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.browser-points {
  display: grid;
  gap: 20px;
}

.browser-point {
  display: flex;
  gap: 16px;
}

.browser-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.browser-point h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.browser-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-card-wrap {
  max-width: 680px;
  margin: 56px auto 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.pricing-inner {
  padding: 48px;
}

.pricing-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pricing-badge-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-free {
  background: var(--green-soft);
  color: var(--green);
}

.badge-beta {
  background: var(--accent-soft);
  color: var(--accent);
}

.pricing-timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.timeline-step {
  flex: 1;
  text-align: center;
}

.timeline-step .label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-step .val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.timeline-step .val.free {
  color: var(--green);
}

.timeline-step .val.price {
  color: var(--accent);
}

.timeline-step .val.launch {
  color: var(--text-secondary);
}

.timeline-arrow {
  color: var(--text-dim);
  font-size: 16px;
}

.pricing-cta-row {
  margin-bottom: 32px;
}

.pricing-cta-row .btn {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 18px;
}

.pricing-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
}

.pricing-feat i {
  color: var(--green);
  font-size: 13px;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-dim);
}

.pricing-note strong {
  color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 760px;
  margin: 56px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
  border: none;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.faq-icon {
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FOUNDER ===== */
.founder-section {
  background: var(--bg-primary);
}

.founder-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.founder-photo {
  width: 140px;
  height: 140px;
  min-width: 140px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo .placeholder-icon {
  font-size: 40px;
  color: var(--text-dim);
}

.founder-text h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.founder-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.founder-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.founder-text a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  color: var(--text-dim);
  font-size: 14px;
}

.footer-left a {
  color: var(--accent);
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 28px;
}

.footer-right a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--text-primary);
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrap {
  overflow: visible;
  margin-top: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.comparison-table thead th {
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .col-highlight {
  background: var(--accent-soft);
}

.comparison-table thead .col-highlight {
  background: rgba(255, 77, 26, 0.25);
  color: var(--accent);
}

.comparison-table .check-icon {
  color: var(--green);
  font-size: 16px;
}

.comparison-table .x-icon {
  color: #ef4444;
  font-size: 16px;
}

.comparison-table .partial-icon {
  color: var(--text-dim);
  font-size: 13px;
}

.comparison-table .price-row td {
  font-weight: 600;
  color: var(--text-primary);
}

/* Comparison tooltip */
.cmp-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
  cursor: help;
  vertical-align: middle;
  flex-shrink: 0;
}

.cmp-tip::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #1e1e24;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  width: 280px;
  white-space: normal;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cmp-tip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hide-mobile {
    display: none !important;
  }

  .section {
    padding: 80px 0;
  }

  .why-reddit-grid,
  .how-steps,
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .usecase-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-content {
    max-width: 90vw;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .gallery-caption p.gallery-tagline {
    font-size: 15px;
  }

  .gallery-caption p {
    font-size: 13px;
  }

  .gallery-dismiss-mobile {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }

  .founder-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-links .nav-link-hide {
    display: none;
  }

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

@media (max-width: 640px) {
  .hero-content {
    padding: 60px 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .usecase-tabs {
    gap: 6px;
  }

  .usecase-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .pricing-inner {
    padding: 32px 24px;
  }

  .browser-callout {
    padding: 32px 24px;
  }
}