/* Consentrate — WhatsApp blast product landing (standalone theme) */

:root {
  --bg: #07080d;
  --bg-elevated: #0f1118;
  --bg-card: #14161f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --text-muted: #9aa3b2;
  --accent: #b8ff3c;
  --accent-dim: rgba(184, 255, 60, 0.12);
  --accent-glow: rgba(184, 255, 60, 0.35);
  --violet: #8b7cf6;
  --violet-dim: rgba(139, 124, 246, 0.15);
  --wa-green: #25d366;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}

.brand-sent {
  color: var(--accent);
  font-weight: 800;
}

.hero__title .brand-sent,
.hero__title em .brand-sent {
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

/* Background mesh */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--accent-dim), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, var(--violet-dim), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(37, 211, 102, 0.06), transparent 60%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav.is-scrolled {
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__inner {
  width: min(var(--max), 100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #7ee022 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px var(--accent-glow);
}

.logo__mark svg {
  width: 18px;
  height: 18px;
  color: #0a0f00;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent);
  color: #0a0f00;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #0a0f00;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Layout */
.container {
  width: min(var(--max), 100% - 2rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--elevated {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 8px var(--wa-green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), #e8ff9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  margin: 0 0 2rem;
  max-width: 46ch;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Phone mock */
.phone {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.phone__frame {
  position: relative;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #2a2d38, #1a1c24);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0b1419;
  min-height: 420px;
}

.phone__header {
  padding: 1rem 1.1rem;
  background: #1f2c34;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5a9e00);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0a0f00;
}

.phone__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.phone__status {
  font-size: 0.7rem;
  color: var(--wa-green);
}

.phone__chat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bubble {
  max-width: 88%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.45;
  animation: bubbleIn 0.6s ease backwards;
}

.bubble--in {
  align-self: flex-start;
  background: #1f2c34;
  border-bottom-left-radius: 4px;
}

.bubble--out {
  align-self: flex-end;
  background: #005c4b;
  border-bottom-right-radius: 4px;
}

.bubble:nth-child(1) { animation-delay: 0.2s; }
.bubble:nth-child(2) { animation-delay: 0.45s; }
.bubble:nth-child(3) { animation-delay: 0.7s; }
.bubble:nth-child(4) { animation-delay: 0.95s; }
.bubble:nth-child(5) { animation-delay: 1.2s; }

.bubble--media {
  padding: 0.5rem;
  overflow: hidden;
}

.bubble__media-placeholder {
  display: block;
  width: 100%;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 0.45rem;
  background: linear-gradient(135deg, #2a3942 0%, #1a252b 100%);
  position: relative;
}

.bubble__media-placeholder::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
}

.bubble__caption {
  display: block;
  padding: 0 0.35rem 0.2rem;
  font-size: 0.78rem;
}

.bubble--cta {
  text-align: center;
  color: #53bdeb;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2630;
  cursor: default;
}

/* Shared card icon */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-icon--accent {
  background: var(--accent-dim);
  color: var(--accent);
}

.card-icon--violet {
  background: var(--violet-dim);
  color: var(--violet);
}

/* Card base — gradient border glow on hover */
.format-chip,
.check-card,
.feature-card,
.use-case,
.step {
  position: relative;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.format-chip::before,
.check-card::before,
.feature-card::before,
.use-case::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(184, 255, 60, 0.35) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(139, 124, 246, 0.25) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.format-chip:hover,
.check-card:hover,
.feature-card:hover,
.use-case:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(184, 255, 60, 0.08);
}

.format-chip:hover::before,
.check-card:hover::before,
.feature-card:hover::before,
.use-case:hover::before {
  opacity: 1;
}

/* Format grid */
.format-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .format-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.format-chip {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
  min-height: 100%;
}

.format-chip .card-icon {
  margin-bottom: 0.85rem;
}

.format-chip--text .card-icon { color: var(--accent); background: var(--accent-dim); }
.format-chip--image .card-icon { color: #a78bfa; background: rgba(167, 139, 250, 0.12); }
.format-chip--video .card-icon { color: #7dd3fc; background: rgba(125, 211, 252, 0.12); }
.format-chip--doc .card-icon { color: #fbbf24; background: rgba(251, 191, 36, 0.12); }
.format-chip--link .card-icon { color: #53bdeb; background: rgba(83, 189, 235, 0.12); }
.format-chip--reply .card-icon { color: #34d399; background: rgba(52, 211, 153, 0.12); }
.format-chip--list .card-icon { color: #c084fc; background: rgba(192, 132, 252, 0.12); }
.format-chip--location .card-icon { color: #f87171; background: rgba(248, 113, 113, 0.12); }

.format-chip__label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.format-chip__desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Verification cards */
.check-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .check-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.check-card {
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(184, 255, 60, 0.04) 0%, transparent 42%),
    var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.check-card::after {
  content: attr(data-step);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(184, 255, 60, 0.1);
  pointer-events: none;
}

.check-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.check-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature cards */
.features__grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(184, 255, 60, 0.06), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Steps */
.steps {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .steps::before {
    content: "";
    position: absolute;
    left: 16.66%;
    right: 16.66%;
    top: 3.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 255, 60, 0.25), transparent);
    pointer-events: none;
  }
}

.step {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
    var(--bg-elevated);
  border: 1px solid var(--border);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #9ae622 100%);
  color: #0a0f00;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.step__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Use cases */
.use-cases {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .use-cases {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.use-case__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.35rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(184, 255, 60, 0.15);
}

.use-case--events .use-case__tag { color: var(--accent); background: var(--accent-dim); border-color: rgba(184, 255, 60, 0.15); }
.use-case--brand .use-case__tag { color: var(--violet); background: var(--violet-dim); border-color: rgba(139, 124, 246, 0.2); }
.use-case--internal .use-case__tag { color: #7dd3fc; background: rgba(125, 211, 252, 0.12); border-color: rgba(125, 211, 252, 0.2); }
.use-case--reminder .use-case__tag { color: #fbbf24; background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.2); }
.use-case--info .use-case__tag { color: #a78bfa; background: rgba(167, 139, 250, 0.12); border-color: rgba(167, 139, 250, 0.2); }
.use-case--b2b .use-case__tag { color: #34d399; background: rgba(52, 211, 153, 0.12); border-color: rgba(52, 211, 153, 0.2); }

.use-case__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.use-case__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Stagger reveal for card grids */
.reveal.is-visible .format-grid > *,
.reveal.is-visible .check-grid > *,
.reveal.is-visible .features__grid > *,
.reveal.is-visible .use-cases > *,
.reveal.is-visible .steps > * {
  animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.reveal.is-visible .format-grid > *:nth-child(1),
.reveal.is-visible .check-grid > *:nth-child(1),
.reveal.is-visible .features__grid > *:nth-child(1),
.reveal.is-visible .use-cases > *:nth-child(1),
.reveal.is-visible .steps > *:nth-child(1) { animation-delay: 0.04s; }
.reveal.is-visible .format-grid > *:nth-child(2),
.reveal.is-visible .check-grid > *:nth-child(2),
.reveal.is-visible .features__grid > *:nth-child(2),
.reveal.is-visible .use-cases > *:nth-child(2),
.reveal.is-visible .steps > *:nth-child(2) { animation-delay: 0.08s; }
.reveal.is-visible .format-grid > *:nth-child(3),
.reveal.is-visible .check-grid > *:nth-child(3),
.reveal.is-visible .features__grid > *:nth-child(3),
.reveal.is-visible .use-cases > *:nth-child(3),
.reveal.is-visible .steps > *:nth-child(3) { animation-delay: 0.12s; }
.reveal.is-visible .format-grid > *:nth-child(4),
.reveal.is-visible .check-grid > *:nth-child(4),
.reveal.is-visible .features__grid > *:nth-child(4),
.reveal.is-visible .use-cases > *:nth-child(4) { animation-delay: 0.16s; }
.reveal.is-visible .format-grid > *:nth-child(5),
.reveal.is-visible .check-grid > *:nth-child(5),
.reveal.is-visible .features__grid > *:nth-child(5),
.reveal.is-visible .use-cases > *:nth-child(5) { animation-delay: 0.2s; }
.reveal.is-visible .format-grid > *:nth-child(6),
.reveal.is-visible .check-grid > *:nth-child(6),
.reveal.is-visible .features__grid > *:nth-child(6),
.reveal.is-visible .use-cases > *:nth-child(6) { animation-delay: 0.24s; }
.reveal.is-visible .format-grid > *:nth-child(7) { animation-delay: 0.28s; }
.reveal.is-visible .format-grid > *:nth-child(8) { animation-delay: 0.32s; }

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
}

.phone__glow {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
}

/* Compare */
.compare {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare__table th,
.compare__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare__table th {
  background: var(--bg-elevated);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.compare__table tr:last-child td {
  border-bottom: none;
}

.compare__table td:first-child {
  color: var(--text-muted);
}

.compare__yes {
  color: var(--accent);
  font-weight: 600;
}

.compare__no {
  color: #f87171;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(184, 255, 60, 0.08) 0%, rgba(139, 124, 246, 0.08) 100%),
    var(--bg-card);
  border: 1px solid rgba(184, 255, 60, 0.2);
}

.cta-band__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-band__text {
  margin: 0 auto 1.75rem;
  max-width: 40ch;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
