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

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
}

:root {
  --paper: #f4f2ec;
  --surface: #ffffff;
  --surface-soft: #eceff0;
  --ink: #161a1d;
  --muted: #5f686d;
  --line: #d6ddde;
  --line-strong: #aebabc;
  --petrol: #105b5b;
  --petrol-dark: #0b3437;
  --amber: #b17935;
  --blue: #263d58;
  --dark: #11181b;
  --dark-2: #172225;
  --inverse: #f8f7f2;
  --shadow: 0 22px 70px rgba(18, 28, 32, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 24, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 27, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244, 242, 236, 0.92), rgba(244, 242, 236, 0.78));
  z-index: -1;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
  hyphens: auto;
  overflow-wrap: break-word;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 650;
}

ul,
ol {
  margin: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, var(--petrol), var(--amber));
}

.container {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(214, 221, 222, 0.82);
  background: rgba(244, 242, 236, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--inverse);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

nav ul {
  display: flex;
  gap: 1.15rem;
  padding: 0;
  list-style: none;
}

nav a,
.nav-cta {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

nav a:hover,
.nav-cta:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 0.62rem 0.86rem;
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2.2rem, 6vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.eyebrow,
.section-kicker,
.label {
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--petrol);
}

.section-kicker {
  margin-bottom: 0.92rem;
}

.inverse {
  color: #b8eee8;
}

.lead {
  max-width: 64ch;
  color: #30383c;
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.05rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--petrol);
  color: #fff;
  border-color: var(--petrol);
}

.btn-primary:hover {
  background: var(--petrol-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line-strong);
}

.full {
  width: 100%;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  max-width: 780px;
}

.proof-strip span {
  padding: 0.42rem 0.56rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.signal-panel {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 25px, rgba(16, 91, 91, 0.08) 25px 26px);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.panel-header,
.signal-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.panel-header {
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  color: var(--petrol);
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--petrol);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 91, 91, 0.11);
}

.signal-line {
  padding: 1rem 0;
}

.signal-line span {
  color: var(--muted);
  font-weight: 650;
}

.signal-line strong {
  color: var(--ink);
  font-size: 1rem;
}

.signal-line.warning strong {
  color: #9d5f12;
}

.signal-line.strong strong {
  color: var(--petrol);
}

.signal-panel p {
  margin-top: 1.2rem;
  color: #354044;
  font-size: 1.02rem;
}

.diagnostic-visual {
  margin: 1.2rem 0 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.diagnostic-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.two-column,
.editorial-grid,
.trust-grid,
.faq-grid,
.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 1.1rem;
  color: #30383c;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--inverse);
}

.dark h2,
.dark h3 {
  color: var(--inverse);
}

.dark p {
  color: #f4f7f6;
}

.argument-list {
  display: grid;
  gap: 0.8rem;
}

.argument-list p {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.argument-list strong {
  color: #fff;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.module {
  min-height: 300px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.68);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.module-number {
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.module p,
.service-row p,
.comparison li,
.fit-block li,
.timeline p,
.investment-grid p,
.trust-grid p,
.faq-list p,
.exclusion-grid p,
.final-box p {
  color: var(--muted);
}

.dark .trust-grid p,
.dark .section-heading p:not(.section-kicker) {
  color: #f4f7f6;
}

.muted {
  background: rgba(236, 239, 240, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transformation {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.comparison.emphasized {
  background: #fbfdfc;
  border-color: rgba(16, 91, 91, 0.45);
}

.comparison ul,
.fit-block ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.68rem;
}

.comparison .label {
  margin-bottom: 1rem;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.35rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line-strong);
}

.service-row > span {
  color: var(--petrol);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-row div {
  max-width: 780px;
}

.service-row p {
  margin-top: 0.72rem;
  font-size: 1.03rem;
}

.ai-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-options article {
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.1rem, 2.5vw, 1.7rem);
  min-height: 260px;
}

.ai-options span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #91d1ca;
  font-weight: 850;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fit-block {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.fit-block.quiet {
  background: rgba(236, 239, 240, 0.72);
}

.fit-block h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.timeline {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.timeline li {
  display: grid;
  grid-template-columns: 160px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: baseline;
}

.timeline span {
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.investment-panel {
  border: 1px solid rgba(16, 91, 91, 0.42);
  background: #f9fcfb;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}

.investment-panel p {
  margin: 0.78rem 0 1.2rem;
}

.fineprint {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.exclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.exclusion-grid p {
  min-height: 112px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.66);
  padding: 1rem 1.05rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-top: 0.78rem;
}

.final-cta {
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.final-box {
  max-width: 840px;
  text-align: center;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.final-box .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.final-box p:not(.section-kicker) {
  max-width: 660px;
  margin: 1rem auto 0;
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: clamp(1.8rem, 4vw, 2.8rem) auto 0;
  text-align: left;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.86rem 0.9rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(16, 91, 91, 0.12);
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

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

.form-footer a {
  color: var(--petrol);
  font-weight: 750;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--petrol);
  font-size: 0.94rem;
  font-weight: 750;
}

.form-status.is-error {
  color: #9b2f22;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.center {
  justify-content: center;
  text-align: center;
}

.contact-note a {
  color: var(--petrol);
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
}

.legal-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.legal-meta {
  position: sticky;
  top: 105px;
  padding-top: 0.35rem;
  color: var(--muted);
}

.legal-content {
  max-width: 820px;
  border-top: 1px solid var(--line-strong);
}

.legal-content h1 {
  max-width: none;
  margin: 1.1rem 0 clamp(2rem, 5vw, 3.4rem);
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-content section {
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.25;
  font-weight: 850;
}

.legal-content p {
  color: #30383c;
}

.legal-content p + p {
  margin-top: 0.85rem;
}

.legal-content a {
  color: var(--petrol);
  font-weight: 750;
}

.thanks-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.thanks-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.thanks-copy {
  display: grid;
  gap: 1.35rem;
}

.thanks-copy h1 {
  max-width: 10ch;
}

.thanks-panel {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
}

.thanks-steps {
  padding: 0;
  list-style: none;
}

.thanks-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.thanks-steps li:last-child {
  border-bottom: 0;
}

.thanks-steps span {
  color: var(--amber);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.thanks-steps p {
  color: #30383c;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  h1 {
    max-width: 12ch;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .two-column,
  .editorial-grid,
  .trust-grid,
  .faq-grid,
  .investment-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid,
  .ai-options,
  .exclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline li {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .timeline p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand span:last-child {
    display: none;
  }

  nav {
    display: none;
  }

  .nav-cta {
    padding: 0.58rem 0.7rem;
  }

  .hero {
    padding-top: 3.1rem;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .section {
    padding: 4rem 0;
  }

  .lead {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;
  }

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

  .proof-strip span {
    flex: 1 1 46%;
  }

  .before-after,
  .outcome-grid,
  .ai-options,
  .exclusion-grid {
    grid-template-columns: 1fr;
  }

  .module {
    min-height: 220px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .timeline p {
    grid-column: auto;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    position: static;
  }

  .thanks-hero {
    min-height: 0;
  }

  .thanks-layout {
    grid-template-columns: 1fr;
  }
}
