/* Nueva Research static landing styles aligned to the website design system. */

:root {
  --nr-black: #0A0A0A;
  --nr-dark: #111111;
  --nr-navy: #17343A;
  --nr-navy-soft: #1D3E46;
  --nr-white: #FFFFFF;
  --nr-bg: #F3F4F1;
  --nr-ice: #EEECEA;
  --nr-silver: #D1D1CE;
  --nr-steel: #8A9198;
  --nr-muted: #6B7280;
  --nr-orange: #E07820;
  --nr-orange-dark: #C46A18;
  --nr-orange-light: #FDF0E6;
  --cat-gold: #C2A46B;
  --cat-sage: #7CB4A8;
  --cat-blue: #4A8EC2;
  --cat-sand: #C2895A;
  --cat-violet: #8E6CC2;
  --cat-green: #78A86C;
  --cat-navy: #4A6EC2;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow-sm: 0 10px 24px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 18px 50px rgba(23, 52, 58, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(124, 180, 168, 0.12), transparent 28%),
    linear-gradient(180deg, #F8F8F5 0%, var(--nr-bg) 42%, #EFF2EE 100%);
  color: var(--nr-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:focus-visible {
  outline: 2px solid var(--nr-orange);
  outline-offset: 3px;
}

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p {
  margin: 0;
  color: var(--nr-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nr-orange);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nr-orange);
}

.site-header {
  padding: 1.4rem 0 1.35rem;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-header img {
  height: 26px;
  width: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nr-muted);
}

.promo-strip {
  padding: 0;
}

.promo-strip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.45rem 1.5rem;
  border-radius: 0;
  background: linear-gradient(135deg, #21424A 0%, #17343A 100%);
  color: var(--nr-white);
  box-shadow: 0 10px 28px rgba(23, 52, 58, 0.16);
}

.promo-strip-wrap p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.5;
}

.promo-strip-wrap strong {
  color: var(--nr-white);
}

.promo-strip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-height: 38px;
  padding: 0.2rem 0.9rem;
  border-radius: 8px;
  background: var(--nr-orange);
  color: var(--nr-white);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(60vw, 980px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    url("hero-network.svg") no-repeat center right / contain;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 3rem;
  align-items: end;
}

.hero-copy h1 {
  margin-top: 0.95rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--nr-navy);
  font-size: 1.2rem;
  font-weight: 400;
}

.lede {
  margin-top: 1.2rem;
  max-width: 41rem;
  font-size: 1rem;
}

.optin-form {
  margin-top: 2rem;
  max-width: 460px;
  padding: 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.field + .field {
  margin-top: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--nr-dark);
}

.field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: var(--nr-bg);
  color: var(--nr-dark);
}

.field input:focus {
  border-color: var(--nr-navy);
  background: var(--nr-white);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.btn-primary {
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: var(--nr-orange);
  color: var(--nr-white);
  cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover,
.code-box button:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(23, 52, 58, 0.16);
  background: var(--nr-white);
  color: var(--nr-navy);
}

.consent {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent a,
.legal-links a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-visual::before {
  inset: auto auto 6% 3%;
  width: 120px;
  height: 120px;
  background: rgba(124, 180, 168, 0.16);
  z-index: 0;
}

.hero-visual::after {
  inset: -4% 8% auto auto;
  width: 92px;
  height: 92px;
  background: rgba(224, 120, 32, 0.12);
  z-index: 0;
}

.catalog-preview {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(155deg, var(--nr-navy) 0%, var(--nr-navy-soft) 100%);
  color: var(--nr-white);
  box-shadow: var(--shadow-md);
}

.catalog-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px) 0 0 / 74px 74px,
    linear-gradient(rgba(255, 255, 255, 0.04) 0 1px, transparent 1px) 0 0 / 24px 24px;
  opacity: 0.9;
  pointer-events: none;
}

.catalog-preview > * {
  position: relative;
  z-index: 1;
}

.preview-kicker {
  display: inline-flex;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.catalog-preview h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--nr-white);
}

.catalog-preview-head p {
  margin-top: 0.85rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.preview-metrics article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.preview-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--nr-white);
}

.preview-metrics span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.preview-pill-list,
.category-chip-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.preview-pill-list {
  margin-top: 1.25rem;
}

.preview-pill-list span,
.category-chip-panel span {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.preview-pill-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.preview-flow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-flow i {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.section-shell {
  padding: 4rem 0;
}

.section-shell--soft {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.split-panel,
.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 2rem;
  align-items: start;
}

.section-intro h2,
.section-head h2,
.system-copy h2,
.cta-band h2,
.offer h2,
.upsell-head h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-intro p,
.section-head p,
.system-copy > p {
  margin-top: 1rem;
  max-width: 42rem;
}

.map-list {
  display: grid;
  gap: 1rem;
}

.map-item,
.category-card,
.system-point,
.rail-card,
.trust-item,
.mini-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.map-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
}

.map-index,
.mini-card-tag,
.rail-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--nr-orange-light);
  color: var(--nr-orange-dark);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
}

.map-item h3,
.category-card h3,
.system-point h3,
.rail-card h3,
.mini-card h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.map-item p,
.category-card p,
.system-point p,
.rail-card p,
.mini-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-head--centered {
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

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

.category-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.category-card {
  position: relative;
  padding: 1.35rem;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent, var(--nr-orange));
}

.category-card[data-accent="gold"] { --accent: var(--cat-gold); }
.category-card[data-accent="sage"] { --accent: var(--cat-sage); }
.category-card[data-accent="blue"] { --accent: var(--cat-blue); }
.category-card[data-accent="sand"] { --accent: var(--cat-sand); }
.category-card[data-accent="violet"] { --accent: var(--cat-violet); }
.category-card[data-accent="green"] { --accent: var(--cat-green); }
.category-card[data-accent="navy"] { --accent: var(--cat-navy); }

.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.category-card[data-accent="gold"] .category-tag {
  background: rgba(194, 164, 107, 0.16);
  color: #7A6031;
}

.category-card[data-accent="sage"] .category-tag {
  background: rgba(124, 180, 168, 0.18);
  color: #2F685D;
}

.category-card[data-accent="blue"] .category-tag {
  background: rgba(74, 142, 194, 0.16);
  color: #285A84;
}

.category-card[data-accent="sand"] .category-tag {
  background: rgba(194, 137, 90, 0.18);
  color: #8C572C;
}

.category-card[data-accent="violet"] .category-tag {
  background: rgba(142, 108, 194, 0.17);
  color: #65449A;
}

.category-card[data-accent="green"] .category-tag {
  background: rgba(120, 168, 108, 0.18);
  color: #4A7B3C;
}

.category-card[data-accent="navy"] .category-tag {
  background: rgba(74, 110, 194, 0.16);
  color: #2D4E9B;
}

.category-card h3 {
  margin-top: 1rem;
  font-size: 1.28rem;
}

.system-points {
  display: grid;
  gap: 0.95rem;
}

.system-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.system-intro h2 {
  font-size: clamp(2.35rem, 4.8vw, 3.7rem);
}

.system-intro .eyebrow {
  justify-content: center;
}

.system-intro p {
  max-width: 38rem;
  margin: 1rem auto 0;
}

.system-copy {
  display: block;
}

.system-point {
  padding: 1.15rem 1.2rem;
}

.system-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-self: start;
}

.rail-card {
  position: relative;
  min-height: 176px;
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rail-card > * {
  position: relative;
  z-index: 1;
}

.rail-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 244, 233, 0.95), rgba(246, 248, 245, 0.88));
  border: 1px solid rgba(23, 52, 58, 0.08);
  color: var(--nr-navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.rail-icon svg {
  width: 24px;
  height: 24px;
}

.rail-card:nth-child(2) .rail-icon {
  color: #2F685D;
}

.rail-card:nth-child(3) .rail-icon {
  color: #285A84;
}

.rail-card:nth-child(4) .rail-icon {
  color: var(--nr-orange-dark);
}

.rail-card h3 {
  margin-top: 1rem;
}

.trust {
  padding: 3.4rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.05fr) minmax(240px, 0.72fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.35rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(124, 180, 168, 0.12), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 244, 0.92));
  box-shadow: var(--shadow-md);
}

.trust-copy,
.trust-media,
.trust-stat {
  border-radius: 8px;
}

.trust-copy {
  padding: 1.4rem 1.45rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(243, 244, 241, 0.92));
  border: 1px solid rgba(17, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-copy h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.trust-copy p {
  margin-top: 0.95rem;
  max-width: 30rem;
}

.trust-copy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.trust-copy-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(23, 52, 58, 0.06);
  color: var(--nr-navy);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(145deg, rgba(239, 242, 238, 0.9), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.trust-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(23, 52, 58, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(224, 120, 32, 0.16), transparent 22%);
  pointer-events: none;
  z-index: 1;
}

.trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-stack {
  display: grid;
  gap: 0.9rem;
}

.trust-stat {
  min-height: 84px;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.trust-stat:nth-child(1) {
  background: linear-gradient(145deg, rgba(23, 52, 58, 0.94), rgba(29, 62, 70, 0.92));
}

.trust-stat:nth-child(1) .trust-stat-copy strong,
.trust-stat:nth-child(1) .trust-stat-copy span,
.trust-stat:nth-child(1) .trust-stat-badge {
  color: var(--nr-white);
}

.trust-stat:nth-child(2) {
  background: linear-gradient(145deg, rgba(224, 120, 32, 0.12), rgba(255, 255, 255, 0.92));
}

.trust-stat:nth-child(3) {
  background: linear-gradient(145deg, rgba(124, 180, 168, 0.14), rgba(255, 255, 255, 0.92));
}

.trust-stat:nth-child(4) {
  background: linear-gradient(145deg, rgba(74, 142, 194, 0.14), rgba(255, 255, 255, 0.92));
}

.trust-stat-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.trust-stat-copy span {
  display: block;
  margin-top: 0.35rem;
  color: var(--nr-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.trust-stat-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(23, 52, 58, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--nr-navy);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.cta-band {
  padding: 1rem 0 4rem;
}

.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.cta-band p {
  margin-top: 0.85rem;
  max-width: 38rem;
}

.site-footer {
  background: var(--nr-navy);
  color: var(--nr-bg);
  padding-top: 2.4rem;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
}

.site-footer img {
  height: 22px;
}

.legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.copyright {
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.9rem 0 1.05rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.disclaimer .wrap {
  max-width: 940px;
}

/* Thank-you page */
.ty-hero {
  padding: 2.4rem 0 1.2rem;
}

.ty-hero-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  max-width: none;
  padding: 0;
}

.ty-hero-image {
  width: 100%;
  justify-self: end;
  height: auto;
  object-fit: cover;
}

.ty-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.ty-hero-copy h1 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  color: var(--nr-navy);
  max-width: 11ch;
}

.ty-hero-lead {
  max-width: 56ch;
}

.ty-hero-cta {
  width: 50%;
}

.offer .wrap {
  max-width: 760px;
  text-align: center;
}

.confirm-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(124, 180, 168, 0.18);
  color: var(--nr-navy);
  font-family: var(--font-display);
  font-weight: 700;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nr-navy);
  color: var(--nr-white);
  font-size: 0.8rem;
}

.note {
  color: var(--nr-steel);
}

.offer {
  padding: 2.2rem 0 1.2rem;
}

.offer p {
  margin-top: 0.9rem;
}

.code-box {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.45rem;
  padding: 0.8rem 0.95rem 0.8rem 1.15rem;
  border: 1.5px dashed var(--nr-orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.code {
  font-family: var(--font-mono);
  font-size: 1.02rem;
  letter-spacing: 0.09em;
  color: var(--nr-navy);
}

.code-box button {
  border: 0;
  border-radius: 8px;
  background: var(--nr-navy);
  color: var(--nr-white);
  padding: 0.62rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}

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

.mini-card {
  padding: 1.2rem;
}

.mini-card h3 {
  margin-top: 1rem;
}

.category-chip-panel {
  margin-top: 1.6rem;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.category-chip-panel span {
  background: rgba(23, 52, 58, 0.06);
  color: var(--nr-navy);
}

.thank-you-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .ty-hero-layout {
    grid-template-columns: 1fr;
  }

  .ty-hero-image {
    margin: 0 auto;
  }

  .ty-hero-copy {
    text-align: center;
    align-items: center;
  }

  .hero::before {
    width: min(72vw, 720px);
    opacity: 0.54;
  }

  .hero-layout,
  .split-panel,
  .system-layout {
    grid-template-columns: 1fr;
  }

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

  .category-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .category-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .cta-band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .promo-strip-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-strip-link {
    width: 100%;
  }

  .hero::before {
    width: 100%;
    inset: 10% 0 auto;
    height: 56%;
    background-size: cover;
    opacity: 0.22;
  }

  .wrap {
    width: min(100% - 1.5rem, 1180px);
  }

  .site-header .wrap {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-copy h1,
  .ty-hero-copy h1,
  .section-intro h2,
  .section-head h2,
  .system-copy h2,
  .cta-band h2,
  .offer h2 {
    font-size: 2rem;
  }

  .preview-metrics,
  .category-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    padding: 1rem;
  }

  .trust-media {
    min-height: 280px;
  }

  .system-rail {
    grid-template-columns: 1fr;
  }

  .category-card:last-child:nth-child(2n + 1) {
    max-width: none;
  }

  .catalog-preview,
  .optin-form,
  .cta-band-wrap,
  .category-chip-panel {
    padding: 1.2rem;
  }

  .map-item {
    grid-template-columns: 1fr;
  }

  .code-box {
    width: 100%;
    flex-direction: column;
  }

  .ty-hero-cta,
  .code-box button,
  .btn-secondary {
    width: 100%;
  }
}
