/* =====================================================
   TRONOX REDESIGN v2 — Bold Minimalist Corporate
   ===================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #06182c;
  --navy-mid:    #0d2d52;
  --blue:        #0f5ef7;
  --blue-mid:    #1a6bff;
  --green:       #18a34a;
  --green-bright:#22c55e;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --light:       #eef1f5;
  --text:        #111827;
  --muted:       #4b5663;
  --border:      #dde2ea;
  --topbar-h: 38px;
  --header-h: 68px;
  --ff: 'Inter', system-ui, sans-serif;
  --ff-display: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
p { line-height: 1.75; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ---------- UTILITY ---------- */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
}
.label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.label--light { color: var(--green-bright); }
.label--light::before { background: var(--green-bright); }

.h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
}
.h2--light { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff); font-size: 14px; font-weight: 600; letter-spacing: .01em;
  border: none; cursor: pointer; transition: all .22s var(--ease-out);
  white-space: nowrap;
}
.btn--hero-primary {
  background: var(--white); color: var(--navy);
  padding: 14px 28px; border-radius: 4px;
}
.btn--hero-primary:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn--hero-video {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 14px 24px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn--hero-video:hover { background: rgba(255,255,255,0.18); }
.btn__play-icon {
  width: 28px; height: 28px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  flex-shrink: 0;
}
.btn--outline-dark {
  background: transparent; color: var(--navy);
  padding: 12px 22px; border-radius: 4px;
  border: 1.5px solid var(--border);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--off-white); transform: translateX(3px); }
.btn--dark {
  background: var(--navy); color: var(--white);
  padding: 13px 26px; border-radius: 4px;
}
.btn--dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(6,24,44,.25); }
.btn--strip {
  background: transparent; color: var(--white);
  padding: 12px 24px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.5);
  font-size: 13px; white-space: nowrap;
}
.btn--strip:hover { background: rgba(255,255,255,0.1); }
.btn--careers {
  background: var(--blue); color: var(--white);
  padding: 10px 20px; border-radius: 4px; font-size: 13px; font-weight: 600;
}
.btn--careers:hover { background: var(--blue-mid); }
.btn--lg { padding: 18px 38px; font-size: 16px; }

/* ---------- TOPBAR ---------- */
.topbar {
  height: var(--topbar-h);
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  gap: 16px;
}
.topbar__ticker {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: rgba(255,255,255,.55);
  overflow: hidden; white-space: nowrap;
}
.topbar__ticker-label {
  font-weight: 700; color: var(--green-bright); letter-spacing: .06em;
}
.topbar__ticker-sep { color: rgba(255,255,255,.2); }
.topbar__actions {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.topbar__link {
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.topbar__link:hover { color: var(--white); }
.topbar__search-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.6);
  cursor: pointer; font-family: var(--ff);
  transition: background .2s;
}
.topbar__search-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(6,24,44,.08); }
.header__inner {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* --- LOGO --- */
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo__img {
  height: 32px;
  width: auto;
  display: block;
}
.logo--footer .logo__img {
  filter: brightness(0) invert(1);
}

/* --- NAV --- */
.nav__list {
  display: flex; align-items: center; gap: 2px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: block; padding: 10px 14px;
  font-size: 14px; font-weight: 500; color: var(--text);
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.nav__link:hover, .nav__item.has-dropdown:hover > .nav__link {
  background: var(--light); color: var(--navy);
}
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(6,24,44,.14);
  z-index: 300;
}
.nav__item.has-dropdown:hover .dropdown { display: flex; flex-direction: column; }
.dropdown__link {
  display: block; padding: 9px 14px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.dropdown__link:hover { background: var(--light); color: var(--navy); }

.header__end { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg-wrap {
  position: absolute; inset: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: .45;
}
.hero__bg-wrap.no-image {
  background: linear-gradient(135deg, #06182c 0%, #0d2d52 60%, #0f3a6e 100%);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,24,44,.95) 0%, rgba(6,24,44,.72) 55%, rgba(6,24,44,.35) 100%);
}

/* Animated geometry */
.hero__geo {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  animation: pulse 8s ease-in-out infinite;
}
.hero__geo--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__geo--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -150px; left: 30%;
  opacity: .05;
  animation-delay: 3s;
}
.hero__geo--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  top: 20%; left: 55%;
  opacity: .04;
  animation-delay: 6s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero__content {
  position: relative; z-index: 5;
  max-width: 780px;
  padding: 100px 32px 100px;
  margin-left: max(32px, calc((100vw - 1340px) / 2 + 32px));
  animation: heroIn .9s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; background: var(--green-bright); border-radius: 50%;
  box-shadow: 0 0 12px var(--green-bright);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.hero__h1-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  font-weight: 700;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: -.01em;
  line-height: 1.3;
  margin-bottom: 32px;
}

.hero__body {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 44px;
}
.hero__body strong { color: var(--white); font-weight: 600; }
.hero__body em { color: rgba(255,255,255,.85); font-style: italic; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 36px; left: max(32px, calc((100vw - 1340px) / 2 + 32px));
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  z-index: 5;
  animation: heroIn 1.2s .5s var(--ease-out) both;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.5);opacity:.3} }

/* ---------- FIGURES ---------- */
.figures {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.figures__inner {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: stretch;
}
.figure {
  flex: 1; padding: 40px 32px; text-align: center;
  transition: background .2s;
}
.figure:hover { background: var(--off-white); }
.figure__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.figure__num sup { font-size: .5em; vertical-align: super; }
.figure__num span:not(.count) { font-size: .65em; }
.figure__label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.figure__rule {
  width: 1px; background: var(--border); flex-shrink: 0;
  margin: 24px 0;
}

/* ---------- SPLIT SECTION ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split__visual--left {
  position: relative; overflow: hidden;
}
.split__img-wrap {
  position: relative; height: 100%;
}
.split__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.split__visual--left:hover .split__img { transform: scale(1.03); }
.split__img-card {
  position: absolute; bottom: 28px; right: 28px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(6,24,44,.85);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 8px;
  color: var(--white);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.split__img-card:hover { background: rgba(15,94,247,.8); }
.split__img-card svg { flex-shrink: 0; }

.split__text--right {
  background: var(--off-white);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.split__text--right p { color: var(--muted); font-size: .95rem; }

/* ---------- FEATURED STRIP ---------- */
.featured-strip {
  position: relative;
  overflow: hidden;
}
.featured-strip__bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, #0d3060 40%, #102050 100%);
}
.featured-strip__inner {
  position: relative; z-index: 2;
  max-width: 1340px; margin: 0 auto;
  padding: 52px 32px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.featured-strip__badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.featured-strip__body { flex: 1; min-width: 280px; }
.featured-strip__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -.03em; line-height: 1.15;
  margin-bottom: 10px;
}
.featured-strip__title sup { font-size: .55em; vertical-align: super; }
.featured-strip__desc {
  font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65;
}

/* ---------- PRODUCTS ---------- */
.products {
  padding: 100px 0;
  background: var(--white);
}
.products__head {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end;
}
.products__head .label { grid-column: 1; }
.products__head .h2   { grid-column: 1; }
.products__intro {
  grid-column: 2; grid-row: 2 / 4;
  font-size: .95rem; color: var(--muted); line-height: 1.75;
  align-self: center; padding-top: 8px;
}
.products__scroll-area { overflow-x: auto; padding-bottom: 24px; }
.products__scroll-area::-webkit-scrollbar { height: 3px; }
.products__scroll-area::-webkit-scrollbar-track { background: var(--light); }
.products__scroll-area::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.products__track {
  display: flex; gap: 0;
  width: max-content;
  padding: 0 max(32px, calc((100vw - 1340px) / 2 + 32px));
}

.pcard {
  position: relative;
  width: 280px; flex-shrink: 0;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .22s;
  overflow: hidden;
}
.pcard:first-child { border-left: 1px solid var(--border); }
.pcard::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  opacity: 0; transition: opacity .22s;
}
.pcard:hover { background: var(--off-white); }
.pcard:hover::before { opacity: 1; }

.pcard__num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--border); font-family: var(--ff-display);
}
.pcard:hover .pcard__num { color: var(--blue); transition: color .22s; }
.pcard__icon {
  width: 52px; height: 52px;
  color: var(--navy);
}
.pcard__icon svg { width: 100%; height: 100%; }
.pcard__title {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.pcard__body {
  font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1;
}
.pcard__arrow {
  font-size: 20px; color: var(--border);
  transition: color .22s, transform .22s;
  align-self: flex-start;
}
.pcard:hover .pcard__arrow { color: var(--blue); transform: translateX(4px); }

.pcard--all {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  gap: 20px; flex-direction: column;
  cursor: pointer;
}
.pcard--all:hover { background: var(--navy-mid); }
.pcard--all::before { display: none; }

/* ---------- ABOUT (DARK) ---------- */
.about {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0;
}
.about__bg-text {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(80px, 15vw, 180px);
  color: rgba(255,255,255,.025);
  letter-spacing: -.05em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.about__inner {
  position: relative; z-index: 2;
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__text { display: flex; flex-direction: column; gap: 24px; }
.about__body { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.about__body strong { color: var(--white); }
.about__body em { color: rgba(255,255,255,.85); }
.about__links {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.about__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: 13px; font-weight: 500;
  transition: all .2s;
}
.about__pill:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: var(--white);
  transform: translateY(-2px);
}
.about__visual { position: relative; }
.about__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.about__img-chip {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(6,24,44,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 18px; border-radius: 100px;
  color: var(--white); font-size: 13px; font-weight: 600;
}

/* ---------- SUSTAINABILITY ---------- */
.sustain {
  padding: 100px 0;
  background: var(--off-white);
}
.sustain__inner {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sustain__visual { position: relative; }
.sustain__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(6,24,44,.12);
}
.sustain__text {
  display: flex; flex-direction: column; gap: 18px;
}
.sustain__text p { font-size: .95rem; color: var(--muted); }
.sustain__reports {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 6px 0;
}
.report-card {
  display: flex; flex-direction: column; gap: 6px;
  flex: 1; min-width: 120px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  transition: all .22s;
}
.report-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(15,94,247,.1);
  transform: translateY(-3px);
}
.report-card--accent {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.report-card--accent:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-3px); }
.report-card__year {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.03em;
}
.report-card--accent .report-card__year { color: var(--white); }
.report-card__label {
  font-size: 12px; font-weight: 600; color: var(--muted); line-height: 1.3;
}
.report-card--accent .report-card__label { color: rgba(255,255,255,.7); }
.report-card svg { color: var(--blue); margin-top: auto; }
.report-card--accent svg { color: var(--green-bright); }

/* ---------- NEWS ---------- */
.news {
  padding: 100px 0;
  background: var(--white);
}
.news__head {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px 52px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.news__grid {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ncard {
  background: var(--white);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
  position: relative;
}
.ncard:hover { background: var(--off-white); }
.ncard--hero {
  grid-row: 1 / 3;
  padding: 48px 40px;
}
.ncard--wide {
  grid-column: 2 / 4;
}
.ncard__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(15,94,247,.08);
  padding: 3px 10px; border-radius: 12px;
  align-self: flex-start;
}
.ncard__date {
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.ncard__title {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700;
  line-height: 1.35; color: var(--navy);
  flex: 1;
}
.ncard--hero .ncard__title { font-size: 1.35rem; }
.ncard__title a { transition: color .18s; }
.ncard__title a:hover { color: var(--blue); }
.ncard__excerpt {
  font-size: .875rem; color: var(--muted); line-height: 1.65;
}
.ncard__read {
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-top: auto; align-self: flex-start;
  transition: transform .18s;
}
.ncard:hover .ncard__read { transform: translateX(4px); }

/* ---------- MARQUEE SECTION ---------- */
.marquee-section {
  background: var(--navy);
  overflow: hidden;
}
.marquee {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.marquee__dot { color: var(--green-bright); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-cta {
  max-width: 1340px; margin: 0 auto;
  padding: 72px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.marquee-cta__h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -.03em; margin-bottom: 12px;
}
.marquee-cta__text p { color: rgba(255,255,255,.55); font-size: .95rem; max-width: 440px; }

/* ---------- FOOTER ---------- */
.footer { background: #04101e; }
.footer__top {
  max-width: 1340px; margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid; grid-template-columns: 260px 1fr; gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__tagline {
  font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.65;
  margin: 20px 0 28px;
}
.footer__socials { display: flex; gap: 10px; }
.fsocial {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.fsocial:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-2px); }
.footer__nav {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.footer__col h4 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer__col ul li + li { margin-top: 10px; }
.footer__col ul a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .18s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1340px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 12.5px; color: rgba(255,255,255,.25); transition: color .18s; }
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* --- Simplified footer layout --- */
.footer__top--simple {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.footer__top--simple .footer__brand { max-width: 340px; }
.footer__links-simple {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 8px;
}
.footer__links-simple a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .18s;
}
.footer__links-simple a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer__top--simple { flex-direction: column; gap: 32px; }
  .footer__top--simple .footer__brand { max-width: 100%; }
  .footer__links-simple { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }
}

/* ---------- ACTIVE NAV ---------- */
.nav__link--active {
  color: var(--blue) !important;
  position: relative;
}
.nav__link--active::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--blue); border-radius: 1px;
}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 100px 0 80px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #06182c 0%, #0d2d52 60%, #0f3a6e 100%);
}
.page-hero__geo {
  position: absolute; border-radius: 50%; opacity: .06;
  animation: pulse 8s ease-in-out infinite;
}
.page-hero__geo--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -180px; right: -60px;
}
.page-hero__geo--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -120px; left: 20%;
  animation-delay: 3s;
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px;
  animation: heroIn .7s var(--ease-out) both;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color .18s; }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -.04em; line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.6);
  max-width: 580px; line-height: 1.7;
}

/* ---------- PAGE SECTIONS ---------- */
.pg-section { padding: 88px 0; }
.pg-section--light { background: var(--off-white); }
.pg-section--dark { background: var(--navy); }
.pg-container {
  max-width: 1340px; margin: 0 auto; padding: 0 32px;
}
.pg-container--narrow { max-width: 860px; }
.pg-grid { display: grid; gap: 64px; }
.pg-grid--2col { grid-template-columns: 1fr 1fr; align-items: start; }
.pg-text-col { display: flex; flex-direction: column; gap: 16px; }
.pg-text-col p { color: var(--muted); font-size: .95rem; }
.pg-section-head { margin-bottom: 52px; }
.pg-section-head--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.pg-section-head--center .label { justify-content: center; }
.pg-section-head__sub {
  font-size: .95rem; color: var(--muted); max-width: 520px; margin-top: 14px; line-height: 1.7;
}

/* ---------- VALUES GRID ---------- */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all .22s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,24,44,.1); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-card__icon { width: 48px; height: 48px; color: var(--blue); margin-bottom: 20px; }
.value-card__icon svg { width: 100%; height: 100%; }
.value-card__title {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
  color: var(--navy); margin-bottom: 10px;
}
.value-card__body { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ---------- LINK GRID ---------- */
.link-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.link-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all .22s var(--ease-out);
  position: relative; overflow: hidden;
}
.link-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  opacity: 0; transition: opacity .22s;
}
.link-card:hover { background: var(--white); border-color: transparent; box-shadow: 0 12px 36px rgba(6,24,44,.1); transform: translateY(-3px); }
.link-card:hover::before { opacity: 1; }
.link-card__icon { width: 44px; height: 44px; color: var(--navy); }
.link-card__icon svg { width: 100%; height: 100%; }
.link-card__title { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--navy); }
.link-card__body { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.link-card__arrow { font-size: 18px; color: var(--border); transition: color .22s, transform .22s; }
.link-card:hover .link-card__arrow { color: var(--blue); transform: translateX(4px); }

/* ---------- DOWNLOAD GRID ---------- */
.download-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dl-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px;
  color: var(--white);
  transition: all .22s;
}
.dl-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.dl-card__icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--green-bright); }
.dl-card__icon svg { width: 100%; height: 100%; }
.dl-card__info { flex: 1; }
.dl-card__info h3 { font-family: var(--ff-display); font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.dl-card__info span { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; }
.dl-card__arrow { width: 20px; height: 20px; flex-shrink: 0; color: rgba(255,255,255,.4); transition: color .18s; }
.dl-card:hover .dl-card__arrow { color: var(--green-bright); }

/* ---------- SPEC DOWNLOAD CARDS (products page) ---------- */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px;
}
.spec-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  transition: all .25s var(--ease-out);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.spec-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--green-bright));
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease-out);
  border-radius: 2px 0 0 2px;
}
.spec-card:hover { background: var(--off-white); border-color: transparent; box-shadow: 0 14px 36px rgba(6,24,44,.1); transform: translateY(-3px); }
.spec-card:hover::before { transform: scaleY(1); }

.spec-card__badge {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); line-height: 1;
}
.spec-card__badge--pdf { background: linear-gradient(135deg, #e63946, #c1121f); }
.spec-card__badge--doc { background: linear-gradient(135deg, #2563eb, #1d4ed8); }

.spec-card__info { flex: 1; min-width: 0; }
.spec-card__title {
  font-family: var(--ff-display); font-weight: 700; font-size: .92rem;
  color: var(--navy); line-height: 1.3; margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis;
}
.spec-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.spec-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

.spec-card__dl {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: all .22s;
}
.spec-card:hover .spec-card__dl {
  background: var(--blue); border-color: var(--blue);
  color: var(--white);
}
.spec-card__dl svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-card { padding: 20px 22px; gap: 14px; }
  .spec-card__badge { width: 44px; height: 44px; font-size: 10px; }
}

/* ---------- PRODUCT CARDS (products page) ---------- */
.prod-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.prod-card {
  display: flex; flex-direction: column;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px 36px;
  transition: all .25s var(--ease-out);
  position: relative; overflow: hidden;
}
.prod-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.prod-card:hover { background: var(--white); border-color: transparent; box-shadow: 0 20px 48px rgba(6,24,44,.12); transform: translateY(-5px); }
.prod-card:hover::before { transform: scaleX(1); }
.prod-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.prod-card__num {
  font-family: var(--ff-display); font-size: 12px; font-weight: 700;
  color: var(--border); letter-spacing: .08em;
  transition: color .22s;
}
.prod-card:hover .prod-card__num { color: var(--blue); }
.prod-card__icon { width: 56px; height: 56px; color: var(--navy); }
.prod-card__icon svg { width: 100%; height: 100%; }
.prod-card__title {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700;
  color: var(--navy); line-height: 1.25; margin-bottom: 14px;
}
.prod-card__title span { color: var(--muted); font-weight: 700; }
.prod-card__body {
  font-size: .9rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.prod-card__footer { margin-top: auto; }
.prod-card__cta {
  font-size: 14px; font-weight: 600; color: var(--blue);
  transition: transform .18s;
  display: inline-block;
}
.prod-card:hover .prod-card__cta { transform: translateX(4px); }

/* last product card spans full width if odd */
.prod-grid > .prod-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ---------- CONTACT CARDS ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.contact-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: all .25s var(--ease-out);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.contact-card:hover { background: var(--white); border-color: transparent; box-shadow: 0 20px 48px rgba(6,24,44,.12); transform: translateY(-4px); }
.contact-card:hover::before { transform: scaleX(1); }
.contact-card__icon { width: 52px; height: 52px; color: var(--blue); }
.contact-card__icon svg { width: 100%; height: 100%; }
.contact-card__title {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem;
  color: var(--navy); line-height: 1.25;
}
.contact-card__body { font-size: .9rem; color: var(--muted); line-height: 1.7; flex: 1; }
.contact-card__cta {
  font-size: 14px; font-weight: 600; color: var(--blue);
  transition: transform .18s; display: inline-block; margin-top: auto;
}
.contact-card:hover .contact-card__cta { transform: translateX(4px); }

/* ---------- CONTACT FORM ---------- */
.c-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(6,24,44,.04);
}
.c-form {
  display: flex; flex-direction: column; gap: 24px;
}
.c-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.c-form__group {
  display: flex; flex-direction: column; gap: 8px;
}
.c-form__label {
  font-size: .85rem; font-weight: 600; color: var(--navy);
}
.c-form__input {
  font-family: inherit;
  font-size: .95rem; color: var(--text);
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
  outline: none;
}
.c-form__input:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15,94,247,.15);
}
.c-form__input--textarea {
  resize: vertical; min-height: 120px;
}
.c-form__group--checkbox {
  flex-direction: row; align-items: center; gap: 10px;
}
.c-form__checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--muted); cursor: pointer;
}
.c-form__checkbox-label input {
  margin-top: 3px; cursor: pointer;
}
.c-form__submit { align-self: flex-start; margin-top: 8px; }
.c-form__success {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  color: var(--green-bright); padding: 16px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; margin-top: 16px;
}
.c-form__error {
  background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.3);
  color: #dc2626; padding: 16px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; margin-top: 16px;
}
@media (max-width: 768px) {
  .c-form__row { grid-template-columns: 1fr; gap: 24px; }
  .c-form-wrapper { padding: 32px 24px; }
}

/* ---------- INFO BOX ---------- */
.info-box {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 28px 32px;
}
.info-box__icon { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.info-box__icon svg { width: 100%; height: 100%; }
.info-box__title { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.info-box__body { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.info-box__body a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.info-box__body a:hover { color: var(--navy); }

/* ---------- OFFICES ---------- */
.offices-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.office-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all .22s;
}
.office-card:hover { background: var(--white); box-shadow: 0 12px 32px rgba(6,24,44,.08); transform: translateY(-3px); }
.office-card__flag { font-size: 2rem; margin-bottom: 16px; }
.office-card__title { font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 10px; }
.office-card__addr { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .products__head { grid-template-columns: 1fr; }
  .products__intro { grid-column: 1; grid-row: auto; padding-top: 0; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .sustain__inner { grid-template-columns: 1fr; gap: 48px; }
  .split { grid-template-columns: 1fr; }
  .split__visual--left { min-height: 400px; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .ncard--hero { grid-row: auto; grid-column: 1 / -1; }
  .ncard--wide { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .pg-grid--2col { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .topbar { padding: 0 16px; }
  .topbar__ticker span:not(.topbar__ticker-label):not(.topbar__ticker-sep):nth-child(n+4) { display: none; }
  .header__inner { padding: 0 20px; }
  .nav { display: none; }
  .nav.open { display: block; position: fixed; top: calc(var(--topbar-h) + var(--header-h)); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; box-shadow: 0 16px 32px rgba(6,24,44,.1); }
  .nav.open .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.open .nav__link { padding: 12px 16px; font-size: 15px; border-radius: 8px; }
  .nav.open .dropdown { display: flex; position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-toggle { display: flex; }
  .figures__inner { flex-wrap: wrap; }
  .figure { flex: 1 1 40%; padding: 28px 16px; }
  .figure__rule { display: none; }
  .news__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__content { padding: 64px 20px; }
  .hero__scroll { left: 20px; }
  .products__head { padding: 0 20px 40px; }
  .marquee-cta { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0 56px; }
  .page-hero__content { padding: 0 20px; }
  .pg-section { padding: 56px 0; }
  .pg-container { padding: 0 20px; }
  .info-box { flex-direction: column; gap: 14px; }
  .split__text--right { padding: 48px 20px; }
  .featured-strip__inner { padding: 36px 20px; gap: 24px; }
  .ncard { padding: 24px 20px; }
  .ncard--hero { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 2.6rem; }
  .hero__tagline { font-size: 1.1rem; }
  .figure { flex: 1 1 100%; }
  .footer__nav { grid-template-columns: 1fr; }
  .page-hero__h1 { font-size: 2.2rem; }
  .topbar__actions { gap: 10px; }
  .topbar__search-btn span { display: none; }
}
