/* ---------------------------------------------------------------------------
   actsromania.ro — site stylesheet

   Plain CSS with custom properties, no build step. The design ships every rule
   as an inline style attribute; here it is expressed as classes instead, which
   keeps the markup readable and lets the site run under a Content-Security-
   Policy that forbids inline styles.

   Sections
     1. Tokens
     2. Reset and base type
     3. Layout primitives
     4. Buttons and links
     5. Header: top bar, navigation, mobile menu
     6. Home: hero, carousel, pillars, band, metrics, promo, involve
     7. Inner pages: page hero, prose, timeline, steps, offers, FAQ
     8. Footer
     9. Motion and reduced motion
   --------------------------------------------------------------------------- */

/* 1. Tokens ---------------------------------------------------------------- */

:root {
  /* Brand */
  --ink: #14213d;
  --amber: #fca311;
  --sky: #4cc9f0;
  --mist: #f4f7fa;
  --cream: #fff6e6;
  --white: #ffffff;

  /* Ink at the opacities the design uses, named by role */
  --text: var(--ink);
  --text-muted: rgba(20, 33, 61, 0.72);
  --text-soft: rgba(20, 33, 61, 0.66);
  --text-faint: rgba(20, 33, 61, 0.5);
  --on-dark: rgba(255, 255, 255, 0.74);
  --on-dark-faint: rgba(255, 255, 255, 0.62);

  --line: rgba(20, 33, 61, 0.12);
  --line-soft: rgba(20, 33, 61, 0.1);
  --line-strong: rgba(20, 33, 61, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);

  --font-display: "Space Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --shell: 1280px;
  --gutter: 40px;

  --radius-sm: 3px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Read by main.js when it paints the hero network, so the palette stays here. */
  --network-accent: #4cc9f0;
  --network-ink: 20, 33, 61;

  --shadow-card: 0 22px 50px rgba(20, 33, 61, 0.14);
  --shadow-soft: 0 18px 44px rgba(20, 33, 61, 0.12);
  --shadow-drop: 0 24px 60px rgba(20, 33, 61, 0.28);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2. Reset and base type --------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky header height, so in-page anchors are not hidden behind it. */
  scroll-padding-top: 150px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--amber);
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  margin: 0;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

/* 3. Layout primitives ----------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 96px 0;
}

.section--flush-top {
  padding-top: 0;
}

.section--flush-bottom {
  padding-bottom: 0;
}

.section--mist {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.section--ink {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

/* Decorative wash layers, always behind content and never clickable. */
.wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wash--sky-right {
  background: radial-gradient(60% 120% at 82% 50%, rgba(76, 201, 240, 0.22), transparent 60%);
}

.wash--about {
  background:
    radial-gradient(90% 100% at 84% 10%, rgba(76, 201, 240, 0.3), transparent 62%),
    radial-gradient(60% 80% at 4% 90%, rgba(252, 163, 17, 0.22), transparent 60%);
}

.wash--hub {
  background:
    radial-gradient(80% 90% at 20% 10%, rgba(76, 201, 240, 0.28), transparent 58%),
    radial-gradient(60% 70% at 92% 80%, rgba(252, 163, 17, 0.22), transparent 60%);
}

.wash--mission {
  background: radial-gradient(70% 90% at 90% 20%, rgba(76, 201, 240, 0.26), transparent 60%);
}

.wash--story {
  background: radial-gradient(70% 80% at 12% 12%, rgba(252, 163, 17, 0.22), transparent 58%);
}

.wash--faq {
  background: radial-gradient(60% 90% at 88% 30%, rgba(76, 201, 240, 0.26), transparent 60%);
}

.wash--rules-h {
  background-image: linear-gradient(rgba(20, 33, 61, 0.07) 1px, transparent 1px);
  background-size: 100% 46px;
}

.wash--rules-v {
  background-image: linear-gradient(90deg, rgba(20, 33, 61, 0.07) 1px, transparent 1px);
  background-size: 46px 100%;
}

.shell--relative {
  position: relative;
}

.split {
  display: grid;
  gap: 56px;
  align-items: center;
}

.split--hero {
  grid-template-columns: 1.02fr 0.98fr;
}

.split--band {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 46px;
}

.split--figure {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.split--mission {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.split--trust {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 62px;
}

.split--even {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.split--offers {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.split--faq {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

/* A header row that stacks on narrow screens. */
.rowend {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

/* Shared editorial blocks -------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 16px;
}

.eyebrow--ink {
  color: var(--ink);
}

.display {
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
}

.heading {
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.04;
  margin: 0;
}

.heading--sm {
  font-size: clamp(30px, 3.2vw, 46px);
}

.heading--xs {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.lead--sm {
  font-size: 17.5px;
  line-height: 1.66;
}

.measure {
  max-width: 720px;
}

.measure--wide {
  max-width: 780px;
}

.measure--narrow {
  max-width: 700px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.prose {
  font-size: 17px;
  line-height: 1.68;
  color: rgba(20, 33, 61, 0.76);
}

.accent {
  color: var(--amber);
}

.sky {
  color: var(--sky);
}

.section-head {
  margin-bottom: 46px;
}

/* One vertical rhythm between a heading and the text that follows it. */
.heading + .lead,
.heading + .stack,
.heading + .prose,
.heading + .mission-quote,
.heading + .lead-center,
.display + .lead {
  margin-top: 22px;
}

/* 4. Buttons and links ----------------------------------------------------- */

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(252, 163, 17, 0.32);
}

.btn--primary:hover {
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(252, 163, 17, 0.42);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
}

.btn--ink:hover {
  color: var(--white);
  background: #1c2c50;
}

.btn--ghost {
  font-weight: 500;
  padding: 17px 28px;
  border-color: rgba(20, 33, 61, 0.22);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--on-dark {
  font-weight: 500;
  padding: 17px 26px;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn--on-dark:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--sm {
  font-size: 15.5px;
  padding: 14px 24px;
  white-space: nowrap;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-row--center {
  justify-content: center;
}

.btn-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Underlined text link with an amber rule, used inside cards. */
.link-rule {
  align-self: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

.link-arrow {
  align-self: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.link-underline {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(20, 33, 61, 0.4);
  padding-bottom: 2px;
  text-align: center;
}

/**
 * An item whose page is not published yet. Rendered as plain text rather than
 * a link that leads nowhere; see src/navigation.php. Calls to action are never
 * left in this state — those point at the contact block until their own page
 * exists.
 */
.pending {
  cursor: default;
}

.nav__link.pending,
.footer__links .pending {
  color: var(--text-faint);
}

.dropdown__link.pending {
  color: rgba(255, 255, 255, 0.42);
}

.link-rule.pending,
.link-arrow.pending,
.social.pending {
  opacity: 0.5;
}

/* 5. Header ---------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar__pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 10px var(--sky);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__donate {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.topbar__donate:hover {
  color: var(--white);
}

.langbar {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.langbar__option {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.langbar__option:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.langbar__option:last-child {
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.langbar__option:hover {
  color: var(--white);
}

.langbar__option[aria-current="true"] {
  background: rgba(252, 163, 17, 0.16);
  color: var(--amber);
  border-color: rgba(252, 163, 17, 0.5);
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.brand:hover .brand__word {
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: stretch;
  gap: 4px;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 15px;
  color: var(--ink);
  white-space: nowrap;
}

.nav__link[aria-current="page"] {
  color: var(--amber);
}

/**
 * Dropdowns open on hover and on keyboard focus. The design opened them from
 * mouseenter alone, which made them unreachable by keyboard.
 */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--ink);
  border: 1px solid rgba(76, 201, 240, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-drop);
}

.dropdown--right {
  left: auto;
  right: 0;
}

.nav__group:hover .dropdown,
.nav__group:focus-within .dropdown {
  display: flex;
}

.dropdown__link {
  display: block;
  font-size: 15.5px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dropdown__link--accent {
  color: var(--amber);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 18px 22px 26px;
  list-style: none;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}

.mobile-menu[data-open="true"] {
  display: flex;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-mono);
  font-size: 14.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu li:last-child .mobile-menu__link {
  border-bottom: none;
}

.mobile-menu__link--accent {
  color: var(--amber);
}

/* 6. Home ------------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 116px;
  background: var(--white);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(110% 80% at 82% 12%, rgba(76, 201, 240, 0.16) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(70% 70% at 4% 96%, rgba(252, 163, 17, 0.14) 0%, rgba(255, 255, 255, 0) 62%);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.05) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(80% 74% at 50% 42%, #000 18%, transparent 100%);
  mask-image: radial-gradient(80% 74% at 50% 42%, #000 18%, transparent 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(76, 201, 240, 0.55);
  background: rgba(76, 201, 240, 0.1);
  border-radius: 100px;
}

.badge__pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: acts-pulse 2.4s ease-in-out infinite;
}

.badge__text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__title {
  font-weight: 600;
  font-size: clamp(46px, 6.6vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  margin: 0 0 26px;
}

.hero__lead {
  font-size: 19px;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 0 38px;
}

/* Orbit ------------------------------------------------------------------- */

.orbit {
  position: relative;
  height: 560px;
  min-height: 420px;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
}

.orbit__ring--1 {
  inset: 2% 0;
  border: 1px solid var(--line);
  animation: acts-spin 58s linear infinite;
}

.orbit__ring--2 {
  inset: 15% 13%;
  border: 1px dashed rgba(76, 201, 240, 0.5);
  animation: acts-spin 40s linear infinite reverse;
}

.orbit__ring--3 {
  inset: 28% 26%;
  border: 1px solid rgba(252, 163, 17, 0.42);
  animation: acts-spin 26s linear infinite;
}

.orbit__dot {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.orbit__dot--a { top: -7px; left: 50%; width: 14px; height: 14px; background: var(--sky); box-shadow: 0 0 22px rgba(76, 201, 240, 0.85); }
.orbit__dot--b { bottom: 8%; right: 4%; width: 9px; height: 9px; background: var(--ink); }
.orbit__dot--c { top: 16%; left: 2%; width: 7px; height: 7px; background: var(--amber); box-shadow: 0 0 16px rgba(252, 163, 17, 0.7); }
.orbit__dot--d { bottom: -6px; left: 26%; width: 12px; height: 12px; background: var(--amber); box-shadow: 0 0 20px rgba(252, 163, 17, 0.75); }
.orbit__dot--e { top: 12%; right: 6%; width: 8px; height: 8px; background: var(--sky); }
.orbit__dot--f { top: 4%; right: 8%; width: 10px; height: 10px; background: var(--ink); }
.orbit__dot--g { bottom: 6%; left: 10%; width: 7px; height: 7px; background: var(--sky); box-shadow: 0 0 14px rgba(76, 201, 240, 0.8); }

.orbit__core {
  position: absolute;
  inset: 39% 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 26px 60px rgba(20, 33, 61, 0.28);
  animation: acts-float 7s ease-in-out infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* Hairline grids (stat bar, metrics, steps) ------------------------------- */

.hairgrid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hairgrid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.hairgrid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.statbar {
  margin-top: 78px;
  border-radius: var(--radius-md);
}

.statbar__cell {
  background: var(--white);
  padding: 24px 26px;
}

.statbar__cell--accent {
  background: var(--amber);
}

.statbar__value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}

.statbar__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 33, 61, 0.55);
  margin-top: 6px;
}

.statbar__cell--accent .statbar__label {
  color: rgba(20, 33, 61, 0.7);
}

/* Carousel ---------------------------------------------------------------- */

.carousel__head {
  margin-bottom: 44px;
}

/**
 * The track is a natively scrollable, snapping row. That means the carousel
 * works with touch, trackpad and keyboard before any JavaScript runs; main.js
 * then adds the arrows and the position dots and hides the scrollbar.
 */
.carousel__nav {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.carousel__btn:hover {
  border-color: var(--ink);
}

.carousel__btn--next {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.carousel__btn--next:hover {
  background: #1c2c50;
}

.carousel__btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Room for the hover lift, which would otherwise be clipped. */
  padding: 6px 0 10px;
  margin: -6px 0 -10px;
}

.carousel.is-enhanced .carousel__viewport {
  scrollbar-width: none;
}

.carousel.is-enhanced .carousel__viewport::-webkit-scrollbar {
  display: none;
}

.carousel__track {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel__dots {
  display: flex;
  gap: 7px;
  margin-top: 28px;
}

.carousel__dots:empty {
  display: none;
}

.carousel__dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(20, 33, 61, 0.16);
  transition: background 0.25s ease;
}

.carousel__dot[aria-current="true"] {
  background: var(--amber);
}

/* Project card ------------------------------------------------------------ */

.card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.card__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.7);
  margin: 0 0 20px;
  flex: 1;
}

/* Card artwork: the five generated visuals from the design. */
.viz {
  position: relative;
  height: 168px;
  background: var(--ink);
  overflow: hidden;
}

.viz--conic::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: conic-gradient(
    from 220deg at 60% 45%,
    rgba(76, 201, 240, 0.55),
    rgba(20, 33, 61, 0) 45%,
    rgba(252, 163, 17, 0.4) 78%,
    rgba(20, 33, 61, 0)
  );
}

.viz--conic::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.viz--rings {
  display: flex;
  align-items: center;
  justify-content: center;
}

.viz--rings::before {
  content: "";
  width: 150px;
  height: 150px;
  border: 1px solid rgba(76, 201, 240, 0.4);
  border-radius: 50%;
}

.viz--rings::after {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(252, 163, 17, 0.6);
  transform: rotate(45deg);
}

.viz__blob {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(76, 201, 240, 0.7), transparent 70%);
}

.viz--signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 201, 240, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 240, 0.22) 1px, transparent 1px);
  background-size: 26px 26px;
}

.viz__beam {
  position: absolute;
  left: 18%;
  top: 24%;
  width: 62%;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(252, 163, 17, 0));
}

.viz__beam::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4.5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(252, 163, 17, 0.8);
}

.viz__tilt {
  position: absolute;
  right: 22%;
  bottom: 26%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(20deg);
}

.viz--bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 24px;
}

.viz__bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(76, 201, 240, 0.75), rgba(76, 201, 240, 0.1));
}

.viz__bar:nth-child(1) { height: 34%; }
.viz__bar:nth-child(2) { height: 58%; }
.viz__bar:nth-child(3) { height: 82%; background: linear-gradient(180deg, var(--amber), rgba(252, 163, 17, 0.12)); }
.viz__bar:nth-child(4) { height: 46%; }
.viz__bar:nth-child(5) { height: 68%; }

.viz--tiles {
  display: flex;
  align-items: center;
  justify-content: center;
}

.viz--tiles::before {
  content: "";
  width: 96px;
  height: 96px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(12deg);
  background: linear-gradient(135deg, rgba(252, 163, 17, 0.34), rgba(76, 201, 240, 0.28));
}

.viz--tiles::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 26px;
  border: 1px dashed rgba(76, 201, 240, 0.55);
  transform: rotate(-16deg);
}

/* Pillars ----------------------------------------------------------------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pillar--wide {
  grid-column: span 2;
}

.pillar--feature {
  background: var(--mist);
  border-color: var(--line-soft);
  padding: 40px;
}

.pillar--split {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.pillar__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 20px;
}

.pillar__title {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.pillar__title--lg {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 460px;
}

.pillar__text {
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(20, 33, 61, 0.7);
  margin: 0;
}

.pillar__text--lg {
  font-size: 16px;
  line-height: 1.64;
  color: var(--text-muted);
  max-width: 520px;
}

.pillar__body {
  position: relative;
}

.pillar__decor {
  position: absolute;
  pointer-events: none;
}

.pillar__decor--ring {
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(76, 201, 240, 0.5);
}

.pillar__decor--glow {
  right: 10px;
  top: 30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(76, 201, 240, 0.34), transparent 68%);
}

.pillar__target {
  position: relative;
  flex: 0 0 132px;
  height: 132px;
}

.pillar__target span {
  position: absolute;
  border-radius: 50%;
}

.pillar__target span:nth-child(1) { inset: 0; border: 1px solid rgba(20, 33, 61, 0.16); }
.pillar__target span:nth-child(2) { inset: 22px; border: 1px solid rgba(76, 201, 240, 0.6); }
.pillar__target span:nth-child(3) { inset: 46px; background: var(--amber); }

/* Ink band ---------------------------------------------------------------- */

.band {
  padding: 88px 0;
}

.band__title {
  font-weight: 600;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.band__lead {
  font-size: 17px;
  line-height: 1.64;
  color: var(--on-dark);
  margin: 0;
  max-width: 640px;
}

/* Metrics ----------------------------------------------------------------- */

.metric {
  background: var(--white);
  padding: 38px 32px;
}

.metric--dark {
  background: var(--ink);
  color: var(--white);
}

.metric__value {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.metric--dark .metric__value {
  color: var(--amber);
}

.metric__title {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 8px;
}

.metric__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

.metric--dark .metric__text {
  color: rgba(255, 255, 255, 0.7);
}

/* A vertical stack of metrics, used on the About page. */
.metric-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.metric-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 26px 28px;
  background: var(--white);
}

.metric-row--dark {
  background: var(--ink);
}

.metric-row__value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  min-width: 116px;
}

.metric-row--dark .metric-row__value {
  color: var(--amber);
}

.metric-row__text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.metric-row--dark .metric-row__text {
  color: var(--on-dark);
}

/* Amber promo panels ------------------------------------------------------ */

.promo {
  position: relative;
  overflow: hidden;
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}

.promo--register {
  padding: 52px 44px;
  gap: 32px;
}

.promo__decor {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(20, 33, 61, 0.16);
  pointer-events: none;
}

.promo__body {
  position: relative;
  max-width: 700px;
}

.promo__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(20, 33, 61, 0.7);
  margin-bottom: 14px;
}

.promo__title {
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
}

.promo__title--lg {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  margin-bottom: 14px;
}

.promo__lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.82);
  margin: 0;
}

.promo__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Involve cards ----------------------------------------------------------- */

.involve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.involve__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.involve__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.involve__card--sky {
  border-top-color: var(--sky);
}

.involve__card--support {
  background: var(--cream);
  border-color: rgba(252, 163, 17, 0.45);
  border-top-color: var(--amber);
}

.involve__title {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
}

.involve__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.7);
  margin: 0;
  flex: 1;
}

/* 7. Inner pages ----------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  color: var(--ink);
}

.page-hero__inner {
  position: relative;
  padding: 104px 0 96px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 22px;
}

.breadcrumb__sep {
  color: rgba(20, 33, 61, 0.4);
}

.figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--ink);
  overflow: hidden;
}

.figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 201, 240, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 240, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
}

.figure__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.figure__gem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, rgba(252, 163, 17, 0.9), rgba(252, 163, 17, 0.25));
}

.figure__spark {
  position: absolute;
  left: 14%;
  top: 18%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 20px var(--sky);
}

.figure__spark--sm {
  left: auto;
  top: auto;
  right: 18%;
  bottom: 20%;
  width: 8px;
  height: 8px;
  background: var(--white);
  box-shadow: none;
}

.pullquote {
  margin-top: 30px;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--amber);
}

.pullquote p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.44;
  color: var(--amber);
  margin: 0;
}

.team-quote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--sky));
}

/* A centred lead paragraph. Shared by the closing CTA panel and the 404 page. */
.lead-center {
  font-size: 17.5px;
  line-height: 1.64;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 720px;
}

/* Timeline ---------------------------------------------------------------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.milestone {
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.milestone--accent {
  background: rgba(252, 163, 17, 0.1);
  border-color: rgba(252, 163, 17, 0.5);
}

.milestone__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 16px;
}

.milestone__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

.milestone__text {
  font-size: 15.5px;
  line-height: 1.64;
  color: rgba(20, 33, 61, 0.74);
  margin: 0;
}

/* Steps ------------------------------------------------------------------- */

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  background: var(--white);
  padding: 34px 28px;
}

.step--dark {
  background: var(--ink);
  color: var(--white);
}

.step__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sky);
  margin-bottom: 22px;
}

.step--dark .step__label {
  color: var(--amber);
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}

.step__text {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(20, 33, 61, 0.7);
  margin: 0;
}

.step--dark .step__text {
  color: rgba(255, 255, 255, 0.72);
}

/* Offers ------------------------------------------------------------------ */

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.offer {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.offer--sky {
  border-color: rgba(76, 201, 240, 0.5);
  background: rgba(76, 201, 240, 0.07);
}

.offer__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.offer__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.7);
  margin: 0;
}

/* FAQ --------------------------------------------------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/**
 * Built on <details>, so a question can be opened without JavaScript and is
 * announced correctly by assistive technology.
 */
.faq__item {
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.25s ease;
}

.faq__item[open] {
  background: rgba(20, 33, 61, 0.04);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  color: var(--amber);
}

.faq__icon::after {
  content: "+";
}

.faq__item[open] .faq__icon::after {
  content: "–";
}

.faq__a {
  padding: 0 24px 24px;
  font-size: 15.5px;
  line-height: 1.66;
  color: rgba(20, 33, 61, 0.74);
  margin: 0;
}

/* 8. Footer ---------------------------------------------------------------- */

.footer {
  background: var(--mist);
  color: var(--text-muted);
  border-top: 3px solid var(--amber);
}

.footer__inner {
  padding: 72px 0 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 52px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}

.footer__brand .brand__mark {
  width: 30px;
  height: 30px;
}

.footer__brand .brand__word {
  font-size: 20px;
}

.footer__about {
  font-size: 15px;
  line-height: 1.64;
  margin: 0 0 26px;
  max-width: 420px;
}

.footer__title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.bank {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  max-width: 420px;
}

.bank__title {
  color: var(--amber);
  margin-bottom: 14px;
}

.bank__rows {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}

.bank__key {
  color: var(--text-faint);
}

.bank__value {
  color: var(--ink);
}

.bank__value--mono {
  font-family: var(--font-mono);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.footer__links a {
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--amber);
}

.contact-block {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-block--phones {
  line-height: 1.8;
}

.contact-block__label {
  color: var(--text-faint);
  margin-bottom: 4px;
}

.contact-block__value {
  color: var(--ink);
}

.socials {
  display: flex;
  gap: 8px;
}

.social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(20, 33, 61, 0.78);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.social:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.footer__bar {
  margin-top: 46px;
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--on-dark-faint);
}

.footer__motto {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Error page --------------------------------------------------------------- */

.error {
  padding: 120px 0 128px;
  text-align: center;
}

.error__code {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 12px;
}

/* 9. Motion ---------------------------------------------------------------- */

@keyframes acts-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes acts-spin {
  to { transform: rotate(360deg); }
}

@keyframes acts-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1080px) {
  .nav__links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 22px;
  }

  html {
    scroll-padding-top: 120px;
  }

  .section,
  .section--tight {
    padding: 72px 0;
  }

  .section--flush-top { padding-top: 0; }
  .section--flush-bottom { padding-bottom: 0; }

  .hero {
    padding: 96px 0 88px;
  }

  .split {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .orbit {
    height: 400px;
  }

  .hairgrid--4,
  .hairgrid--3,
  .pillars,
  .involve {
    grid-template-columns: 1fr 1fr;
  }

  .pillar--wide {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .panel,
  .cta-panel {
    padding: 36px 24px;
  }

  .promo,
  .promo--register {
    padding: 34px 26px;
  }

  .card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 620px) {
  .hairgrid--4,
  .hairgrid--3,
  .pillars,
  .involve,
  .timeline,
  .offers {
    grid-template-columns: 1fr;
  }

  .pillar--wide {
    grid-column: auto;
  }

  .pillar--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .rowend {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__status {
    display: none;
  }

  .card {
    flex-basis: 100%;
  }

  .metric-row {
    flex-direction: column;
    gap: 8px;
  }

  .promo__actions,
  .btn-col {
    width: 100%;
  }

  .statbar {
    margin-top: 48px;
  }
}

/**
 * Honour the visitor's motion preference: the orbit, the pulse and the hover
 * lifts stop, and main.js skips the hero animation entirely.
 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .card:hover,
  .pillar:hover,
  .involve__card:hover,
  .btn:hover {
    transform: none;
  }
}
