/* ============================================================
   WRKForce Homepage — production styles
   Implemented from the Claude Design handoff (claude.ai/design).
   Palette: deep navy + lime accent. Type: Inter + Inter Tight.
   ============================================================ */

:root {
  /* surfaces */
  --navy: #0B1322;        /* deep navy — dark sections */
  --navy-card: #1E293B;   /* connect dashboard frame */
  --ink: #0F172A;         /* slate-900 — headings on light, button text */
  --paper: #FFFFFF;
  --paper-2: #F8FAFC;     /* tinted section background */

  /* accent */
  --lime: #A8CF36;
  --lime-hi: #B8DD4A;     /* hover */
  --lime-eyebrow: #94B82E;/* eyebrow on light backgrounds */
  --lime-icon: #4D661A;   /* pillar icon on light background */

  /* text */
  --body: #475569;
  --body-strong: #334155;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --nav-link: #CBD5E1;
  --on-navy: #93A4C4;
  --on-navy-soft: #8DA0C2;
  --on-navy-bright: #C2CEE3;
  --on-navy-list: #E2E8F0;

  /* lines */
  --hairline: #E2E8F0;
  --hairline-2: #F1F5F9;
  --hair-navy: rgba(148, 163, 184, .12);

  /* type */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;

  /* layout */
  --max: 1180px;
  --pad: 32px;
  --nav-h: 76px;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
section[id], header[id] { scroll-margin-top: 88px; }

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

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime-eyebrow);
}
.eyebrow--lime { color: var(--lime); }

.dot {
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--lime);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--lime); color: var(--ink); }
.btn--primary:hover { background: var(--lime-hi); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(148, 163, 184, .45); }
.btn--ghost:hover { border-color: rgba(226, 232, 240, .85); }
.btn--lg { font-size: 15px; padding: 15px 26px; }
.btn--wide { font-size: 15px; padding: 15px 28px; }

/* ---------- nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--navy);
  border-bottom: 1px solid var(--hair-navy);
  box-shadow: 0 1px 0 rgba(168, 207, 54, .06), 0 14px 28px -22px rgba(0, 0, 0, .9);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 25px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--nav-link);
  text-decoration: none;
  transition: color .15s ease;
}
.nav__link:hover { color: #fff; }
.nav__cta {
  flex: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 80% at 50% -10%, rgba(30, 45, 75, .55), transparent 60%), var(--navy);
}
.hero__glow {
  position: absolute;
  pointer-events: none;
  width: min(1100px, 100%);
  height: 920px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(168, 207, 54, .14), rgba(168, 207, 54, .03) 45%, transparent 72%);
  top: -470px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px var(--pad) 132px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
}
.badge::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  opacity: .8;
}
.hero__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(52px, 5.7vw, 86px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 6px 0 8px; /* extra breathing room around the headline */
}
.hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--on-navy-bright);
  max-width: 44ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 6px; }

/* hero collage */
.hero__collage { position: relative; }
.collage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: 'main top' 'main bot' 'low bot';
  gap: 14px;
  height: 548px;
}
.collage__tile {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 24px 54px -26px rgba(0, 0, 0, .6);
}
.collage__tile img { width: 100%; height: 100%; object-fit: cover; }
.collage__tile--main {
  grid-area: main;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 30px 64px -28px rgba(0, 0, 0, .65);
}
.collage__tile--top { grid-area: top; }
.collage__tile--bot { grid-area: bot; }
.collage__tile--low { grid-area: low; }
.collage__card {
  position: absolute;
  left: -20px;
  bottom: -26px;
  z-index: 3;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 2px rgba(11, 19, 34, .12), 0 18px 48px rgba(11, 19, 34, .45);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.collage__card b {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.collage__card span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- section scaffolding ---------- */
.section { padding: 128px 0; }
.section--light { background: var(--paper); }
.section--tint {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.section--navy {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--on-navy);
}
.section__glow {
  position: absolute;
  pointer-events: none;
  width: 760px; height: 760px;
  border-radius: 50%;
}
.section-head { display: flex; flex-direction: column; gap: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h2-lg { font-size: clamp(34px, 3.6vw, 48px); }
.h2-md { font-size: clamp(30px, 3vw, 42px); }
.h2-sm { font-size: clamp(30px, 3.2vw, 44px); }

/* ---------- why ---------- */
.why__intro {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 72px;
  align-items: start;
}
.why__lead { display: flex; flex-direction: column; gap: 22px; padding-top: 6px; }
.why__lead .p-lg { font-size: 19px; line-height: 1.65; color: var(--body-strong); text-wrap: pretty; }
.why__lead .p-md { font-size: 17px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.why__pull {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 8px;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
  text-wrap: pretty;
}
.why__figures {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.figure { display: flex; flex-direction: column; gap: 12px; }
.figure__frame {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 1px 2px rgba(11, 19, 34, .1), 0 18px 44px rgba(11, 19, 34, .14);
}
.figure__frame img { width: 100%; height: 100%; object-fit: cover; }
.figcap {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: .03em;
  color: var(--muted-2);
}

/* ---------- business (more than programs) ---------- */
.business__glow {
  background: radial-gradient(closest-side, rgba(168, 207, 54, .08), transparent 70%);
  top: -380px; left: -280px;
}
.business__intro {
  position: relative;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 88px;
}
.business__intro h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.business__intro p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-navy);
  max-width: 64ch;
  text-wrap: pretty;
}
.cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(180deg, rgba(30, 41, 59, .62), rgba(15, 23, 42, .42));
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 16px;
  padding: 34px 30px 38px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 207, 54, .42);
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, .75);
}
.icon-tile {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(168, 207, 54, .16);
  border: 1px solid rgba(168, 207, 54, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}
.icon-tile svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
}
.card p { font-size: 14px; color: var(--on-navy-soft); text-wrap: pretty; }

/* ---------- support (four parts) ---------- */
.support__head { max-width: 760px; margin-bottom: 72px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.pillar {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 34px; height: 2px;
  background: var(--ink);
}
.pillar .icon-tile {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(168, 207, 54, .14);
  border: 1px solid rgba(168, 207, 54, .32);
  color: var(--lime-icon);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- realworld ---------- */
.realworld__head { max-width: 760px; margin-bottom: 64px; }
.realworld__head p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
  text-wrap: pretty;
}
.industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.industry { display: flex; flex-direction: column; gap: 12px; }
.industry__frame {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 1px 2px rgba(11, 19, 34, .12), 0 18px 44px rgba(11, 19, 34, .16);
}
.industry__frame img { width: 100%; height: 100%; object-fit: cover; }
.industry__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.realworld__note {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 600;
}

/* ---------- metrics ---------- */
.metrics { padding: 110px 0; }
.metrics__head { max-width: 760px; margin-bottom: 56px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.stat {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.stat::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 34px; height: 2px;
  background: var(--lime);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { margin-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--body); }
.metrics__note {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 600;
}

/* ---------- operators (editorial pull-quote) ---------- */
.operators { padding: 148px 0; }
.operators__editorial {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 34px;
}
.operators__rule {
  width: 60px;
  height: 3px;
  background: var(--lime);
  border-radius: 3px;
}
.operators__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.operators__support {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
  text-wrap: pretty;
}

/* ---------- connect ---------- */
.connect__glow {
  background: radial-gradient(closest-side, rgba(168, 207, 54, .09), transparent 70%);
  top: -360px; right: -280px;
}
.connect__bridge {
  position: relative;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.connect__bridge .bar {
  width: 34px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  flex: none;
}
.connect__bridge span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--on-navy);
}
.connect__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3.9fr) minmax(0, 7.5fr);
  gap: 52px;
  align-items: center;
}
.connect__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.connect__logo { height: 44px; width: auto; }
.connect__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 4px;
  text-wrap: balance;
}
.connect__title .accent { color: var(--lime); }
.connect__copy .connect__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-navy);
  max-width: 52ch;
  text-wrap: pretty;
}
.connect__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 28px;
  margin-top: 6px;
}
.connect__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-navy-list);
}
.connect__list .dot { border-radius: 2px; }
.connect__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 6px;
}
.connect__media { position: relative; }
.connect__frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, .5),
    0 24px 50px -28px rgba(0, 0, 0, .7),
    0 72px 150px -44px rgba(0, 0, 0, .95);
  background: var(--navy-card);
}
.connect__frame img { width: 100%; height: auto; }
.connect__chip {
  position: absolute;
  right: -22px;
  bottom: -24px;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(11, 19, 34, .12), 0 24px 56px rgba(11, 19, 34, .5);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.connect__chip b {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.connect__chip span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- contact ---------- */
.contact {
  padding: 152px 0 144px;
  border-top: 1px solid rgba(148, 163, 184, .08);
}
.contact__glow {
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(168, 207, 54, .12), transparent 70%);
  top: -400px; left: 50%;
  transform: translateX(-50%);
}
.contact__block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 24px 0;
}
.contact__block h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  text-wrap: balance;
}
.contact__block p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-navy);
  max-width: 52ch;
  text-wrap: pretty;
}
.contact__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; padding-top: 6px; }
.contact__email { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--hair-navy);
  padding: 56px 0 44px;
  color: var(--muted-2);
}
.footer__top { display: flex; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 380px; margin-right: auto; }
.footer__brand img { height: 24px; width: auto; align-self: flex-start; }
.footer__brand p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.footer__cols { display: flex; gap: 56px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col-h {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: var(--muted-2);
  text-decoration: none;
  transition: color .15s ease;
}
.footer__col a:hover { color: #fff; }
.footer__statement {
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.footer__bar {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, .1);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer__tag {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted-2);
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22, .8, .3, 1), transform .7s cubic-bezier(.22, .8, .3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px var(--pad) 96px;
  }
  .hero__collage { max-width: 620px; }
  .why__intro { grid-template-columns: 1fr; gap: 28px; }
  .connect__grid { grid-template-columns: 1fr; gap: 56px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 22px; }
  .nav__links { display: none; }
  .nav { gap: 16px; }

  .section { padding: 88px 0; }
  .metrics { padding: 80px 0; }
  .operators { padding: 104px 0; }
  .contact { padding: 104px 0 96px; }

  .business__intro { margin-bottom: 56px; }
  .why__figures { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .connect__list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .collage { height: 420px; gap: 10px; }
  .collage__card { left: 0; bottom: -18px; padding: 10px 14px; }
  .connect__chip { right: 0; }
  .connect__list { grid-template-columns: 1fr; }
  .footer__cols { gap: 40px; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); }
}

/* Let the Connect dashboard float a touch toward the edge on large screens. */
@media (min-width: 1025px) {
  .connect__media { margin-right: -16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .card { transition: none; }
}
