/*
 * PitchAlert Landing — style.css
 * Dark, premium theme. Mobile-first, responsive.
 * Brand: Poppins headings, Inter body, dark green palette.
 * Self-contained — no CDN, no trackers.
 */

/* -----------------------------------------------------------------------
   Fonts (@font-face — self-hosted)
----------------------------------------------------------------------- */

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------------------------------------------------
   CSS custom properties — dark premium palette
----------------------------------------------------------------------- */

:root {
  /* Brand greens */
  --color-green:        #16A34A;
  --color-green-deep:   #0F7A3A;
  --color-green-glow:   rgba(22, 163, 74, 0.35);
  --color-mint-accent:  #6EE7B7;

  /* Dark backgrounds (navy — per redesign brief) */
  --color-bg:           #06131D;
  --color-bg-2:         #091A28;
  --color-surface:      #0D1B29;
  --color-surface-2:    #122334;
  --color-card:         #0D1B29;
  --color-card-hover:   #122334;

  /* Borders (subtle slate) */
  --color-border:       rgba(148, 163, 184, 0.12);
  --color-border-mid:   rgba(148, 163, 184, 0.20);

  /* Text */
  --color-text:         #F8FAFC;
  --color-text-muted:   #94A3B8;
  --color-text-dim:     #64748B;

  /* Legacy aliases kept for legal-page reuse */
  --color-navy:         #06131D;
  --color-muted:        #94A3B8;
  --color-locked:       #64748B;
  --color-mint:         rgba(110, 231, 183, 0.08);
  --color-mint-deep:    rgba(110, 231, 183, 0.15);

  /* Fonts */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter',   system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.45);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.55);
  --shadow-lg:  0 10px 40px rgba(0, 0, 0, 0.65);
  --shadow-green: 0 0 32px rgba(22, 163, 74, 0.25), 0 8px 32px rgba(0, 0, 0, 0.60);

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Layout */
  --max-w: 1100px;
  --section-gap: 96px;

  /* ----------------------------------------------------------------
     STADIUM BACKGROUND — swap to a real photo in ONE line:
     Change the value of --stadium-bg from the gradient below to:
       url('../stadium.jpg') center/cover no-repeat

     The .hero-bg and other sections that use this variable will
     automatically pick up the new image.
  ---------------------------------------------------------------- */
  /* Real stadium photo + dark overlay for text legibility, fading into the page bg. */
  --stadium-bg:
    linear-gradient(180deg, rgba(6, 19, 29, 0.50) 0%, rgba(6, 19, 29, 0.70) 55%, #06131D 100%),
    url('../stadium.jpg') center/cover no-repeat;
}

/* -----------------------------------------------------------------------
   Reset
----------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* -----------------------------------------------------------------------
   Utility
----------------------------------------------------------------------- */

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

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------
   Buttons
----------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-green);
  color: #ffffff;
  box-shadow: 0 2px 16px rgba(22, 163, 74, 0.40);
}
.btn-primary:hover {
  background: var(--color-green-deep);
  box-shadow: 0 4px 24px rgba(22, 163, 74, 0.50);
}

/* Outline variant — used on dark bg */
.btn-outline {
  background: transparent;
  color: var(--color-mint-accent);
  border: 1.5px solid rgba(110, 231, 183, 0.40);
}
.btn-outline:hover {
  background: rgba(110, 231, 183, 0.08);
  border-color: rgba(110, 231, 183, 0.65);
}

/* Ghost — used in nav on transparent bg */
.btn-ghost {
  background: rgba(22, 163, 74, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(22, 163, 74, 0.45);
}
.btn-ghost:hover {
  background: rgba(22, 163, 74, 0.28);
}

/* Disabled / coming-soon */
.btn-disabled {
  background: var(--color-surface-2);
  color: var(--color-text-dim);
  border: 1.5px solid var(--color-border);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* -----------------------------------------------------------------------
   Nav
----------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  /* Start transparent over hero */
  background: transparent;
  transition: background 0.28s, border-color 0.28s, backdrop-filter 0.28s;
  border-bottom: 1px solid transparent;
}

/* JS adds .scrolled when page scrolled > 60px */
.site-nav.scrolled {
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 38px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.14s;
}
.nav-links a:hover { color: var(--color-mint-accent); }

.nav-cta { flex-shrink: 0; }

/* -----------------------------------------------------------------------
   Hero — stadium bg placeholder (see --stadium-bg comment above)
----------------------------------------------------------------------- */

.hero {
  background: var(--stadium-bg);
  color: #ffffff;
  padding: 140px 0 96px;   /* top offset accounts for fixed nav (68px) + breathing room */
  overflow: hidden;
  position: relative;
}

/* Vignette overlay — deepens edges, ensures text contrast */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(6, 12, 8, 0.70) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

/* Eyebrow — minimal Linear-style: short accent line + uppercase label (no badge) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-mint-accent);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-mint-accent);
  opacity: 0.65;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 22px;
}

/* "World Cup" in mint */
.hero-title em {
  font-style: normal;
  color: var(--color-mint-accent);
}

/* Keep "World Cup match" together on one line */
.hero-title-hl {
  white-space: nowrap;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 480px;
}

/* 3 hero features: icon + title + description (no pills) */
.hero-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
  margin-bottom: 36px;
}

.hero-feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.hero-feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-mint-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.hero-feat-desc {
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-text-muted);
  max-width: 150px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.hero-proof-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Visual — tilted popup screenshot */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot-wrap {
  /* Parallax target — translateY is set by parallax.js on scroll. No tilt, no hover spin. */
  will-change: transform;
}

.hero-screenshot {
  width: 100%;
  max-width: 420px;
  display: block;
  /* Layered drop-shadow follows the popup's alpha shape (no rectangular block):
     contact + mid + deep ambient for a premium floating feel, plus a soft green glow. */
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.40))
    drop-shadow(0 22px 45px rgba(0, 0, 0, 0.55))
    drop-shadow(0 50px 95px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 70px rgba(22, 163, 74, 0.22));
}

/* -----------------------------------------------------------------------
   Section base
----------------------------------------------------------------------- */

.section {
  padding: var(--section-gap) 0;
}

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

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

.section-alt-2 {
  background: var(--color-surface-2);
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-mint-accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* -----------------------------------------------------------------------
   Feature rows (alternating image/text layout)
----------------------------------------------------------------------- */

/* Compact 2x2 tile grid of feature cards */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-bg-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--color-border-mid);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

/* Rounded visual panel (consistent rounded edges like the mock cards) */
.feature-card-visual {
  height: 196px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 110% at 50% 0%, rgba(22, 163, 74, 0.14) 0%, transparent 62%),
    #0A1726;
}

/* Popup screenshots: rounded, peeking from the top of the panel */
.feature-card-visual img {
  width: 80%;
  max-width: 240px;
  align-self: flex-start;
  margin-top: 22px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.50);
}

/* Mock visuals (toolbar / notification) sit centered */
.feature-card-visual--mock img { all: unset; }

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.22), rgba(22, 163, 74, 0.08));
  border: 1px solid rgba(110, 231, 183, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--color-mint-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.feature-card-desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------
   CSS mock: Chrome toolbar badge (Toolbar Badge feature visual)
----------------------------------------------------------------------- */

.toolbar-mock {
  display: flex;
  align-items: center;
  background: #2D2D2D;
  border-radius: 10px;
  padding: 12px 20px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.60);
  max-width: 320px;
}

.toolbar-mock-bar {
  flex: 1;
  height: 12px;
  background: #3C3C3C;
  border-radius: 6px;
}

.toolbar-mock-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.toolbar-mock-ext {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-mock-ext-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006341 33%, #ffffff 33%, #ffffff 66%, #CE1126 66%);
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}

.toolbar-mock-badge {
  position: absolute;
  bottom: -4px;
  right: -6px;
  background: var(--color-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 5px;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid #2D2D2D;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.50);
}

.toolbar-mock-btn {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #3C3C3C;
}

/* -----------------------------------------------------------------------
   CSS mock: Chrome notification card (Reminders feature visual)
----------------------------------------------------------------------- */

.notif-mock {
  background: #2A2A2A;
  border-radius: 12px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.notif-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.notif-mock-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-mock-icon svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notif-mock-app {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.60);
}

.notif-mock-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
}

.notif-mock-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.notif-mock-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* -----------------------------------------------------------------------
   Carousel
----------------------------------------------------------------------- */

.carousel-wrapper {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-green);
  border: 1px solid var(--color-border);
}

.carousel-track {
  display: flex;
  transition: transform 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* scroll-snap handled via JS for accessibility, but we keep snap as progressive enhancement */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

/* Arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 15, 13, 0.80);
  border: 1px solid var(--color-border-mid);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
}

.carousel-btn:hover {
  background: rgba(22, 163, 74, 0.25);
  border-color: rgba(22, 163, 74, 0.50);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn-prev { left: -24px; }
.carousel-btn-next { right: -24px; }

@media (max-width: 767px) {
  .carousel-btn-prev { left: 8px; }
  .carousel-btn-next { right: 8px; }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-dim);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.18s, transform 0.18s;
}

.carousel-dot.active {
  background: var(--color-mint-accent);
  transform: scale(1.25);
}

/* -----------------------------------------------------------------------
   Trust bar
----------------------------------------------------------------------- */

.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
  background: var(--color-surface);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-mint-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------
   Pricing
----------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.pricing-card--pro {
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.12), var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: -30px;
  background: var(--color-green);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 40px;
  transform: rotate(40deg);
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.pricing-price-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 20px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.pricing-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-icon--check {
  color: var(--color-green);
}

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

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

/* -----------------------------------------------------------------------
   FAQ — two-column layout
----------------------------------------------------------------------- */

.faq-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 48px;
}

@media (min-width: 768px) {
  .faq-cols { grid-template-columns: 1fr 1fr; }
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.14s;
}

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

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.22s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-mint-accent);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.30s ease, padding 0.22s;
}

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

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--color-mint-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -----------------------------------------------------------------------
   Footer
----------------------------------------------------------------------- */

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 280px;
}

/* Chrome Web Store badge — styled text fallback
   (Replace with img once official PNG is available) */
.cws-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(150deg, #1B1E24 0%, #11141A 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 13px 24px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  margin-top: 12px;
}

.cws-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.40);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 26px rgba(22, 163, 74, 0.20);
}

.cws-badge-chrome-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--color-mint-accent);
}

.cws-badge-text {
  display: flex;
  flex-direction: column;
}

.cws-badge-text-top {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.cws-badge-text-bottom {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-links-col { align-items: flex-end; }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .footer-links { justify-content: flex-end; }
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.14s;
}
.footer-links a:hover { color: var(--color-mint-accent); }

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

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

/* -----------------------------------------------------------------------
   Disclaimer
----------------------------------------------------------------------- */

.disclaimer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 18px 0;
  text-align: center;
}

.disclaimer p {
  font-size: 11.5px;
  color: var(--color-text-dim);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------
   Legal pages (privacy, terms, refund)
----------------------------------------------------------------------- */

.legal-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 100px 0 48px;  /* top offset for fixed nav */
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal-hero .legal-updated {
  font-size: 14px;
  color: var(--color-text-muted);
}

.legal-body {
  padding: 64px 0 80px;
  background: var(--color-bg);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-mint-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--color-green);
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-content code {
  font-size: 13px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--color-mint-accent);
}

/* -----------------------------------------------------------------------
   Responsive misc
----------------------------------------------------------------------- */

@media (max-width: 599px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-card { padding: 28px 20px; }
  .feature-row { padding: 24px; }
  .carousel-btn-prev { left: 4px; }
  .carousel-btn-next { right: 4px; }
}
