/* ===== Tokens ===== */
:root {
  --navy: #0f1d35;
  --navy-light: #1a2d4d;
  --warm-white: #faf9f7;
  --cream: #f3f1ed;
  --green: #1a9f4a;
  --green-light: #e8f5ee;
  --red: #c0392b;
  --red-light: #fdf0ef;
  --text: #1a1a2e;
  --text-secondary: #555b6e;
  --border: #e4e2dd;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 22px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,159,74,0.25);
}

.btn-primary:hover {
  background: #168a40;
  box-shadow: 0 4px 16px rgba(26,159,74,0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 18px; }

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

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

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 10px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-logo-sm {
  width: 26px;
  height: 26px;
  font-size: 10px;
}

.brand-name { font-family: 'DM Serif Display', Georgia, serif; font-size: 20px; }

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

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}

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

/* ===== Hero ===== */
.hero {
  padding: 64px 0 32px;
  text-align: center;
}

.hero-mascot {
  margin-bottom: 24px;
}

.hero-mascot img {
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(26,159,74,0.2));
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  background: var(--green-light);
  margin-bottom: 24px;
}

.hero h1 { max-width: 680px; margin: 0 auto 20px; }

.hero-rotating-headline {
  position: relative;
  display: block;
}

.hero-question {
  display: none;
  animation: hero-fade-in 0.5s ease-out;
}

.hero-question.active {
  display: inline;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subhead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions { margin-bottom: 56px; }

.hero-note {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-new-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background: rgba(26, 159, 74, 0.12);
  border: 1px solid rgba(26, 159, 74, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a9f4a;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Hero Demo Cards */
.hero-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.demo-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: start;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.demo-bad::before { background: var(--red); }
.demo-good::before { background: var(--green); }

.demo-url {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.demo-headline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.95);
}

.demo-verdict {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.demo-verdict.bad { background: rgba(192,57,43,0.2); color: #f87171; }
.demo-verdict.good { background: rgba(26,159,74,0.2); color: #6ee7a0; }

.verdict-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.demo-explanation {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.demo-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}

.demo-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--red);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-bar-fill.good { background: var(--green); }

/* ===== Trust Strip ===== */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.trust-item { text-align: center; }

.trust-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.3;
}

.trust-divider { display: none; }

/* ===== Section Shared ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}

.section-label-light { color: rgba(255,255,255,0.65); }

.section-header h2 { margin: 0; }

/* ===== How It Works ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 16px; margin: 0; line-height: 1.55; }

.step-arrow {
  font-size: 22px;
  color: var(--border);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ===== What It Checks ===== */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.check-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.section-alt .check-card { background: var(--warm-white); }

.check-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.check-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 400;
}

.check-card h3 { margin-bottom: 6px; font-size: 20px; }
.check-card p { color: var(--text-secondary); font-size: 16px; margin: 0; line-height: 1.55; }

/* ===== Neutrality ===== */
.neutrality {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}

.neutrality h2 { color: #fff; }

.neutrality-body {
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.neutrality-examples {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.neutrality-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flag-source {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flag-headline {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
}

.flag-verdict {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  color: #f87171;
  margin-top: 2px;
}

.flag-verdict .verdict-dot { width: 6px; height: 6px; background: var(--red); }

.neutrality-caption {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

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

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto 28px;
}

.price-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.section-alt .price-card { background: #fff; }

.price-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.price-card-featured {
  border: 2px solid var(--green);
  background: #fff;
}

.section-alt .price-card-featured { background: #fff; }

.price-card-featured:hover { border-color: var(--green); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.price-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 46px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
  text-align: start;
}

.price-features li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a9f4a' d='M10 3L4.5 8.5 2 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.price-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto;
}

/* ===== Waitlist ===== */
.waitlist-section {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}

.waitlist-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner h2 { color: #fff; margin-bottom: 14px; }

.waitlist-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.waitlist-inner p strong { color: rgba(255,255,255,0.85); }

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.waitlist-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-form input[type="email"]:focus { border-color: rgba(255,255,255,0.4); }

.waitlist-form button {
  padding: 12px 22px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all var(--transition);
}

.waitlist-form button:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.waitlist-thanks {
  display: none;
  font-size: 17px;
  color: var(--green);
  font-weight: 600;
  margin-top: 20px;
}

/* ===== Comparison Table ===== */
.compare-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: -24px auto 40px;
  line-height: 1.6;
}

.compare-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  min-width: 680px;
}

.compare-table thead tr {
  background: var(--navy);
  color: #fff;
}

.compare-table th {
  padding: 16px 18px;
  text-align: start;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  vertical-align: bottom;
}

.compare-feature-col {
  width: 22%;
}

.compare-dg-col {
  width: 22%;
  background: rgba(26,159,74,0.18) !important;
  color: #6ee7a0 !important;
}

.compare-table td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

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

.compare-table tr:nth-child(even) td {
  background: var(--cream);
}

.compare-table tr:nth-child(even) .compare-dg {
  background: #e4f5eb;
}

.compare-feature {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.compare-dg {
  background: #edf9f2;
}

.compare-yes {
  display: inline-block;
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
}

.compare-yes::before {
  content: '✓ ';
}

.compare-no {
  display: inline-block;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 14px;
}

.compare-no::before {
  content: '✗ ';
  color: var(--red);
}

.compare-partial {
  display: inline-block;
  font-weight: 600;
  color: #92400e;
  font-size: 14px;
}

.compare-note {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.4;
}

.compare-caveat {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 20px auto 0;
  font-style: italic;
  line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  text-align: start;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  transition: color var(--transition);
}

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

.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  width: 22px;
  text-align: center;
}

.faq-item.open .faq-question::after { content: "\2212"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

/* ===== Final CTA ===== */
.final-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--cream);
}

.final-cta-mascot {
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(26,159,74,0.15));
}

.final-cta h2 { margin-bottom: 10px; }
.final-cta p { color: var(--text-secondary); font-size: 18px; margin-bottom: 28px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== Legal Pages ===== */
.legal-page { padding: 72px 0 48px; }
.legal-page h1 { font-size: 40px; margin-bottom: 10px; }
.legal-page .effective-date { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; }
.legal-page h2 { font-size: 28px; margin-top: 36px; margin-bottom: 14px; }
.legal-page p, .legal-page ul { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.legal-page ul { padding-inline-start: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--navy); text-decoration: underline; }

/* ===== Language Picker ===== */
.lang-picker {
  position: relative;
  margin-inline-end: 8px;
}

.lang-picker-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1;
}

.lang-picker-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.lang-picker-btn svg {
  flex-shrink: 0;
}

.lang-picker-code {
  letter-spacing: 0.05em;
}

.lang-picker-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 1001;
  padding: 4px 0;
}

.lang-picker-dropdown.open {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: none;
  border: none;
  text-align: start;
  cursor: pointer;
  transition: background var(--transition);
}

.lang-option:hover {
  background: var(--cream);
}

.lang-option.active {
  font-weight: 600;
  color: var(--green);
}

.lang-option.active::before {
  content: '\2713 ';
}

/* ===== Text Size Toggle ===== */
.text-size-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.3;
}

.text-size-toggle:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ===== Big Text Mode ===== */
body.big-text { font-size: 22px; line-height: 1.75; }

/* Nav grows with big text so buttons fit comfortably */
body.big-text .nav-inner { height: auto; min-height: 78px; padding: 10px 0; }
body.big-text .site-nav { padding: 0; }
body.big-text .container { max-width: 1280px; }
body.big-text .text-size-toggle { padding: 14px 22px; font-size: 18px; }
body.big-text .lang-picker-btn { padding: 10px 14px; font-size: 16px; }
body.big-text .lang-picker-btn svg { width: 22px; height: 22px; }
body.big-text .lang-option { padding: 12px 20px; font-size: 16px; }
body.big-text h1 { font-size: clamp(42px, 6vw, 68px); }
body.big-text h2 { font-size: clamp(34px, 4.5vw, 52px); }
body.big-text h3 { font-size: 28px; }
body.big-text .btn { padding: 16px 32px; font-size: 20px; }
body.big-text .btn-lg { padding: 20px 40px; font-size: 22px; }
body.big-text .nav-link { font-size: 19px; }
body.big-text .nav-cta { padding: 14px 28px; font-size: 18px; }
body.big-text .brand-name { font-size: 24px; }
body.big-text .hero-subhead { font-size: clamp(20px, 2.5vw, 24px); }
body.big-text .hero-badge { font-size: 14px; }
body.big-text .hero-note { font-size: 17px; }
body.big-text .section-label { font-size: 15px; }
body.big-text .step p { font-size: 20px; }
body.big-text .step-num { width: 52px; height: 52px; font-size: 22px; }
body.big-text .check-card h3 { font-size: 24px; }
body.big-text .check-card p { font-size: 20px; }
body.big-text .demo-headline { font-size: 19px; }
body.big-text .demo-explanation { font-size: 17px; }
body.big-text .demo-verdict { font-size: 16px; }
body.big-text .demo-url { font-size: 15px; }
body.big-text .trust-number { font-size: 40px; }
body.big-text .trust-label { font-size: 15px; }
body.big-text .neutrality-body { font-size: 22px; }
body.big-text .neutrality-card { padding: 20px 24px; }
body.big-text .flag-headline { font-size: 18px; }
body.big-text .flag-source { font-size: 14px; }
body.big-text .flag-verdict { font-size: 16px; }
body.big-text .neutrality-caption { font-size: 19px; }
body.big-text .testimonial blockquote { font-size: 20px; }
body.big-text .testimonial cite { font-size: 17px; }
body.big-text .price-amount { font-size: 54px; }
body.big-text .price-tier { font-size: 15px; }
body.big-text .price-period { font-size: 17px; }
body.big-text .price-features li { font-size: 18px; }
body.big-text .pricing-note { font-size: 18px; }
body.big-text .waitlist-inner p { font-size: 20px; }
body.big-text .waitlist-form input[type="email"] { font-size: 20px; padding: 16px 20px; }
body.big-text .waitlist-form button { font-size: 18px; padding: 16px 26px; }
body.big-text .faq-question { font-size: 22px; }
body.big-text .faq-answer-inner { font-size: 20px; }
body.big-text .final-cta p { font-size: 22px; }
body.big-text .footer-links a { font-size: 18px; }
body.big-text .footer-brand { font-size: 19px; }
body.big-text .footer-bottom { font-size: 16px; }
body.big-text .legal-page p, body.big-text .legal-page ul { font-size: 20px; }
body.big-text .legal-page h1 { font-size: 48px; }
body.big-text .legal-page h2 { font-size: 34px; }

/* ===== Mobile Nav Toggle ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Responsive ===== */

/* Collapse nav to hamburger earlier on intermediate widths so longer
   languages (German, Russian, Pirate, etc.) don't break the layout */
@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 24px 16px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links .nav-link:last-of-type { border-bottom: none; }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
  }
  .site-nav { position: relative; }
  .lang-picker { order: -1; }
  /* Mobile LTR: picker is on the left, dropdown anchors to its left edge.
     Mobile RTL: picker is on the right, dropdown anchors to its right edge. */
  :root[dir="ltr"] .lang-picker-dropdown,
  html:not([dir="rtl"]) .lang-picker-dropdown { right: auto; left: 0; }
}

@media (max-width: 960px) {
  .steps { flex-direction: column; align-items: center; gap: 28px; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step { max-width: 360px; }
  .checks-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .testimonials { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .neutrality-examples { flex-direction: column; align-items: center; }
  .hero-demo { grid-template-columns: 1fr; max-width: 360px; }
  .compare-table { font-size: 14px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .section { padding: 56px 0; }
  .neutrality { padding: 56px 0; }
  .waitlist-section { padding: 56px 0; }
  .final-cta { padding: 56px 0; }

  .section-header { margin-bottom: 32px; }

  .hero-mascot img { width: 210px; height: 210px; }
  .final-cta-mascot { width: 144px; height: 144px; }
  .hero { padding: 40px 0 20px; }
  .hero-actions { margin-bottom: 36px; }
  .hero-subhead { font-size: 16px; margin-bottom: 24px; line-height: 1.55; }
  .hero-badge { margin-bottom: 20px; }

  /* Buttons: full-width on mobile */
  .btn { padding: 13px 24px; font-size: 15px; width: 100%; max-width: 320px; }
  .btn-lg { padding: 14px 28px; font-size: 16px; }
  .hero-actions { display: flex; flex-direction: column; align-items: center; }
  .price-card .btn { max-width: none; }

  /* Trust strip: 2x2 grid on mobile */
  .trust-strip { padding: 24px 0; }
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    max-width: 320px;
  }
  .trust-number { font-size: 26px; }
  .trust-label { font-size: 11px; letter-spacing: 0.4px; }

  .step p { font-size: 15px; }
  .check-card { padding: 22px; }
  .check-card h3 { font-size: 19px; }
  .check-card p { font-size: 15px; }

  .neutrality-body { font-size: 16px; margin-bottom: 32px; }
  .neutrality-card { width: 100%; max-width: 320px; padding: 14px 18px; }
  .flag-headline { font-size: 13px; }

  .testimonial { padding: 22px; }
  .testimonial blockquote { font-size: 15px; }
  .testimonial cite { font-size: 13px; }

  .price-card { padding: 24px 20px; }
  .price-amount { font-size: 40px; }
  .price-features li { font-size: 14px; }
  .pricing-note { font-size: 14px; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="email"] { font-size: 16px; }
  .waitlist-form button { width: 100%; }

  .compare-intro { font-size: 16px; margin-bottom: 28px; }
  .compare-table { min-width: 580px; }
  .compare-table th, .compare-table td { padding: 11px 12px; }
  .compare-feature { font-size: 13px; }
  .compare-yes, .compare-no, .compare-partial { font-size: 13px; }
  .compare-note { font-size: 11px; }
  .compare-caveat { font-size: 13px; }

  .faq-question { font-size: 16px; padding: 16px 0; }
  .faq-answer-inner { font-size: 15px; padding-bottom: 16px; }

  .final-cta p { font-size: 16px; margin-bottom: 24px; }
  .final-cta h2 { margin-bottom: 8px; }

  .footer-top { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .footer-bottom { text-align: center; }

  .legal-page { padding: 48px 0 36px; }
  .legal-page h1 { font-size: 30px; }
  .legal-page h2 { font-size: 24px; margin-top: 28px; }
  .legal-page p, .legal-page ul { font-size: 15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { min-height: 52px; padding: 6px 0; }
  .brand-name { font-size: 18px; }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .hero { padding: 32px 0 16px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 16px; }
  .hero-subhead { font-size: 15px; }

  .demo-card { padding: 18px; }
  .demo-headline { font-size: 14px; margin-bottom: 10px; }
  .demo-explanation { font-size: 13px; }
  .demo-url { font-size: 11px; }

  .trust-strip-inner { max-width: 280px; gap: 16px 12px; }
  .trust-number { font-size: 24px; }

  .neutrality-caption { font-size: 14px; }

  .price-card { padding: 22px 18px; }
  .pricing-grid { max-width: 100%; }

  .step-num { width: 40px; height: 40px; font-size: 16px; }
  .check-card { padding: 20px; }
}

/* ===== RTL language support ===== */
[dir="rtl"] .step-arrow { transform: scaleX(-1); }
[dir="rtl"] .faq-question::after { margin-inline-start: 16px; margin-inline-end: 0; }
[dir="rtl"] .nav-brand { flex-direction: row; }

/* ===== CJK: remove letter-spacing ===== */
:lang(ja), :lang(ko), :lang(zh) { letter-spacing: 0 !important; }
:lang(ja) *, :lang(ko) *, :lang(zh) * { letter-spacing: 0 !important; }

/* ===== Long text overflow (German/Spanish/Portuguese) ===== */
:lang(de) .demo-headline, :lang(de) .faq-question, :lang(de) .step p,
:lang(de) .neutrality-body, :lang(de) .check-card p, :lang(de) blockquote,
:lang(es) .demo-headline, :lang(es) .faq-question, :lang(es) .step p,
:lang(es) .neutrality-body, :lang(es) .check-card p, :lang(es) blockquote,
:lang(pt) .demo-headline, :lang(pt) .faq-question, :lang(pt) .step p,
:lang(pt) .neutrality-body, :lang(pt) .check-card p, :lang(pt) blockquote {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ===== Global overflow protection ===== */
body { overflow-wrap: break-word; }
