@font-face {
  font-family: 'Archivo Black';
  src: url('fonts/archivo-black-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --accent: #FFC700;
  --black: #000000;
  --white: #FFFFFF;
  --dark-accent: #383838;
  --light-accent: #F4F4F3;
  --muted: #9A9A9A;
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --page-pad: 4vw;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--accent); color: var(--black);
  padding: .75rem 1.25rem; z-index: 100;
}
.skip-link:focus { left: var(--page-pad); top: .5rem; }

.site-header {
  padding: 1.4vw var(--page-pad);
  background: var(--black); border-bottom: 1px solid var(--dark-accent);
}
.site-header__brand {
  font-family: var(--display); font-size: clamp(.85rem, 1.6vw, 1.1rem);
  text-decoration: none; letter-spacing: .01em;
}

.section { padding: clamp(3rem, 8vw, 7rem) var(--page-pad); }
.section--black { background: var(--black); color: var(--white); }
.section--white { background: var(--white); color: var(--black); }

.hero { position: relative; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: center/cover no-repeat;
  background-image: url('img/hero.jpg');
  background-image: image-set(url('img/hero.webp') type('image/webp'),
                              url('img/hero.jpg') type('image/jpeg'));
  /* Original Squarespace hero used a 60% black overlay atop a full-opacity
     photo; over a black background that is equivalent to opacity: .4 on
     the photo itself (1 - 0.6 = 0.4). */
  opacity: .4;
}
.hero > :not(.hero__bg) { position: relative; z-index: 1; }
.hero__eyebrow {
  font-family: var(--display); color: var(--accent);
  font-size: clamp(1.5rem, 5vw, 3rem); margin: 0 0 .3em;
}
.hero__title {
  font-family: var(--display); margin: 0 auto .8em; max-width: 18ch;
  font-size: clamp(2rem, 7vw, 5rem); line-height: 1.05;
}
.hero__points {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  justify-content: center; list-style: none; padding: 0; margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.4rem); font-weight: 700;
}
.hero__points li::before { content: '✓'; color: var(--accent); margin-right: .5em; }

.marquee {
  background: var(--accent); color: var(--black);
  padding: .9rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-block; padding-left: 100%;
  font-weight: 700; font-size: clamp(.95rem, 1.8vw, 1.25rem);
  animation: marquee 18.67s linear infinite;
}
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { white-space: normal; text-align: center; }
  .marquee__track { animation: none; padding-left: 0; display: block; }
}

.since { text-align: center; }
.since h2 {
  font-family: var(--display); color: var(--black);
  font-size: clamp(1.4rem, 4vw, 2.5rem); margin: 0 0 .4em;
}
.since p { font-size: clamp(1.05rem, 2.2vw, 1.5rem); margin: 0 auto; max-width: 34ch; }

.customers { text-align: center; }
.customers h3 {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem); margin: 0 0 2rem;
}
.customers__logos {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
}
.customers__logos img { max-height: 70px; width: auto; }

.cta { text-align: center; }
.cta__row {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: center; margin-top: 2rem; margin-bottom: 2.5rem;
}
.cta__row img { max-height: 64px; width: auto; }
.cta__row a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.cta__review { max-width: 440px; margin: 0 auto; }

.contact { text-align: center; line-height: 1.9; }
.contact a { color: var(--accent); }

footer { padding: 2rem var(--page-pad); text-align: center; color: var(--muted); }
