@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=IBM+Plex+Mono:wght@600&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #172026;
  --muted: #59646c;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: rgba(23, 32, 38, 0.12);
  --teal: #1f4e5f;
  --teal-dark: #163944;
  --yellow: #f2b705;
  --yellow-soft: #fff1b7;
  --green: #4f6f52;
  --shadow: 0 18px 45px rgba(23, 32, 38, 0.12);
  --radius: 8px;
  --container-max: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--teal);
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a:hover,
.email-link:hover,
.site-footer a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  flex-direction: column;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font: 800 15px/1 Inter, Arial, sans-serif;
  padding: 15px 20px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 11px 15px;
  box-shadow: none;
}

.button-small:hover {
  box-shadow: none;
}

.button-secondary {
  border: 1px solid rgba(31, 78, 95, 0.28);
  background: transparent;
  color: var(--teal);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: none;
}

.hero {
  padding-block: clamp(50px, 8vw, 94px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 640px;
  margin-top: 18px;
  font-size: clamp(58px, 8vw, 104px);
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 34px 0 0;
}

.hero-proof div {
  border-left: 4px solid var(--teal);
  background: var(--surface);
  padding: 14px 16px;
}

.hero-proof dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.hero-panel {
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  padding: clamp(18px, 3vw, 28px);
}

.hero-panel-image {
  padding: 0;
  overflow: hidden;
}

.hero-snapshot {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.section {
  padding-block: clamp(56px, 8vw, 92px);
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-dark {
  background: var(--teal-dark);
  color: var(--surface);
}

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

.section-dark .eyebrow {
  color: var(--yellow);
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .audit-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.problem-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.problem-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
}

.section-dark .problem-grid article,
.section-dark .offer-card,
.section-dark .audit-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .offer-card.featured {
  border-color: rgba(243, 194, 77, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.problem-grid strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.problem-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-dark .problem-grid p,
.section-dark .offer-card li,
.section-dark .audit-card ol,
.section-dark .founder-mini span {
  color: rgba(255, 255, 255, 0.76);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.offer-card.featured {
  border-color: var(--teal);
  transform: translateY(-12px);
  box-shadow: 0 22px 55px rgba(31, 78, 95, 0.18);
}

.system-card-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.section-dark .system-card-header,
.section-dark .founder-mini {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.system-card-header h3 {
  margin-top: 8px;
  font-size: 34px;
}

.tier-label {
  margin: 0;
  color: var(--teal);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.promise {
  min-height: 50px;
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.choose-line {
  border: 1px solid rgba(31, 78, 95, 0.16);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff9dc;
  color: var(--ink);
  margin: 18px 0 0;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.offer-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.section-dark .offer-card li::before {
  color: var(--yellow);
}

.value-stack {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.included-bonus {
  border: 1px solid rgba(255, 214, 10, 0.62);
  border-radius: 6px;
  background: rgba(255, 214, 10, 0.16);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
  padding: 11px 12px;
}

.price {
  display: grid;
  gap: 3px;
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.section-dark .price {
  background: rgba(255, 255, 255, 0.12);
}

.price strong {
  font-size: 22px;
}

.price span {
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

.section-dark .price span {
  color: var(--yellow);
}

.asset-card {
  border: 1px dashed rgba(31, 78, 95, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 78, 95, 0.08) 0, rgba(31, 78, 95, 0.08) 25%, transparent 25%, transparent 50%, rgba(31, 78, 95, 0.08) 50%, rgba(31, 78, 95, 0.08) 75%, transparent 75%, transparent 100%),
    var(--paper);
  background-size: 18px 18px;
  padding: 18px;
}

.asset-card span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 9px;
  text-transform: uppercase;
}

.asset-card strong {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 900;
}

.asset-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.asset-card-large {
  min-height: 230px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.addon-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.section-dark .addon-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.addon-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
}

.addon-grid h3 {
  margin-top: 20px;
}

.addon-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.section-dark .addon-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.audit-proof {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
}

.proof-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.proof-grid h3 {
  font-size: 22px;
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.audit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.audit-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.audit-copy-button {
  margin-top: 30px;
}

.audit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.founder-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.founder-mini img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}

.founder-mini strong,
.founder-mini span {
  display: block;
}

.founder-mini strong {
  font-size: 18px;
  font-weight: 900;
}

.founder-mini span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.audit-card ol {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.section-dark .email-link {
  color: var(--yellow);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: 34px;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
}

.site-footer p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

.not-found-main {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  background: var(--paper);
  padding-block: 80px;
}

.not-found {
  max-width: 760px;
}

.not-found h1 {
  max-width: 680px;
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(23, 32, 38, 0.72);
  padding: 18px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.booking-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(760px, 100%);
  max-height: min(90vh, 880px);
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-header,
.booking-footer,
.booking-notice {
  padding: 18px 22px;
}

.booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.booking-header h2 {
  margin-top: 6px;
  font-size: 38px;
}

.booking-header p:last-child,
.booking-notice,
.booking-footer {
  color: var(--muted);
  line-height: 1.55;
}

.booking-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.booking-notice {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}

.booking-frame {
  width: 100%;
  min-height: 560px;
  border: 0;
  background: var(--surface);
}

.booking-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}

.booking-notice a,
.booking-footer a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 18px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.legal-hero h1 {
  margin-top: 14px;
  font-size: clamp(54px, 8vw, 86px);
}

.legal-date {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-section {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.legal-section h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.legal-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-section a {
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero-inner,
  .problem-strip,
  .audit-section {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .audit-card {
    max-width: 760px;
  }

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

  .offer-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    z-index: 60;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .mobile-nav a,
  .mobile-nav button {
    justify-content: flex-start;
    min-height: 46px;
    border-radius: 6px;
    padding: 13px 14px;
    font-weight: 900;
  }

  .mobile-nav a:hover {
    background: var(--paper);
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .section {
    padding-block: 52px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: block;
    border-top: 1px solid var(--line);
    background: var(--surface);
    padding: 12px;
  }

  .mobile-cta .button {
    width: 100%;
  }

  .booking-modal {
    align-items: end;
    padding: 0;
  }

  .booking-dialog {
    max-height: 94vh;
    border-radius: 8px 8px 0 0;
  }

  .booking-frame {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
