/* ============================================================
   Tom Lidgett Portfolio
   Design language: warm cream canvas, white bento cards,
   gold accent, refined sans with tight tracking.
   ============================================================ */

:root {
  --canvas: #f7f7f4;
  --cursor-cream: #f7f7f4;
  --beige: #f2f1ee;
  --beige-deep: #e9e6df;
  --card: #ffffff;

  --border: rgba(0, 0, 0, 0.07);
  --border-strong: rgba(0, 0, 0, 0.12);

  --ink: #18181b;
  --ink-2: #3f3f46;
  --muted: #71717a;
  --faint: #a1a1aa;

  --gold: #b07b00;
  --gold-deep: #8a6000;
  --gold-soft: #c9961f;

  --dark: #161311;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.28);

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 11px;

  --wrap: 1120px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }

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

::selection { background: rgba(176, 123, 0, 0.18); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* Film grain overlay for premium texture */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border-radius: 999px; padding: 11px 19px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; box-shadow: 0 10px 26px -12px rgba(0,0,0,.5); }
.btn--ghost { background: rgba(0,0,0,.05); color: var(--ink-2); }
.btn--ghost:hover { background: rgba(0,0,0,.09); color: var(--ink); }
.btn--lg { padding: 14px 24px; font-size: 15px; }

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.gate {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--beige);
  padding: 24px;
  transition: opacity .45s ease, visibility .45s ease;
}
.gate.is-open { opacity: 0; visibility: hidden; pointer-events: none; }

.gate__card {
  position: relative; z-index: 2;
  width: min(400px, 100%);
  text-align: center;
  background: var(--cursor-cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px 32px;
  animation: gateIn .5s cubic-bezier(.16, 1, .3, 1) both;
}
.gate__logo {
  width: 48px; height: 48px; border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
  margin: 0 auto 18px;
}
@keyframes gateIn { from { opacity: 0; transform: translateY(10px); } }

.gate__label {
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
}
.gate__sub {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
}
.gate__form {
  margin-top: 24px; display: flex; gap: 8px;
  background: #fff; border: 1px solid var(--border-strong);
  padding: 6px 6px 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.gate__form:focus-within {
  border-color: rgba(176, 123, 0, .45);
  box-shadow: 0 0 0 3px rgba(201, 150, 31, .1), var(--shadow-sm);
}
.gate.is-wrong .gate__form { animation: shake .4s ease; border-color: #d9534f; }
@keyframes shake { 10%,90%{transform:translateX(-1px)} 20%,80%{transform:translateX(2px)} 30%,50%,70%{transform:translateX(-5px)} 40%,60%{transform:translateX(5px)} }

.gate__form input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  text-align: left;
}
.gate__form input::placeholder { color: var(--faint); }
.gate__btn { padding: 10px 18px; flex-shrink: 0; }

.gate__hint {
  margin-top: 16px; font-size: 12.5px; color: var(--faint); line-height: 1.5;
  transition: color .2s ease;
}
.gate.is-wrong .gate__hint { color: #d9534f; }

/* ============================================================
   SITE
   ============================================================ */
.site { position: relative; z-index: 1; }

/* ---- Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--canvas);
  overflow: visible;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 13px; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__mark { border-radius: 7px; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.nav__name { font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.nav__sub { color: var(--gold-deep); font-weight: 500; }
.nav__contact {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px; color: var(--muted); font-weight: 500;
  background: none; border: none; padding: 6px 2px; cursor: pointer;
  transition: color .18s ease;
}
.nav__contact:hover,
.nav__touch.is-open .nav__contact { color: var(--ink); }
.nav__touch { position: relative; }
.nav__touch-chevron {
  color: var(--faint);
  transition: transform .2s ease, color .18s ease;
}
.nav__touch.is-open .nav__touch-chevron {
  transform: rotate(180deg);
  color: var(--muted);
}
.nav__touch-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  width: min(240px, calc(100vw - 36px));
  display: grid; grid-template-rows: 0fr;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition:
    grid-template-rows .4s cubic-bezier(.04, .62, .23, .98),
    opacity .4s cubic-bezier(.04, .62, .23, .98),
    visibility .4s cubic-bezier(.04, .62, .23, .98);
}
.nav__touch.is-open .nav__touch-menu {
  grid-template-rows: 1fr;
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav__touch-menu-inner {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 4px;
}
.nav__touch-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 13.5px; font-weight: 500; letter-spacing: -.01em;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background .15s ease, color .15s ease;
}
.nav__touch-link + .nav__touch-link { border-top: 1px solid var(--border); }
.nav__touch-link svg { flex-shrink: 0; color: var(--faint); }
.nav__touch-link:hover { background: rgba(0, 0, 0, .03); color: var(--ink); }
.nav__touch-link:hover svg { color: var(--muted); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 13.5px; color: var(--muted); font-weight: 450;
  transition: color .18s ease; position: relative;
}
.nav__links a:hover { color: var(--ink); }

/* ---- Hero */
.hero { position: relative; padding-top: 64px; padding-bottom: 48px; overflow: clip; }
.hero__glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 560px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(201,150,31,.16), transparent 70%),
    radial-gradient(40% 50% at 78% 20%, rgba(176,123,0,.08), transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr min(420px, 42%);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__media { justify-self: end; width: 100%; max-width: 420px; }

.eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: .01em; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 9px;
}
.hero__title {
  margin-top: 20px; max-width: 22ch;
  font-size: clamp(38px, 6.4vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero__title .accent { color: var(--gold); }
.hero__lede {
  margin-top: 24px; max-width: 42ch;
  font-size: clamp(16px, 1.8vw, 19px); line-height: 1.62; color: var(--muted);
}
.hero__lede strong { color: var(--ink-2); font-weight: 600; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Featured reel */
.reel { margin-top: 52px; }

/* ---- Video component */
.vid {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: #0e0d0c; aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.vid--feature {
  aspect-ratio: 16 / 9; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.vid--hero {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.vid--hero .vid__play { width: 44px; height: 44px; top: 12px; left: 12px; }
.vid--hero .vid__play svg { width: 13px; height: 13px; margin-left: 2px; }
.vid video { width: 100%; height: 100%; object-fit: cover; display: block; transform: scaleX(-1); }
.vid__cover {
  position: absolute; inset: 0; cursor: pointer;
  transition: opacity .45s ease, visibility .45s ease;
}
/* thumbnail poster (mirrored to match the video) */
.vid__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scaleX(-1); z-index: 0;
}
.vid__cover::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(165deg, rgba(20, 17, 14, .3), rgba(12, 11, 10, .7));
}
.vid.is-playing .vid__cover { opacity: 0; visibility: hidden; }
.vid__play {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: rgba(255, 255, 255, 0.96);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), background .28s ease, box-shadow .28s ease;
}
.vid__play svg {
  width: 15px; height: 15px; margin-left: 2px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}
.vid__cover:hover .vid__play {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}
.vid__play:active { transform: scale(0.96); }
.vid--feature .vid__play { width: 58px; height: 58px; }
.vid--feature .vid__play svg { width: 17px; height: 17px; margin-left: 2px; }
.vid__meta {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: rgba(255, 255, 255, .85); letter-spacing: -0.005em;
}
.vid__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(201, 150, 31, .6); animation: live 2.4s ease-out infinite;
}
@keyframes live { 0%{box-shadow:0 0 0 0 rgba(201,150,31,.55)} 70%,100%{box-shadow:0 0 0 8px rgba(201,150,31,0)} }

/* ---- Logo strip */
.logos { padding-block: 30px 8px; }
.logos__row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.logo-tile__stack { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.logo-tile__note { font-size: 10px; letter-spacing: .01em; color: var(--faint); white-space: nowrap; }
.logo-tile__note strong { color: var(--ink-2); font-weight: 600; }
.logo-tile {
  display: flex; align-items: center; justify-content: center; height: 70px;
  background: var(--beige); border: 1px solid var(--border); border-radius: var(--r-sm);
  transition: background .2s ease, transform .2s ease;
}
.logo-tile:hover { background: #fff; transform: translateY(-2px); }

/* brand wordmarks: premium press-wall monochrome, brand colour on hover */
.wm {
  color: #4b4b52; font-weight: 700; letter-spacing: -0.02em; font-size: 18px;
  transition: color .2s ease; line-height: 1;
}
.logo-tile:hover .wm { }
.wm-doordash { color: #5a4a45; }
.logo-tile:hover .wm-doordash { color: #ff3008; }
.wm-blacklane { font-weight: 600; letter-spacing: .14em; font-size: 13.5px; }
.logo-tile:hover .wm-blacklane { color: #111; }
.wm-aldi { letter-spacing: .02em; font-weight: 800; }
.logo-tile:hover .wm-aldi { color: #00549f; }
.wm-uber { font-weight: 700; font-size: 21px; letter-spacing: -0.04em; }
.logo-tile:hover .wm-uber { color: #000; }
.wm-ashburton { font-weight: 600; letter-spacing: -0.01em; font-size: 15px; }

.wm-img { object-fit: contain; opacity: .78; filter: grayscale(.55); transition: opacity .2s, filter .2s; }
.logo-tile:hover .wm-img { opacity: 1; filter: none; }
.wm-img--yj { height: 18px; width: auto; }
.wm-img--nest { height: 32px; width: auto; border-radius: 8px; }
.wm-img--dd { height: 15px; width: auto; }
.wm-img--bl { height: 17px; width: auto; }

/* ============================================================
   BANDS / SECTIONS
   ============================================================ */
.band { padding-block: 84px; position: relative; }
.band--beige { background: var(--beige); border-block: 1px solid var(--border); }

.band__head { max-width: 60ch; margin-bottom: 44px; }
.band__tag {
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-deep);
}
.band__head h2 {
  margin-top: 14px; font-size: clamp(28px, 4vw, 42px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.06; color: var(--ink);
}
.band__head p { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 58ch; }

/* ---- Bento cards */
.bentos { display: flex; flex-direction: column; gap: 18px; }
.bento {
  display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.bento:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.bento--flip { grid-template-columns: minmax(0, 420px) 1fr; }
.bento:not(:has(.bento__media)) { grid-template-columns: 1fr; }
.band--beige .bento { background: #fff; }

.bento__body { padding: 14px; display: flex; flex-direction: column; }
.bento__panel {
  flex: 1; height: 100%;
  padding: 28px 30px;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
}
.band--beige .bento__panel { background: var(--beige-deep); }
.bento__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.bento__logo { color: var(--ink); }
.bento__logo.wm-doordash { color: #ff3008; }
.bento__logo.wm-aldi { color: #00549f; }
.bento__logo.wm-blacklane { color: var(--ink); font-size: 14px; }
.bento__logo-img { object-fit: contain; }
.bento__logo-img--yj { height: 19px; width: auto; }
.bento__logo-img--nest { height: 34px; width: auto; border-radius: 8px; }
.bento__logo-img--dd { height: 18px; width: auto; }
.bento__logo-img--bl { height: 18px; width: auto; }
.bento__logo-img--ash { height: 28px; width: auto; }

.bento__role {
  font-size: clamp(19px, 2.1vw, 23px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.2; color: var(--ink);
}
.bento__desc { margin-top: 13px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.bento__desc strong { color: var(--ink-2); font-weight: 600; }

.bento__points { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.bento__points li {
  position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}
.bento__points li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold-soft);
  transform: rotate(45deg);
}
.bento__points strong { color: var(--gold-deep); font-weight: 600; }

.bento__media { padding: 16px; display: flex; }
.bento__media .vid { width: 100%; align-self: stretch; aspect-ratio: auto; min-height: 240px; }
.bento--flip .bento__body { order: 2; }
.bento--flip .bento__media { order: 1; }

/* ---- Card meta (plain, understated) */
.bento__when { font-size: 13px; font-weight: 500; color: var(--faint); white-space: nowrap; }
.bento__badge { font-size: 13px; font-weight: 600; color: var(--gold-deep); white-space: nowrap; }

/* ============================================================
   CURSOR NOTE (minimal)
   ============================================================ */
.cursor { padding-block: 48px 16px; }
.cursor-min {
  display: flex; align-items: center; gap: 18px;
  max-width: 760px; margin-inline: auto;
}
.cursor-min__mark {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}
.cursor-min__text { font-size: 15px; line-height: 1.6; color: var(--muted); }
.cursor-min__text strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   STACK + EDUCATION
   ============================================================ */
.stack__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stack__col {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 32px;
}
.stack__col h4 {
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  background: var(--beige); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 10px;
  transition: transform .15s ease, border-color .15s ease;
}
.chip:hover { transform: translateY(-1px); border-color: var(--border-strong); }
.chip--hero {
  background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600;
}
.chip--hero img { border-radius: 4px; }

.edu {
  margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 32px;
}
.edu__item { display: flex; flex-direction: column; gap: 3px; }
.edu__school { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.edu__deg { font-size: 14px; color: var(--muted); }
.edu__divider { width: 1px; align-self: stretch; background: var(--border); }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact { padding-block: 16px 72px; text-align: center; position: relative; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.foot { border-top: 1px solid var(--border); background: var(--canvas); }
.foot__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-block: 30px; }
.foot__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; letter-spacing: -0.02em; }
.foot__end { display: flex; align-items: center; gap: 16px; }
.foot__note { font-size: 13px; color: var(--faint); }
.foot__logout {
  font-family: inherit; font-size: 13px; font-weight: 500; color: var(--muted);
  background: none; border: none; padding: 0; cursor: pointer;
  transition: color .18s ease;
}
.foot__logout:hover { color: var(--ink); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); filter: blur(8px); }
.reveal.in {
  opacity: 1; transform: none; filter: none;
  transition: opacity .7s cubic-bezier(.16,1,.3,1) var(--d, 0s),
              transform .7s cubic-bezier(.16,1,.3,1) var(--d, 0s),
              filter .7s ease var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .gate__field::before, .gate__field::after, .gate__badge-glow { animation: none; }
  .gate__card { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
.br-lg { display: inline; }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { justify-self: start; max-width: 340px; }
  .bento { grid-template-columns: 1fr; }
  .bento--flip .bento__body { order: 1; }
  .bento--flip .bento__media { order: 2; }
  .bento__media .vid { aspect-ratio: 16/10; min-height: 0; }
  .cursor__inner { grid-template-columns: 1fr; gap: 28px; }
  .stack__grid { grid-template-columns: 1fr; }
  .br-lg { display: none; }
}

@media (max-width: 720px) {
  .wrap { padding-inline: 18px; }
  .nav__links { display: none; }
  .hero { padding-top: 44px; }
  .band { padding-block: 60px; }
  .bento__body { padding: 10px; }
  .bento__panel { padding: 24px 22px; }
  .logos__row { grid-template-columns: repeat(3, 1fr); }
  .edu__divider { display: none; }
  .cursor__stats { gap: 26px; }
}

@media (max-width: 440px) {
  .logos__row { grid-template-columns: repeat(2, 1fr); }
  .btn { font-size: 13.5px; }
}

/* particles removed */
