/*
 * About page — Snackery Labs
 * page-about.php
 */

/* ══════════════════════════════════════════════════════
   DESIGN TOKENS — page-scoped aliases
   (matches the mockup token names)
══════════════════════════════════════════════════════ */
:root {
  --font-display:  "Rubik", system-ui, sans-serif;
  --font-body:     "Work Sans", system-ui, sans-serif;
  --indigo-deep:   #101585;
  --indigo-mid:    #3f48d9;
  --indigo-light:  #EDEEFF;
  --lemon:         #F4F73B;
  --cream:         #F6F4EA;
  --ink:           #0b0b0b;
}

body { font-family: var(--font-body); background: var(--cream); color: var(--ink); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 20px;
  background: none; border: none; padding: 0;
}
.eyebrow--on-dark { color: var(--lemon); }

/* ══════════════════════════════════════════════════════
   LOCAL BUTTON OVERRIDES (page-scoped)
══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lemon); color: var(--indigo-deep);
  padding: 14px 24px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: transform .15s;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 8px;
  background: transparent; color: var(--indigo-deep);
  border: 1.5px solid rgba(16,21,133,0.28);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.02em;
}
.btn-ghost:hover { border-color: var(--indigo-deep); background: rgba(16,21,133,0.04); }

.btn-ghost--light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.28);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.02em;
}
.btn-ghost--light:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ══════════════════════════════════════════════════════
   1 · EDITORIAL OPENER
══════════════════════════════════════════════════════ */
.opener {
  background: var(--cream);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.opener::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50% 40% 60% 30% / 40% 60% 40% 60%;
  background: rgba(244,247,59,0.22);
  pointer-events: none;
}
.opener__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 48px;
  position: relative; z-index: 1;
}
.opener__below {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 56px;
  align-items: center;
  margin-top: 0;
}
.opener__illo {
  width: 360px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(48px);
  animation: fadeSlideUp 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.opener__illo img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(16,21,133,0.18));
}
.opener__label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(16,21,133,0.5);
  margin-bottom: 48px;
  display: block;
  opacity: 0;
  transform: translateY(-28px);
  animation: fadeSlideDown 1.56s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
}
.opener__statement {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.038em;
  color: var(--indigo-deep);
  max-width: 16ch;
  margin: 0 0 48px;
  opacity: 0;
  transform: translateY(-28px);
  animation: fadeSlideDown 1.56s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@keyframes fadeSlideDown {
  to { opacity: 1; transform: translateY(0); }
}
.opener__statement em {
  font-style: italic;
  font-weight: 700;
  color: var(--indigo-mid);
}
.opener__lede {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(11,11,11,0.68);
  max-width: 58ch;
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeSlideUp 1.56s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.opener__lede strong { font-weight: 700; color: var(--ink); }
@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════
   1b · ARCH BANNER
══════════════════════════════════════════════════════ */
.arch-banner {
  padding-inline: 25px;
  margin-top: 64px;
  position: relative; z-index: 1;
}
.arch-banner__card {
  background: linear-gradient(130deg, var(--indigo-deep) 0%, #1a22b8 100%);
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeSlideUp 1.56s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
  position: relative;
  box-shadow: 0 24px 64px rgba(16,21,133,0.28);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
}
.arch-banner__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(244,247,59,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(63,72,217,0.5) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.arch-banner__left {
  padding: 52px 56px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.arch-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lemon); opacity: 0.8;
  margin-bottom: 20px;
}
.arch-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.035em; color: #fff;
  margin: -4px 0 20px;
}
.arch-banner__headline em { font-style: italic; font-weight: 700; color: var(--lemon); }
.arch-banner__body {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0; max-width: 52ch;
}
.arch-banner__right {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.arch-banner__stats-row {
  display: flex; flex-direction: row; align-items: flex-start;
  width: 100%;
}
.arch-banner__stat {
  flex: 1; padding: 32px 28px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0;
}
.arch-banner__stat + .arch-banner__stat { border: none; }
.arch-banner__stat__num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  color: #fff; white-space: nowrap;
  flex-shrink: 0; min-width: 110px; height: 56px; display: flex; align-items: center; justify-content: center;
}
.arch-banner__stat__num span { font-size: 24px; font-weight: 700; color: var(--lemon); }
.arch-banner__stat__desc {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   2 · STUDIO IDENTITY
══════════════════════════════════════════════════════ */
.identity {
  background: #fff;
  padding-block: 120px;
}
.identity__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.identity__copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em; color: var(--indigo-deep);
  margin: 0 0 24px;
}
.identity__copy h2 em { font-style: italic; color: var(--indigo-mid); }
.identity__copy p {
  font-size: 17px; line-height: 1.7;
  color: rgba(11,11,11,0.66);
  margin: 0 0 18px; max-width: 52ch;
}
.identity__copy p:last-child { margin: 0; }
.identity__copy p strong { color: var(--ink); font-weight: 600; }
.identity__aside {
  display: flex; flex-direction: column; gap: 2px; padding-top: 8px;
}
.identity__stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(16,21,133,0.08);
}
.identity__stat:first-child { border-top: 1px solid rgba(16,21,133,0.08); }
.identity__stat__num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  color: var(--indigo-deep); margin-bottom: 6px;
}
.identity__stat__num span {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--indigo-mid);
}
.identity__stat__label {
  font-size: 16px; font-weight: 500;
  color: rgba(11,11,11,0.55); line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   2b · METHODOLOGY
══════════════════════════════════════════════════════ */
.method {
  background: var(--cream);
  padding-block: 140px;
  position: relative; overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50% 40% 60% 30% / 40% 60% 40% 60%;
  background: rgba(16,21,133,0.04);
  pointer-events: none;
}
.method__inner { max-width: none; padding-inline: 45px; position: relative; z-index: 1; }
.method__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(16,21,133,0.1);
}
.method__header h2 {
  font-size: clamp(38px, 5vw, 70px); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.038em;
  color: var(--indigo-deep); margin: 0;
}
.method__header h2 em { font-style: italic; color: var(--indigo-mid); font-weight: 700; }
.method__header__aside {
  font-size: 18px; line-height: 1.7;
  color: rgba(11,11,11,0.6); max-width: 46ch; padding-bottom: 6px;
}
.method__header__aside strong { color: var(--ink); font-weight: 600; }
.method__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.method__step {
  border-radius: 20px; border: 1.5px solid rgba(16,21,133,0.1);
  padding: 44px 36px; display: flex; flex-direction: column; gap: 0;
  transition: transform .2s, box-shadow .2s;
}
.method__step:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(16,21,133,0.1); }
.method__step:nth-child(1) { background: #fff; border-color: rgba(16,21,133,0.12); }
.method__step:nth-child(2) { background: var(--indigo-light); border-color: rgba(16,21,133,0.12); }
.method__step:nth-child(3) { background: #FAFBC5; border-color: rgba(16,21,133,0.1); }
.method__step__verb {
  font-family: var(--font-display); font-weight: 900;
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--indigo-deep); margin-bottom: 28px;
}
.method__step__verb .v1 { display: block; font-size: clamp(28px, 3vw, 44px); }
.method__step__verb .v2 {
  display: block; font-size: clamp(28px, 3vw, 44px);
  font-style: italic; font-weight: 700; color: var(--indigo-mid);
}
.method__step__tagline {
  font-size: 17px; font-weight: 700; color: var(--ink);
  line-height: 1.4; margin: 0 0 12px;
}
.method__step__desc {
  font-size: 16px; line-height: 1.75;
  color: rgba(11,11,11,0.58); margin: 0; flex: 1;
}

/* ══════════════════════════════════════════════════════
   3 · BELIEFS
══════════════════════════════════════════════════════ */
.beliefs {
  background: var(--indigo-deep);
  padding-block: 130px;
  position: relative; overflow: hidden;
}
.beliefs::before {
  content: "";
  position: absolute; top: -100px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(63,72,217,0.25); pointer-events: none;
}
.beliefs__popcorn {
  position: absolute; bottom: -180px; right: -180px;
  width: 840px; height: 840px; opacity: 0.1;
  animation: popcorn-rotate 90s linear infinite;
  pointer-events: none;
}
.beliefs__popcorn img { width: 100%; height: 100%; display: block; }
@keyframes popcorn-rotate { to { transform: rotate(360deg); } }
.beliefs__inner {
  max-width: 1100px; margin-inline: auto;
  padding-inline: 48px; position: relative; z-index: 1;
}
.beliefs__header { margin-bottom: 72px; }
.beliefs__header h2 {
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 900;
  line-height: 0.97; letter-spacing: -0.035em;
  color: #fff; max-width: 18ch; margin: 0;
}
.beliefs__header h2 em { font-style: italic; color: var(--lemon); font-weight: 700; }
.beliefs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.belief {
  padding: 44px 40px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); position: relative;
}
.belief__num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: rgba(244,247,59,0.6);
  text-transform: uppercase; margin-bottom: 20px;
}
.belief h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 14px; line-height: 1.2;
}
.belief h3 em { font-style: italic; color: var(--lemon); }
.belief p {
  font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.62); margin: 0;
}

/* ══════════════════════════════════════════════════════
   4 · THE WORK
══════════════════════════════════════════════════════ */
.work { background: var(--cream); padding-block: 130px; }
.work__inner { max-width: none; padding-inline: 45px; }
.work__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(16,21,133,0.1);
}
.work__header h2 {
  font-size: clamp(38px, 5vw, 70px); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.038em;
  color: var(--indigo-deep); margin: 0;
}
.work__header h2 em { font-style: italic; color: var(--indigo-mid); font-weight: 700; }
.work__header p {
  font-size: 18px; line-height: 1.7;
  color: rgba(11,11,11,0.6); max-width: 46ch; padding-bottom: 6px;
}
.work__carousel-wrap { position: relative; }
.work__carousel {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px; cursor: grab;
}
.work__carousel:active { cursor: grabbing; }
.work__carousel::-webkit-scrollbar { display: none; }
.work__track {
  background: #fff; border-radius: 16px; padding: 36px 30px;
  border: 1.5px solid rgba(16,21,133,0.08);
  flex: 0 0 calc(33.333% - 11px); scroll-snap-align: start;
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .2s, box-shadow .2s;
}
.work__track:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(16,21,133,0.1); }
.work__track__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 22px; flex-shrink: 0;
}
.work__track h3 {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--indigo-deep); margin: 0 0 12px;
}
.work__track p {
  font-size: 16px; line-height: 1.65;
  color: rgba(11,11,11,0.6); margin: 0; flex: 1;
}
.work__track__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.work__track__tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--indigo-light); color: var(--indigo-deep);
  padding: 4px 10px; border-radius: 4px;
}
.work__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.work__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(16,21,133,0.2);
  background: #fff; color: var(--indigo-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, border-color .15s, transform .15s;
  flex-shrink: 0; padding: 0;
}
.work__arrow:hover { background: var(--indigo-deep); border-color: var(--indigo-deep); color: #fff; transform: scale(1.08); }
.work__arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.work__arrow svg { width: 14px; height: 14px; }
.work__dots { display: flex; justify-content: center; gap: 8px; }
.work__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(16,21,133,0.15); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.work__dot.is-active { background: var(--indigo-deep); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════
   5 · WHAT THIS ISN'T
══════════════════════════════════════════════════════ */
.nolist { background: #fff; padding-block: 120px; }
.nolist__inner {
  max-width: 1100px; margin-inline: auto; padding-inline: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.nolist__copy h2 {
  font-size: clamp(34px, 4vw, 54px); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--indigo-deep); margin: 0 0 22px;
}
.nolist__copy h2 em { font-style: italic; color: var(--indigo-mid); }
.nolist__copy p {
  font-size: 17px; line-height: 1.7;
  color: rgba(11,11,11,0.62); max-width: 50ch; margin: 0;
}
.nolist__items { display: flex; flex-direction: column; gap: 0; }
.nolist__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid rgba(16,21,133,0.07);
}
.nolist__item:first-child { border-top: 1px solid rgba(16,21,133,0.07); }
.nolist__item__x {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(16,21,133,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 14px; color: rgba(16,21,133,0.4); font-weight: 800;
}
.nolist__item__text { font-size: 16px; line-height: 1.6; color: rgba(11,11,11,0.65); }
.nolist__item__text strong {
  display: block; font-weight: 700; color: var(--ink);
  margin-bottom: 2px; font-size: 17px;
}

/* ══════════════════════════════════════════════════════
   5b · PRE-FOOTER BANNER
══════════════════════════════════════════════════════ */
.prefooter { background: #151515; padding: 48px 13%; }
.prefooter__card {
  background: var(--indigo-light); border-radius: 20px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; overflow: hidden; min-height: 260px; position: relative;
}
.prefooter__copy { padding: 52px 60px; position: relative; z-index: 1; }
.prefooter__eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--indigo-mid); margin-bottom: 14px; display: block;
}
.prefooter__headline {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px);
  font-weight: 900; line-height: 0.97; letter-spacing: -0.035em;
  color: var(--indigo-deep); margin: 0 0 18px;
}
.prefooter__headline em { font-style: italic; font-weight: 700; color: var(--indigo-mid); }
.prefooter__body {
  font-size: 16px; line-height: 1.65;
  color: rgba(16,21,133,0.6); max-width: 48ch; margin: 0 0 32px;
}
.prefooter__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.prefooter__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--indigo-deep); color: #fff;
  padding: 14px 22px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background .15s, transform .15s;
}
.prefooter__btn:hover { background: var(--indigo-mid); transform: translateY(-2px); }
.prefooter__btn--ghost {
  background: transparent; color: var(--indigo-deep);
  border: 1.5px solid rgba(16,21,133,0.28);
}
.prefooter__btn--ghost:hover { background: rgba(16,21,133,0.06); border-color: var(--indigo-deep); transform: translateY(-2px); }
.prefooter__illo {
  height: 100%; min-height: 260px; width: 380px;
  position: relative; flex-shrink: 0; overflow: hidden;
}
.prefooter__illo img {
  position: absolute; bottom: 0; right: 0;
  height: 110%; width: auto;
  object-fit: contain; object-position: bottom right;
}

/* ══════════════════════════════════════════════════════
   6 · CTA
══════════════════════════════════════════════════════ */
.about-cta {
  background: var(--indigo-deep); padding-block: 120px;
  position: relative; overflow: hidden;
}
.about-cta::after {
  content: ""; position: absolute; bottom: -80px; right: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(244,247,59,0.1); pointer-events: none;
}
.about-cta__inner {
  max-width: 1100px; margin-inline: auto;
  padding-inline: 48px; text-align: center; position: relative; z-index: 1;
}
.about-cta__inner h2 {
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 900;
  line-height: 0.97; letter-spacing: -0.035em; color: #fff; margin: 0 0 20px;
}
.about-cta__inner h2 em { font-style: italic; color: var(--lemon); }
.about-cta__inner p {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.65);
  max-width: 52ch; margin: 0 auto 40px;
}
.about-cta__actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .opener__below { grid-template-columns: 1fr; gap: 36px; }
  .opener__illo { display: none; }
  .identity__inner { grid-template-columns: 1fr; gap: 56px; }
  .arch-banner__left { padding: 40px 36px; }
  .arch-banner__stats-row { flex-wrap: wrap; }
  .arch-banner__stat { flex: 1 1 33%; }
  .method__header { grid-template-columns: 1fr; gap: 24px; }
  .method__steps { grid-template-columns: 1fr; }
  .work__header { grid-template-columns: 1fr; gap: 24px; }
  .work__header p { max-width: none; }
  .work__track { flex: 0 0 calc(50% - 8px); }
  .method__inner { padding-inline: 28px; }
  .work__inner { padding-inline: 28px; }
  .arch-banner__card { grid-template-columns: 1fr; }
  .prefooter__card { grid-template-columns: 1fr; }
  .prefooter__illo { display: none; }
  .prefooter { padding: 40px 5%; }
}

@media (max-width: 768px) {
  .opener { padding: 120px 0 64px; }
  .opener__inner { padding-inline: 24px; }
  .opener__lede { font-size: 18px; }
  .arch-banner { padding-inline: 16px; margin-top: 40px; }
  .arch-banner__left { padding: 36px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .arch-banner__right { padding: 20px 0; }
  .arch-banner__stats-row { flex-direction: row; flex-wrap: wrap; }
  .arch-banner__stat { flex: 1 1 33%; padding: 20px 16px; }
  .arch-banner__stat__num { font-size: 32px; min-width: auto; }
  .arch-banner__stat__desc { font-size: 13px; }
  .identity { padding-block: 80px; }
  .identity__inner { padding-inline: 24px; gap: 40px; }
  .method { padding-block: 90px; }
  .method__inner { padding-inline: 24px; }
  .method__header { padding-bottom: 36px; margin-bottom: 36px; }
  .beliefs { padding-block: 90px; }
  .beliefs__inner { padding-inline: 24px; }
  .beliefs__header { margin-bottom: 44px; }
  .beliefs__grid { grid-template-columns: 1fr; }
  .work { padding-block: 90px; }
  .work__inner { padding-inline: 24px; }
  .work__header { padding-bottom: 36px; margin-bottom: 36px; }
  .nolist { padding-block: 80px; }
  .nolist__inner { padding-inline: 24px; gap: 40px; grid-template-columns: 1fr; }
  .about-cta { padding-block: 90px; }
  .about-cta__inner { padding-inline: 24px; }
  .prefooter { padding: 32px 16px; }
  .prefooter__copy { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .arch-banner__stats-row { flex-direction: column; }
  .arch-banner__stat { flex: none; width: 100%; padding: 16px 28px; }
  .arch-banner__stat + .arch-banner__stat { border-top: 1px solid rgba(255,255,255,0.08); }
  .arch-banner__stat__num { font-size: 36px; }
  .method__step { padding: 32px 24px; }
  .belief { padding: 32px 24px; }
  .work__track { flex: 0 0 88%; }
  .identity__stat__num { font-size: 38px; }
  .prefooter__copy { padding: 28px 24px; }
  .prefooter__headline { font-size: clamp(26px, 8vw, 40px); }
  .about-cta__actions { flex-direction: column; align-items: center; }
  .about-cta__actions a { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Beliefs popcorn mobile visibility ── */
@media (max-width: 768px) {
  .beliefs__popcorn {
    width: 320px; height: 320px;
    bottom: -60px; right: -80px;
    opacity: 0.07;
  }
}

/* ── SHOPIFY PARTNER STAT ──────────────────────────────────────────────── */
.arch-banner__stat--partner .arch-banner__stat__num--partner {
  min-width: auto;
  font-size: inherit;
}
.arch-partner-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin: 0 auto;
}

/* ── IDENTITY SHOPIFY PARTNER BLOCK ────────────────────────────────────── */
.identity__stat--partner {
  border-top: 1px solid rgba(16,21,133,0.1);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.identity-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.identity-partner-logo {
  height: 25px;
  width: 25px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 0.75;
}
.identity-partner-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #101585;
  opacity: 0.75;
}
