:root {
  --navy: #072b4b;
  --navy-2: #0c3e6b;
  --teal: #16a889;
  --teal-soft: #87ead5;
  --sky: #dfecef;
  --sky-2: #edf5f7;
  --yellow: #ffe269;
  --ink: #142238;
  --muted: #607083;
  --line: #d3e0e4;
  --white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(7, 43, 75, .07);
  --shadow-md: 0 22px 50px rgba(7, 43, 75, .12);
  --shadow-lg: 0 30px 80px rgba(7, 43, 75, .20);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--sky-2);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(211, 224, 228, .82);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

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

.brand-note {
  max-width: 150px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #415267;
  font-size: 12px;
  font-weight: 600;
}

.header-nav a { transition: color .2s ease; }
.header-nav a:hover { color: var(--teal); }

.header-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  color: var(--navy);
  border-color: rgba(7, 43, 75, .18);
  white-space: nowrap;
}

.header-cta:hover { border-color: var(--teal); color: var(--teal); }

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 24px rgba(255, 226, 105, .18); }
.btn-primary:hover { background: #ffeb91; box-shadow: 0 15px 30px rgba(255, 226, 105, .28); }
.btn-light { color: var(--teal); background: var(--white); box-shadow: 0 12px 28px rgba(4, 20, 34, .10); }
.btn-light:hover { box-shadow: 0 16px 34px rgba(4, 20, 34, .15); }
.btn-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.24); }
.btn-ghost:hover { border-color: var(--teal-soft); background: rgba(255,255,255,.08); }
.hero-actions .btn-ghost,
.final-actions .btn-ghost { color: var(--navy); background: var(--teal-soft); border-color: transparent; box-shadow: 0 12px 24px rgba(135, 234, 213, .16); }
.hero-actions .btn-ghost:hover,
.final-actions .btn-ghost:hover { background: #a1f4e1; border-color: transparent; box-shadow: 0 15px 30px rgba(135, 234, 213, .24); }
.btn-wide { width: 100%; }
.btn-arrow { font-size: 18px; line-height: 0; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: var(--navy);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 3%, rgba(135, 234, 213, .18), transparent 25%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.hero::before {
  position: absolute;
  right: -14%;
  bottom: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(135,234,213,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(135,234,213,.055), 0 0 0 84px rgba(135,234,213,.03);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, black 0, transparent 82%);
  pointer-events: none;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
  min-height: 0;
  padding-top: 50px;
  padding-bottom: 26px;
}

.hero-left { position: relative; display: flex; min-height: 0; flex-direction: column; }
.hero-copy { max-width: 760px; }

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .8;
  content: "";
}

.badge {
  padding: 10px 13px;
  color: var(--navy);
  letter-spacing: .055em;
  background: var(--yellow);
  border-radius: 999px;
}

.badge::before { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; content: ""; }

.hero-research-name { max-width: 520px; margin-top: 14px; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.4; }

.hero h1 {
  max-width: 760px;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(45px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 em { color: var(--teal-soft); font-style: normal; }

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.52;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-width: 510px;
  margin-top: 27px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.065);
  font-size: 11px;
  font-weight: 600;
}

.hero-point::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(22,168,137,.18);
  content: "";
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.hero-disclaimer {
  position: static;
  max-width: 430px;
  margin-top: 15px;
  color: rgba(255,255,255,.54);
  font-size: 10px;
  line-height: 1.45;
}

.hero-assets {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  height: 156px;
  min-height: 156px;
  margin-top: 12px;
  overflow: visible;
}

.hero-assets-inner {
  display: flex;
  min-height: 276px;
  align-items: flex-end;
  gap: 12px;
  padding-left: 18px;
  transform: scale(.50);
  transform-origin: left top;
}

.preview-label {
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pdf-preview {
  position: relative;
  z-index: 2;
  width: 218px;
  min-height: 276px;
  flex: 0 0 218px;
  padding: 34px 22px 18px;
  overflow: hidden;
  color: var(--navy);
  background: linear-gradient(150deg, #ffffff, #f2f8f8);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 13px;
  box-shadow: 16px 16px 0 rgba(135,234,213,.20), var(--shadow-lg);
  transform: rotate(-4.5deg);
}

.pdf-preview::before {
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(22,168,137,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(22,168,137,.06), 0 0 0 44px rgba(22,168,137,.04);
  content: "";
}

.pdf-preview .preview-label { color: var(--teal); }

.pdf-title {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin-top: 22px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.pdf-subtitle {
  position: relative;
  z-index: 1;
  max-width: 185px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.pdf-chart {
  position: relative;
  z-index: 1;
  height: 52px;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(211,224,228,.5) 1px, transparent 1px);
  background-size: 100% 17px;
}

.pdf-chart::before {
  position: absolute;
  right: 13px;
  bottom: 9px;
  left: 8px;
  height: 28px;
  border-top: 2px solid var(--teal);
  border-radius: 50%;
  transform: skewY(-10deg) rotate(-1deg);
  content: "";
}

.pdf-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.pdf-foot strong { color: var(--navy); font-size: 15px; }

.excel-preview {
  position: relative;
  z-index: 3;
  width: 286px;
  min-height: 198px;
  flex: 0 0 286px;
  margin-bottom: 13px;
  padding: 34px 15px 13px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(211,224,228,.9);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3.3deg) translateX(-26px);
}

.excel-preview .preview-label { color: var(--navy-2); }

.excel-toolbar {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.excel-toolbar i { width: 7px; height: 7px; border-radius: 2px; background: #d4e4e4; }
.excel-toolbar i:first-child { background: var(--teal); }

.excel-table { border: 1px solid #dce7e9; border-radius: 5px; overflow: hidden; }
.excel-row { display: grid; grid-template-columns: 1.45fr .7fr .7fr; min-height: 22px; }
.excel-row span { padding: 4px 6px; border-right: 1px solid #dce7e9; border-bottom: 1px solid #dce7e9; color: var(--muted); font-size: 8px; line-height: 1.2; }
.excel-row span:last-child { border-right: 0; }
.excel-row:last-child span { border-bottom: 0; }
.excel-row.is-head span { color: var(--navy); background: #edf5f7; font-weight: 700; }
.excel-row.is-total span { color: var(--navy); background: rgba(135,234,213,.22); font-weight: 700; }
.excel-row .num { text-align: right; }
.excel-tag { display: inline-flex; margin-top: 11px; padding: 5px 7px; color: var(--navy); background: var(--yellow); border-radius: 5px; font-size: 8px; font-weight: 700; }

.download-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.download-card h2 { margin-top: 9px; font-size: 23px; letter-spacing: -.045em; line-height: 1.08; }
.download-card .form-lead { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.42; }

.form-eyebrow {
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 17px;
  padding: 4px;
  background: var(--sky-2);
  border-radius: 10px;
}

.delivery-button {
  min-height: 37px;
  padding: 0 7px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
}

.delivery-button.is-active { color: var(--navy); background: var(--white); box-shadow: 0 4px 10px rgba(7,43,75,.08); }

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.field { display: grid; gap: 5px; }
.field-wide { grid-column: 1 / -1; }
.field label, .field > span { color: #516277; font-size: 10px; font-weight: 600; }
.field input, .field select {
  width: 100%;
  min-height: 41px;
  padding: 0 11px;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #d2e0e4;
  border-radius: 8px;
  outline: 0;
  font-size: 11px;
}

.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 14px) 18px, calc(100% - 10px) 18px; background-repeat: no-repeat; background-size: 4px 4px, 4px 4px; }
.field input::placeholder { color: #9aa7b4; }
.field input:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,168,137,.10); }
.field.has-error input, .field.has-error select { border-color: #d45b61; background: #fff8f8; }
.field-error { display: none; color: #b84950; font-size: 9px; line-height: 1.25; }
.field.has-error .field-error { display: block; }

.consent {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.consent input { width: 15px; height: 15px; margin: 0; accent-color: var(--teal); }
.consent a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.consent.has-error { color: #b84950; }

.form-submit { margin-top: 14px; }
.form-note { margin-top: 9px; color: var(--muted); font-size: 9px; line-height: 1.35; text-align: center; }
.form-status { min-height: 15px; margin-top: 8px; font-size: 10px; line-height: 1.35; text-align: center; }
.form-status[data-state="error"] { color: #b84950; }
.form-status[data-state="success"] { color: var(--teal); font-weight: 700; }

.success-state {
  display: none;
  padding: 22px 5px 9px;
  text-align: center;
}

.success-state .success-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  place-items: center;
  color: var(--navy);
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
}

.success-state h3 { font-size: 20px; letter-spacing: -.04em; line-height: 1.08; }
.success-state p { margin-top: 8px; color: var(--muted); font-size: 11px; }
.download-card.is-success .form-content { display: none; }
.download-card.is-success .success-state { display: block; }

.hero-bottom {
  position: relative;
  z-index: 1;
  padding-bottom: 22px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.hero-bottom-inner { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 14px; }

.section { padding: 105px 0; }
.section-soft { background: var(--sky-2); }
.section-white { background: var(--white); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 40px;
}

.section-kicker {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2,
.final-copy h2,
.variant-heading h1 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 57px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1;
}

.section-head > p {
  max-width: 335px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.inside-card {
  position: relative;
  min-height: 177px;
  padding: 23px 22px 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(211,224,228,.74);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.inside-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.inside-card::after { position: absolute; right: -28px; bottom: -42px; width: 105px; height: 105px; border: 1px solid rgba(22,168,137,.14); border-radius: 50%; content: ""; }
.inside-number { color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.inside-icon { float: right; display: grid; width: 31px; height: 31px; place-items: center; color: var(--teal); background: rgba(135,234,213,.18); border-radius: 9px; font-size: 13px; font-weight: 700; }
.inside-card h3 { max-width: 230px; margin-top: 25px; color: var(--navy); font-size: 17px; letter-spacing: -.04em; line-height: 1.16; }
.inside-card p { max-width: 270px; margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.42; }

.inside-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 14px;
  padding: 21px 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.inside-callout strong { display: block; font-size: 16px; letter-spacing: -.035em; }
.inside-callout p { max-width: 690px; margin-top: 4px; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.45; }
.inside-callout .btn { white-space: nowrap; }

.object-section { background: var(--white); }
.object-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.object-card { min-height: 212px; padding: 21px 17px; background: var(--sky-2); border: 1px solid rgba(211,224,228,.78); border-radius: var(--radius-md); }
.object-card:nth-child(2), .object-card:nth-child(4) { background: #f9fbfa; }
.object-index { display: flex; width: 28px; height: 28px; align-items: center; justify-content: center; color: var(--navy); background: var(--teal-soft); border-radius: 8px; font-size: 10px; font-weight: 700; }
.object-card h3 { margin-top: 24px; color: var(--navy); font-size: 15px; letter-spacing: -.035em; line-height: 1.16; }
.object-card p { margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.42; }
.object-card b { display: block; margin-top: 16px; color: var(--teal); font-size: 9px; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }

.method-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.method-section::before { position: absolute; right: -190px; top: -210px; width: 570px; height: 570px; border: 1px solid rgba(135,234,213,.17); border-radius: 50%; box-shadow: 0 0 0 36px rgba(135,234,213,.05), 0 0 0 72px rgba(135,234,213,.03); content: ""; }
.method-section .section-kicker { color: var(--teal-soft); }
.method-section .section-head h2 { color: var(--white); }
.method-section .section-head > p { color: rgba(255,255,255,.64); }

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.method-steps::before { position: absolute; top: 22px; right: 9%; left: 9%; height: 1px; background: rgba(135,234,213,.4); content: ""; }
.method-step { position: relative; z-index: 1; padding: 0 12px 18px; text-align: center; }
.method-dot { display: grid; width: 45px; height: 45px; margin: 0 auto 21px; place-items: center; color: var(--navy); background: var(--teal-soft); border: 6px solid var(--navy-2); border-radius: 50%; font-size: 11px; font-weight: 700; }
.method-step h3 { color: var(--white); font-size: 15px; letter-spacing: -.035em; line-height: 1.12; }
.method-step p { max-width: 168px; margin: 8px auto 0; color: rgba(255,255,255,.60); font-size: 10px; line-height: 1.42; }
.method-bottom { display: flex; align-items: center; gap: 15px; margin-top: 31px; padding: 17px 20px; color: var(--navy); background: var(--yellow); border-radius: var(--radius-sm); }
.method-bottom strong { font-size: 13px; }
.method-bottom span { color: rgba(20,34,56,.7); font-size: 11px; }

.examples-section { background: var(--sky-2); }
.examples-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; align-items: stretch; }
.examples-intro { position: relative; min-height: 300px; padding: 32px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--navy-2)); border-radius: var(--radius-lg); }
.examples-intro::after { position: absolute; right: -80px; bottom: -95px; width: 265px; height: 265px; border: 1px solid rgba(135,234,213,.25); border-radius: 50%; box-shadow: 0 0 0 28px rgba(135,234,213,.05), 0 0 0 56px rgba(135,234,213,.03); content: ""; }
.examples-intro .eyebrow { position: relative; z-index: 1; }
.examples-intro h2 { position: relative; z-index: 1; max-width: 390px; margin-top: 20px; font-size: 36px; letter-spacing: -.06em; line-height: 1.02; }
.examples-intro p { position: relative; z-index: 1; max-width: 370px; margin-top: 18px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.48; }
.examples-intro .mini-result { position: absolute; right: 28px; bottom: 28px; z-index: 1; padding: 9px 11px; color: var(--navy); background: var(--yellow); border-radius: 8px; font-size: 9px; font-weight: 700; }
.examples-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.example-card { min-height: 142px; padding: 20px; background: var(--white); border: 1px solid rgba(211,224,228,.76); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.example-index { display: flex; width: 25px; height: 25px; align-items: center; justify-content: center; color: var(--teal); background: rgba(135,234,213,.2); border-radius: 7px; font-size: 9px; font-weight: 700; }
.example-card h3 { margin-top: 17px; color: var(--navy); font-size: 14px; letter-spacing: -.03em; line-height: 1.16; }
.example-card p { margin-top: 7px; color: var(--muted); font-size: 10px; line-height: 1.4; }

.trust-section { background: var(--white); }
.trust-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 55px; align-items: start; }
.trust-copy h2 { max-width: 450px; margin-top: 12px; color: var(--navy); font-size: clamp(35px, 4vw, 51px); letter-spacing: -.065em; line-height: 1; }
.trust-copy > p { max-width: 430px; margin-top: 19px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.source-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.source-meta div { padding-top: 11px; border-top: 1px solid var(--line); }
.source-meta strong { display: block; color: var(--navy); font-size: 12px; }
.source-meta span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.status-stack { display: grid; gap: 10px; }
.status-card { display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: start; padding: 19px 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--sky-2); }
.status-card:nth-child(2) { background: #f8fcfa; }
.status-card:nth-child(3) { background: #fffaf0; }
.status-pill { display: inline-flex; align-self: start; justify-content: center; padding: 7px 8px; border-radius: 7px; color: var(--navy); background: var(--teal-soft); font-size: 9px; font-weight: 700; line-height: 1.25; text-align: center; }
.status-card:nth-child(2) .status-pill { background: #b9eee2; }
.status-card:nth-child(3) .status-pill { background: var(--yellow); }
.status-card h3 { color: var(--navy); font-size: 14px; letter-spacing: -.03em; line-height: 1.15; }
.status-card p { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.42; }

.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.signal-card { padding: 18px; background: var(--navy); border-radius: var(--radius-md); color: var(--white); }
.signal-card:nth-child(2) { background: var(--navy-2); }
.signal-card:nth-child(3) { color: var(--navy); background: var(--teal-soft); }
.signal-card strong { display: block; font-size: 29px; letter-spacing: -.06em; line-height: 1; }
.signal-card h3 { margin-top: 10px; font-size: 11px; line-height: 1.25; }
.signal-card small { display: block; margin-top: 7px; color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.35; }
.signal-card:nth-child(3) small { color: rgba(20,34,56,.62); }

.final-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #062944, var(--navy-2));
}

.final-section::after { position: absolute; left: -190px; bottom: -260px; width: 630px; height: 630px; border: 1px solid rgba(135,234,213,.17); border-radius: 50%; box-shadow: 0 0 0 40px rgba(135,234,213,.05); content: ""; }
.final-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 405px; gap: 60px; align-items: center; }
.final-copy h2 { max-width: 650px; color: var(--white); }
.final-copy > p { max-width: 560px; margin-top: 20px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.48; }
.final-list { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.final-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: 12px; }
.final-list li::before { display: grid; width: 19px; height: 19px; flex: 0 0 19px; place-items: center; color: var(--navy); background: var(--teal-soft); border-radius: 50%; content: "✓"; font-size: 11px; font-weight: 700; }
.final-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.final-card { padding: 25px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.final-card .file-label { color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.final-card h3 { margin-top: 10px; color: var(--navy); font-size: 21px; letter-spacing: -.05em; line-height: 1.08; }
.file-stack { display: grid; gap: 8px; margin-top: 20px; }
.file-row { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--sky-2); border-radius: 9px; }
.file-type { display: grid; width: 28px; height: 28px; place-items: center; color: var(--navy); background: var(--teal-soft); border-radius: 7px; font-size: 8px; font-weight: 700; }
.file-row strong { display: block; color: var(--navy); font-size: 10px; }
.file-row span:last-child { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.final-card .btn { margin-top: 19px; }
.final-card .small-note { margin-top: 10px; color: var(--muted); font-size: 9px; line-height: 1.4; text-align: center; }
.final-form-lead { margin-top: 17px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.final-card .form-fields { grid-template-columns: 1fr; gap: 9px; margin-top: 15px; }
.final-card .form-submit { margin-top: 14px; }

/* Thank-you page */
.thank-you-page { min-height: 100vh; background: var(--sky-2); }
.thank-you-shell { display: grid; min-height: calc(100vh - 78px); place-items: center; padding: 58px 0 82px; }
.thank-you-card { width: min(100%, 780px); padding: clamp(28px, 5vw, 56px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; }
.thank-you-card .badge { color: var(--navy); background: var(--teal-soft); }
.thank-you-card h1 { max-width: 640px; margin: 20px auto 0; color: var(--navy); font-size: clamp(42px, 6vw, 70px); letter-spacing: -.07em; line-height: .96; }
.thank-you-lead { max-width: 530px; margin: 18px auto 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.thank-you-files { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; text-align: left; }
.thank-you-file { display: grid; grid-template-columns: 35px 1fr; gap: 11px; align-items: center; padding: 13px; background: var(--sky-2); border-radius: 11px; }
.thank-you-file .file-type { width: 35px; height: 35px; }
.thank-you-file strong { display: block; color: var(--navy); font-size: 11px; }
.thank-you-file > span:last-child { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.thank-you-next { margin-top: 20px; padding: 15px 17px; color: var(--navy); background: rgba(135,234,213,.18); border: 1px solid rgba(22,168,137,.18); border-radius: 11px; font-size: 11px; line-height: 1.45; }
.thank-you-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 25px; }
.thank-you-actions .btn { min-width: 196px; }
.thank-you-actions .btn-ghost { color: var(--navy); border-color: rgba(7,43,75,.18); }
.thank-you-actions .btn-ghost:hover { border-color: var(--teal); background: rgba(135,234,213,.12); }
.thank-you-note { margin-top: 16px; color: var(--muted); font-size: 9px; line-height: 1.4; }

.footer { color: rgba(255,255,255,.68); background: #041e35; }
.footer-inner { display: grid; grid-template-columns: 1.1fr .9fr auto; gap: 28px; align-items: center; min-height: 112px; }
.footer-brand img { width: 106px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 8px; font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 10px; }
.footer-links a:hover { color: var(--teal-soft); }
.footer-contact { text-align: right; font-size: 10px; line-height: 1.45; }
.footer-note { padding: 13px 0 17px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 9px; line-height: 1.4; }

/* Variant board */
.variants-page { background: var(--sky-2); }
.variant-heading { padding: 76px 0 38px; }
.variant-heading h1 { max-width: 850px; }
.variant-heading p { max-width: 650px; margin-top: 17px; color: var(--muted); font-size: 15px; }
.variant-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.variant-nav a { padding: 9px 12px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 9px; font-size: 10px; font-weight: 700; }
.variant-nav a:hover { border-color: var(--teal); }
.variant-board { padding: 34px 0 92px; }
.variant-item { scroll-margin-top: 20px; margin-top: 20px; padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.variant-item:first-child { margin-top: 0; }
.variant-meta { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.variant-meta h2 { color: var(--navy); font-size: 22px; letter-spacing: -.045em; }
.variant-meta p { color: var(--muted); font-size: 11px; }
.variant-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 32px; min-height: 500px; margin-top: 20px; padding: 42px; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: 20px; }
.variant-hero .hero-copy { align-self: center; }
.variant-hero .hero-copy { height: auto; }
.variant-hero h3 { max-width: 615px; margin-top: 17px; color: var(--white); font-size: 48px; letter-spacing: -.065em; line-height: .98; }
.variant-hero .hero-lead { max-width: 500px; font-size: 14px; }
.variant-hero .hero-points { max-width: 420px; margin-top: 19px; }
.variant-hero .hero-actions { margin-top: 21px; }
.variant-hero .btn { min-height: 44px; font-size: 11px; }
.variant-form .download-card { align-self: center; }
.variant-preview .variant-preview-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 395px; }
.variant-preview .pdf-preview { transform: rotate(-5deg) scale(.9); }
.variant-preview .excel-preview { transform: rotate(4deg) translateX(-27px) scale(.9); }
.variant-telegram .telegram-preview { align-self: center; }
.variant-recommendation { display: inline-flex; margin-top: 12px; padding: 6px 8px; color: var(--navy); background: var(--yellow); border-radius: 6px; font-size: 9px; font-weight: 700; }
.telegram-preview { padding: 20px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
.telegram-header { display: flex; gap: 10px; align-items: center; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.telegram-avatar { display: grid; width: 35px; height: 35px; place-items: center; color: var(--white); background: #2ca6df; border-radius: 50%; font-size: 15px; font-weight: 700; }
.telegram-header strong { color: var(--navy); font-size: 12px; }
.telegram-header small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.telegram-message { max-width: 260px; margin-top: 15px; padding: 11px 12px; color: var(--ink); background: #f1f7f9; border-radius: 12px 12px 12px 3px; font-size: 10px; line-height: 1.4; }
.telegram-message.user { margin-left: auto; color: #13324b; background: #e3f4fc; border-radius: 12px 12px 3px 12px; }
.telegram-message b { display: block; margin-bottom: 3px; color: var(--teal); font-size: 9px; }
.telegram-preview .tg-button { width: 100%; min-height: 41px; margin-top: 14px; color: var(--white); background: var(--teal); border: 0; border-radius: 8px; font-size: 11px; font-weight: 700; }
.variant-note { margin-top: 13px; color: var(--muted); font-size: 10px; line-height: 1.45; }

/* Design system */
.system-page { background: var(--sky-2); }
.system-heading { padding: 72px 0 38px; }
.system-heading h1 { max-width: 700px; margin-top: 12px; color: var(--navy); font-size: clamp(40px, 5vw, 66px); letter-spacing: -.065em; line-height: .98; }
.system-heading p { max-width: 650px; margin-top: 17px; color: var(--muted); }
.system-section { padding: 40px 0 75px; }
.system-block { margin-top: 30px; }
.system-block:first-child { margin-top: 0; }
.system-block h2 { color: var(--navy); font-size: 22px; letter-spacing: -.045em; }
.swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 17px; }
.swatch { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.swatch-color { height: 68px; }
.swatch p { padding: 9px 10px; color: var(--navy); font-size: 10px; font-weight: 700; }
.swatch span { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 400; }
.type-board { display: grid; grid-template-columns: 1.15fr .85fr; gap: 17px; margin-top: 17px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.type-board h3 { color: var(--navy); font-size: 34px; letter-spacing: -.06em; line-height: 1; }
.type-board p { margin-top: 9px; color: var(--muted); font-size: 11px; }
.type-sizes { display: grid; gap: 10px; }
.type-sizes div { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.type-sizes strong { color: var(--navy); font-size: 13px; }
.type-sizes span { color: var(--muted); font-size: 10px; }
.component-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 17px; }
.component-panel { padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.component-panel h3 { color: var(--navy); font-size: 16px; }
.button-samples { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 19px; }
.field-sample { display: grid; gap: 6px; margin-top: 19px; }
.field-sample label { color: var(--muted); font-size: 10px; font-weight: 600; }
.field-sample input { min-height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 8px; }
.field-sample .is-error { border-color: #d45b61; background: #fff8f8; }
.sample-error { color: #b84950; font-size: 9px; }
.card-samples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 19px; }
.sample-card { min-height: 102px; padding: 13px; background: var(--sky-2); border: 1px solid var(--line); border-radius: 11px; }
.sample-card strong { display: block; color: var(--teal); font-size: 10px; }
.sample-card h4 { margin-top: 14px; color: var(--navy); font-size: 12px; letter-spacing: -.03em; }
.sample-card.dark { color: var(--white); background: var(--navy); border-color: transparent; }
.sample-card.dark h4 { color: var(--white); }
.states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 17px; }
.state { min-height: 145px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.state-label { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.state h3 { margin-top: 15px; color: var(--navy); font-size: 14px; }
.state p { margin-top: 6px; font-size: 10px; line-height: 1.4; }
.state.error p { color: #b84950; }
.state.success { border-color: rgba(22,168,137,.35); background: #f4fffc; }
.state.success p { color: var(--teal); font-weight: 600; }

@media (max-width: 1100px) {
  :root { --container: 920px; }
  .header-nav { gap: 15px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; }
  .hero-assets { padding-left: 0; transform: scale(.92); transform-origin: left bottom; }
  .object-grid { grid-template-columns: repeat(3, 1fr); }
  .object-card { min-height: 180px; }
  .trust-layout { gap: 35px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 40px, 620px); }
  .header-inner { min-height: 70px; }
  .brand-note, .header-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .header-nav.is-open { position: absolute; top: 70px; right: 20px; left: 20px; display: grid; gap: 0; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); }
  .header-nav.is-open a { padding: 12px 10px; border-bottom: 1px solid var(--line); }
  .header-nav.is-open a:last-child { border-bottom: 0; }
  .hero-shell { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding-top: 43px; }
  .hero-left { display: contents; min-height: 0; }
  .hero-copy { max-width: none; height: auto; }
  .hero-disclaimer { position: static; max-width: none; margin-top: 15px; }
  .hero h1 { max-width: 680px; font-size: clamp(42px, 9vw, 64px); }
  .hero-lead { max-width: none; }
  .hero-points { max-width: 560px; }
  .hero-actions .btn { flex: 1; }
  .hero-assets { order: 3; min-height: 276px; margin-top: 10px; height: auto; }
  .hero-assets { position: relative; right: auto; bottom: auto; left: auto; }
  .hero-assets-inner { min-height: 276px; align-items: flex-end; justify-content: center; padding-left: 0; transform: none; }
  .download-card { order: 2; max-width: 560px; margin: 0 auto; }
  .hero-bottom-inner { display: block; }
  .hero-bottom-inner span + span { display: block; margin-top: 5px; }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head > p { margin-top: 16px; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-callout { grid-template-columns: 1fr; gap: 15px; }
  .inside-callout .btn { justify-self: start; }
  .method-steps { grid-template-columns: 1fr; gap: 8px; }
  .method-steps::before { top: 19px; right: auto; bottom: 19px; left: 22px; width: 1px; height: auto; }
  .method-step { display: grid; grid-template-columns: 45px 1fr; column-gap: 18px; padding: 0 0 12px; text-align: left; }
  .method-dot { grid-row: span 2; margin: 0; }
  .method-step p { max-width: none; margin: 6px 0 0; }
  .method-bottom { display: block; }
  .method-bottom span { display: block; margin-top: 5px; }
  .examples-layout, .trust-layout, .final-grid { grid-template-columns: 1fr; gap: 26px; }
  .examples-intro { min-height: 250px; }
  .trust-copy > p, .trust-copy h2 { max-width: 630px; }
  .final-copy > p { max-width: 650px; }
  .variant-hero { grid-template-columns: 1fr; }
  .variant-form .download-card { max-width: 480px; width: 100%; }
  .variant-preview .variant-preview-stage { min-height: 315px; }
  .variant-telegram .telegram-preview { max-width: 390px; width: 100%; }
  .swatches { grid-template-columns: repeat(3, 1fr); }
  .type-board, .component-row { grid-template-columns: 1fr; }
  .states { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .header-inner { min-height: 64px; }
  .brand img { width: 93px; }
  .hero-shell { padding-top: 32px; padding-bottom: 35px; }
  .badge { font-size: 8px; }
  .hero h1 { margin-top: 18px; font-size: 43px; }
  .hero-lead { margin-top: 18px; font-size: 14px; }
  .hero-points { grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 21px; }
  .hero-point { min-height: 42px; padding: 7px 8px; font-size: 9px; line-height: 1.2; }
  .hero-actions { display: grid; margin-top: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-assets { min-height: 202px; gap: 4px; margin-top: 0; padding-left: 0; transform: scale(.74); transform-origin: center bottom; }
  .download-card { padding: 20px 17px; }
  .download-card h2 { font-size: 21px; }
  .form-fields { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .section { padding: 62px 0; }
  .section-head h2, .final-copy h2, .trust-copy h2 { font-size: 35px; }
  .inside-grid, .object-grid, .examples-grid, .signal-row, .swatches, .card-samples { grid-template-columns: 1fr; }
  .inside-card { min-height: 150px; }
  .object-card { min-height: 150px; }
  .examples-intro { min-height: 290px; padding: 24px; }
  .examples-intro h2 { font-size: 31px; }
  .status-card { grid-template-columns: 1fr; gap: 12px; }
  .status-pill { justify-self: start; }
  .source-meta { grid-template-columns: 1fr 1fr 1fr; }
  .signal-card { padding: 14px; }
  .signal-card strong { font-size: 22px; }
  .signal-card h3 { font-size: 10px; }
  .signal-card small { font-size: 8px; }
  .final-actions { display: grid; }
  .final-actions .btn { width: 100%; }
  .final-card { padding: 20px 17px; }
  .hero-research-name { margin-top: 11px; font-size: 9px; }
  .thank-you-shell { min-height: calc(100vh - 64px); padding: 30px 0 48px; }
  .thank-you-card { padding: 25px 17px; border-radius: var(--radius-md); }
  .thank-you-card h1 { margin-top: 17px; font-size: 42px; }
  .thank-you-lead { font-size: 13px; }
  .thank-you-files { grid-template-columns: 1fr; margin-top: 23px; }
  .thank-you-actions { display: grid; }
  .thank-you-actions .btn { width: 100%; }
  .footer-inner { display: block; padding: 27px 0; }
  .footer-links { margin-top: 22px; }
  .footer-contact { margin-top: 19px; }
  .variant-heading, .system-heading { padding-top: 48px; }
  .variant-heading h1, .system-heading h1 { font-size: 42px; }
  .variant-item { padding: 14px; }
  .variant-meta { display: block; }
  .variant-meta p { margin-top: 6px; }
  .variant-hero { min-height: 600px; padding: 27px 20px; }
  .variant-hero h3 { font-size: 39px; }
  .variant-hero .hero-actions { display: flex; }
  .variant-hero .hero-actions .btn { width: auto; }
  .variant-preview .variant-preview-stage { min-height: 215px; transform: scale(.75); transform-origin: center center; }
  .type-board { padding: 19px; }
  .type-board h3 { font-size: 29px; }
}

/* Live landing typography pass: keep analytical labels compact, enlarge user-facing copy. */
body { font-size: 16px; }
.hero-research-name { font-size: 11px; }
.hero-point { font-size: 12px; line-height: 1.3; }
.hero-disclaimer { font-size: 11px; }
.section-head > p { font-size: 14px; }
.download-card .form-lead { font-size: 13px; }
.form-eyebrow { font-size: 10px; }
.field label, .field > span { font-size: 11px; }
.field input, .field select { font-size: 13px; }
.field-error { font-size: 10px; }
.consent { font-size: 11px; line-height: 1.4; }
.form-note, .final-card .small-note { font-size: 10px; }
.form-status { font-size: 11px; }
.inside-card p { font-size: 13px; }
.inside-callout p { font-size: 12px; }
.object-card p { font-size: 12px; }
.object-card b { font-size: 10px; }
.method-step p { font-size: 12px; }
.method-bottom span { font-size: 12px; }
.examples-intro p { font-size: 13px; }
.examples-intro .mini-result { font-size: 10px; }
.example-card p { font-size: 12px; }
.source-meta span { font-size: 10px; }
.status-pill { font-size: 10px; }
.status-card p { font-size: 12px; }
.signal-card h3 { font-size: 12px; }
.signal-card small { font-size: 10px; }
.final-list li { font-size: 13px; }
.final-card .file-label { font-size: 10px; }
.file-row strong { font-size: 11px; }
.file-row span:last-child { font-size: 10px; }
.final-form-lead { font-size: 12px; }
.thank-you-download-note { margin-top: 6px; }
.thank-you-file strong { font-size: 12px; }
.thank-you-file > span:last-child { font-size: 10px; }
.thank-you-next { font-size: 12px; }
.thank-you-note { font-size: 10px; }
.footer-brand p, .footer-links, .footer-contact { font-size: 11px; }
.footer-note { font-size: 10px; }
.thank-you-file > span:last-child > span { display: block; }
.thank-you-download-link { display: inline-block; margin-top: 7px; color: var(--teal); font-size: 10px; font-weight: 700; }
.thank-you-file:hover { border-color: rgba(22,168,137,.42); box-shadow: var(--shadow-sm); }

@media (max-width: 560px) {
  .badge { font-size: 9px; }
  .hero-research-name { font-size: 10px; }
  .hero-point { font-size: 10px; line-height: 1.25; }
  .hero-disclaimer { font-size: 11px; }
  .field label, .field > span { font-size: 11px; }
  .field input, .field select { font-size: 14px; }
  .consent { font-size: 11px; }
  .inside-card p, .object-card p, .method-step p, .example-card p { font-size: 13px; }
  .inside-callout p, .method-bottom span { font-size: 12px; }
  .status-card p { font-size: 12px; }
  .signal-card h3 { font-size: 11px; }
  .signal-card small { font-size: 10px; }
  .final-list li { font-size: 13px; }
  .footer-brand p, .footer-links, .footer-contact { font-size: 10px; }
  .footer-note { font-size: 10px; }
}
