/* ============================================================
   THEME VARIABLES — LIGHT (default) & DARK
============================================================ */
:root {
  /* Backgrounds */
  --bg:          #FFFEF2;
  --bg-alt:      #F4F3E2;
  --bg-card:     #FAFAE8;
  --bg-footer:   #EEEDD8;

  /* Borders */
  --border:      #E0DECB;
  --border-mid:  #CCCAAE;

  /* Text */
  --text:        #1a1a10;
  --text-body:   #4a4a38;
  --text-muted:  #808068;
  --text-subtle: #ABAA90;
  --text-faint:  #CCCAB0;

  /* Accent */
  --accent:      #4848d8;
  --accent-soft: #7070e8;

  /* Buttons */
  --btn-pri-bg:        #FCAA2D;
  --btn-pri-color:     #1a1a10;
  --btn-ghost-color:   #808068;
  --btn-ghost-border:  #D4D2BC;
  --btn-ghost-hover:   #EDECD8;
  --btn-ghost-hover-c: #1a1a10;

  /* Nav */
  --nav-blur-bg:    rgba(255, 254, 242, 0.88);
  --nav-mobile-bg:  rgba(255, 254, 242, 0.97);

  /* Steps divider */
  --step-divider:   #D4D2BC;

  /* Features grid gap colour */
  --grid-gap:       #E0DECB;

  /* Hamburger bars */
  --hamburger:      #808068;

  /* Noise */
  --noise:          0.016;

  /* Landscape gradient stops */
  --land-1: #e4e2cc;
  --land-2: #eae8d4;
  --land-3: #EEEDD8;

  /* Global transitions for theme switch */
  --transition-theme: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] {
  --bg:          #242421;
  --bg-alt:      #2a2a27;
  --bg-card:     #2e2e2b;
  --bg-footer:   #1a1a18;

  --border:      #3a3a36;
  --border-mid:  #484844;

  --text:        #e8e8de;
  --text-body:   #a8a89c;
  --text-muted:  #747468;
  --text-subtle: #4c4c46;
  --text-faint:  #333330;

  --accent:      #7272ec;
  --accent-soft: #9494f4;

  --btn-pri-bg:        #FCAA2D;
  --btn-pri-color:     #1a1a10;
  --btn-ghost-color:   #747468;
  --btn-ghost-border:  #3a3a36;
  --btn-ghost-hover:   #2e2e2b;
  --btn-ghost-hover-c: #e8e8de;

  --nav-blur-bg:    rgba(36, 36, 33, 0.88);
  --nav-mobile-bg:  rgba(36, 36, 33, 0.97);

  --step-divider:   #3a3a36;
  --grid-gap:       #3a3a36;
  --hamburger:      #747468;
  --noise:          0.026;

  --land-1: #2a2a27;
  --land-2: #242421;
  --land-3: #1a1a18;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: var(--transition-theme);
}

/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--noise);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY TOKENS
============================================================ */
h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s ease;
}

h1 strong, h2 strong, h3 strong {
  font-weight: 700;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
  transition: background-color 0.25s ease;
}

.section.alt {
  background: var(--bg-alt);
}

/* Section label (small caps above headline) */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 16px;
  transition: color 0.25s ease;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 56px;
  max-width: 700px;
}

.br-desktop { display: block; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--btn-pri-bg);
  color: var(--btn-pri-color);
}

.btn-ghost {
  background: transparent;
  color: var(--btn-ghost-color);
  border: 1px solid var(--btn-ghost-border);
}

.btn-ghost:hover {
  background: var(--btn-ghost-hover);
  color: var(--btn-ghost-hover-c);
  opacity: 1;
}

/* Browser download buttons (Chrome + Edge) */
.browser-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-browser {
  background: var(--btn-pri-bg);
  color: var(--btn-pri-color);
  gap: 10px;
  padding: 12px 22px;
}

/* Slight visual separation for Edge: keep same fill but add a hint of Edge blue on hover */
.btn-browser.btn-edge:hover {
  opacity: 1;
  background: var(--btn-pri-bg);
  box-shadow: inset 0 0 0 1.5px #0078D4;
  transform: translateY(-1px);
}

.browser-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* Hero ctas become a column to stack browser-ctas row + ghost link */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 28px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav.scrolled {
  background: var(--nav-blur-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.nav-logo-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Theme toggle button */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.25s ease;
}

.theme-toggle:hover {
  background: var(--btn-ghost-hover);
  color: var(--text);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Show moon in light mode, sun in dark mode */
.icon-sun  { display: none; }
.icon-moon { display: block; }

[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--hamburger);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 160px 0 46px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 680px;
}

.hero-headline {
  font-size: clamp(40px, 7vw, 76px);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  transition: color 0.25s ease;
}

.hero-proof {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

/* Extension popup mockup — dark by default, light when site is in dark mode */
.mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup {
  background: #111118;
  border: 1px solid #1e1e2e;
  border-radius: 16px;
  width: 320px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.mockup-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid #1e1e2e;
}

.mockup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
}

.mockup-shield {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mockup-body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mockup-yeti-sprite {
  width: 96px;
  height: 96px;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.mockup-toggle-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mockup-track {
  width: 100px;
  height: 48px;
  border-radius: 24px;
  background: #16a34a;
  display: flex;
  align-items: center;
  padding: 4px;
  /* interactive */
  position: relative;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.mockup-track.off      { background: #64748b; }
.mockup-track.countdown { background: #b91c1c; }

.mockup-thumb {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transform: translateX(52px);
  transition: transform 0.25s ease;
}

.mockup-track.off .mockup-thumb { transform: translateX(0); }

.mockup-countdown-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 54px;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.mockup-on-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}

.mockup-on-label.off      { color: #64748b; }
.mockup-on-label.countdown { color: #f87171; }

.mockup-status {
  font-size: 15px;
  color: #4b5563;
}

.mockup-footer {
  padding: 12px 20px 14px;
  border-top: 1px solid #1e1e2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.mockup-count {
  font-size: 15px;
  color: #374151;
}


/* Glow under the card */
.mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Mockup flips to light theme when the site is in dark mode */
[data-theme="dark"] .mockup {
  background: #f5f5f5;
  border-color: #e0e0e0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .mockup-header {
  border-bottom-color: #e0e0e0;
}

[data-theme="dark"] .mockup-logo {
  color: #111111;
}

[data-theme="dark"] .mockup-track           { background: #22c55e; }
[data-theme="dark"] .mockup-track.off       { background: #b0b0b0; }
[data-theme="dark"] .mockup-track.countdown { background: #ef4444; }

[data-theme="dark"] .mockup-on-label           { color: #16a34a; }
[data-theme="dark"] .mockup-on-label.off       { color: #888888; }
[data-theme="dark"] .mockup-on-label.countdown { color: #dc2626; }

[data-theme="dark"] .mockup-status { color: #666666; }

[data-theme="dark"] .mockup-footer { border-top-color: #e0e0e0; }
[data-theme="dark"] .mockup-count  { color: #888888; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-divider {
  flex-shrink: 0;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--step-divider) 30%, var(--step-divider) 70%, transparent);
  align-self: center;
  transition: background 0.25s ease;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.25s ease;
}

/* ============================================================
   FEATURES GRID
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grid-gap);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.feature-card {
  background: var(--bg-alt);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.15s ease, opacity 0.5s ease, transform 0.5s ease;
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.25s ease;
}

/* ============================================================
   BLOCKED SITES LIST
============================================================ */
.blocked-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.blocked-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-body);
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.blocked-chip:hover {
  border-color: var(--border-mid);
  background: var(--bg-card);
}

.blocked-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FCAA2D;
  flex-shrink: 0;
}

.blocked-note {
  font-size: 13px;
  color: var(--text-subtle);
  transition: color 0.25s ease;
}

.blocked-note code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--text-muted);
}

/* ============================================================
   SCREENSHOT PLACEHOLDER
============================================================ */
.screenshot-placeholder {
  width: 100%;
  max-width: 900px;
  height: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.screenshot-text {
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.screenshot-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-subtle);
  transition: color 0.25s ease;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s ease, background 0.25s ease, opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card:hover {
  border-color: var(--border-mid);
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  transition: color 0.25s ease;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

/* ============================================================
   FAQ
============================================================ */
.faq-container {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.25s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--bg-alt);
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease, background-color 0.25s ease;
}

.faq-question:hover {
  background: var(--bg-card);
  color: var(--text);
}

.faq-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

/* Plus icon */
.faq-icon::before {
  width: 2px;
  height: 14px;
  top: 2px;
  left: 8px;
}

.faq-icon::after {
  width: 14px;
  height: 2px;
  top: 8px;
  left: 2px;
}

/* Minus when open */
.faq-item.open .faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-alt);
  transition: color 0.25s ease, background 0.25s ease;
}

.faq-answer a {
  color: inherit;
  text-decoration: underline;
}

.faq-item.open .faq-question {
  color: var(--text);
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}

.cta-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 80px;
}

.cta-headline {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 600px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.cta-btn {
  padding: 14px 32px;
  font-size: 16px;
}

/* Panoramic landscape effect — CSS gradient horizon */
.cta-landscape {
  height: 140px;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, var(--land-1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--land-2) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 0%, var(--land-3) 100%);
  transition: background 0.25s ease;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 32px 28px 24px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: var(--text-faint);
  transition: color 0.25s ease;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1023px)
============================================================ */
@media (max-width: 1023px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 28px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  /* theme toggle stays visible; hamburger appears */
  .hamburger {
    display: flex;
  }

  /* theme toggle shifts to right side on mobile alongside hamburger */
  .theme-toggle {
    margin-left: auto;
  }

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

  .br-desktop { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
============================================================ */
@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 120px 0 72px;
  }

  /* Stack browser CTA buttons on mobile */
  .browser-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-browser {
    justify-content: center;
  }

  .section-headline {
    margin-bottom: 36px;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step {
    padding: 0;
  }

  .step-divider {
    display: none;
  }

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

  .screenshot-placeholder {
    height: 240px;
  }

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

  .mockup {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 374px)
============================================================ */
@media (max-width: 374px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 34px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 18px;
  }
}

.footer-copy a {
  color: inherit;
  text-decoration: underline;
}

.footer-copy a:hover {
  opacity: 0.75;
}