:root {
  --blue: #0057ff;
  --blue-soft: #4c8cff;
  --cyan: #00e0fa;
  --navy: #070e22;
  --white: #ffffff;
  --success: #0b7a53;
  --danger: #c63838;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 20px 60px rgba(0, 35, 105, 0.12);
}

html[data-theme="light"] {
  --bg: #f5f7fa;
  --bg-alt: #e9edf3;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --strong: #070e22;
  --strong-text: #f5f7fa;
  --text: #070e22;
  --muted: #53647a;
  --strong-muted: #aab6c8;
  --border: #d7dee7;
  --header-bg: rgba(245, 247, 250, 0.92);
  --shadow-color: rgba(0, 87, 255, 0.24);
  --accent-text: #0057ff;
  --focus: #0057ff;
  --button-bg: #0057ff;
  --button-hover: #0048d6;
  --error-text: #b4232f;
  --success-text: #08734e;
}

html[data-theme="dark"] {
  --bg: #070e22;
  --bg-alt: #0b1530;
  --surface: #101b38;
  --surface-soft: #102451;
  --strong: #0d1730;
  --strong-text: #f5f7fa;
  --text: #f2f5fa;
  --muted: #a0adc1;
  --strong-muted: #a0adc1;
  --border: #263656;
  --header-bg: rgba(7, 14, 34, 0.92);
  --shadow-color: rgba(0, 224, 250, 0.2);
  --accent-text: #63dff0;
  --focus: #00e0fa;
  --button-bg: #205fe8;
  --button-hover: #1553d4;
  --error-text: #ff8c96;
  --success-text: #6dd9ac;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

h1,
h2,
h3,
.display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  text-wrap: pretty;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--strong);
  color: var(--strong-text);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-strong {
  background: var(--strong);
  color: var(--strong-text);
}

.section-head {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-head-compact {
  margin-bottom: 30px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head > p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-strong .section-head > p {
  color: var(--strong-muted);
}

.section-strong .lead,
.section-strong .offer-price span,
.section-strong .offer-note {
  color: var(--strong-muted);
}

.section-strong .eyebrow {
  color: var(--cyan);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-text);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  content: "";
}

.accent {
  color: var(--accent-text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.button-primary {
  background: var(--button-bg);
  box-shadow: 0 10px 30px var(--shadow-color);
  color: var(--white);
}

.button-primary:hover {
  background: var(--button-hover);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.86rem;
}

.text-link {
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-text);
  font-weight: 700;
}

.text-cta:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
}

.brand img {
  width: 30px;
  height: 30px;
  margin-right: 11px;
}

.brand .boost {
  color: var(--accent-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.icon-button svg,
.menu-button svg {
  width: 19px;
  height: 19px;
}

.icon-button .icon-sun {
  stroke: var(--cyan);
}

.icon-button .icon-moon {
  stroke: var(--blue-soft);
}

html[data-theme="light"] .icon-sun,
html[data-theme="dark"] .icon-moon {
  display: none;
}

.menu-button {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.hero::before {
  position: absolute;
  top: -230px;
  right: -170px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 224, 250, 0.16), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 58px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(0, 87, 255, 0.25), rgba(0, 224, 250, 0.08));
  content: "";
  transform: rotate(2deg);
}

.hero-card-kicker {
  margin-bottom: 12px;
  color: var(--accent-text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.hero-card-compact {
  padding: 30px;
}

.hero-card-compact h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
}

.promise-strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.promise-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  min-height: 58px;
}

.promise-strip span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.promise-strip span + span::before {
  margin-right: 28px;
  color: var(--border);
  content: "•";
}

/* Offer */
.offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 6px;
}

.offer-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.offer-price span,
.offer-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.offer-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.offer-panel .check-list li {
  color: var(--strong-muted);
}

.offer-boundary {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--strong-muted);
  font-size: 0.87rem;
}

.offer-example-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-example-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Process and sample */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  padding-top: 18px;
  border-top: 2px solid var(--border);
}

.process-step .number {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.91rem;
}

.section-strong .process-step .number {
  color: var(--cyan);
}

.section-strong .process-step p {
  color: var(--strong-muted);
}

.sample-findings-simple {
  max-width: 900px;
}

.sample-findings-simple article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--border);
}

.sample-findings-simple article:last-child {
  border-bottom: 1px solid var(--border);
}

.sample-findings-simple article > span {
  color: var(--accent-text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.sample-findings-simple h3 {
  margin-bottom: 7px;
}

.sample-findings-simple p {
  color: var(--muted);
  font-size: 0.94rem;
}

.sample-findings-simple p + p {
  margin-top: 8px;
}

.sample-findings-simple p strong {
  color: var(--text);
}

/* FAQ */
.faq-list {
  max-width: 820px;
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  margin-left: 18px;
  color: var(--accent-text);
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 68ch;
  padding: 0 4px 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Contact and form */
.lead-form {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-simple {
  max-width: 780px;
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.form-heading p {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.required {
  color: var(--error-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-soft);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--error-text);
}

.field-error {
  display: none;
  margin-top: 5px;
  color: var(--error-text);
  font-size: 0.76rem;
}

.field.error .field-error {
  display: block;
}

.hp-field {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-disclosure {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: var(--radius);
  font-size: 0.86rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(11, 122, 83, 0.12);
  color: var(--success-text);
}

.form-status.error-message {
  background: rgba(198, 56, 56, 0.1);
  color: var(--error-text);
}

/* Legal pages */
.page-hero {
  padding: 82px 0 54px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
}

.page-hero p {
  color: var(--muted);
}

.prose {
  padding: 72px 0 96px;
}

.prose h2 {
  margin: 38px 0 12px;
  font-size: 1.5rem;
}

.prose h3 {
  margin: 28px 0 9px;
  font-size: 1.12rem;
}

.prose p,
.prose ul {
  margin-bottom: 14px;
  color: var(--muted);
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface-soft);
}

/* Footer */
.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
}

.footer-button:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Proof, confirmation and consent */
.success-hero {
  padding-block: 96px;
}

.success-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: #08734e;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 44px;
}

.thank-you-next {
  max-width: 690px;
}

.thank-you-next h2 {
  margin-bottom: 16px;
}

.thank-you-next > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.sample-hero .narrow {
  max-width: 780px;
}

.sample-cta {
  text-align: left;
}

.sample-cta h2 {
  margin-bottom: 16px;
}

.sample-cta > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 20, 60, 0.24);
}

.consent-copy {
  max-width: 650px;
}

.consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
}

.consent-copy p {
  color: var(--muted);
  font-size: 0.84rem;
}

.consent-copy a {
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  margin-left: 22px;
}

@media (max-width: 940px) {
  .nav-links {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    display: block;
    padding: 10px;
  }

  .menu-button {
    display: inline-flex;
  }

  .desktop-cta {
    display: none;
  }

  .hero-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-card {
    max-width: 620px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-three {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 620px) {
  .wrap,
  .narrow {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 56px 0;
  }

  .site-nav {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
    right: 16px;
    left: 16px;
  }

  .hero {
    padding: 52px 0;
  }

  .hero-card,
  .offer-panel,
  .lead-form {
    padding: 25px;
  }

  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .promise-strip .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 14px;
  }

  .promise-strip span + span::before {
    margin-right: 8px;
    content: "✓";
  }

  .sample-findings-simple article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 21px 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 16px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
