/* Print.Management — shared site styles
   Brand: The Dot direction · ink + paper + signal red */

:root {
  --ink: #111110;
  --paper: #f5f1e8;
  --paper-2: #ece7db;
  --signal: #e24e1b;
  --rule: rgba(17, 17, 16, 0.14);
  --muted: #55514a;
  --muted-2: #7a746a;
  --nav-h: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Layout ─── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Type ─── */
.mono {
  font-family: 'JetBrains Mono', monospace;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.eyebrow.signal {
  color: var(--signal);
}

.serif {
  font-family: 'Newsreader', serif;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 0.98;
  font-weight: 700;
}

.h-display {
  font-size: clamp(56px, 7vw, 112px);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.h-1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.h-2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.02;
}

.h-3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  font-family: 'Newsreader', serif;
  font-size: clamp(20px, 1.7vw, 26px);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--muted);
}

p {
  margin: 0 0 14px;
  color: var(--ink);
      font-size: 16px;
}

/* ─── Nav ─── */
.nav {
  position: relative;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  display: block;
  padding: 24px 0;
}

.collapse.show {
  height: 100%!important;
} 

.nav-item {
  position: relative;
  margin-left: 14px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar-brand{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 0px 0;
  color: var(--ink);
  transition: color .15s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--signal);
   position: relative;
}

.navbar-nav  .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  width: 100%;
  height: 2px;
  background: var(--signal);
}


.nav-link .arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  opacity: 0.5;
  transform: translateY(-1px);
}

.nav-cta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  transition: background .15s;
}

.nav-cta:hover {
  background: var(--signal);
  color: var(--paper)
}

.navbar-toggler {
    padding: 14px 7px;
    font-size: 14px;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

/* Dropdown */

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: -24px;
  min-width: 340px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .12s, transform .12s;
  box-shadow: 0 24px 48px rgba(17, 17, 16, 0.08);
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  transition: background .12s;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--paper-2);
}

.dropdown-item .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.dropdown-item .title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.dropdown-item .desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  transition: background .15s, transform .15s;
  cursor: pointer;
  border: none;
  border-radius: 0;
  white-space: nowrap;
}

.btn:hover {
  background: var(--signal);
  color: var(--paper);
}

.btn.signal {
  background: var(--signal);
}

.btn.signal:hover {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn .arrow {
  transition: transform .15s;
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ─── Sections ─── */
.section {
  padding: 96px 0;
  overflow: hidden;
}

.section.tight {
  padding: 64px 0 !important;
}

.section.ink {
  background: var(--ink);
  color: var(--paper);
}

.section.ink .eyebrow {
  color: rgba(245, 241, 232, 0.6);
}

.section.ink .lead {
  color: rgba(245, 241, 232, 0.75);
}

.section.signal-bg {
  background: var(--signal);
  color: var(--paper);
}

/* Section index marker */
.section-index {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.section-index .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.section-index .signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.section.ink .section-index {
  border-top-color: rgba(245, 241, 232, 0.15);
}

/* HERO SECTION */
.hero-main {
  padding: 100px 0 120px;
}

.hero-eyebrow {
  margin-bottom: 40px;
}

.hero-title {
  max-width: 16ch;
}

.hero-highlight {
  font-weight: 400;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: end;
}

.hero-text {
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

/* SECTION BORDERS */
.stats-grid {
  gap: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  border-bottom: 1px solid rgba(245, 241, 232, 0.2);
}

.stat-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(245, 241, 232, 0.15);
}

.stat-item:last-child{
  border-right: 0px;
}

.stat-item-last {
  border-right: none;
}

.stat-label {
  color: rgba(245, 241, 232, 0.6);
}

.stat-value {
  margin-top: 10px;
}

.stat-accent {
  font-weight: 400;
}

.stat-desc {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.65);
  margin-top: 6px;
}


/* SECTION BACKGROUND */
.how-section {
  background: var(--paper-2);
}

.how-title {
  margin-bottom: 48px;
}

.how-step {
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--signal);
      font-weight: 700;
}

.how-heading {
  margin-bottom: 10px;
}

.how-text {
  font-size: 14px;
  color: var(--muted);
}

.how-cta {
  margin-top: 48px;
}


/* TOP GRID */
.what-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.what-highlight {
  font-weight: 400;
}

.what-text {
  max-width: 44ch;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* EYEBROW */
.why-eyebrow {
  color: rgba(245, 241, 232, 0.9);
  margin-bottom: 24px;
}


.why-title {
  color: var(--paper);
  font-size: clamp(48px, 6vw, 88px);
}


.why-highlight {
  font-weight: 400;
  color: var(--ink);
}


.why-content {
  color: var(--paper);
}


.why-text {
  color: rgba(245, 241, 232, 0.92);
}


.why-btn {
  background: var(--ink);
  margin-top: 24px;
}

.why-btn:hover {
  background-color:var(--paper);
  color: var(--ink);
}

/* ROW LAYOUT */
.iso-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* EYEBROW */
.iso-eyebrow {
  margin-bottom: 10px;
}

.iso-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.iso-badge {
  border: 1px solid var(--ink);
  padding: 10px 14px;
}


/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer li a {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.85);
  transition: color .12s;
}

.footer li a:hover {
  color: var(--signal);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  font-size: 13px;
}

.footer-legal a {
  color: rgba(245, 241, 232, 0.85);
  transition: color .12s;
}

.footer-legal a:hover {
  color: var(--signal);
}

.footer-legal .sep {
  color: rgba(245, 241, 232, 0.3);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(245, 241, 232, 0.55);
  letter-spacing: 0.05em;
}

.footer-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.footer-top-line h2 {
  font-size: clamp(36px, 4vw, 64px);
  max-width: 14ch;
}

/* ─── Cards ─── */
.card {
  border: 1px solid var(--rule);
  padding: 32px;
  background: var(--paper);
  transition: background .15s, border-color .15s;
  border-radius: 0;
}

.card:hover {
  border-color: var(--ink);
}

.card-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(245, 241, 232, 0.15);
}

/* ─── Tables (data-forward) ─── */
table.data {
  width: 100%;
  border-collapse: collapse;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  overflow-x: scroll;
}

table.data th {
  text-align: left;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 16px 14px 0;
  opacity: 0.65;
  border-bottom: 1px solid var(--ink);
}

table.data th.n,
table.data td.n {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

table.data td {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}

table.data td.hl {
  color: var(--signal);
  font-weight: 700;
}

table.data.ink th,
table.data.ink td {
  border-bottom-color: rgba(245, 241, 232, 0.15);
}

table.data.ink th {
  border-bottom-color: rgba(245, 241, 232, 0.5);
}

/* Small disclaimer line under tables */
.table-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 120px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-breadcrumb .sep {
  opacity: 0.4;
}

.hero-breadcrumb a {
  color: var(--muted);
}

.hero-breadcrumb a:hover {
  color: var(--signal);
}

/* ─── Grid ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Utilities ─── */
.text-signal {
  color: var(--signal);
}

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

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.title-highlight {
  display: inline-block;
  margin-left: 0.14em;
}

.h-display .title-highlight {
  margin-left: 0 !important;
}

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

/* Dotted separator */
.dot-sep {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
}

.dot-sep span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

/* ─── Forms ─── */

.contact-form {
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.field {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field.right-border {
  border-right: 1px solid var(--rule);
  padding-right: 32px;
}

.field.left-pad {
  padding-left: 32px;
}

.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.field label .req {
  color: var(--signal);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  border: none;
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 4px 0 8px;
  border-bottom: 1px solid transparent;
  outline: none;
  transition: border-color .15s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
  font-weight: 400;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--signal);
}

.field textarea {
  resize: vertical;
  height: 150px;
  line-height: 1.45;
}

/* Option pills (radios as cards) */
.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.pill {
  cursor: pointer;
  position: relative;
  border: 1px solid var(--rule);
  padding: 20px 22px;
  background: var(--paper);
  transition: background .12s, border-color .12s;
}

.pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.pill .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--signal);
  margin-bottom: 10px;
  display: block;
}

.pill .ttl {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.pill:hover {
  border-color: var(--ink);
}

.pill:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.pill:has(input:checked) .num {
  color: var(--signal);
}

/* Checkbox row */
.check-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.form-grid .check-row {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .check-row {
    align-items: center;
  }

  .check-row input[type="checkbox"] {
    margin-top: 0;
  }
}

.check-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
  border: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  position: relative;
}

.check-row input[type="checkbox"]:checked {
  background: var(--signal);
  border-color: var(--signal);
}

.check-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-row a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.check-row a:hover {
  color: var(--signal);
}

/* Contact details strip */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

.contact-cell {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--rule);
}

.contact-cell:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
}

.contact-cell:nth-child(2) {
  padding-left: 28px;
}

@media (max-width: 920px) {



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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 12px;
  }

  /* .hero {
    padding: 50px 0 80px;
  } */

  .section {
    padding: 64px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    width: 100%;
    display: flow;
  }

  .field.right-border {
    border-right: none;
    padding-right: 0;
  }

  .field.left-pad {
    padding-left: 0;
  }

  .pills {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-cell,
  .contact-cell:last-child,
  .contact-cell:nth-child(2) {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
}


/* SECTION BACKGROUND */
.method-section {
  background: var(--paper-2);
}

.method-title {
  margin-bottom: 56px;
  max-width: 20ch;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.method-item {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}

.method-item:last-child {
  border-right: none;
}

.method-step {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--signal);
  font-weight: 600;
}

.method-heading {
  margin-bottom: 12px;
}

.method-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* INDEX COLOR */
.what-index {
  color: rgba(245, 241, 232, 0.6);
}

.what-head {
  margin-bottom: 56px;
}

.what-lead {
  color: rgba(245, 241, 232, 0.75);
}

.light {
  font-weight: 400;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.what-item {
  padding: 32px 24px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.2);
  border-right: 1px solid rgba(245, 241, 232, 0.2);
}

.what-item:nth-child(2n) {
  border-right: none;
}

.what-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.what-step {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--signal);
  font-weight: 600;
}

.what-item p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.5;
}

/* INDEX */
.deal-index {
  border-top-color: rgba(245, 241, 232, 0.3);
}

.deal-index .num {
  color: rgba(245, 241, 232, 0.85);
}

/* DOT */
.deal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

/* GRID */
.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* TITLE */
.deal-title {
  color: var(--paper);
  font-size: clamp(44px, 6vw, 88px);
}

/* HIGHLIGHT */
.highlight {
  font-weight: 400;
  color: var(--ink);
}

.highlight-bold {
  font-weight: 700;
  color: var(--ink);
}

/* CONTENT */
.deal-lead {
  color: rgba(245, 241, 232, 0.95);
  margin-bottom: 32px;
  max-width: 600px;
  width: 100%;
}

/* TABLE */
.deal-table {
  color: var(--paper);
}

.deal-table thead {
  color: rgba(245, 241, 232, 0.8);
}

/* BUTTON */
.deal-btn {
  background: var(--ink);
  margin-top: 32px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.table-wrap table {
  min-width: 600px;
}

/* Inner Banner */

.scam-hero {
  padding: 100px 0 120px;
}

.hero-eyebrow {
  margin-bottom: 32px;
}

.inner-banner .hero-title {
  max-width: 20ch;
}

.light {
  font-weight: 400;
}

.hero-lead {
  max-width: 55ch;
  margin-top: 56px;
}


/* INDEX COLOR */
.why-index {
  color: rgba(245, 241, 232, 0.6);
}

.why-grid {
  gap: 48px;
}

.why-eyebrow {
  margin-bottom: 12px;
}

.why-text {
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(245, 241, 232, 0.8);
  font-size: 17px;
}

.why-content p {
  color: rgba(245, 241, 232, 0.92);
  font-size: 24px;
  line-height: 1.35;
      letter-spacing: -0.01em;
  max-width: 48ch;
  font-family: 'Newsreader', serif;
  font-style: italic;
}

.wy-b-content {
  max-width: 520px;
  width: 100%;
  overflow: hidden;
}

.p.why-text {
  color: rgba(245, 241, 232, 0.92);
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
}


/* HEAD GRID */
.kick-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}

.light {
  font-weight: 400;
}

.kick-lead {
  max-width: 50ch;
}

.kick-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  margin-bottom: 48px;
}

.kick-card {
  padding: 40px;
  border-right: 1px solid var(--ink);
}

.kick-card:last-child {
  border-right: none;
}

.kick-step {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--signal);
  font-weight: 600;
}

.kick-value {
  margin-bottom: 16px;
}

.kick-text {
  color: var(--muted);
}

.kick-table .hl {
  font-weight: 700;
}


/* Section background */
.section-math {
  background: var(--paper-2);
}

.math-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}

/* .math-top .lead {
  max-width: 50ch;
} */

.math-bars {
  margin-bottom: 56px;
}

.math-bar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.math-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  width: 110px;
}

.math-bar {
  flex: 1;
  display: flex;
  height: 44px;
  position: relative;
}

.bar {
  display: flex;
  align-items: center;
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
}

.bar-signal {
  background: var(--signal);
  width: 24%;
  padding-left: 16px;
  font-weight: 700;
  font-size: 13px;
}

.bar-ink {
  background: var(--ink);
  width: 24%;
  padding-left: 14px;
  font-weight: 700;
  font-size: 11px;
}

.bar-muted {
  background: var(--muted);
  width: 28%;
  padding-left: 12px;
  font-size: 10px;
}

.bar-final {
  background: var(--signal);
  width: 48%;
  padding-left: 12px;
  font-weight: 700;
  font-size: 12px;
}

/* Top grid */
.basket-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}

.basket-top .lead {
  color: rgba(245,241,232,0.75);
  max-width: 50ch;
}

/* Highlight paragraph */
.basket-highlight {
  color: rgba(245,241,232,0.85);
  font-size: 17px;
  max-width: 70ch;
  margin-bottom: 40px;
}

.basket-highlight p,
.basket-highlight span,
.basket-highlight em,
.basket-highlight a,
.basket-highlight li {
  color: inherit;
}

.basket-highlight a {
  text-decoration-color: rgba(245,241,232,0.6);
}

.basket-highlight strong {
  color: var(--paper);
}

/* Breakdown section */
.basket-breakdown {
  margin: 24px 0 48px;
}

.basket-breakdown .eyebrow {
  color: rgba(245,241,232,0.6);
  margin-bottom: 14px;
}

/* Bar */
.basket-bar {
  display: flex;
  height: 96px;
  border: 1px solid rgba(245,241,232,0.3);
}

.basket-bar-left {
  width: 40%;
  background: rgba(245,241,232,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.basket-bar-right {
  width: 60%;
  background: var(--signal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  color: var(--paper);
}

.basket-bar .mono {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-top: 0;
  color: var(--paper);
}

.basket-bar-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.basket-quote {
  font-family: serif;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  max-width: 26ch;
  font-style: italic;
  color: var(--paper);
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section .h-display {
  color: var(--paper);
  max-width: 21ch;
  margin: 0 auto 24px;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.02em;
}

.cta-section .serif.italic {
  font-weight: 400;
  color: var(--ink);
}

.cta-section .lead {
  color: rgba(245,241,232,0.9);
  max-width: 50ch;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-primary-dark {
  background: var(--ink);
}

.cta-actions .btn-ghost-dark {
  border-color: var(--ink);
  color: var(--ink);
}


/* ISO section grid wrapper */
.iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.iso-item {
  padding: 32px 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}



.iso-heading {
  margin-bottom: 56px;
}


.iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.iso-item {
  padding: 36px 32px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.iso-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--signal);
  font-weight: 600;
}

.iso-code {
  font-weight: 700;
  margin-bottom: 8px;
}

.iso-title {
  opacity: 1;
  margin-bottom: 0;
  letter-spacing: 0;
  font-family: 'Inter Tight', sans-serif;
}

.iso-desc {
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
    margin-bottom: 0;
}



.sus-text {
  color: rgba(245,241,232,0.8);
  font-size: 17px;
}

.sus-text strong {
  color:var(--paper);
}

.sus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.sus-report {
  border: 1px solid rgba(245,241,232,0.25);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.sus-report .mono.text-signal {
  color: rgba(245,241,232,0.6);
}

.sus-title {
  font-size: clamp(32px, 3.6vw, 52px);
}

.principles-strip {
  background: var(--paper-2);
}

.principle-card {
  padding: 8px 0;
}

.principle-value {
  color: var(--signal);
  line-height: 1;
}

.principle-card h4 {
  margin: 12px 0 8px;
}

.principle-card p {
  color: var(--muted);
  margin: 0;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-label {
  margin-bottom: 14px;
}

.contact-link {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  color: inherit;
  text-decoration: none;
}

.contact-text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact-section .contact-layout,
.contact-section .container,
.section.contact-section {
  overflow: visible; /* must NOT be hidden/auto */
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start; /* IMPORTANT */
}

.contact-left {
  position: sticky;
  top: 104px;
  align-self: start; /* IMPORTANT for grid */
}

.contact-muted {
  color: var(--muted);
  margin-top: 24px;
  max-width: 32ch;
}

.section.contact-section {
  padding-top: 50px;
}

.contact-email-box {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.contact-email-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-email {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

/* footer area */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 44ch;
}

/* optional label */
.optional {
  color: var(--muted-2);
  font-weight: 400;
}


.section-head {
  margin-bottom: 56px;
}



.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--signal);
  font-weight: 700;
  margin-bottom: 20px;
}

.card .h-3 {
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: var(--muted);
}



/* Right content */
.print-content p {
  margin-bottom: 16px;
}

.ink .print-content p {
   color: rgba(245, 241, 232, 0.8);
   font-size: 17px;
}

.ink .print-content p strong {
   color: var(--paper);
}

.ink .print-tags span {
      border: 1px solid rgba(245, 241, 232, 0.4);
}

/* Tags */
.print-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.print-tags span {
  border: 1px solid var(--ink);
  padding: 8px 12px;
}

/* Section index (ink variation) */
.ink-muted {
  color: rgba(245, 241, 232, 0.6);
}

/* Content (dark section) */
.ink-content p {
  color: rgba(245, 241, 232, 0.8);
  font-size: 17px;
}

/* Strong text override */
.ink-strong {
  color: var(--paper);
}

/* Tags (dark version) */
.ink-tags span {
  border: 1px solid rgba(245, 241, 232, 0.4);
  color: var(--paper);
}

/* Reuse base styles from digital */


.print-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.print-tags span {
  padding: 8px 12px;
}

/* Section alt background */
.section-alt {
  background: var(--paper-2);
}

/* Heading */
.finishing-title {
  max-width: 20ch;
  margin-bottom: 40px;
}

/* Grid item (assuming similar to ISO/cards) */
.fin-card {
  padding: 32px 24px;
  border: 1px solid var(--rule);
}

/* Optional typography inside cards */
.fin-card .title {
  font-weight: 600;
  margin-bottom: 8px;
}

.fin-card .desc {
  font-size: 14px;
  color: var(--muted);
}

.fin-item {
  border-top: 1px solid var(--ink);
  padding: 24px 0;
}

.fin-item .mono {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.fin-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.fin-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}


.branded-section {
  align-items: start;
}

.branded-text p {
  color: rgba(245, 241, 232, 0.8);
  font-size: 17px;
  margin-bottom: 16px;
}

.branded-text p:last-child {
  margin-bottom: 0;
}
.sustainability-block {
  align-items: start;
}

.sustainability-text p {
  color: rgba(245, 241, 232, 0.8);
  font-size: 17px;
  margin-bottom: 16px;
}

.sustainability-text p:last-child {
  margin-bottom: 0;
}


.mono p {
  font-size:11px;
  letter-spacing:0.12em;
  color:var(--muted);
  margin-top:32px;
}

.privacy-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}

.privacy-item p {
  color: var(--muted);
    margin: 0;
}

.privacy-item--last {
  border-bottom: 1px solid var(--rule);
}

.privacy-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  padding-top: 4px;
  color: var(--signal)!important;
}

.privacy-content h3 {
  margin-bottom: 12px;
}


