/* ===========================================================
   Diabryx — mRNA Services CDMO
   Dark, futuristic, high-tech brochure site
   =========================================================== */

:root {
  /* Palette */
  --bg:        #0A0A1F;
  --bg-2:      #0B0E24;
  --bg-3:      #0E1230;
  --surface:   rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border:    rgba(255, 255, 255, 0.10);
  --border-glow: rgba(124, 213, 255, 0.35);

  --text:      #E8EAF6;
  --text-soft: #AEB4D6;
  --text-mute: #7C84AD;

  --cyan:    #22D3EE;
  --violet:  #A855F7;
  --magenta: #E879F9;

  --grad: linear-gradient(110deg, #22D3EE 0%, #6366F1 45%, #A855F7 100%);
  --grad-soft: linear-gradient(110deg, rgba(34,211,238,0.18), rgba(168,85,247,0.18));

  --glow-cyan:   0 0 40px rgba(34, 211, 238, 0.28);
  --glow-violet: 0 0 40px rgba(168, 85, 247, 0.30);

  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1180px;
  --gap: 24px;

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background glows fixed to the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(720px 480px at 12% -5%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(820px 560px at 95% 8%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(99, 102, 241, 0.14), transparent 65%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F4F5FF;
}

::selection { background: rgba(168, 85, 247, 0.4); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--grad);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  line-height: 1.6;
}

h2.section-title { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 16px; }
h3.sub-title { font-size: 1.25rem; margin-bottom: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.btn-primary {
  background: var(--grad);
  color: #05060F;
  box-shadow: var(--glow-violet);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(168,85,247,0.5); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--border-glow); transform: translateY(-2px); box-shadow: var(--glow-cyan); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 31, 0.62);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand .logo-mark { width: 30px; height: 30px; filter: drop-shadow(0 0 8px rgba(34,211,238,0.5)); }
.brand b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: var(--surface); }
.nav-links a.active { color: #fff; background: var(--grad-soft); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
  position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px;
}
.chip {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(8px);
}

/* Hero visual: animated mRNA strand */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-visual .orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 50% 50%, rgba(99,102,241,0.10), transparent 70%);
}
.strand-svg { width: 100%; height: 100%; position: relative; z-index: 2; overflow: visible; }
.strand-svg .backbone { fill: none; stroke: url(#heroGrad); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(124,213,255,0.5)); }
.strand-svg .rung { stroke: url(#heroGrad); stroke-width: 2; stroke-linecap: round; opacity: 0.55; }
.strand-svg .node { fill: var(--cyan); filter: drop-shadow(0 0 6px rgba(34,211,238,0.9)); }
.strand-svg .node.v { fill: var(--magenta); filter: drop-shadow(0 0 6px rgba(232,121,249,0.9)); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes nodepulse { 0%,100% { opacity: .6; r: 3.2; } 50% { opacity: 1; r: 4.6; } }
.hero-visual .floaty { animation: floaty 7s ease-in-out infinite; }
.strand-svg .node { animation: nodepulse 3.4s ease-in-out infinite; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s, background .35s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7); }
.card:hover::before { opacity: 0.7; }

.card .card-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.card .card-icon svg { width: 26px; height: 26px; stroke: var(--cyan); }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 0.97rem; }
.card .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

/* Glass panel variant */
.panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(14px);
}

/* ---------- Stats band ---------- */
.stats-band {
  background:
    linear-gradient(160deg, rgba(34,211,238,0.06), rgba(168,85,247,0.06)),
    var(--bg-2);
  border-block: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
}
.stat .label { color: var(--text-soft); font-size: 0.95rem; margin-top: 10px; }

/* ---------- Process / lifecycle ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.step .step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad);
  color: #05060F;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 0.92rem; }
.step::after {
  content: "→";
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-mute);
  font-size: 1.2rem;
}
.steps .step:last-child::after { display: none; }

/* ---------- Feature rows (alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 64px; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(34,211,238,0.08), rgba(168,85,247,0.08));
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.feature-media svg { width: 70%; height: 70%; }
.feature-list { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; color: var(--text-soft); font-size: 0.98rem; }
.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 3px;
  border-radius: 6px;
  background: var(--grad-soft);
  border: 1px solid var(--border-glow);
  background-image: var(--grad-soft), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%, 13px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(168,85,247,0.16));
  border: 1px solid var(--border-glow);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, rgba(168,85,247,0.3), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bio { text-align: center; }
.avatar {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.5rem;
  color: #fff;
  background: var(--bg-3);
  position: relative;
}
.avatar::before {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--grad);
  z-index: -1;
  filter: blur(0.5px);
}
.bio h3 { font-size: 1.12rem; margin-bottom: 2px; }
.bio .role { color: var(--cyan); font-size: 0.86rem; font-weight: 600; font-family: var(--font-head); margin-bottom: 12px; }
.bio p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- News ---------- */
.news-list { display: grid; gap: 18px; }
.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
  transition: border-color .3s, transform .3s var(--ease);
}
.news-item:hover { border-color: var(--border-glow); transform: translateX(4px); }
.news-item .date { color: var(--violet); font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; }
.news-item .cat {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute); font-family: var(--font-head); margin-top: 6px;
}
.news-item h3 { font-size: 1.18rem; margin-bottom: 8px; }
.news-item p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Careers roles ---------- */
.role-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.role-card:hover { border-color: var(--border-glow); transform: translateY(-3px); box-shadow: var(--glow-cyan); }
.role-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.role-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.role-meta .chip { font-size: 0.74rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-mute); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.18);
  background: rgba(255,255,255,0.06);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-detail .ci {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.contact-detail .ci svg { width: 22px; height: 22px; stroke: var(--cyan); }
.contact-detail h4 { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail p { color: var(--text-soft); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--cyan); }

/* ---------- Facilities ---------- */
.facility { padding: 24px; }
.facility .badge {
  display: inline-block; font-family: var(--font-head); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  color: var(--cyan); margin-bottom: 10px;
}
.facility h3 { font-size: 1.1rem; margin-bottom: 6px; }
.facility p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 72px 0 40px; position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 18px; }
.page-hero .lead { max-width: 680px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p { color: var(--text-soft); font-size: 0.95rem; margin-top: 14px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--text-mute); font-size: 0.85rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse .feature-media { order: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10,10,31,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-item { grid-template-columns: 1fr; gap: 10px; }
  .role-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .panel { padding: 28px; }
  .cta-band { padding: 40px 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
