html {
  scroll-behavior: smooth;
}

:root {
  --paper: #f4f2ec;
  --paper-strong: #ffffff;
  --ink: #0d0d0d;
  --muted: #525252;
  --lime: #ccff00;
  --lime-soft: #eef9ad;
  --black: #000000;
  --line: 3px solid var(--black);
  --line-thin: 2px solid var(--black);
  --shadow-lg: 10px 10px 0 0 var(--black);
  --shadow-md: 6px 6px 0 0 var(--black);
  --shadow-sm: 4px 4px 0 0 var(--black);
  --shell: min(1200px, calc(100vw - 2rem));
  --section-gap: clamp(4rem, 7vw, 7rem);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(204, 255, 0, 0.2), transparent 24%),
    linear-gradient(180deg, #faf8f1 0%, #f1efe6 100%);
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -80px;
  background: var(--lime);
  border: var(--line);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus-visible {
  top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.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;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 0;
  background: linear-gradient(180deg, rgba(244, 242, 236, 0.92), rgba(244, 242, 236, 0.82));
  backdrop-filter: blur(8px);
}

.site-nav,
.site-footer,
.hero,
.section,
.cta-band {
  width: var(--shell);
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border: var(--line);
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-bolt {
  width: 0.7rem;
  height: 1.1rem;
  background: var(--black);
  clip-path: polygon(47% 0%, 100% 0%, 63% 44%, 92% 44%, 22% 100%, 41% 57%, 11% 57%);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name,
.display-word,
.section-title,
.card-title,
.page-hero h1,
.pricing-name,
.comparison-title,
.question-card h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.6rem;
  line-height: 0.95;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: var(--line);
  background: var(--paper-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-toggle-bar {
  width: 1.2rem;
  height: 0.2rem;
  background: var(--black);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.3rem;
  border: var(--line);
  padding: 0.9rem 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.button:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--black);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-dark {
  background: var(--black);
  color: #ffffff;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding: 3rem 0 1rem;
}

.hero-copy,
.hero-media,
.stat-strip,
.section-card,
.cta-band,
.legal-card,
.page-panel,
.question-card,
.plan-card,
.comparison-wrap,
.contact-panel,
.feature-card,
.trust-card,
.step-card,
.mini-card {
  border: var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  align-self: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border: var(--line-thin);
  background: var(--lime);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.92;
}

.hero-title .highlight {
  background: var(--lime);
  padding: 0 0.35rem;
}

.lead {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #222;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.hero-media {
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note,
.floating-badge {
  position: absolute;
  border: var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1rem;
  max-width: 14rem;
}

.hero-note {
  left: 1rem;
  bottom: 1rem;
}

.floating-badge {
  right: 1rem;
  top: 1rem;
  background: var(--lime);
}

.hero-note strong,
.floating-badge strong,
.stat-strip strong,
.plan-price strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

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

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.stat-strip div {
  padding: 1.25rem 1.4rem;
  border-right: var(--line-thin);
}

.stat-strip div:last-child {
  border-right: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.section-intro {
  max-width: 26rem;
  font-weight: 500;
}

.feature-grid,
.trust-grid,
.steps-grid,
.question-grid,
.plan-grid,
.two-up,
.mini-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid,
.question-grid,
.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid,
.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-card,
.trust-card,
.step-card,
.mini-card,
.question-card {
  padding: 1.4rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: var(--line-thin);
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-title {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  line-height: 1;
}

.section-card {
  padding: 1.6rem;
}

.stack-list {
  display: grid;
  gap: 0.9rem;
}

.stack-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border: var(--line-thin);
  padding: 1rem;
}

.stack-item strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.stack-item span:last-child {
  font-weight: 700;
}

.image-panel {
  border: var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.image-panel figcaption {
  border-top: var(--line-thin);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: #fffdf7;
}

.image-panel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border: var(--line);
  background: var(--lime);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1rem;
  max-width: 16rem;
}

.image-panel-badge strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.image-panel-badge span {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.plan-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.plan-card.featured {
  background: var(--lime);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.plan-pill {
  border: var(--line-thin);
  padding: 0.3rem 0.55rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  background: #f1f1f1;
}

.plan-card.featured .plan-pill {
  background: var(--black);
  color: var(--lime);
}

.pricing-name {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 0.3rem;
}

.plan-price strong {
  font-size: 3.3rem;
  line-height: 0.9;
}

.plan-price span {
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.feature-list li {
  font-weight: 500;
}

.plan-card .button {
  margin-top: auto;
}

.comparison-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  border-right: var(--line-thin);
  border-bottom: var(--line-thin);
  text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table thead th {
  background: var(--black);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.comparison-table thead th.is-featured {
  background: var(--lime);
  color: var(--black);
}

.comparison-table td.is-featured {
  background: rgba(204, 255, 0, 0.35);
}

.faq-cta,
.cta-band {
  display: grid;
  gap: 1rem;
}

.cta-band {
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
  padding: 2rem;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  background: var(--black);
  color: #fff;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band .section-label {
  color: var(--lime);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero {
  width: var(--shell);
  margin: 0 auto;
  padding: 3rem 0 1rem;
}

.page-panel,
.legal-card,
.contact-panel {
  padding: 1.6rem;
}

.page-hero h1 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.94;
}

.page-subtitle {
  max-width: 44rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.page-grid {
  width: var(--shell);
  margin: 0 auto;
  padding: 1rem 0 var(--section-gap);
  display: grid;
  gap: 1.3rem;
}

.legal-card h2,
.contact-panel h2,
.page-panel h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.legal-card h2:first-of-type,
.contact-panel h2:first-of-type,
.page-panel h2:first-of-type {
  margin-top: 0;
}

.contact-layout {
  width: var(--shell);
  margin: 0 auto;
  padding: 1rem 0 var(--section-gap);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.3rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: var(--line);
  background: #fffef9;
  padding: 0.9rem 1rem;
  border-radius: 0;
}

.checkbox-row {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  border: var(--line-thin);
  padding: 0.9rem 1rem;
  background: #fffdf7;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-row label {
  display: block;
  gap: 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none;
}

.checkbox-row a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin-top: 1rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #205d00;
}

.form-status.is-error {
  color: #8a1b16;
}

.footnote {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: var(--section-gap);
  margin-bottom: 1rem;
  padding: 2rem;
  background: var(--black);
  color: #fff;
  border-top: 4px solid var(--lime);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand .brand-tagline,
.footer-copy,
.footer-links,
.footer-meta {
  color: rgba(255, 255, 255, 0.74);
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--lime);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-meta {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .plan-grid,
  .two-up,
  .contact-layout,
  .footer-grid,
  .hero,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .site-nav,
  .site-footer,
  .hero,
  .section,
  .cta-band,
  .page-hero,
  .page-grid,
  .contact-layout {
    width: min(calc(100vw - 1rem), 100%);
  }

  .site-nav {
    position: relative;
    align-items: start;
    padding: 0.95rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: -3px;
    right: -3px;
    top: calc(100% + 0.7rem);
    background: var(--paper-strong);
    border: var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-title,
  .page-hero h1 {
    max-width: 12ch;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .feature-grid,
  .trust-grid,
  .steps-grid,
  .question-grid,
  .plan-grid,
  .mini-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    overflow: visible;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    border-bottom: var(--line);
    background: var(--paper-strong);
  }

  .comparison-table tr:last-child {
    border-bottom: 0;
  }

  .comparison-table td {
    border-right: 0;
    border-bottom: var(--line-thin);
    padding: 0.8rem 1rem;
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .comparison-table td[data-label="Feature"] {
    background: var(--black);
    color: #fff;
    font-family: "Archivo Black", Impact, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
  }

  .comparison-table td[data-label="Feature"]::before {
    color: rgba(255, 255, 255, 0.7);
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: var(--line-thin);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

  .hero-note,
  .floating-badge,
  .image-panel-badge {
    position: static;
    margin: 1rem;
    max-width: none;
  }

  .site-footer {
    padding: 1.4rem;
  }
}
