@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg1); color: var(--fg1); font-family: var(--font-body); }

.rn-container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------- Buttons ---------- */
.rn-btn {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; padding: 14px 24px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--dur-fast) var(--ease);
}
.rn-btn--sm { padding: 10px 18px; font-size: 13px; }
.rn-btn--lg { padding: 16px 28px; font-size: 15px; }
.rn-btn--block { width: 100%; justify-content: center; }
.rn-btn--primary { background: var(--rn-teal); color: var(--rn-bone); }
.rn-btn--primary:hover { background: var(--rn-teal-deep); }
.rn-btn--primary:active { transform: scale(0.98); }
.rn-btn--ghost { background: transparent; color: var(--rn-ink); border-color: var(--rn-ink); }
.rn-btn--ghost:hover { background: var(--rn-ink); color: var(--rn-bone); }
.rn-btn--copper { background: var(--rn-copper); color: var(--rn-bone); }
.rn-btn--copper:hover { background: var(--rn-copper-deep); }

/* ---------- Typography ---------- */
.rn-display {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 96px; line-height: 0.92; letter-spacing: -0.01em; margin: 0 0 24px;
}
.rn-h2 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 52px; line-height: 1.05; letter-spacing: -0.005em; margin: 0 0 16px; }
.rn-h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 28px; line-height: 1.1; margin: 0; }
.rn-lead { font-size: 19px; line-height: 1.55; color: var(--fg2); max-width: 540px; margin: 0 0 28px; }
.rn-accent-teal { color: var(--rn-teal); }
.rn-arrow { color: var(--rn-copper); font-weight: 600; margin-left: 4px; }

/* ---------- Nav ---------- */
.rn-nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-height);
  background: rgba(250,246,239,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease);
}
.rn-nav.is-scrolled { border-bottom-color: var(--rn-line); }
.rn-nav__inner { max-width: var(--container); margin: 0 auto; height: 100%; padding: 0 32px; display: flex; align-items: center; gap: 32px; }
.rn-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; border-bottom: none; }
.rn-nav__brand:hover { border-bottom: none; }
.rn-nav__logo { height: 48px; width: auto; display: block; }
.rn-nav__links { display: flex; gap: 28px; margin-left: 28px; flex: 1; }
.rn-nav__links a { font-size: 14px; font-weight: 600; color: var(--fg2); text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; transition: all var(--dur-fast) var(--ease); }
.rn-nav__links a:hover { color: var(--rn-ink); border-bottom-color: transparent; }
.rn-nav__links a.is-active { color: var(--rn-ink); border-bottom-color: var(--rn-copper); }

/* Dark variant — used on industry / sub-pages so the bar is identical in size + structure but inverted in color */
.rn-nav--dark { background: var(--rn-ink); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: rgba(250,246,239,0.12); }
.rn-nav--dark .rn-nav__logo { filter: brightness(0) invert(1) opacity(0.95); }
.rn-nav--dark .rn-nav__links a { color: rgba(250,246,239,0.72); }
.rn-nav--dark .rn-nav__links a:hover { color: var(--rn-bone); border-bottom-color: transparent; }
.rn-nav--dark .rn-nav__links a.is-active { color: var(--rn-bone); border-bottom-color: var(--rn-copper); }
.rn-nav--dark .rn-nav__industries > a { color: rgba(250,246,239,0.72); }
.rn-nav--dark .rn-nav__industries:hover > a,
.rn-nav--dark .rn-nav__industries:focus-within > a { color: var(--rn-bone); }
.rn-nav--dark .rn-nav__industries.is-active > a { color: var(--rn-bone); border-bottom-color: var(--rn-copper); }
.rn-nav--dark .rn-btn--primary { background: var(--rn-copper); color: var(--rn-bone); border-color: var(--rn-copper); }
.rn-nav--dark .rn-btn--primary:hover { background: var(--rn-copper-deep); border-color: var(--rn-copper-deep); }

/* Industries dropdown — works on both light and dark nav */
.rn-nav__industries { position: relative; }
.rn-nav__industries > a { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; border-bottom: 2px solid transparent; transition: all var(--dur-fast) var(--ease); font-size: 14px; font-weight: 600; color: var(--fg2); text-decoration: none; }
.rn-nav__industries > a::after {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: 0.6;
  transition: transform 160ms ease;
}
.rn-nav__industries:hover > a::after,
.rn-nav__industries:focus-within > a::after { transform: rotate(180deg); }
.rn-nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: -16px;
  min-width: 240px; padding: 10px;
  background: var(--rn-bone);
  border: 1px solid rgba(31,31,31,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18), 0 2px 0 rgba(160,83,42,0.35);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index: 100;
}
.rn-nav__industries:hover .rn-nav__dropdown,
.rn-nav__industries:focus-within .rn-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.rn-nav__dropdown a {
  display: block !important; padding: 8px 12px !important;
  font-size: 14px; font-weight: 600;
  color: #1F1F1F !important; text-decoration: none;
  border-radius: 4px; border-bottom: none !important;
  letter-spacing: 0;
  margin-left: 0 !important;
}
.rn-nav__dropdown a:hover,
.rn-nav__dropdown a.is-active { background: rgba(160,83,42,0.08); color: var(--rn-copper) !important; }

/* ---------- Photo anchor hero (industry / sub-pages) ---------- */
.photo-anchor {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 2px 0 rgba(160,83,42,0.5);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a1410 0%, #0c0907 100%);
}
.photo-anchor__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-anchor::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.88) 100%);
  pointer-events: none;
}
.photo-anchor__corner {
  position: absolute; width: 16px; height: 16px;
  border: 1.5px solid var(--rn-copper); pointer-events: none; z-index: 4;
}
.photo-anchor__corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.photo-anchor__corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.photo-anchor__corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.photo-anchor__corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.photo-anchor__tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rn-copper); color: var(--rn-bone);
  padding: 8px 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
}
.photo-anchor__tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rn-bone);
  box-shadow: 0 0 0 3px rgba(250,246,239,0.25);
  animation: photo-anchor-pulse 2.4s var(--ease) infinite;
}
@keyframes photo-anchor-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(250,246,239,0.25), 0 0 0 0 rgba(250,246,239,0.4); }
  50%      { box-shadow: 0 0 0 3px rgba(250,246,239,0.25), 0 0 0 8px rgba(250,246,239,0); }
}
.photo-anchor__overlay {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 3;
  display: grid; gap: 12px;
}
.photo-anchor__name {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; font-size: 22px;
  color: var(--rn-bone); letter-spacing: 0.02em; line-height: 1.1;
}
.photo-anchor__name small {
  display: block;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: rgba(250,246,239,0.7);
  margin-top: 6px; font-weight: 400;
}
.mini-diag {
  background: #15110d; border: 1px solid rgba(250,246,239,0.18);
  padding: 12px 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.mini-diag__tile { padding: 0 12px; border-right: 1px solid rgba(250,246,239,0.1); }
.mini-diag__tile:last-child { border-right: 0; }
.mini-diag__tile:first-child { padding-left: 0; }
.mini-diag__label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,239,0.55); margin-bottom: 4px;
}
.mini-diag__val {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  line-height: 1; color: var(--rn-copper); letter-spacing: -0.01em;
  white-space: nowrap;
}
.mini-diag__val small {
  font-size: 10px; opacity: 0.6; font-weight: 400; margin-left: 3px;
  font-family: var(--font-mono); letter-spacing: 0.1em;
}

/* ---------- Hero (centered variant) ---------- */
.rn-hero { padding: 96px 0 80px; }
.rn-hero--centered { padding: 80px 0 48px; text-align: center; }
.rn-hero__centered { display: flex; flex-direction: column; align-items: center; max-width: 880px; }
.rn-hero__centered .rn-display { font-size: 112px; }
.rn-lead--center { text-align: center; max-width: 640px; }
.rn-hero__ctas { display: flex; gap: 12px; }
.rn-hero__ctas--center { justify-content: center; }

/* ---------- Trust strip ---------- */
.rn-trust {
  background: var(--rn-bone);
  border-top: 1px solid var(--rn-line);
  border-bottom: 1px solid var(--rn-line);
  padding: 20px 0;
}
.rn-trust__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.rn-trust__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--fg2);
  letter-spacing: 0.005em;
}
.rn-trust__check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--rn-teal); color: var(--rn-bone);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.rn-trust__sep { width: 1px; height: 20px; background: var(--rn-line); }

/* ---------- Sections ---------- */
.rn-section { padding: 96px 0; }
.rn-section--sand { background: var(--rn-sand); }
.rn-section--teal { background: var(--rn-teal); color: var(--rn-bone); }
.rn-section--cta { background: var(--rn-bone); border-top: 1px solid var(--rn-line); padding: 96px 0; }
.rn-section__head { max-width: 720px; margin-bottom: 56px; }
.rn-section__head .rn-h2 { max-width: 18ch; }

/* ---------- Market shift ---------- */
.rn-shift { max-width: 760px; }
.rn-shift__lead { font-size: 22px; line-height: 1.4; color: var(--fg1); margin: 0 0 24px; }
.rn-shift__list { list-style: none; padding: 0; margin: 0 0 28px; border-left: 3px solid var(--rn-copper); padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.rn-shift__list li { font-family: var(--font-display); font-weight: 600; font-size: 26px; text-transform: uppercase; letter-spacing: -0.005em; color: var(--rn-ink); line-height: 1.2; }
.rn-shift__close { font-size: 19px; line-height: 1.5; color: var(--fg2); margin: 0; }

/* ---------- Two-column body ---------- */
.rn-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

/* ---------- OwnYourSpace — SD map texture ---------- */
.rn-own { position: relative; overflow: hidden; }
.rn-own__inner { position: relative; z-index: 1; }
.rn-own__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex; justify-content: center; align-items: center;
  color: var(--rn-teal);
  opacity: 0.13;
}
.rn-own__bg svg { width: 95%; max-width: 1100px; height: auto; }

/* ---------- Growth levers ---------- */
.rn-levers { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.rn-lever {
  background: var(--rn-bone); padding: 32px; border-radius: var(--r-md);
  border: 1px solid var(--rn-line);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rn-lever:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.rn-lever__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.rn-lever__num { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--rn-copper); margin: 0; line-height: 1; }
.rn-lever__tag {
  font-size: 12px; font-weight: 600; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--rn-teal); background: var(--rn-teal-tint);
  padding: 6px 10px; border-radius: var(--r-pill);
}
.rn-lever__tag--alt { color: var(--rn-copper); background: var(--rn-copper-tint); }
.rn-lever__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 28px; line-height: 1.1; margin: 0 0 12px; }
.rn-lever__body { font-size: 16px; line-height: 1.6; color: var(--fg2); margin: 0; }
.rn-lever__list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--rn-line); padding-top: 16px;
}
.rn-lever__list li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--fg2); line-height: 1.5;
}
.rn-lever__list li::before {
  content: "\2192"; position: absolute; left: 0; top: 0;
  color: var(--rn-copper); font-weight: 600;
}
.rn-levers__bridge { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 22px; line-height: 1.25; color: var(--rn-teal); max-width: 760px; margin: 0; letter-spacing: -0.005em; }

/* ---------- Why Ringneck (on teal) ---------- */
.rn-why { display: grid; grid-template-columns: 1fr; gap: 56px; max-width: var(--container); color: var(--rn-bone); }
.rn-why__head { max-width: 720px; }
.rn-why__head .rn-h2 { margin-bottom: 24px; }
.rn-eyebrow--on-teal { color: var(--rn-bone); opacity: 0.85; }
.rn-h2--on-teal { color: var(--rn-bone); }
.rn-why__body { font-size: 19px; line-height: 1.55; color: var(--rn-bone); opacity: 0.9; margin: 0 0 18px; max-width: 720px; }

/* ---------- Fit Matters ---------- */
.rn-fit__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  margin-bottom: 48px; align-items: start;
}
.rn-fit__head .rn-h2 { margin-bottom: 0; }
.rn-fit__head-right .rn-lead:last-child { margin-bottom: 0; }
.rn-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.rn-fit__col {
  background: var(--rn-sand);
  border: 1px solid var(--rn-line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.rn-fit__col-head { display: flex; align-items: center; gap: 10px; }
.rn-fit__icon {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  font-family: var(--font-body);
}
.rn-fit__icon--good { background: var(--status-success); color: var(--rn-bone); }
.rn-fit__icon--bad { background: transparent; color: var(--fg3); border: 1px solid var(--rn-line-strong); }
.rn-fit__col-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--fg2);
}
.rn-fit__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.rn-fit__list li {
  font-size: 15px; line-height: 1.5; color: var(--fg1);
  position: relative; padding-left: 18px;
}
.rn-fit__list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px; background: var(--rn-line-strong);
}
.rn-fit__col--bad .rn-fit__list li { color: var(--fg2); }
.rn-fit__col--cta {
  background: var(--rn-teal);
  border-color: var(--rn-teal);
  color: var(--rn-bone);
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.rn-fit__col--cta::before {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,83,42,0.35), transparent 70%);
  pointer-events: none;
}
.rn-fit__cta-mark {
  color: var(--rn-copper-tint);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(250,246,239,0.10);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.rn-fit__cta-text {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; font-size: 22px; line-height: 1.2; letter-spacing: -0.005em;
  color: var(--rn-bone);
  position: relative; z-index: 1;
}
.rn-fit__col--cta .rn-btn { align-self: flex-start; position: relative; z-index: 1;
  background: var(--rn-bone); color: var(--rn-teal); border-color: var(--rn-bone); }
.rn-fit__col--cta .rn-btn:hover { background: var(--rn-copper); color: var(--rn-bone); border-color: var(--rn-copper); }

/* ---------- CTA ---------- */
.rn-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.rn-cta__copy { display: flex; flex-direction: column; }
.rn-cta__list { list-style: none; padding: 0; margin: 8px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.rn-cta__list li { display: flex; gap: 12px; font-size: 16px; color: var(--fg1); line-height: 1.5; }
.rn-cta__bullet { color: var(--rn-copper); font-weight: 600; flex-shrink: 0; }
.rn-cta__signal {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg2); font-weight: 500;
  margin-top: auto; padding-top: 16px;
}
.rn-cta__signal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--status-success);
  box-shadow: 0 0 0 0 rgba(79,122,61,0.4);
  animation: rn-pulse 2.4s var(--ease) infinite;
}
@keyframes rn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,122,61,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(79,122,61,0); }
}
.rn-cta__form { display: flex; flex-direction: column; gap: 14px; background: var(--rn-sand); padding: 32px; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.rn-cta__form-head { padding-bottom: 4px; border-bottom: 1px solid var(--rn-line); margin-bottom: 8px; }
.rn-cta__form-title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 22px; color: var(--rn-ink); margin-top: 6px; letter-spacing: -0.005em;
}
.rn-field { display: flex; flex-direction: column; gap: 6px; }
.rn-field label { font-size: 12px; font-weight: 600; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--fg2); }
.rn-field input, .rn-field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--rn-line-strong); background: var(--rn-bone);
  color: var(--fg1); outline: none; resize: vertical;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.rn-field input:focus, .rn-field textarea:focus { border-color: var(--rn-teal); box-shadow: 0 0 0 3px rgba(0,112,115,0.15); }
.rn-cta__fineprint { font-size: 12px; color: var(--fg3); text-align: center; }
.rn-cta__check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--status-success); color: var(--rn-bone);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; margin-bottom: 12px;
}
.rn-cta__thanks { padding: 24px 0; }
.rn-cta__thanks-body { font-size: 15px; color: var(--fg2); line-height: 1.5; margin: 12px 0 0; }

/* ---------- Footer ---------- */
.rn-footer { background: var(--rn-teal); color: var(--rn-bone); padding: 64px 0 32px; }
.rn-footer__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,246,239,0.2); }
.rn-footer__brand { display: flex; align-items: center; gap: 14px; }
.rn-footer__brand img { height: 56px; filter: brightness(0) invert(1) opacity(0.95); }
.rn-footer__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.04em; }
.rn-footer__sub { font-size: 12px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; opacity: 0.75; margin-top: 2px; }
.rn-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rn-footer__cols h6 { font-size: 12px; font-weight: 600; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; opacity: 0.7; margin: 0 0 14px; color: var(--rn-bone); }
.rn-footer__cols a { display: block; color: var(--rn-bone); text-decoration: none; font-size: 14px; padding: 4px 0; opacity: 0.9; border-bottom: none; }
.rn-footer__cols a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; border-bottom: none; }
.rn-footer__tagline { max-width: var(--container); margin: 32px auto 0; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 18px; letter-spacing: 0.04em; }
.rn-footer__year { font-family: var(--font-body); font-weight: 400; text-transform: none; font-size: 13px; opacity: 0.7; letter-spacing: 0; }

/* Dark footer variant for industry / sub-pages */
.rn-footer--dark { background: var(--rn-ink); }
.rn-footer--dark .rn-footer__cols a:hover { color: var(--rn-copper); }

/* Wider footer grid (used when Industries we serve is included) */
.rn-footer__cols--wide { grid-template-columns: 2fr 1fr 1fr; }
.rn-footer__cols a.rn-footer__industry { font-size: 13px; padding: 3px 0; }
.rn-footer__industries-grid { column-count: 2; column-gap: 24px; }
.rn-footer__industries-grid a { break-inside: avoid; }

/* ---------- Sticky CTA bar ---------- */
.rn-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(31, 31, 31, 0.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--rn-bone);
  transform: translateY(120%); transition: transform 350ms var(--ease);
  border-top: 1px solid rgba(250,246,239,0.12);
}
.rn-sticky-cta.is-visible { transform: translateY(0); }
.rn-sticky-cta__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.rn-sticky-cta__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 18px; letter-spacing: -0.005em; line-height: 1.1; }
.rn-sticky-cta__sub { font-size: 12px; opacity: 0.75; margin-top: 4px; letter-spacing: 0.02em; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal--armed { opacity: 0; transform: translateY(16px); }
.reveal--armed.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .rn-hero__centered .rn-display { font-size: 56px; }
  .rn-cta, .rn-footer__inner, .rn-twocol, .rn-levers { grid-template-columns: 1fr; }
  .rn-display { font-size: 64px; }
  .rn-h2 { font-size: 36px; }
  .rn-shift__list li { font-size: 20px; }
  .rn-nav__links { display: none; }
  .rn-trust__sep { display: none; }
  .rn-fit__head { grid-template-columns: 1fr; gap: 24px; }
  .rn-fit__grid { grid-template-columns: 1fr; }
  .rn-sticky-cta__inner { padding: 12px 16px; gap: 12px; }
  .rn-sticky-cta__sub { display: none; }
  .rn-sticky-cta__title { font-size: 14px; }
  .rn-own__bg { opacity: 0.08; }
}
