/* =============================================================
   TOOTHLESS MEDIA — Design tokens
   Palette:  --black (base) / --black-soft (panels) / --red (accent)
             --white (off-white, matches logo) / --gray (secondary text)
   Type:     Big Shoulders Display (display) / Manrope (body) / JetBrains Mono (utility)
   ============================================================= */

:root{
  --black:        #060607;
  --black-soft:   #0d0d10;
  --black-panel:  #101012;
  --red:          #e8102a;
  --red-deep:     #6e0b1a;
  --white:        #f5f3ee;
  --gray:         #8b8b90;
  --gray-dim:     #55555a;
  --line:         rgba(245,243,238,0.09);
  --line-strong:  rgba(245,243,238,0.16);

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body:    "Manrope", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;

  --container: 1240px;
  --pad: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.16,.84,.32,1);
}

*,*::before,*::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  background: var(--black);
}

body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }

a{
  color: inherit;
  text-decoration: none;
}

ul{ list-style:none; margin:0; padding:0; }

::selection{
  background: var(--red);
  color: var(--white);
}

:focus-visible{
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =============================================================
   AMBIENT LAYERS — grain + progress rail + reticle cursor
   ============================================================= */

.grain{
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.progress-rail{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 60;
}
.progress-rail__fill{
  height: 100%;
  width: 0%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(232,16,42,0.7);
  transition: width 0.1s linear;
}

/* Reticle cursor — desktop / fine pointer only */
.reticle{
  position: fixed;
  top:0; left:0;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  pointer-events: none;
  z-index: 999;
  display: none;
  transition: transform 0.15s var(--ease), opacity 0.2s ease;
  opacity: 0;
}
.reticle__ring{
  position:absolute; inset:0;
  border: 1px solid var(--red);
  border-radius: 50%;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.reticle__dot{
  position:absolute;
  top:50%; left:50%;
  width:4px; height:4px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.reticle__tick{
  position:absolute;
  background: var(--red);
  opacity: 0.85;
}
.reticle__tick--t{ top:-8px; left:50%; width:1px; height:6px; transform: translateX(-50%); }
.reticle__tick--b{ bottom:-8px; left:50%; width:1px; height:6px; transform: translateX(-50%); }
.reticle__tick--l{ left:-8px; top:50%; width:6px; height:1px; transform: translateY(-50%); }
.reticle__tick--r{ right:-8px; top:50%; width:6px; height:1px; transform: translateY(-50%); }

.reticle.is-active{ opacity: 1; }
.reticle.is-hover .reticle__ring{ transform: scale(1.9); border-color: var(--white); }
.reticle.is-hover .reticle__dot{ background: var(--white); }
.reticle.is-down .reticle__ring{ transform: scale(0.75); }

@media (pointer: fine){
  .reticle{ display:block; }
  body{ cursor: none; }
  a, button, input, textarea, select{ cursor: none; }
  
}

.founder__facts li.connect a{
  color: var(--red);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.founder__facts li.connect a:hover{
  color: var(--white);
  border-color: var(--red);
  text-shadow: 0 0 10px rgba(232,16,42,0.7);
}
/* =============================================================
   LAYOUT HELPERS
   ============================================================= */

.eyebrow{
  display:flex;
  align-items:center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.eyebrow__index{
  color: var(--red);
  border: 1px solid var(--line-strong);
  padding: 5px 10px;
  border-radius: 2px;
}

.section-head{
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 var(--pad);
  text-align: left;
}
.section-title{
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
}
.section-sub{
  font-family: var(--font-body);
  color: var(--gray);
  max-width: 480px;
  margin-top: 18px;
  font-size: 15px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn--primary{
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover{
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn--ghost{
  border-color: var(--line-strong);
  color: var(--white);
}
.btn--ghost:hover{
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn--block{ width: 100%; }

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay.is-visible{ transition-delay: 0.15s; }

/* =============================================================
   NAV
   ============================================================= */

.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(6,6,7,0.85), rgba(6,6,7,0));
  backdrop-filter: blur(6px);
}
.nav__brand{ display:flex; align-items:center; }
.nav__logo{ height: 30px; width:auto; filter: drop-shadow(0 0 12px rgba(0,0,0,0.4)); }

.nav__links{
  display:flex;
  gap: 34px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links a{
  display:flex;
  align-items:center;
  gap: 7px;
  color: var(--gray);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav__links a:hover{ color: var(--white); }
.nav__index{ color: var(--red); font-size: 10px; }

.nav__cta{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  border-radius: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.nav__cta:hover{ border-color: var(--red); color: var(--red); }

.nav__burger{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  padding: 0;
}
.nav__burger span{
  display:block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =============================================================
   HERO
   ============================================================= */

.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--pad) 90px;
  overflow: hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.hero__bg-word{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  white-space: nowrap;
  letter-spacing: 0.02em;
  user-select: none;
}

.hero__grid{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero__title{
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 30px;
}
.hero__title-accent{ color: var(--red); }

.hero__vision{
  max-width: 560px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 38px;
  padding-left: 20px;
  border-left: 2px solid var(--red-deep);
}

.hero__actions{ display:flex; gap: 16px; flex-wrap: wrap; }

.hero__media{ position:relative; }
.hero__frame{
  position:relative;
  border: 1px solid var(--line-strong);
  padding: 10px;
}
.hero__image{
  width:100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05);
}
.hero__frame-corner{
  position:absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--red);
}
.hero__frame-corner--tl{ top:-2px; left:-2px; border-right:none; border-bottom:none; }
.hero__frame-corner--br{ bottom:-2px; right:-2px; border-left:none; border-top:none; }

.hero__caption{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__caption-line{ width: 26px; height:1px; background: var(--red); display:inline-block; }

.typewriter{
  color: var(--white);
  border-right: 1px solid var(--red);
  padding-right: 4px;
  white-space: nowrap;
  min-height: 1em;
}

.scroll-cue{
  position: absolute;
  bottom: 34px;
  left: var(--pad);
  display:flex;
  align-items:center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 1;
}
.scroll-cue__bar{
  width: 1px;
  height: 34px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.scroll-cue__bar::after{
  content:"";
  position:absolute;
  top:-100%; left:0;
  width:100%; height:100%;
  background: var(--red);
  animation: scrollDrip 1.8s ease-in-out infinite;
}
@keyframes scrollDrip{
  0%{ top:-100%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

/* =============================================================
   SHARED SECTION SPACING
   ============================================================= */

section{ position: relative; padding: 130px 0; }
.founder, .achievements, .team, .contact{ padding-left: 0; padding-right: 0; }

/* =============================================================
   FOUNDER
   ============================================================= */

.founder__grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.founder__frame{
  border: 1px solid var(--line-strong);
  padding: 8px;
  position: sticky;
  top: 110px;
}
.founder__image{
  width:100%;
  aspect-ratio: 3/5;
  object-fit: cover;
}

.founder__quote{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--white);
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin: 0 0 36px;
}

.founder__bio p{
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.85;
  margin: 0 0 18px;
  max-width: 620px;
}

.founder__facts{
  display:flex;
  gap: 40px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.founder__facts li{
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--white);
}
.founder__facts li span{
  display:block;
  color: var(--gray-dim);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* =============================================================
   ACHIEVEMENTS
   ============================================================= */

.achievements{ background: var(--black-soft); }

.stats{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 90px;
}
.stat{
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.stat__value{
  display:block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--red);
  line-height: 1;
}
.stat__label{
  display:block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.milestones{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
.milestones li{
  display:flex;
  gap: 18px;
}
.milestones__mark{
  flex: none;
  width: 8px; height: 8px;
  margin-top: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,16,42,0.15);
}
.milestones h3{
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.milestones p{
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* =============================================================
   TEAM
   ============================================================= */

.team__scroll{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.team__grid{
  cursor: grab;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}
.team__grid.is-dragging{ cursor: grabbing; scroll-snap-type: none; user-select: none; }
.team__grid::-webkit-scrollbar{ height: 6px; }
.team__grid::-webkit-scrollbar-track{ background: var(--black); }
.team__grid::-webkit-scrollbar-thumb{ background: var(--red-deep); }
.team__grid::-webkit-scrollbar-thumb:hover{ background: var(--red); }

/* fade masks hinting at more content left/right of the scroll area */
.team__fade{
  position: absolute;
  top: 0;
  width: 70px;
  height: calc(100% - 18px);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.team__fade--left{
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
  opacity: 0;
}
.team__fade--right{
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
  opacity: 1;
}
.team__fade--left.is-visible{ opacity: 1; }
.team__fade--right.is-hidden{ opacity: 0; }

.team__hint{
  display:flex;
  align-items:center;
  gap: 14px;
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 0 var(--pad);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.team__hint-bar{
  position: relative;
  width: 90px;
  height: 2px;
  background: var(--line-strong);
  overflow: hidden;
}
.team__hint-bar-fill{
  position: absolute;
  top:0; left:0;
  height: 100%;
  width: 0%;
  background: var(--red);
}

.team-card{
  flex: 0 0 260px;
  background: var(--black-panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: border-color 0.3s ease;
}
.team-card:hover{ border-color: var(--line-strong); }

.team-card__media{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;
  background: var(--black);
}
.team-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.team-card:hover .team-card__media img{
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.04);
}
.team-card__initials{
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.team-card__body{ flex: 1; padding: 22px 22px 26px; }

.team-card__name{
  font-size: 19px;
  margin-bottom: 4px;
}
.team-card__role{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.team-card__bio{
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.team-card__social{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.team-card__social a{
  color: var(--gray);
  transition: color 0.25s ease;
}
.team-card__social a:hover{ color: var(--white); }

/* =============================================================
   CONTACT / CAREERS
   ============================================================= */

.contact{ background: var(--black-soft); }

.contact__grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact__text{
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 460px;
  margin: 24px 0 40px;
}

.contact__block{ margin-bottom: 22px; }
.contact__block-label{
  display:block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 6px;
}
.contact__link{
  font-size: 17px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact__link:hover{ color: var(--red); border-color: var(--red); }

.contact__socials{
  display:flex;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact__socials a{ color: var(--gray); transition: color 0.25s ease; }
.contact__socials a:hover{ color: var(--white); }

.contact__form{
  background: var(--black-panel);
  border: 1px solid var(--line);
  padding: 40px;
  display:flex;
  flex-direction: column;
  gap: 20px;
}
.field{ display:flex; flex-direction: column; gap: 8px; }
.field label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.field input,
.field select,
.field textarea{
  background: var(--black);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 14px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color: var(--red); outline:none; }
.field select{ appearance: none; }

.contact__form-note{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--red);
  min-height: 1em;
  margin: 0;
}
.contact__form-note--error{
  color: #ff5c72;
}
button[disabled]{
  opacity: 0.6;
  pointer-events: none;
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer{
  padding: 60px var(--pad) 34px;
  border-top: 1px solid var(--line);
}
.footer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 34px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.footer__logo{ height: 26px; }
.footer__tagline{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin:0;
}
.footer__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-dim);
}
.footer__credit{
  margin: 0;
  color: var(--gray-dim);
}
.footer__credit a{
  color: var(--red);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}
.footer__credit a:hover{
  color: var(--white);
  border-color: var(--red);
  text-shadow: 0 0 10px rgba(232,16,42,0.7);
}
.footer__links{ display:flex; gap: 22px; }
.footer__links a{ color: var(--gray); transition: color 0.25s ease; }
.footer__links a:hover{ color: var(--red); }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero__media{ max-width: 380px; }
  .founder__grid{ grid-template-columns: 1fr; }
  .founder__frame{ position: static; max-width: 380px; }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .contact__grid{ grid-template-columns: 1fr; }
  .milestones{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }

  .nav__links.is-open{
    display:flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 320px;
    background: var(--black-soft);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px var(--pad);
    border-left: 1px solid var(--line-strong);
    z-index: 55;
  }
  .nav__links.is-open a{ font-size: 15px; }

  .hero{ padding-top: 110px; }
  .scroll-cue{ display:none; }

  .team__grid{ gap: 14px; }
  .team-card{ flex-basis: 210px; }
  .contact__form{ padding: 28px; }
}