body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--lobster-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
}
.skip-link:focus {
  left: 0.5rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 720px;
}

.section {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(36, 51, 66, 0.5) 0%, var(--bg-page) 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section__lede {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.subhead__fine {
  display: block;
  font-size: 0.95rem;
  color: #a8a8b0;
  font-weight: var(--fw-regular);
  margin-top: 0.35rem;
  line-height: 1.55;
}

.demo-disclosure {
  font-size: 0.75rem;
  color: #888;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  max-width: 28rem;
}

.security-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding: 0;
}
.security-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.security-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lobster-red);
  font-weight: var(--fw-bold);
}
.security__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 37, 47, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  color: var(--text-primary);
}
.logo__img {
  height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.logo__mark { font-size: 1.35rem; }
.logo__text { font-size: 1.05rem; }

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem var(--container-pad) 1.25rem;
  box-shadow: var(--shadow-soft);
}
.site-nav.is-open {
  display: block;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-nav__list a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  padding: 0.35rem 0;
  border-radius: var(--radius-sm);
}
.site-nav__list a:hover {
  color: var(--lobster-red);
}
.site-nav__list a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

/* Hero layout */
.hero {
  padding-top: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(1.1);
}
.hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(231, 76, 60, 0.15) 0%, transparent 55%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lobster-red);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hook */
.hook {
  text-align: center;
}
.hook .section__lede {
  margin: 0 auto 1.25rem;
  max-width: 42rem;
}
.hook__body {
  max-width: 560px;
  margin-inline: auto 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.hook__body p { margin-bottom: 0.75rem; }
.hook__punch {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.prose p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.prose strong { color: var(--text-primary); }

/* How section */
.checklist {
  list-style: none;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--quality-green);
  font-weight: var(--fw-bold);
}

.how__promise {
  text-align: center;
  font-weight: var(--fw-medium);
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

.compare {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .compare {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.compare__col {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s;
}
.compare__col:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .compare__col:hover {
    transform: none;
  }
}
.compare__col--us {
  border-color: rgba(231, 76, 60, 0.45);
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.12);
}

.compare__head {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.compare__list {
  list-style: none;
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.icon-check { color: var(--quality-green); flex-shrink: 0; }
.icon-x { color: var(--lobster-red); flex-shrink: 0; }

/* Pricing */
.pricing__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing__addons-title {
  text-align: center;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.pricing__addons-lede {
  text-align: center;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing__grid--addons {
  margin-top: 0;
}

/* Honest truth */
.honest-truth__list {
  list-style: none;
  max-width: 40rem;
  margin: 1.25rem auto 0;
  padding: 0;
}
.honest-truth__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.honest-truth__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lobster-red);
}
.honest-truth__cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Rescue teaser */
.rescue-teaser__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Credentials */
.creds__intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

.creds__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .creds__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .creds__grid { grid-template-columns: repeat(4, 1fr); }
}

.cred-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
@media (prefers-reduced-motion: reduce) {
  .cred-card:hover {
    transform: none;
  }
}
.cred-card__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.cred-card__title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.35rem;
}
.cred-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.creds__link-wrap {
  text-align: center;
  margin-top: 2rem;
}

/* Live section */
.live__layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .live__layout {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.live__actions {
  display: flex;
  align-items: flex-start;
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-sm);
}
.faq-item__q::after {
  content: "+";
  color: var(--lobster-red);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.faq-item__q[aria-expanded="true"]::after {
  content: "−";
}
.faq-item__q:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.faq-item__a {
  padding: 0 0 1rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item__a p {
  margin: 0 0 0.65rem;
}
.faq-item__a p:last-child {
  margin-bottom: 0;
}

/* CTA block */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, #243342 0%, #1a252f 50%, #2c1818 100%);
  border-top: 1px solid var(--border-subtle);
}
.cta-block__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
}
.cta-block__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .cta-block__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cta-block__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2rem var(--container-pad);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-page);
}
.footer-inner {
  text-align: center;
}
.footer__brand a {
  color: var(--lobster-red);
  text-decoration: none;
}
.footer__brand a:hover { text-decoration: underline; }
.footer__brand a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}
.footer__links {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--lobster-red);
  text-decoration: underline;
}
.footer__note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.price-card__note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.creds__footnote {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.creds__coming-soon {
  font-size: 0.9rem;
  color: var(--quality-green);
  margin-top: 1rem;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}
.faq__hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.pricing__pilot {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: -1rem auto 2rem;
}
