/* =========================================================
   HeroPAK — demo1v2 (navy-dominant variant)
   Design language: brand navy as primary surface, cream and amber as elevated accents.
   ========================================================= */

/* ----- Tokens ----- */
:root {
  /* surfaces — #0b1f3b is the dominant brand navy */
  --bg:        #0b1f3b;   /* primary navy surface */
  --bg-alt:    #0f2a50;   /* slightly lighter navy for section rhythm */
  --bg-deep:   #021935;   /* deepest navy for emphasis sections */
  --bg-deep-2: #07172e;
  --bg-light:  #FAFAF7;   /* warm cream — used for inverted cards / primary buttons */

  /* ink — light text on dark navy */
  --ink:       #FAFAF7;
  --ink-2:     #d4dae6;
  --ink-3:     rgba(250,250,247,0.6);
  --ink-4:     rgba(250,250,247,0.35);
  --ink-inv:   #0b1f3b;   /* dark navy, for text on light/cream surfaces */

  /* accents — heropak.io brand palette, lighter shades elevated for visibility on navy */
  --blue:        #698abc;            /* light brand blue, visible on navy */
  --blue-2:      #8ca6cc;            /* lighter sibling for hover */
  --blue-mid:    #3b5884;            /* mid for variation */
  --blue-deep:   #021935;
  --blue-soft:   rgba(105,138,188,0.18);
  --amber:       #FFCA00;
  --amber-deep:  #C99800;

  /* lines — light alphas on dark surface */
  --line:    rgba(255,255,255,0.14);
  --line-2:  rgba(255,255,255,0.08);
  --line-3:  rgba(255,255,255,0.08);

  /* fonts */
  --f-disp: 'Bricolage Grotesque', 'Times New Roman', serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* rhythm */
  --pad-x:   clamp(20px, 5vw, 88px);
  --pad-sec: clamp(80px, 10vw, 160px);
  --maxw:    1380px;

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

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; }
p { margin: 0; }

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

/* ----- Typography helpers ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow__bar {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
}
.eyebrow--alt { color: rgba(250,250,247,.65); }
.eyebrow--alt .eyebrow__bar { background: var(--amber); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.kicker__pulse {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,202,0,0.18);
  animation: pulse 1.8s var(--ease) infinite;
}
.kicker__rev {
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 10px;
  letter-spacing: 0.2em;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,202,0,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(255,202,0,0.05); }
}

/* ----- Section heads ----- */
.section__head {
  max-width: 920px;
  margin: 0 auto var(--pad-sec) auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.section__head--split {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  text-align: left;
  gap: 40px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.section__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 22px;
}
.section__title em {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.section__title--alt { color: var(--ink); }
.section__title--alt em { color: var(--amber); }
.section__sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-3);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--bg-deep);
  color: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker__sep { color: var(--amber); }
@keyframes ticker {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px var(--pad-x);
  background: rgba(11,31,59,0.78);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__logo {
  height: 38px;
  width: auto;
  display: block;
  /* the logo asset already has a navy bg matching --bg, so it blends seamlessly
     into the translucent navy navbar; small negative inline-block tweak keeps
     the optical alignment with the tagline */
  margin-block: -2px;
}
.nav__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  margin-left: 4px;
}
.nav__links {
  display: flex;
  gap: 6px;
  justify-self: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.nav__links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover {
  background: var(--ink);
  color: var(--bg);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
}
.lang__btn {
  padding: 0;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.lang__btn.is-active { color: var(--ink); }
.lang__divider { width: 1px; height: 12px; background: var(--line); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease),
              background .25s var(--ease),
              color .25s var(--ease),
              border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; }
.btn--lg { padding: 16px 24px; font-size: 15px; }
.btn--xl { padding: 20px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -12px rgba(11,31,59,0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) var(--pad-x) clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, black 30%, transparent 70%);
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105,138,188,0.32), transparent 60%);
  filter: blur(40px);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(46px, 8vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 28px 0 28px;
  color: var(--ink);
}
.hero__title .line {
  display: block;
}
.hero__title em {
  font-style: italic;
  font-family: var(--f-disp);
  font-weight: 400;
  color: var(--blue);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  bottom: 0.04em;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.2s 1.2s var(--ease) forwards;
}
@keyframes underline {
  to { transform: scaleX(1); }
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* three explicit rows: tag slot, big value, label.
     subgrid on each <li> makes all cells share these row tracks
     so the big numbers always sit on the same horizontal baseline,
     regardless of label wrapping or whether a tag is present. */
  grid-template-rows: auto auto auto;
  column-gap: 0;
  row-gap: 10px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
  padding: 0 12px;
  text-align: center;
  align-items: start;
}
.hero__stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 8px; bottom: 0;
  width: 1px;
  background: var(--line);
}
.stat__tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
.stat__num {
  display: block;
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.35;
}

/* hero visual ----- */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
}
.orbit {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(14,16,20,0.08));
}
.orbit__rot {
  transform-origin: 300px 300px;
  animation: spin 22s linear infinite;
}
.orbit__rot--2 { animation-duration: 28s; animation-delay: -7s; opacity: 0.85; }
.orbit__rot--3 { animation-duration: 18s; animation-delay: -3s; opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

.station__num {
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 600;
  fill: var(--ink-inv);
}
.station__lbl {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  fill: rgba(11,31,59,0.7);
}
/* Each station bubble pulses in sequence — 4.8s cycle, each gets a 1.2s window.
   Station 1: 0s, Station 2: 1.2s, Station 3: 2.4s, Station 4: 3.6s.
   At peak: scales 14% bigger AND the outline shifts to amber + thickens. */
.station__bubble {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: stationPulseScale 4.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes stationPulseScale {
  0%, 25%, 100% { transform: scale(1); }
  12.5%         { transform: scale(1.14); }
}

/* color shift on the visible station circle — synchronised with the scale */
.station__bubble > circle {
  animation: stationPulseStroke 4.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes stationPulseStroke {
  0%, 25%, 100% {
    stroke: rgba(14,16,20,0.9);
    stroke-width: 1.25;
    fill: #FAFAF7;
  }
  12.5% {
    stroke: #FFCA00;
    stroke-width: 2.5;
    fill: #FFFBE5;
  }
}

.center__kicker {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  fill: var(--ink-3);
}
.center__big {
  font-family: var(--f-disp);
  font-size: 64px;
  font-weight: 400;
  fill: var(--ink);
}
.center__sub {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  fill: var(--ink-3);
}
.annot__txt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  fill: var(--ink-3);
}

/* hero scroll cue ----- */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
}
.hero__scroll-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--ink), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
  animation: scrollCue 2.6s var(--ease) infinite;
}
@keyframes scrollCue {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  padding: 60px var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  text-align: center;
}
.trust__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.trust__dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.trust__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
}
.trust__logo {
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  text-align: center;
  filter: grayscale(1);
  opacity: .75;
  transition: opacity .25s var(--ease), color .25s var(--ease), filter .25s var(--ease);
}
.trust__logo:hover {
  opacity: 1;
  color: var(--ink);
  filter: grayscale(0);
}
.trust__logo .logo-text { letter-spacing: -0.01em; }
.trust__logo .logo-text span { color: var(--blue); }
.trust__logo--placeholder {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  border: 1px dashed var(--line);
  border-radius: 3px;
  padding: 12px 16px;
  filter: none;
  opacity: 0.7;
}
.trust__logo--placeholder:hover {
  opacity: 1;
  color: var(--ink-2);
  border-color: var(--ink-3);
}
.trust__logo .logo-mono { font-family: var(--f-mono); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.trust__logo .logo-mono b { font-weight: 700; }
.trust__logo .logo-mono sup { font-size: 9px; }
.trust__logo .logo-stack { display: inline-flex; flex-direction: column; line-height: 1; }
.trust__logo .logo-stack b { font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }
.trust__logo .logo-stack i { font-style: normal; font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.3em; margin-top: 4px; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
  padding: var(--pad-sec) var(--pad-x);
  position: relative;
}
.benefits__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  overflow: hidden;
}
.bcard {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
}
.bcard:last-child { border-right: 0; }
.bcard:hover { background: var(--bg-alt); }
.bcard:hover .bcard__big {
  transform: translateY(-2px);
  color: var(--blue);
}
.bcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bcard__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
}
.bcard__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.bcard__viz {
  margin: 12px 0 28px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 12px;
  background: var(--bg-alt);
}
.bcard__viz svg { width: 100%; height: auto; }
.bviz__lbl { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.15em; fill: var(--ink-3); }
.bviz__lbl--on { fill: var(--ink); font-weight: 500; }
.bviz__lbl--bold { fill: var(--ink); font-weight: 600; letter-spacing: 0.18em; }
.bcard__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.bcard__big {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-block;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.bcard__body {
  color: var(--ink-3);
  font-size: 15px;
  max-width: 30ch;
}

/* =========================================================
   STOP BUYING WASTE — performance over procurement
   ========================================================= */
.perform {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-alt);
  position: relative;
}
.perform__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.perform-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color .3s var(--ease), transform .35s var(--ease);
}
.perform-card:hover {
  border-color: var(--ink-2);
  transform: translateY(-2px);
}
.perform-card__no {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 0.9;
  padding-top: 4px;
}
.perform-card__title {
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.perform-card__body p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* =========================================================
   PROBLEM (dark section)
   ========================================================= */
.problem {
  position: relative;
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-deep);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.problem__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 60%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 60%, black, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.problem .section__sub { color: rgba(250,250,247,.6); }

.bigstat {
  max-width: 980px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}
.bigstat__line {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}
.bigstat__cur {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(60px, 10vw, 140px);
  color: var(--amber);
  line-height: 1;
  margin-top: 18px;
}
.bigstat__num {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.bigstat__cap {
  font-size: 16px;
  color: rgba(250,250,247,0.6);
  max-width: 540px;
  margin: 28px auto 0;
}
.bigstat__rule {
  width: 220px;
  height: 1px;
  background: rgba(255,202,0,0.5);
  margin: 32px auto 0;
  position: relative;
}
.bigstat__rule::before, .bigstat__rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px; height: 7px;
  background: var(--amber);
  transform: rotate(45deg);
}
.bigstat__rule::before { left: 0; }
.bigstat__rule::after { right: 0; }

.problem__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.pcard:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,202,0,0.4);
}
.pcard__no {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.pcard__title {
  font-family: var(--f-disp);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 50px 0 12px;
  color: var(--ink);
}
.pcard p {
  color: rgba(250,250,247,0.65);
  font-size: 15px;
  line-height: 1.55;
}

/* =========================================================
   MODERN LOGISTICS — bridge section
   ========================================================= */
.modern {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg);
}
.modern__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.modern__body {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.modern__body p {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
.modern__body p em {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.modern__body p strong {
  font-weight: 600;
  color: var(--ink);
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-alt);
}
.pillars__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(14,16,20,0.18);
}
.pillar--accent {
  background: var(--bg-light);
  color: var(--ink-inv);
  border-color: var(--bg-light);
}
.pillar--accent .pillar__index { color: var(--blue-mid); }
.pillar--accent .pillar__title { color: var(--ink-inv); }
.pillar--accent .pillar__body { color: rgba(11,31,59,0.72); }
.pillar--accent .pillar__list li { color: rgba(11,31,59,0.85); border-color: rgba(11,31,59,0.12); }
.pillar--accent .pillar__list li::before { background: var(--amber-deep); }

.pillar__index {
  font-family: var(--f-disp);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1;
}
.pillar__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
}
.pillar__body {
  color: var(--ink-3);
  font-size: 15px;
  margin-bottom: 24px;
}
.pillar__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.pillar__list li:last-child { border-bottom: 1px solid var(--line); }
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px; height: 1px;
  background: var(--blue);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-deep);
  overflow: hidden;
  isolation: isolate;
}
.about__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
}
.about .section__sub { color: rgba(250,250,247,0.65); }

.about__eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.about__eyebrow--center { display: block; text-align: center; margin-bottom: 36px; }

.about__grid {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.about__story p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(250,250,247,0.78);
  max-width: 56ch;
  margin-bottom: 18px;
}
.about__story p strong { color: var(--ink); font-weight: 600; }

/* ----- Founder portrait placeholder ----- */
.about__portrait {
  margin: 0 0 24px;
  width: 200px;
  float: right;
  margin-left: 28px;
  margin-bottom: 18px;
  shape-outside: padding-box;
}
.about__portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 4px;
  overflow: hidden;
}
.about__portrait-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--amber);
}
.about__portrait-corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.about__portrait-corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.about__portrait-corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.about__portrait-corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.about__portrait-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}
.about__portrait-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 500;
}
.about__portrait-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(250,250,247,0.5);
}
.about__portrait-note {
  font-family: var(--f-body);
  font-size: 11px;
  font-style: italic;
  color: rgba(250,250,247,0.45);
  margin-top: 4px;
  line-height: 1.4;
}
.about__portrait-cap {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250,250,247,0.5);
  text-align: center;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 4px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid rgba(255,202,0,0.4);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.about__link svg { width: 14px; height: 14px; }
.about__link:hover { color: var(--ink); border-color: var(--ink); }

.about__commit {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
}
.commit__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.commit__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.commit__item:first-child { border-top: 0; padding-top: 4px; }
.commit__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  padding-top: 4px;
}
.commit__body h4 {
  font-family: var(--f-disp);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 6px;
}
.commit__body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,250,247,0.65);
}

.about__manifest {
  max-width: 880px;
  margin: 88px auto 96px;
  padding: 0 var(--pad-x);
  text-align: center;
  position: relative;
}
.about__manifest::before, .about__manifest::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255,202,0,0.5);
  margin: 0 auto 24px;
}
.about__manifest::after {
  margin: 24px auto 0;
}
.about__manifest p {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(250,250,247,0.82);
  margin-bottom: 18px;
}
.about__manifest p em {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.about__manifest p strong {
  font-weight: 600;
  color: var(--ink);
}
.about__manifest .about__manifest-emph {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(250,250,247,0.7);
  margin-bottom: 0;
}

.about__teams {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.about__teams-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(250,250,247,0.7);
}
.teams__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.team-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.team-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,202,0,0.35);
  transform: translateY(-3px);
}
.team-card__no {
  display: inline-block;
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 22px;
  color: var(--amber);
  margin-bottom: 14px;
}
.team-card h4 {
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.team-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,250,247,0.65);
}

.about__closer {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(250,250,247,0.78);
  letter-spacing: -0.005em;
}
.about__closer strong {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* =========================================================
   ROADMAP
   ========================================================= */
.roadmap {
  padding: var(--pad-sec) var(--pad-x);
  position: relative;
}
.roadmap__track {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.roadmap__line {
  /* nodes are now horizontally centered inside each step column.
     With 3 equal cols + 40px gaps, column-center offsets from each edge
     equal half a column = (100% - 80px) / 6. */
  position: absolute;
  top: 32px;
  left: calc((100% - 80px) / 6);
  right: calc((100% - 80px) / 6);
  height: 1px;
  background: var(--line);
}
.roadmap__line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  transition: width .8s var(--ease);
  box-shadow: 0 0 0 2px rgba(11,31,59,0.18);
}
.step {
  position: relative;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step__node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.step.is-on .step__node {
  border-color: var(--blue);
  background: var(--ink);
  color: var(--bg);
}
.step.is-on .step__num { color: var(--bg); }
.step.is-on .step__ring {
  border-color: var(--amber);
  animation: ringPulse 2s var(--ease) infinite;
}
.step__num {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .35s var(--ease);
}
.step__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.12); opacity: 0; }
}
.step__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.step__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.step__sub {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--amber);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.step__body p {
  color: var(--ink-3);
  font-size: 15px;
  margin: 0 auto 18px;
  max-width: 38ch;
}
.step__out {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 3px;
}

/* ----- Metrics of Success (under roadmap) ----- */
.metrics {
  max-width: var(--maxw);
  margin: 96px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.metrics__head {
  text-align: center;
  margin-bottom: 48px;
}
.metrics__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 16px;
}
.metrics__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.metrics__sub {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
}
.metric {
  padding: 24px 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .25s var(--ease);
}
.metric:nth-child(4n) { border-right: 0; }
.metric:nth-child(n+5) { border-bottom: 0; }
.metric:hover { background: rgba(255,255,255,0.04); }
.metric__no {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 12px;
}
.metric h4 {
  font-family: var(--f-disp);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.metric p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* =========================================================
   SERVICES TIERS
   ========================================================= */
.services {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-alt);
  position: relative;
}
.tiers {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  --mx: 50%;
  --my: 50%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.tier::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 280px at var(--mx) var(--my), rgba(11,31,59,0.10), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.tier:hover::before { opacity: 1; }
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(14,16,20,0.2);
}
.tier--featured {
  background: var(--bg-light);
  color: var(--ink-inv);
  border-color: var(--bg-light);
  transform: translateY(-12px);
}
.tier--featured::before {
  background: radial-gradient(circle 280px at var(--mx) var(--my), rgba(255,202,0,0.18), transparent 60%);
}
.tier--featured:hover { transform: translateY(-18px); }
.tier__flag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--amber);
  color: var(--ink-inv);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 0 0 3px 3px;
}
.tier__head { margin-bottom: 24px; }
.tier__badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.tier--featured .tier__badge { color: var(--amber-deep); }
.tier__name {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.tier__name span { color: var(--blue); font-weight: 700; }
.tier--featured .tier__name span { color: var(--amber-deep); }
.tier__focus {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 8px;
}
.tier--featured .tier__focus { color: rgba(11,31,59,0.6); }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.tier--featured .tier__price { border-color: rgba(11,31,59,0.18); }
.tier__currency {
  font-family: var(--f-disp);
  font-size: 22px;
  color: var(--ink-3);
  margin-right: 2px;
}
.tier--featured .tier__currency { color: rgba(11,31,59,0.6); }
.tier__amt {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier__unit {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-left: 8px;
  white-space: nowrap;
}
.tier--featured .tier__unit { color: rgba(11,31,59,0.65); }

.tier__lede {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.tier--featured .tier__lede { color: rgba(11,31,59,0.78); }

.tier__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.tier__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.tier--featured .tier__list li { color: rgba(11,31,59,0.85); }
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--blue);
}
.tier--featured .tier__list li::before { background: var(--amber-deep); }

/* primary button on the cream featured card needs an inverted look */
.tier--featured .btn--primary {
  background: var(--ink-inv);
  color: var(--ink);
}
.tier--featured .btn--primary:hover {
  background: var(--bg-deep);
  color: var(--ink);
}

.services__foot {
  max-width: var(--maxw);
  margin: 40px auto 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  line-height: 1.6;
}
.services__star { color: var(--blue); margin-right: 4px; }

/* ----- PaaS intro (services section opener) ----- */
.paas {
  max-width: var(--maxw);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.paas__col {
  position: relative;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.paas__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 18px;
}
.paas__col p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(250,250,247,0.78);
  margin-bottom: 14px;
  max-width: 56ch;
}
.paas__col p strong { color: var(--ink); font-weight: 600; }

/* ----- Tiers section sub-header (between PaaS intro and tier cards) ----- */
.tiers__head {
  max-width: 920px;
  margin: 0 auto 60px;
  text-align: center;
}
.tiers__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 18px 0 14px;
  color: var(--ink);
}
.tiers__title em {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.tiers__sub {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ----- Enriched tier card variants ----- */
.tier__best {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.tier__best strong { color: var(--ink-2); font-weight: 600; }
/* tier--featured is a cream card on navy section in v2 — dark text inside */
.tier--featured .tier__best { color: rgba(11,31,59,0.65); border-color: rgba(11,31,59,0.18); }
.tier--featured .tier__best strong { color: rgba(11,31,59,0.85); }

.tier__list--detailed { gap: 16px; }
.tier__list--detailed li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.tier__list--detailed li strong {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.tier__list--detailed li span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
/* dark text on the cream featured card */
.tier--featured .tier__list--detailed li strong { color: var(--ink-inv); }
.tier--featured .tier__list--detailed li span { color: rgba(11,31,59,0.65); }

.tier__list-prev {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  padding-left: 0 !important;
}
.tier__list-prev::before { display: none; }
.tier--featured .tier__list-prev { color: var(--amber-deep); }

/* =========================================================
   ARCHITECTURE OF EFFICIENCY
   ========================================================= */
.arch {
  padding: calc(var(--pad-sec) + 24px) var(--pad-x) var(--pad-sec);
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--line);
}
.arch::before {
  content: "·  ·  ·";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--ink-4);
}
.arch__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.arch-card {
  padding: 36px 32px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.arch-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,202,0,0.35);
  transform: translateY(-3px);
}
.arch-card__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.arch-card__no {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.arch-card__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}
.arch-card__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.arch-card__list li {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arch-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--blue);
}
.arch-card__list li strong {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.arch-card__list li p {
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   COMPARE
   ========================================================= */
.compare {
  padding: var(--pad-sec) var(--pad-x);
}
.cmp {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
}
.cmp__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.cmp__row:first-child { border-top: 0; }
.cmp__row:not(.cmp__row--head):hover { background: var(--bg-alt); }
.cmp__cell {
  padding: 22px 28px;
}
.cmp__row--head .cmp__cell {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bg-light);
  color: var(--ink-inv);
}
.cmp__row--head .cmp__cell--us {
  background: var(--blue-mid);
  color: var(--ink);
}
.cmp__cell--crit {
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
}
.cmp__row--head .cmp__cell--crit { font-family: var(--f-mono); font-size: 11px; font-weight: 500; }

.cmp__brand {
  font-family: var(--f-disp);
  font-size: 16px;
  letter-spacing: -0.005em;
}
.cmp__brand b { color: var(--amber); }

.cmp__cell--us, .cmp__cell--them {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.cmp__brand i {
  font-style: italic;
  font-family: var(--f-disp);
  color: rgba(250,250,247,0.6);
  font-weight: 400;
}
.cmp__mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.cmp__mark--ok {
  background: rgba(105,138,188,0.18);
  color: var(--blue);
  border: 1px solid rgba(105,138,188,0.4);
}
.cmp__mark--no {
  background: rgba(255,255,255,0.04);
  color: var(--ink-3);
  border: 1px solid var(--line);
}
.cmp__copy {
  flex: 1;
  min-width: 0;
}
.cmp__copy strong {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.cmp__copy p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-alt);
}
.faq__sidenote {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 320px;
  justify-self: end;
}
.faq__sidenote a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faqs {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:first-child { border-top: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item__q {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--f-disp);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq-item__no {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--blue);
  flex-shrink: 0;
}
.faq-item__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item__icon::before {
  top: 50%; left: 7px; right: 7px;
  height: 1px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%; top: 7px; bottom: 7px;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-item__icon {
  background: var(--ink);
  border-color: var(--ink);
}
.faq-item[open] .faq-item__icon::before, .faq-item[open] .faq-item__icon::after { background: var(--bg); }
.faq-item[open] .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-item__a {
  padding: 0 32px 32px 80px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item__a p + p { margin-top: 14px; }
.faq-item__a strong { color: var(--ink-2); font-weight: 600; }
.faq-item[open] .faq-item__a {
  animation: faqIn .35s var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta {
  position: relative;
  padding: var(--pad-sec) var(--pad-x);
  background: var(--bg-deep);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(59,88,132,0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59,88,132,0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 100%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, black, transparent 70%);
}
.cta__noise {
  position: absolute; inset: 0;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.cta__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 28px 0 28px;
}
.cta__title em {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.cta__sub {
  font-size: 18px;
  color: rgba(250,250,247,0.78);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.cta__note {
  font-size: 14px;
  color: rgba(250,250,247,0.55);
  max-width: 580px;
  margin: 18px auto 0;
  line-height: 1.55;
  font-style: italic;
}
.cta__btns {
  margin-top: 40px;
}
.cta__btns .btn--primary {
  background: var(--amber);
  color: var(--ink-inv);
  border-color: var(--amber);
}
.cta__btns .btn--primary:hover {
  background: var(--bg-light);
  color: var(--ink-inv);
  box-shadow: 0 20px 50px -10px rgba(255,202,0,0.4);
}
.cta__de {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  transition: color .25s var(--ease);
}
.cta__de:hover { color: var(--ink); }
.cta__de-flag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
}
.cta__de u { text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 3px; }

/* =========================================================
   LEGAL PAGES (imprint / privacy)
   ========================================================= */
.legal {
  padding: clamp(48px, 6vw, 88px) var(--pad-x) var(--pad-sec);
  background: var(--bg-deep);
  color: var(--ink);
  min-height: 60vh;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.legal__back svg { width: 14px; height: 14px; }
.legal__back:hover {
  color: var(--amber);
  border-bottom-color: rgba(255,202,0,0.5);
}

.legal__head {
  margin: 56px 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.legal__title {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 0;
}
.legal__lede {
  margin-top: 24px;
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(250,250,247,0.78);
  letter-spacing: -0.005em;
  max-width: 64ch;
}

.legal__toc {
  margin-bottom: 56px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.legal__toc-tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 16px;
}
.legal__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; }
.legal__toc li a {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(250,250,247,0.72);
  transition: color .2s var(--ease);
}
.legal__toc li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
  flex-shrink: 0;
  padding-top: 2px;
}
.legal__toc li a:hover { color: var(--ink); }

.legal__body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,247,0.82);
}
.legal__body h2 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 56px 0 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.legal__body section:first-child h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal__body h3 {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--amber);
  margin: 28px 0 10px;
}
.legal__body p {
  margin-bottom: 18px;
  max-width: 64ch;
}
.legal__body p strong { color: var(--ink); font-weight: 600; }
.legal__body ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.legal__body ul li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.legal__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--amber);
}
.legal__body a {
  color: var(--amber);
  border-bottom: 1px solid rgba(255,202,0,0.35);
  text-decoration: none;
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.legal__body a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.legal__note {
  margin-top: 36px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(250,250,247,0.55);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .legal__toc ol { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px var(--pad-x) 32px;
  background: var(--bg-deep);
  color: var(--ink);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  line-height: 1.7;
  margin-top: 12px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(250,250,247,0.7);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--ink); }

.footer__rule {
  max-width: var(--maxw);
  margin: 60px auto 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18) 30%, rgba(255,202,0,0.4) 50%, rgba(255,255,255,0.18) 70%, transparent);
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.5);
}
.footer__legal a { color: rgba(250,250,247,0.7); margin: 0 4px; }
.footer__legal a:hover { color: var(--ink); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 640px; margin: 0 auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); column-gap: 0; row-gap: 10px; }
  .hero__stats li:nth-child(2)::after { display: none; }

  .benefits__grid,
  .pillars__grid,
  .problem__grid,
  .tiers,
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .bcard:nth-child(odd) { border-right: 1px solid var(--line); }
  .bcard:nth-child(even) { border-right: 0; }
  .bcard:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }

  .roadmap__track { grid-template-columns: 1fr; gap: 60px; }
  .roadmap__line { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .trust__row { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .teams__grid { grid-template-columns: 1fr; }

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

  .perform__grid { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(4n) { border-right: 1px solid var(--line); }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(n+5) { border-bottom: 1px solid var(--line); }
  .metric:nth-child(n+7) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__tag { display: none; }
  .nav { grid-template-columns: 1fr auto; gap: 12px; }
  .nav__actions .lang { display: none; }

  .section__head--split { grid-template-columns: 1fr; }
  .faq__sidenote { justify-self: start; }

  .benefits__grid,
  .pillars__grid,
  .problem__grid,
  .tiers,
  .footer__cols { grid-template-columns: 1fr; }
  .bcard { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .bcard:last-child { border-bottom: 0; }

  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Comparison table — stack into rows of label / us / them on mobile */
  .cmp__row { grid-template-columns: 1fr; }
  .cmp__row--head { display: none; }
  .cmp__cell { padding: 14px 18px; font-size: 13px; border-top: 1px solid var(--line); }
  .cmp__cell--crit {
    font-size: 13px;
    font-family: var(--f-mono);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    border-top: 0;
    padding-bottom: 0;
  }

  .faq-item summary { padding: 22px 20px; }
  .faq-item__q { font-size: 16px; gap: 12px; }
  .faq-item__a { padding: 0 20px 24px 50px; font-size: 14px; }

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

  /* Stop Buying Waste — number + body stack on phones */
  .perform-card { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .perform-card__no { font-size: 36px; padding-top: 0; }

  /* Metrics — single column on phones */
  .metrics__grid { grid-template-columns: 1fr; }
  .metric { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .metric:last-child { border-bottom: 0 !important; }

  /* Founder portrait — unfloat, center, smaller */
  .about__portrait { float: none; width: 75%; max-width: 240px; margin: 0 auto 28px; }

  /* Modern Logistics — slightly smaller editorial type on phones */
  .modern__body p { font-size: 17px; }
}

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