/* ============ FONTS ============ */
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/ppneuemontreal-semibolditalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --bg-card: #181818;
  --fg: #ffffff;
  --fg-dim: #808080;
  --fg-muted: #5a5a5a;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --font-display: 'Neue Montreal', 'Inter', system-ui, sans-serif;
  --font-body: 'Lexend', system-ui, sans-serif;

  --max: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
}

html[data-font-mode="lexend"] {
  --font-display: 'Lexend', system-ui, sans-serif;
}
html[data-font-mode="montreal-all"] {
  --font-body: 'Neue Montreal', system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  overflow-x: clip;
  background: #121212 !important;
  color-scheme: dark;
  overscroll-behavior: none;
}
/* Bulletproof dark backdrop — sits behind everything, fills the viewport at all
   times regardless of zoom, overscroll, or document height. Kills any chance of
   browser/OS canvas color leaking through. */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #121212;
  z-index: -1;
  pointer-events: none;
}
body {
  background: #121212 !important;
  min-height: 100vh;
  overscroll-behavior: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: #fff; color: #121212; }

/* ============ CUSTOM CURSOR ============ */
html, body { cursor: none; }
@media (hover: none) { html, body { cursor: auto; } .cursor { display: none !important; } }
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(.2,.8,.2,1), height 0.25s cubic-bezier(.2,.8,.2,1), background 0.25s;
  will-change: transform;
}
.cursor--ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  mix-blend-mode: difference;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), width 0.25s, height 0.25s, border-color 0.25s;
}
.cursor--hover { width: 56px; height: 56px; border-color: #fff; }
.cursor--press { width: 48px; height: 48px; }
a, button, .product, .founder, .job, [data-cursor="hover"] { cursor: none; }

/* ============ SCROLLBAR ============ */
html { scrollbar-color: #2a2a2a #121212; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 999px;
  border: 2px solid #121212;
}
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* ============ TYPE SCALE ============ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

.lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--fg-dim);
  text-wrap: pretty;
  letter-spacing: -0.01em;
}

/* ============ NAV — floating glass pill, centered ============ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; justify-content: center;
  padding: 22px 24px 0;
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 12px 8px 16px;
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 18px 50px -20px rgba(0,0,0,0.7),
    0 4px 14px -4px rgba(0,0,0,0.4);
  position: relative;
  isolation: isolate;
}
.nav__pill::before {
  /* Subtle top-edge highlight — glass reflection */
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
  z-index: -1;
}
.nav__brand {
  display: flex; align-items: center;
  padding: 4px 12px 4px 6px;
}
.nav__brand img { object-fit: contain; }
.nav__brand-logo {
  width: auto !important;
  height: 42px !important;
  object-fit: contain;
}
.nav__divider {
  width: 1px; height: 26px;
  background: rgba(255,255,255,0.1);
  margin: 0 6px;
}
.nav__links {
  display: flex; align-items: center; gap: 2px;
}
.nav__link {
  position: relative;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-dim);
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.005em;
}
.nav__link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--fg);
}
.nav__link--cta {
  background: #fff; color: #121212; font-weight: 500;
}
.nav__link--cta:hover { background: #e6e6e6; color: #121212; }

/* Language dropdown */
.nav__lang-wrap {
  position: relative;
  display: inline-flex;
}
.nav__lang {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}
.nav__lang:hover,
.nav__lang[aria-expanded="true"] {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.nav__flag {
  display: inline-flex;
  width: 22px; height: 16px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.nav__flag svg { display: block; width: 100%; height: 100%; }
.nav__lang-code {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__lang-chev {
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}
.nav__lang:hover .nav__lang-chev,
.nav__lang[aria-expanded="true"] .nav__lang-chev { opacity: 1; }
.nav__lang[aria-expanded="true"] .nav__lang-chev { transform: rotate(180deg); }

.nav__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  border-radius: 14px;
  background: #1c1c1e;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 24px 60px -24px rgba(0,0,0,0.8),
    0 8px 22px -8px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column; gap: 2px;
}
.nav__lang-menu.is-open {
  display: flex;
}
.nav__lang-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s;
}
.nav__lang-opt:hover { background: rgba(255,255,255,0.06); }
.nav__lang-opt[aria-selected="true"] { background: rgba(255,255,255,0.04); }
.nav__lang-label { flex: 1; }

@media (max-width: 720px) {
  .nav { padding: 14px 16px 0; }
  .nav__pill { padding: 6px 8px 6px 12px; gap: 2px; }
  .nav__divider { display: none; }
  .nav__links .nav__link:not(.nav__link--cta) { display: none; }
  .nav__brand-logo { height: 32px !important; }
  .nav__lang { padding: 7px 10px 7px 8px; }
  .nav__lang-code { font-size: 12px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__copy {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
  max-width: 780px;
  margin: 0 auto;
}
.hero__eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--fg-dim);
}
.hero__lead {
  margin: 28px auto 0;
  max-width: 560px;
}
.hero__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero__cta:hover { transform: translateY(-1px); background: #f0f0f0; }
.hero__cta svg { width: 14px; height: 14px; }

/* GIANT NAME BEHIND */
.hero__giant {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.hero__giant span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 27vw, 460px);
  line-height: 0.78;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #2a2a2a 0%, #181818 60%, #121212 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  user-select: none;
}
html[data-giant="off"] .hero__giant { display: none; }

/* ============ SECTION CHROME ============ */
section {
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  position: relative;
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vh, 80px);
}
@media (max-width: 720px) {
  .section__head { grid-template-columns: 1fr; }
}
.section__head h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.section__head .lead {
  max-width: 460px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--pad-x);
}

/* ============ MANIFESTO (THARK MEANING) ============ */
.manifesto {
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 1100px;
  text-wrap: balance;
}
.manifesto__quote .dim { color: var(--fg-dim); }
.manifesto__quote em { font-style: italic; color: var(--fg-dim); }
.manifesto__break {
  margin-top: clamp(60px, 8vh, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
.manifesto__motto {
  margin-top: clamp(80px, 14vh, 180px);
  text-align: center;
  position: relative;
  padding: clamp(40px, 8vh, 100px) 0;
}
.motto-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.manifesto__motto > .label,
.manifesto__motto > .motto-h,
.manifesto__motto > h3 {
  position: relative;
  z-index: 1;
}
.manifesto__motto .label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.manifesto__motto .label::before,
.manifesto__motto .label::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--border-strong);
}
.manifesto__motto h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(60px, 11vw, 200px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}
.manifesto__motto h3 .dim { color: var(--fg-dim); font-style: italic; }

/* ============ MOTTO TYPE ============ */
.manifesto__motto--type {
  opacity: 1;
  transform: none;
}
.manifesto__motto--type .motto-h {
  display: block;
  min-height: 1.2em;
}
.manifesto__motto--type .motto-typed {
  display: inline-block;
  white-space: pre-wrap;
}
.manifesto__motto--type .motto-typed .dim {
  color: var(--fg-dim);
  font-style: italic;
}
.motto-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.95em;
  background: currentColor;
  margin-left: 0.06em;
  vertical-align: -0.12em;
  animation: motto-blink 0.75s steps(1) infinite;
}
@keyframes motto-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.manifesto__motto--type.is-done .motto-cursor {
  animation: motto-blink 0.9s steps(1) infinite;
}

.manifesto__motto--type .label {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.manifesto__motto--type.is-in .label {
  opacity: 1;
  transform: translateY(0);
}
.manifesto__break > div {
  background: var(--bg);
  padding: 32px;
}
.manifesto__break .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 14px;
}
.manifesto__break .word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.manifesto__break .desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.45;
  max-width: 280px;
}
@media (max-width: 720px) {
  .manifesto__break { grid-template-columns: 1fr; }
}

/* ============ PRODUCTS ============ */
.products {
  max-width: var(--max);
  margin: 0 auto;
}

/* GRID layout */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* LIST layout (todayin testimonial style) */
.products__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .products__list { grid-template-columns: 1fr; }
}

.product {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
}
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.05), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.product:hover::before { opacity: 1; }
.product:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.product__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: auto;
}
.product__logo {
  height: 48px;
  display: flex; align-items: center;
  max-width: 60%;
}
.product__logo img { height: 100%; width: auto; object-fit: contain; max-width: 100%; }
/* Member AI cropped logo — slightly taller to match optical weight of others */
.product__logo--tall {
  height: 64px;
}
.product__logo--tall img { height: 100%; width: auto; object-fit: contain; }
/* Limify wordmark — 3:1 aspect, scale up a touch */
.product__logo--mid {
  height: 56px;
}
.product__logo--mid img { height: 100%; width: auto; object-fit: contain; }
.product__tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.product__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 60px 0 24px;
  text-wrap: pretty;
}
.product__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.product__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.product__role {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 2px;
}
.product__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--fg-dim);
  transition: color 0.2s, gap 0.2s;
}
.product__link:hover { color: var(--fg); gap: 10px; }
.product__link svg { width: 12px; height: 12px; }

/* Products section — horizontal pin reveal
   The section is tall (pin-height); the inner stage is sticky and contains the
   editorial header on top + a horizontally-translating track of cards below. */
.products-section {
  position: relative;
  padding-bottom: 0;
}

/* OUTER pin: tall enough to give us scroll runway for N cards */
.products-pin {
  position: relative;
  /* Generous runway so each card has clear dwell time. With 4 cards we use
     ~120vh per card so transitions feel deliberate, not rushed. */
  height: 560vh;
}

/* INNER stage: sticky to viewport, full-height */
.products-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Section header inside the stage (no longer sticky on its own — the stage is) */
.products-section .section__head--sticky {
  display: block;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto !important;
  padding: clamp(72px, 9vh, 100px) var(--pad-x) clamp(20px, 3vh, 32px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg);
}

.phead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.phead__row--top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.phead__row--bottom {
  align-items: flex-end;
  margin-top: 18px;
}

.phead__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.phead__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent, #ff5722);
  box-shadow: 0 0 0 4px rgba(255,87,34,0.12);
  animation: pheadPulse 2.4s ease-in-out infinite;
}
@keyframes pheadPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,87,34,0.28); }
  50% { box-shadow: 0 0 0 6px rgba(255,87,34,0); }
}
.phead__counter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  font-variant-numeric: tabular-nums;
}
.phead__counter-num {
  color: var(--fg);
  font-weight: 500;
  display: inline-block;
  min-width: 1.2em;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0, 1);
}
.phead__counter-sep { margin: 0 6px; opacity: 0.5; }

.phead__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.phead__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--fg-dim);
  letter-spacing: -0.03em;
}
.phead__dotend {
  color: var(--accent, #ff5722);
  font-style: normal;
}

.phead__lead {
  max-width: 460px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-dim);
  margin: 0;
}
.phead__active {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  min-width: 200px;
}
.phead__active-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.phead__active-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: opacity 0.2s ease;
}
.phead__active-name.swapping { opacity: 0; }

.phead__progress {
  position: relative;
  margin-top: 18px;
  height: 2px;
  background: var(--border);
  overflow: visible;
}
.phead__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--fg);
  transition: width 0.18s linear;
}
.phead__progress-ticks {
  position: absolute;
  inset: -3px 0 -3px 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.phead__progress-ticks span {
  width: 1px;
  height: 8px;
  background: var(--border);
}
.phead__progress-ticks span:first-child,
.phead__progress-ticks span:last-child { opacity: 0; }

/* TRACK — horizontal carousel translated by JS as user scrolls */
.products-track-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  /* Pad-left so the first card sits centered when track translateX = 0 */
  --card-w: clamp(420px, 52vw, 720px);
  --card-gap: clamp(60px, 12vw, 160px);
  padding-left: calc((100vw - var(--card-w)) / 2);
  overflow: visible;
}
.products-track {
  display: flex;
  gap: var(--card-gap);
  will-change: transform;
  transition: none;
}
.products-track .product {
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  min-height: clamp(440px, 64vh, 560px);
  background: var(--bg-card);
  transform: scale(var(--card-scale, 0.85));
  opacity: var(--card-opacity, 0.4);
  transform-origin: center center;
}
.products-track .product.is-active {
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}

/* hint */
.products-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  pointer-events: none;
  opacity: 0.7;
}
.products-hint__line {
  width: 36px;
  height: 1px;
  background: var(--fg-dim);
  position: relative;
  overflow: hidden;
}
.products-hint__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  animation: hintShimmer 2.4s ease-in-out infinite;
}
@keyframes hintShimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@media (max-width: 760px) {
  .products-pin { height: 420vh; }
  .products-section .section__head--sticky {
    padding: clamp(72px, 11vh, 100px) var(--pad-x) 12px;
  }
  .phead__title { font-size: clamp(32px, 8vw, 48px) !important; }
  .phead__row--top { padding-bottom: 12px; margin-bottom: 12px; }
  .phead__row--bottom { margin-top: 12px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .phead__active { align-items: flex-start; text-align: left; min-width: 0; }
  .phead__progress { margin-top: 12px; }
  .products-track-wrap {
    --card-w: 80vw;
    --card-gap: 40px;
    padding-left: 10vw;
  }
  .products-track .product {
    min-height: 420px;
  }
}

/* ============ STATS ============ */
.stats {
  max-width: var(--max);
  margin: 0 auto;
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
.stat {
  background: var(--bg);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat__num .plus { color: var(--fg-dim); margin-left: 2px; }
.stat__label {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.4;
  max-width: 240px;
  letter-spacing: -0.005em;
}
@media (max-width: 860px) {
  .stats__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats__row { grid-template-columns: 1fr; }
}

/* ============ FOUNDERS (compact) ============ */
.founders {
  max-width: var(--max);
  margin: 0 auto;
}
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .founders__grid { grid-template-columns: 1fr; max-width: 360px; }
}
.founder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  isolation: isolate;
}
.founder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.founder:hover img { transform: scale(1.03); }
.founder__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.founder__role {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.founder__linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
  backdrop-filter: blur(10px);
}
.founder__linkedin svg { width: 11px; height: 11px; }
.founder__linkedin:hover { background: rgba(255,255,255,0.25); }

/* ============ TEAM DOME (CSS half-globe with orbiting name cards) ============ */
.team-globe {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
}
  text-align: center;
}
/* Add breathing room above the dome so it doesn't crowd Alexandre/Sergio */
#time { padding-bottom: 0; }
.founders { margin-bottom: 0; }
#carreiras { padding-top: 24px; padding-bottom: 80px; }

.team-globe__head {
  max-width: 720px;
  margin: 94px auto 16px;
}
.eyebrow--inline {
  justify-content: center;
  margin-bottom: 24px;
}
.team-globe__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.team-globe__title .dim { color: var(--fg-dim); }

/* ============ TD GLOBE (3D rotating sphere with name cards) ============ */
.td-globe-section,
.td-globe-section * { box-sizing: border-box; }

.td-globe-section {
  --td-size: min(88vw, 1020px);
  --td-line: #757575;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 720px;
  height: 100vh;
  max-height: 920px;
  background: var(--bg);
  overflow: hidden;
  pointer-events: none;
}

.td-globe-viewport,
.td-cards-layer {
  position: absolute;
  left: 50%;
  bottom: -42%;
  width: var(--td-size);
  height: var(--td-size);
  transform: translateX(-50%);
}

.td-globe-viewport {
  perspective: 1400px;
  perspective-origin: 50% 35%;
  z-index: 2;
}

.td-globe {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.td-globe::after { display: none; }

.td-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--td-line);
  border-radius: 50%;
  transform-style: preserve-3d;
  opacity: 0.62;
  backface-visibility: visible;
}

.td-lat-1 { transform: translate(-50%, -50%) rotateX(72deg) scale(0.42); }
.td-lat-2 { transform: translate(-50%, -50%) rotateX(72deg) scale(0.65); }
.td-lat-3 { transform: translate(-50%, -50%) rotateX(72deg) scale(0.84); }
.td-lat-4 { transform: translate(-50%, -50%) rotateX(72deg) scale(1); opacity: 0.5; }

.td-lon-1 { transform: translate(-50%, -50%) rotateY(0deg); }
.td-lon-2 { transform: translate(-50%, -50%) rotateY(30deg); }
.td-lon-3 { transform: translate(-50%, -50%) rotateY(60deg); }
.td-lon-4 { transform: translate(-50%, -50%) rotateY(90deg); }
.td-lon-5 { transform: translate(-50%, -50%) rotateY(120deg); }
.td-lon-6 { transform: translate(-50%, -50%) rotateY(150deg); }

.td-cards-layer {
  z-index: 6;
  pointer-events: none;
}

.td-name-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(34,34,34,0.78);
  color: #f4f4f4;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 34px rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  will-change: transform, opacity, left, top;
}

.td-name-card::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.7);
  flex: 0 0 auto;
}

.td-globe-fade-top,
.td-globe-fade-bottom,
.td-globe-horizon-mask {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
}

.td-globe-fade-top {
  top: 0;
  height: 18vh;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.td-globe-fade-bottom {
  bottom: 0;
  height: 28vh;
  background: linear-gradient(to top, var(--bg) 42%, transparent);
}

.td-globe-horizon-mask {
  bottom: 0;
  height: 34vh;
  background: linear-gradient(to top, var(--bg) 0 34%, rgba(0,0,0,0.68) 58%, transparent 100%);
}

@keyframes td-globe-spin {
  from { transform: rotateX(66deg) rotateZ(-4deg) rotateY(0deg); }
  to { transform: rotateX(66deg) rotateZ(-4deg) rotateY(-360deg); }
}

@media (max-width: 768px) {
  .td-globe-section {
    --td-size: 138vw;
    min-height: 560px;
    height: 78vh;
  }
  .td-globe-viewport,
  .td-cards-layer { bottom: -30%; }
  .td-name-card { padding: 8px 13px; }
}

/* ============ CAREERS CTA ============ */
/* ============ CAREERS CTA ============ */
.careers-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 720px;
  max-width: var(--max);
  margin: 0 auto;
}

.careers-stage .td-globe-section {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  z-index: 1;
}

.careers-stage .td-globe-viewport,
.careers-stage .td-cards-layer {
  bottom: -200px;
}

.careers-cta {
  position: relative;
  z-index: 10;
  margin: 460px 0 0;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(40px, 6vh, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: #0a0a0a;
}
@media (max-width: 720px) {
  .careers-cta { grid-template-columns: 1fr; }
}
.careers-cta h2 {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.careers-cta__action {
  display: flex; flex-direction: column; gap: 16px; align-items: start;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary { background: #fff; color: #121212; }
.btn--primary:hover { background: #e6e6e6; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); }
.btn svg { width: 14px; height: 14px; }

/* ============ FOOTER ============ */
.footer {
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
.footer__logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.95;
}
.footer__tagline {
  font-size: 13px; color: var(--fg-dim); max-width: 320px; line-height: 1.5;
}
.footer__address {
  font-style: normal;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-top: 16px;
  letter-spacing: 0.005em;
}
.footer__ein {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 16px;
  font-family: var(--font-body); font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--fg-dim); }
.footer__bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ MARQUEE / GIANT FOOTER NAME ============ */
.giant-foot {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 6vh, 80px) 0 0;
}
.giant-foot span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 380px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #232323 0%, #161616 70%, #121212 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  white-space: nowrap;
  user-select: none;
}

/* ============ FADE-IN UTIL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============ TWEAKS PANEL OVERRIDES ============ */
[data-tweaks-overlay] { z-index: 100; }

/* ============================================================
   MOBILE LAYER (≤ 760px)
   Touch-first overrides. Desktop layout stays untouched.
   ============================================================ */

/* Hamburger button — hidden on desktop */
.nav__burger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.6px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease, top 0.28s cubic-bezier(.2,.8,.2,1);
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease 0.05s, transform 0.3s cubic-bezier(.2,.8,.2,1) 0.05s, background 0.2s ease, border-color 0.2s ease;
}
.nav-drawer.is-open .nav-drawer__close {
  opacity: 1;
  transform: none;
}
.nav-drawer__close:hover,
.nav-drawer__close:active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}
.nav-drawer__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 11vw, 64px);
  letter-spacing: -0.03em;
  color: #fff;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.nav-drawer.is-open .nav-drawer__link {
  opacity: 1;
  transform: none;
}
.nav-drawer.is-open .nav-drawer__link:nth-child(1) { transition-delay: 0.08s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(2) { transition-delay: 0.14s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(3) { transition-delay: 0.20s; }
.nav-drawer__link:hover, .nav-drawer__link:active { color: #fff; opacity: 0.7; }

/* Lock body scroll when drawer open */
body.drawer-open { overflow: hidden; }

@media (max-width: 760px) {
  :root {
    --pad-x: 20px;
  }

  /* Hide custom cursor on touch */
  .cursor { display: none !important; }
  html, body { cursor: auto; }

  /* NAV — show burger, hide links */
  .nav__burger { display: block; }
  .nav__links { display: none !important; }
  .nav__divider { display: none; }
  .nav__pill { padding: 6px 6px 6px 12px; gap: 6px; }
  .nav__brand-logo { height: 30px !important; }

  /* HERO */
  .hero { padding: 120px 20px 60px; min-height: 92vh; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero__lead { font-size: 15px; line-height: 1.5; max-width: 100%; }
  .hero__cta { padding: 14px 24px; font-size: 14px; }
  .hero__giant { bottom: -10px; }
  .hero__giant span {
    font-size: 32vw;
    letter-spacing: -0.04em;
  }

  /* MANIFESTO */
  .manifesto { padding: 80px 20px; }
  .manifesto h2 { font-size: clamp(32px, 8vw, 48px); }
  .manifesto__break {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto__break .word {
    font-size: clamp(36px, 10vw, 56px);
  }
  .manifesto__motto {
    margin-top: 60px;
    padding: 40px 0;
  }
  .manifesto__motto h3 {
    font-size: clamp(40px, 12vw, 72px);
  }
  /* Keep particle canvas — it's lovely on mobile too, just denser per area */

  /* SECTION HEADERS */
  .section__head h2 { font-size: clamp(36px, 9vw, 56px); }
  .section__head .lead { font-size: 15px; line-height: 1.5; }

  /* PRODUCTS — switch from scroll-jacking carousel to vertical stack */
  .products-pin {
    height: auto !important;
  }
  .products-stage {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }
  .products-section .section__head--sticky {
    position: relative;
    padding: 60px 20px 32px;
  }
  .products-track-wrap {
    --card-w: 100%;
    --card-gap: 16px;
    padding: 24px 20px 40px !important;
    overflow: visible;
    flex: none;
  }
  .products-track {
    flex-direction: column !important;
    gap: 16px !important;
    transform: none !important;
    width: 100%;
  }
  .products-track .product {
    width: 100% !important;
    flex: 0 0 auto !important;
    transform: none !important;
    opacity: 1 !important;
    min-height: 0;
    padding: 28px 22px;
  }
  .product__copy { font-size: 15px; line-height: 1.55; }
  .products-hint { display: none; }

  /* PRODUCT HEADER (sticky bar inside products) */
  .phead {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .phead__active {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .phead__title { font-size: 13px; }
  .phead__active-name { font-size: 22px; }
  .phead__progress { width: 100%; }

  /* TEAM / FOUNDERS */
  #time { padding: 80px 20px; }
  .stats__row { padding: 32px 0; gap: 32px; }
  .stat__num { font-size: clamp(48px, 14vw, 80px); }
  .stat__label { font-size: 13px; }
  .founders__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 32px;
  }
  .founder__photo {
    aspect-ratio: 4/5;
  }

  /* TEAM GLOBE intro */
  .team-globe {
    padding: 40px 20px !important;
    margin-top: 40px;
  }
  .team-globe__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* CAREERS / GLOBE — keep desktop layout intact on mobile, just shrink CTA */
  #carreiras { padding: 0; }
  .careers-cta {
    margin: 24px 20px 0 !important;
    padding: 32px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 24px;
  }
  .careers-cta h2 { font-size: clamp(28px, 7vw, 40px); }
  .careers-cta__action .btn { width: 100%; justify-content: center; }

  /* GIANT FOOT (THARK) */
  .giant-foot { padding: 40px 0 0; }
  .giant-foot span {
    font-size: 32vw;
  }

  /* FOOTER */
  .footer { padding: 60px 20px 20px; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer__brand-col {
    grid-column: 1 / -1;
  }
  .footer__logo { height: 48px; width: auto; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  /* DIVIDERS */
  .divider { margin: 0 20px; }
}

/* Extra-narrow phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .manifesto__motto h3 { font-size: 36px; }
  .footer__inner { grid-template-columns: 1fr; }
}
