:root {
  --black: #000;
  --white-100: rgba(245, 245, 245, 1);
  --white-90: rgba(245, 245, 245, 0.9);
  --white-75: rgba(245, 245, 245, 0.75);
  --white-60: rgba(245, 245, 245, 0.6);
  --white-40: rgba(245, 245, 245, 0.4);
  --white-20: rgba(245, 245, 245, 0.2);
  --red: #c40000;
  --red-text: #ff5a5f;
}

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

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--black);
  color: var(--white-100);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 24px;
  padding: 12px 18px;
  background: var(--white-100);
  color: var(--black);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

main:focus {
  outline: none;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.74),
    rgba(0, 0, 0, 0)
  );
}

.brand {
  width: fit-content;
}

.brand img {
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.header-link {
  color: var(--white-100);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a:hover,
.header-link:hover {
  color: var(--white-60);
}

.main-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--red-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.header-link {
  justify-self: end;
}

.brand,
.header-link,
.menu-toggle {
  position: relative;
  z-index: 52;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--white-100);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
  margin: 0 auto;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  transform: translateY(-6px);
}

.menu-toggle-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  padding: 132px 24px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  background: rgba(0, 0, 0, 0.97);
}

.mobile-menu:not([hidden]) {
  display: flex;
}

.mobile-menu a {
  color: var(--white-100);
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.mobile-menu a:hover {
  color: var(--white-60);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white-100);
  outline-offset: 5px;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--white-100);
  outline-offset: 3px;
  border-color: var(--red-text);
}

/* FULL-SCREEN PANELS */

.panel {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  width: 100%;
  padding: 120px 72px 88px;
  display: flex;
  align-items: flex-end;
  background-color: var(--black);
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.panel-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 34%,
      rgba(0, 0, 0, 0.12) 72%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.36) 36%,
      rgba(0, 0, 0, 0.06) 82%
    );
}

.panel-content {
  position: relative;
  z-index: 2;
}

.hero-panel::before {
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.32) 34%,
      rgba(0, 0, 0, 0.10) 72%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.26) 36%,
      rgba(0, 0, 0, 0.04) 82%
    );
}

.panel-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.panel-content.narrow {
  max-width: 640px;
}

.kicker {
  margin-bottom: 14px;
  color: var(--red-text);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 860px;
  color: var(--white-100);
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
  text-transform: none;
}

.panel-content p:not(.kicker),
.final-inner p:not(.kicker) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--white-90);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  margin-top: 34px;
  padding: 13px 26px;
  border: 1.5px solid var(--white-100);
  color: var(--white-100);
  background: transparent;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  background: var(--white-100);
  color: var(--black);
}

.hero-proof {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: var(--white-60);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.powered {
  display: block;
  margin-top: 28px;
  color: var(--white-75);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* DETAIL PAGES */

.detail-section {
  min-height: 72vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.detail-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.detail-inner .kicker,
.quote-inner .kicker,
.final-inner .kicker {
  margin-bottom: 14px;
  color: var(--red-text);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-inner h2 {
  max-width: 860px;
  margin-top: 0;
  color: var(--white-100);
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.detail-inner p:not(.kicker) {
  max-width: 660px;
  margin-top: 28px;
  color: var(--white-75);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.systems-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 0, 0, 0.16), transparent 34%),
    var(--black);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.system-card {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--white-20);
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.045),
      rgba(245, 245, 245, 0.015)
    );
  overflow: hidden;
}

.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--red);
}

.system-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--red-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.system-card h3 {
  margin-bottom: 16px;
  color: var(--white-100);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-card p {
  max-width: 260px;
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.45;
}

.quote-section {
  min-height: 72vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: #171717;
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.quote-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote-inner blockquote {
  max-width: 980px;
  margin: 28px auto 0;
  color: var(--white-100);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.quote-inner > h2 {
  max-width: 1080px;
  margin: 28px auto 0;
  color: var(--white-100);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-align: center;
}

.quote-inner cite {
  display: block;
  margin-top: 28px;
  color: var(--white-60);
  font-size: 14px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
}

.quote-inner > p:not(.kicker) {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--white-60);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 980px) {
  .detail-section,
  .quote-section {
    min-height: auto;
    padding: 96px 24px;
  }

  .detail-inner h2 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .systems-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
  }

  .system-card {
    min-height: 230px;
  }
}

@media (max-width: 520px) {
  .detail-section,
  .quote-section {
    padding: 86px 22px;
  }

  .system-card {
    min-height: 220px;
    padding: 28px;
  }

  .system-card::before {
    left: 28px;
    right: 28px;
  }

  .system-card span {
    margin-bottom: 56px;
  }

  .quote-inner blockquote {
    font-size: clamp(32px, 11vw, 52px);
  }
}

/* PROOF */

.proof-section {
  min-height: 100vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: #171717;
  border-top: 1px solid rgba(245, 245, 245, 0.18);
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
}

.proof-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.proof-inner h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 72px);
}

.proof-logos {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 40px;
  align-items: center;
  justify-items: center;
}

.proof-logos img {
  width: 100%;
  max-width: 140px;
  height: auto;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.proof-logos img:hover {
  opacity: 1;
}

blockquote {
  max-width: 980px;
  margin: 92px auto 0;
  color: var(--white-100);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
}

cite {
  display: block;
  margin-top: 28px;
  color: var(--white-60);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

/* PAYMENT EXTRACTION */

.payment-section {
  min-height: calc(100vh - 84px);
  padding: 150px 72px 96px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
}

.payment-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.payment-copy {
  max-width: 860px;
}

.payment-copy h1 {
  max-width: 860px;
  color: var(--white-100);
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.payment-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--white-90);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
  font-weight: 400;
}

.payment-personnel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.payment-personnel-kicker {
  margin-top: 72px;
}

.payment-card {
  border-top: 1px solid var(--white-20);
  padding-top: 24px;
}

.payment-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.86;
  display: block;
  background: #111;
}

.payment-name {
  margin-top: 22px;
  color: var(--white-100);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.payment-bio {
  margin-top: 22px;
}

.payment-bio p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--white-75);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.payment-inner .button {
  margin-top: 56px;
}

@media (max-width: 980px) {
  .payment-section {
    min-height: auto;
    padding: 150px 24px 92px;
  }

  .payment-personnel {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .payment-personnel-kicker {
    margin-top: 56px;
  }

  .payment-personnel {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .payment-section {
    padding: 138px 22px 86px;
  }

  .payment-copy h1 {
    font-size: clamp(36px, 14vw, 54px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .payment-copy p:not(.kicker) {
    font-size: 17px;
  }

  .payment-name {
    font-size: clamp(24px, 8vw, 34px);
  }

  .payment-bio p {
    font-size: 14px;
  }

  .payment-inner .button {
    width: 100%;
    max-width: 260px;
  }
}

/* FINAL CTA */

.final-section {
  min-height: 80vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  border-top: 1px solid var(--white-20);
}

.final-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.final-inner > * {
  max-width: 720px;
}

/* CONTACT */

.contact-section {
  min-height: calc(100vh - 84px);
  padding: 150px 72px 96px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
}

.contact-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: start;
}

.contact-copy h1,
.thankyou-inner h1 {
  max-width: 860px;
  color: var(--white-100);
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
  text-transform: none;
}

.contact-copy p:not(.kicker),
.thankyou-inner p:not(.kicker) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--white-90);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
  font-weight: 400;
  font-style: normal;
}
.contact-copy .kicker,
.thankyou-inner .kicker {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--red-text);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy .contact-lead {
  color: var(--red-text);
  font-weight: 600;
}

.contact-form {
  width: 100%;
}

.form-note {
  margin-bottom: 18px;
  color: var(--white-60);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--white-75);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--white-20);
  background: rgba(245, 245, 245, 0.06);
  color: var(--white-100);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.form-field input,
.form-field select {
  height: 42px;
  padding: 0 12px;
}

.form-field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--white-60) 50%),
    linear-gradient(135deg, var(--white-60) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 17px,
    calc(100% - 13px) 17px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.form-field select option {
  background: #111111;
  color: var(--white-100);
}

.form-field textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--white-60);
  background-color: rgba(245, 245, 245, 0.09);
}

.form-field textarea::placeholder {
  color: var(--white-60);
}

.contact-form .button {
  margin-top: 6px;
  cursor: pointer;
}

.form-status {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-left: 2px solid var(--red-text);
  background: rgba(245, 245, 245, 0.06);
  color: var(--white-90);
  font-size: 14px;
  line-height: 1.45;
}

.form-privacy {
  max-width: 560px;
  margin-top: 20px;
  color: var(--white-60);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--white-75);
  border-bottom: 1px solid var(--white-40);
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.form-privacy a:hover {
  color: var(--white-100);
  border-color: var(--white-100);
}

.thankyou-section {
  min-height: calc(100vh - 84px);
  padding: 150px 72px 96px;
  display: flex;
  align-items: center;
  background: var(--black);
}

.thankyou-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .contact-section {
    min-height: auto;
    padding: 150px 24px 92px;
  }

  .thankyou-section {
    padding: 150px 24px 92px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 138px 22px 86px;
  }

  .thankyou-section {
    min-height: calc(100vh - 84px);
    padding: 138px 22px 86px;
  }

  .contact-copy h1,
  .thankyou-inner h1 {
    font-size: clamp(36px, 14vw, 54px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .contact-copy p,
  .thankyou-inner p {
    font-size: 17px;
  }

  .contact-form .button {
    width: 100%;
    max-width: 260px;
  }
}

/* CYPHER PAGE */

.cypher-hero {
  min-height: 100vh;
  padding: 150px 72px 96px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(196, 0, 0, 0.18), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(245, 245, 245, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(245, 245, 245, 0.035), rgba(245, 245, 245, 0)),
    var(--black);
  color: var(--white-100);
  border-bottom: 1px solid var(--white-20);
}

.cypher-hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.cypher-hero h1 {
  max-width: 980px;
}

.cypher-hero p:not(.kicker) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--white-90);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
  font-weight: 400;
}

.cypher-section {
  min-height: 78vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.cypher-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.cypher-section-copy {
  max-width: 920px;
}

.cypher-section-copy h2 {
  max-width: 900px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cypher-section-copy p:not(.kicker) {
  max-width: 700px;
  margin-top: 24px;
  color: var(--white-75);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.cypher-card-grid {
  display: grid;
  gap: 28px;
  margin-top: 64px;
}

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

.cypher-card,
.cypher-product-card {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--white-20);
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.045),
      rgba(245, 245, 245, 0.015)
    );
  overflow: hidden;
}

.cypher-card::before,
.cypher-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--red);
}

.cypher-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--red-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.cypher-card h3,
.cypher-product-card h3 {
  margin-bottom: 16px;
  color: var(--white-100);
  font-size: 18px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cypher-card p,
.cypher-product-card p {
  color: var(--white-75);
  font-size: 16px;
  line-height: 1.5;
}

.cypher-process {
  margin-top: 64px;
  border-top: 1px solid var(--white-20);
}

.cypher-process-step {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 30px 0;
  border-bottom: 1px solid var(--white-20);
}

.cypher-process-step span {
  color: var(--white-100);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.cypher-process-step p {
  max-width: 720px;
  color: var(--white-75);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.cypher-product-section {
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.035),
      rgba(245, 245, 245, 0)
    ),
    var(--black);
}

.cypher-product-card {
  display: block;
  min-height: 260px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.cypher-product-card:hover,
.cypher-product-card:focus-visible {
  border-color: var(--white-60);
  background-color: rgba(245, 245, 245, 0.055);
}

.cypher-rules-section {
  background:
    radial-gradient(circle at 80% 24%, rgba(196, 0, 0, 0.13), transparent 30%),
    var(--black);
}

.cypher-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--white-20);
  background: var(--white-20);
}

.cypher-rule {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
}

.cypher-rule span {
  color: var(--red-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.cypher-rule h3 {
  max-width: 220px;
  color: var(--white-100);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.cypher-final-section {
  background:
    linear-gradient(
      to right,
      rgba(196, 0, 0, 0.13),
      rgba(196, 0, 0, 0)
    ),
    var(--black);
}

@media (max-width: 1100px) {
  .cypher-rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .cypher-hero,
  .cypher-section {
    min-height: auto;
    padding: 150px 24px 92px;
  }

  .cypher-section {
    padding-top: 96px;
  }

  .cypher-section-copy h2 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .cypher-card-grid-three {
    grid-template-columns: 1fr;
  }

  .cypher-process-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .cypher-rules-grid {
    grid-template-columns: 1fr;
  }

  .cypher-rule {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .cypher-hero {
    padding: 138px 22px 86px;
  }

  .cypher-section {
    padding: 86px 22px;
  }

  .cypher-card,
  .cypher-product-card {
    min-height: 230px;
    padding: 28px;
  }

  .cypher-card::before,
  .cypher-product-card::before {
    left: 28px;
    right: 28px;
  }

  .cypher-card span {
    margin-bottom: 56px;
  }
}

/* FIELD MANUALS PAGE */

.manuals-hero {
  min-height: 100vh;
  padding: 145px 72px 96px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(196, 0, 0, 0.18), transparent 34%),
    linear-gradient(to bottom, rgba(245, 245, 245, 0.03), rgba(245, 245, 245, 0)),
    var(--black);
  color: var(--white-100);
  border-bottom: 1px solid var(--white-20);
}

.manuals-hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.manuals-hero-copy {
  max-width: 920px;
  margin: 0 auto;
}

.manuals-hero-copy h1 {
  max-width: 900px;
  margin: 0 auto;
}

.manuals-hero-copy p:not(.kicker) {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--white-90);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
}

.manuals-hero-books {
  position: relative;
  max-width: 800px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 42px;
  align-items: end;
}

.manuals-hero-books::before,
.manuals-final-books::before {
  content: "";
  position: absolute;
  inset: 4% 2%;
  z-index: 0;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(196, 0, 0, 0.26),
      rgba(196, 0, 0, 0.09) 42%,
      transparent 72%
    );
  filter: blur(52px);
  pointer-events: none;
}

.manuals-cover-glow {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding: 12px;
}

.manuals-cover-glow::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -28px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(196, 0, 0, 0.62) 0%,
      rgba(196, 0, 0, 0.3) 34%,
      rgba(196, 0, 0, 0.12) 52%,
      transparent 76%
    );
  filter: blur(34px);
  opacity: 0.82;
  pointer-events: none;
}

.manuals-cover-glow::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12px;
  border: 1px solid rgba(196, 0, 0, 0.38);
  box-shadow:
    0 0 0 1px rgba(196, 0, 0, 0.08),
    0 0 38px rgba(196, 0, 0, 0.26);
  pointer-events: none;
}

.manuals-cover-glow img,
.manuals-hero-book,
.manuals-book-image img,
.manuals-final-books img {
  display: block;
  width: 100%;
  border: 1px solid rgba(196, 0, 0, 0.28);
  background: #050505;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.82),
    0 0 44px rgba(196, 0, 0, 0.18);
}

.manuals-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.manuals-authority-section {
  min-height: 58vh;
  padding: 96px 72px;
  display: flex;
  align-items: center;
  background: #171717;
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
  border-bottom: 1px solid var(--white-20);
}

.manuals-authority-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.manuals-authority-inner blockquote {
  max-width: 900px;
  margin: 26px auto 0;
  color: var(--white-100);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.manuals-authority-inner cite {
  display: block;
  margin-top: 26px;
  color: var(--white-60);
  font-size: 13px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
}

.manuals-statement {
  min-height: 90vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-statement h2 {
  max-width: 980px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.manuals-statement h2 + h2 {
  color: var(--white-75);
}

.manuals-statement p:not(.kicker) {
  max-width: 720px;
  margin-top: 42px;
  color: var(--white-75);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.manuals-reality-list {
  max-width: 980px;
  margin-top: 56px;
  display: grid;
  gap: 16px;
}

.manuals-reality-list span {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-20);
  color: var(--white-100);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.manuals-book-section {
  padding: 120px 72px;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-silver-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(196, 0, 0, 0.13), transparent 34%),
    var(--black);
}

.manuals-shock-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(196, 0, 0, 0.13), transparent 34%),
    #050505;
}

.manuals-book-layout {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: 82px;
  align-items: start;
}

.manuals-book-layout-reverse {
  grid-template-columns: minmax(480px, 1.28fr) minmax(300px, 0.72fr);
}

.manuals-book-image {
  position: sticky;
  top: 112px;
}

.manuals-book-image .manuals-cover-glow {
  max-width: 430px;
  margin: 0 auto;
}

.manuals-book-copy h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.3vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.manuals-book-copy > p:not(.kicker) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--white-75);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.manuals-copy-block {
  max-width: 760px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--white-20);
}

.manuals-copy-block h3 {
  margin-bottom: 18px;
  color: var(--white-100);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manuals-copy-block p {
  margin-top: 18px;
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.55;
}

.manuals-spread-section {
  padding: 120px 72px;
  background: #171717;
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-spread-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.manuals-spread-inner img {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.manuals-spread-copy {
  max-width: 820px;
  margin-top: 56px;
}

.manuals-spread-copy h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.manuals-spread-copy p:not(.kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--white-75);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

.manuals-compare-section {
  min-height: 90vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-compare-section h2 {
  max-width: 880px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.manuals-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.manuals-compare-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--white-20);
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.045),
      rgba(245, 245, 245, 0.015)
    );
}

.manuals-compare-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  background: var(--red);
}

.manuals-compare-card h3 {
  margin-top: 18px;
  color: var(--white-100);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.manuals-compare-card p {
  margin-top: 28px;
  color: var(--white-60);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manuals-compare-card ul {
  margin-top: 22px;
  list-style: none;
}

.manuals-compare-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--white-20);
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.3;
}

.manuals-compare-close {
  max-width: 760px;
  margin-top: 52px;
  color: var(--white-100);
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.manuals-final-section {
  min-height: 100vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(196, 0, 0, 0.18), transparent 34%),
    var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-final-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.manuals-final-copy {
  max-width: 920px;
  margin: 0 auto;
}

.manuals-final-copy h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.manuals-final-copy p:not(.kicker) {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--white-90);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.manuals-final-books {
  position: relative;
  max-width: 800px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 42px;
  align-items: end;
}

.manuals-final-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .manuals-book-layout,
  .manuals-book-layout-reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .manuals-book-image {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .manuals-hero,
  .manuals-authority-section,
  .manuals-statement,
  .manuals-book-section,
  .manuals-spread-section,
  .manuals-compare-section,
  .manuals-final-section {
    min-height: auto;
    padding: 96px 24px;
  }

  .manuals-hero {
    padding-top: 150px;
  }

  .manuals-statement h2,
  .manuals-book-copy h2,
  .manuals-spread-copy h2,
  .manuals-compare-section h2,
  .manuals-final-copy h2 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .manuals-authority-inner blockquote {
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .manuals-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .manuals-hero-books,
  .manuals-final-books {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 360px;
  }

  .manuals-final-actions {
    flex-direction: column;
    align-items: center;
  }

  .manuals-final-actions .button {
    width: 100%;
    max-width: 280px;
  }
}

/* PRIVACY & TERMS */

.legal-hero {
  min-height: 48vh;
  padding: 136px 72px 72px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  border-bottom: 1px solid var(--white-20);
}

.legal-hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 6vw, 88px);
}

.legal-hero p:not(.kicker) {
  margin-top: 24px;
  color: var(--white-60);
  font-size: 14px;
  line-height: 1.5;
}

.legal-section {
  padding: 120px 72px;
  background: #202020;
  border-bottom: 1px solid var(--white-20);
}

.legal-layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(72px, 9vw, 140px);
  align-items: start;
}

.legal-contents {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 144px);
  overflow-y: auto;
  padding-right: 20px;
}

.legal-contents-group + .legal-contents-group {
  margin-top: 32px;
}

.legal-contents-group span {
  display: block;
  margin-bottom: 12px;
  color: var(--white-100);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-contents-group a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--white-60);
  font-size: 13px;
  line-height: 1.35;
  transition: color 160ms ease;
}

.legal-contents-group a:hover {
  color: var(--white-100);
}

.legal-document {
  width: 100%;
  max-width: 760px;
}

.legal-part + .legal-part {
  margin-top: 112px;
  padding-top: 112px;
  border-top: 1px solid var(--white-20);
}

.legal-part > h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-part > p:not(.kicker) {
  margin-top: 28px;
  color: var(--white-90);
  font-size: 18px;
  line-height: 1.65;
}

.legal-item {
  padding-top: 88px;
  scroll-margin-top: 112px;
}

.legal-item h3 {
  color: var(--white-100);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-item p {
  margin-top: 18px;
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.68;
}

.legal-document a:not(.button) {
  color: var(--white-100);
  text-decoration: underline;
  text-decoration-color: var(--red-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-contact {
  margin-top: 112px;
  padding-top: 96px;
  border-top: 1px solid var(--white-20);
}

.legal-contact h2 {
  max-width: 720px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-contact > p:not(.kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .legal-hero {
    min-height: 44vh;
    padding: 128px 24px 64px;
  }

  .legal-section {
    padding: 96px 24px;
  }

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

  .legal-contents {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    columns: 2;
    column-gap: 52px;
  }

  .legal-contents > .kicker {
    column-span: all;
  }

  .legal-contents-group {
    break-inside: avoid;
  }

  .legal-document {
    max-width: 780px;
  }

  .legal-item {
    scroll-margin-top: 96px;
  }
}

@media (max-width: 620px) {
  .legal-hero {
    min-height: 42vh;
    padding: 118px 22px 56px;
  }

  .legal-section {
    padding: 80px 22px;
  }

  .legal-layout {
    gap: 72px;
  }

  .legal-contents {
    columns: 1;
  }

  .legal-contents-group + .legal-contents-group {
    margin-top: 36px;
  }

  .legal-part + .legal-part {
    margin-top: 88px;
    padding-top: 88px;
  }

  .legal-part > p:not(.kicker),
  .legal-item p,
  .legal-contact > p:not(.kicker) {
    font-size: 16px;
  }

  .legal-item {
    padding-top: 68px;
  }

  .legal-contact {
    margin-top: 88px;
    padding-top: 80px;
  }
}

@media (max-width: 520px) {
  .manuals-hero {
    padding: 138px 22px 86px;
  }

  .manuals-authority-section,
  .manuals-statement,
  .manuals-book-section,
  .manuals-spread-section,
  .manuals-compare-section,
  .manuals-final-section {
    padding: 86px 22px;
  }

  .manuals-reality-list span {
    font-size: clamp(26px, 10vw, 44px);
  }

  .manuals-book-copy > p:not(.kicker),
  .manuals-copy-block p,
  .manuals-spread-copy p:not(.kicker),
  .manuals-final-copy p:not(.kicker) {
    font-size: 16px;
  }

  .manuals-authority-inner blockquote {
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .manuals-compare-card {
    padding: 28px;
  }

  .manuals-compare-card::before {
    left: 28px;
    right: 28px;
  }
}

/* =========================================================
   FINAL LAYOUT SYSTEM — YOURHITMAN.COM
   Standardizes horizontal alignment while preserving
   intentional centered sections.
   ========================================================= */

/* STANDARD LEFT-EDGE CONTAINERS */

.panel-content,
.detail-inner,
.final-inner,
.payment-inner,
.contact-inner,
.cypher-hero-inner,
.cypher-inner {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* STANDARD TEXT WIDTHS */

.panel-content > *,
.final-inner > * {
  max-width: 720px;
}

.detail-inner h1,
.detail-inner h2,
.payment-copy h1,
.cypher-hero h1,
.cypher-section-copy h2 {
  max-width: 920px;
}

.detail-inner p:not(.kicker),
.payment-copy p:not(.kicker),
.cypher-hero p:not(.kicker),
.cypher-section-copy p:not(.kicker) {
  max-width: 720px;
}

/* FULL-WIDTH GRIDS INSIDE STANDARD CONTAINERS */

.systems-grid,
.cypher-card-grid,
.cypher-rules-grid,
.payment-personnel {
  width: 100%;
}

/* INTENTIONAL CENTERED SECTIONS */

.proof-inner {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quote-inner,
.manuals-authority-inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quote-inner blockquote,
.manuals-authority-inner blockquote {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* FIELD MANUALS — CENTERED VISUAL SYSTEM */

.manuals-hero-inner,
.manuals-final-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.manuals-hero-copy,
.manuals-final-copy {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.manuals-hero-copy h1,
.manuals-hero-copy h2,
.manuals-final-copy h1,
.manuals-final-copy h2 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.manuals-hero-copy p:not(.kicker),
.manuals-final-copy p:not(.kicker) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.manuals-hero-books,
.manuals-final-books {
  max-width: 960px;
  gap: 64px;
}

/* FIELD MANUALS — DETAIL SECTIONS */

.manuals-inner,
.manuals-book-layout,
.manuals-spread-inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */

.site-footer {
  min-height: 84px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white-60);
  border-top: 1px solid var(--white-20);
}

.site-footer span,
.site-footer a {
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer a {
  color: var(--white-60);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--white-100);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .site-header {
    height: 74px;
    padding: 0 24px;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0)
    );
  }

  .brand img {
    width: 132px;
  }

  .main-nav {
    display: none;
  }

  .main-nav a,
  .header-link {
    font-size: 12px;
  }

  .header-link {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .panel {
    min-height: 100vh;
    padding: 150px 24px 58px;
    background-position: center center;
  }

  .panel::before {
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.76),
        rgba(0, 0, 0, 0.28)
      ),
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.12)
      );
  }

  .hero-panel::before {
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.24)
      ),
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.10)
      );
  }

  .panel-content,
  .panel-content.narrow {
    max-width: 100%;
  }

  .kicker {
    font-size: 12px;
  }

  h1,
  h2 {
    font-size: clamp(38px, 12vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

.panel-content p:not(.kicker),
.final-inner p:not(.kicker) {
  max-width: 94%;
  font-size: 17px;
}

  .proof-section,
  .final-section {
    padding: 92px 24px;
  }

  .proof-logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .people-row {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .site-footer {
    min-height: auto;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    padding: 0 18px;
    gap: 8px;
  }

  .main-nav {
    display: none;
  }

  .header-link {
    justify-self: end;
    font-size: 11px;
  }

  .panel {
    padding: 138px 22px 48px;
  }

  h1,
  h2 {
    font-size: clamp(36px, 14vw, 54px);
  }

  .panel-content p:not(.kicker),
.final-inner p:not(.kicker) {
  max-width: 100%;
}

  .button {
    width: 100%;
    max-width: 260px;
  }

  .proof-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .proof-logos img {
    width: min(100%, 128px);
  }

  .people-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .person-card {
    width: 100%;
  }

  .person-card span {
    width: 100%;
  }

  blockquote {
    margin-top: 70px;
  }
}

/* CLIENT WINS */

.client-wins-section {
  min-height: 92vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 0, 0, 0.14), transparent 34%),
    var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.client-wins-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.client-wins-copy {
  max-width: 920px;
  margin-bottom: 64px;
}

.client-wins-copy h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.client-wins-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--white-75);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.client-wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.client-win-card {
  min-height: 620px;
  padding: 32px;
  display: grid;
  grid-template-rows: 28px 300px 1fr;
  border: 1px solid var(--white-20);
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.045),
      rgba(245, 245, 245, 0.015)
    );
}

.client-win-card > span {
  grid-row: 1;
  display: block;
  color: var(--red-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.client-win-block {
  margin: 0;
}

.client-win-block:first-of-type {
  grid-row: 2;
  padding-top: 44px;
  align-self: start;
}

.client-win-block:last-of-type {
  grid-row: 3;
  padding-top: 34px;
  border-top: 1px solid var(--white-20);
}

.client-win-label {
  margin-bottom: 18px;
  color: var(--red-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-win-card blockquote {
  margin: 0;
  max-width: none;
  color: var(--white-100);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-align: left;
}

.client-win-card cite {
  display: block;
  margin-top: 18px;
  color: var(--white-60);
  font-size: 12px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  text-align: left;
}

.client-win-card h3 {
  max-width: 340px;
  color: var(--white-100);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.client-win-card p:not(.client-win-label) {
  max-width: 340px;
  margin-top: 20px;
  color: var(--white-75);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .client-wins-grid {
    grid-template-columns: 1fr;
  }

  .client-win-card {
    min-height: auto;
    display: block;
  }

  .client-win-block:first-of-type {
    padding-top: 44px;
  }

  .client-win-block:last-of-type {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--white-20);
  }
}

@media (max-width: 980px) {
  .client-wins-section {
    min-height: auto;
    padding: 96px 24px;
  }

  .client-wins-copy h2 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 520px) {
  .client-wins-section {
    padding: 86px 22px;
  }

  .client-win-card {
    padding: 28px;
  }

  .client-win-card blockquote {
    font-size: clamp(24px, 9vw, 34px);
  }
}

/* FIX NARROW PANEL ALIGNMENT */

.panel-content.narrow {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.panel-content.narrow > * {
  max-width: 640px;
}

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

.error-actions .button {
  margin-top: 0;
}

/* PHASE 1: RESPONSIVE MEDIA SAFEGUARDS */

.manuals-hero-inner,
.manuals-book-layout,
.manuals-spread-inner,
.manuals-hero-copy,
.manuals-book-copy,
.manuals-spread-copy {
  min-width: 0;
}

.manuals-hero,
.manuals-book-section,
.manuals-final-section {
  overflow: hidden;
}

.manuals-hero-books,
.manuals-book-image,
.manuals-spread-inner img {
  max-width: 100%;
}

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

  .panel-video,
  .payment-video {
    animation: none;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    transition: none;
  }

  .skip-link {
    transition: none;
  }
}

@media (max-width: 520px) {
  .error-actions {
    flex-direction: column;
  }
}

/* FIELD MANUALS — REFINED PRODUCT PAGE */

.manuals-hero {
  min-height: 100vh;
  padding: 145px 72px 110px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.025), transparent 48%),
    var(--black);
  color: var(--white-100);
  border-bottom: 1px solid var(--white-20);
}

.manuals-hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 80px;
  align-items: center;
  text-align: left;
}

.manuals-hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.manuals-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.manuals-hero-copy p:not(.kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--white-90);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

.manuals-hero-copy .manuals-byline {
  margin-top: 22px;
  color: var(--white-60);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.manuals-byline a {
  color: var(--white-100);
  border-bottom: 1px solid var(--white-40);
  transition: border-color 160ms ease, color 160ms ease;
}

.manuals-byline a:hover {
  color: var(--white-75);
  border-color: var(--white-75);
}

.manuals-hero-books {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.manuals-hero-books::before {
  content: none;
}

.manuals-hero-books img,
.manuals-detail-cover,
.manuals-spread-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(245, 245, 245, 0.14);
  background: #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.manuals-authority-section {
  min-height: auto;
  padding: 110px 72px;
  display: block;
  background: #202020;
  color: var(--white-100);
  border-top: 0;
  border-bottom: 1px solid var(--white-20);
}

.manuals-authority-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.manuals-authority-inner blockquote {
  max-width: 1040px;
  margin: 26px 0 0;
  color: var(--white-100);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: left;
}

.manuals-authority-inner cite {
  display: block;
  margin-top: 26px;
  color: var(--white-60);
  font-size: 13px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
}

.manuals-book-section {
  padding: 120px 72px;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-shock-section {
  background: #0d0d0d;
}

.manuals-book-layout {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}

.manuals-silver-section .manuals-book-copy {
  grid-column: 2;
}

.manuals-silver-section .manuals-book-media {
  grid-column: 1;
  grid-row: 1;
}

.manuals-book-copy {
  max-width: 620px;
  padding-top: 10px;
}

.manuals-book-copy h2 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.manuals-book-copy > p:not(.kicker) {
  max-width: 620px;
  margin-top: 26px;
  color: var(--white-75);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.52;
}

.manuals-book-copy .manuals-territory {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--white-20);
  color: var(--white-90);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.manuals-book-media {
  min-width: 0;
  display: grid;
  gap: 34px;
}

.manuals-detail-cover {
  width: min(100%, 320px);
}

.manuals-spread-image {
  max-width: 100%;
}

.manuals-compare-section {
  min-height: auto;
  padding: 120px 72px;
  display: block;
  background: #202020;
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.manuals-compare-section h2 {
  max-width: 880px;
  font-size: clamp(42px, 5.3vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.manuals-compare-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.manuals-compare-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--white-20);
  background: rgba(0, 0, 0, 0.12);
}

.manuals-compare-card::before {
  content: none;
}

.manuals-compare-card h3 {
  max-width: 440px;
  margin: 0;
  color: var(--white-100);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
}

.manuals-compare-card ul {
  margin-top: 30px;
  list-style: none;
}

.manuals-compare-card li {
  padding: 15px 0;
  border-bottom: 1px solid var(--white-20);
  color: var(--white-75);
  font-size: 17px;
  line-height: 1.35;
}

.manuals-compare-close {
  max-width: 820px;
  margin-top: 54px;
  color: var(--white-100);
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.manuals-final-section {
  min-height: 68vh;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white-100);
  border-top: 1px solid var(--white-20);
}

.manuals-final-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.manuals-final-inner h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.manuals-final-actions {
  margin-top: 42px;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.manuals-final-actions .button {
  margin-top: 0;
}

@media (max-width: 980px) {
  .manuals-hero,
  .manuals-authority-section,
  .manuals-book-section,
  .manuals-compare-section,
  .manuals-final-section {
    min-height: auto;
    padding: 96px 24px;
  }

  .manuals-hero {
    padding-top: 150px;
  }

  .manuals-hero-inner,
  .manuals-book-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .manuals-hero-copy,
  .manuals-book-copy {
    max-width: 760px;
  }

  .manuals-hero-books {
    max-width: 620px;
  }

  .manuals-silver-section .manuals-book-copy,
  .manuals-silver-section .manuals-book-media {
    grid-column: 1;
    grid-row: auto;
  }

  .manuals-book-copy {
    order: 1;
  }

  .manuals-book-media {
    order: 2;
  }

  .manuals-book-copy h2,
  .manuals-compare-section h2,
  .manuals-final-inner h2 {
    font-size: clamp(38px, 10vw, 62px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .manuals-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .manuals-hero {
    padding: 138px 22px 82px;
  }

  .manuals-authority-section,
  .manuals-book-section,
  .manuals-compare-section,
  .manuals-final-section {
    padding: 84px 22px;
  }

  .manuals-hero-inner,
  .manuals-book-layout {
    gap: 44px;
  }

  .manuals-hero-copy h1,
  .manuals-book-copy h2,
  .manuals-compare-section h2,
  .manuals-final-inner h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .manuals-hero-books {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .manuals-book-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .manuals-detail-cover {
    width: min(100%, 240px);
  }

  .manuals-compare-card {
    padding: 26px;
  }

  .manuals-final-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .manuals-final-actions .button {
    width: 100%;
    max-width: 280px;
  }
}
