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

/* TOKENS */
:root {
  --yellow: #F6C35B;
  --charcoal: #4A4A4A;
  --text: #2C2C2C;
  --muted: #777;
  --bubble: #F3F3F3;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #fff;
  color: var(--text);
  text-align: center; /* ðŸ”’ GLOBAL CENTER */
}

/* LINKS — NEUTRAL, NOT BLUE */
a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* NAV */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  justify-content: center;
  gap: 32px;

  padding: 20px 24px;
  background: #fff;
}

.top-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  opacity: 0.6;
}

.top-nav a.active {
  opacity: 1;
  font-weight: 600;
}

.top-nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  background: var(--yellow);
  padding: 96px 24px;
}

.hero-icon {
  width: 120px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* SECTIONS */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 24px;
  scroll-margin-top: 96px;
}

.section h2 {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.headline {
  font-weight: 700;
  margin-bottom: 32px;
}

/* BODY COPY â€” LOCKED CENTER */
.section p {
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
  text-align: center; /* ðŸ”’ BODY COPY CENTERED */
}

.muted {
  color: var(--muted);
}

/* INTRO FOOTPRINT */
.toes-stage {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.toes-stage img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* MODEL BUBBLES */
.bubble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.bubble {
  background: var(--bubble);
  border-radius: 16px;
  padding: 28px;
  min-height: 120px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 15px;
  line-height: 1.4;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 48px 24px;
}

.footer-icon {
  width: 48px;
  margin-bottom: 12px;
}

.footer-icon {
  filter: brightness(0) invert(1);
}

/* MOBILE */
@media (max-width: 768px) {
  .bubble-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    gap: 20px;
  }
}

/* CONNECT LINKS — GROUPED */
.connect-links p {
  margin-bottom: 8px;
}

<label for="category" class="field-label">what is it</label>

<select id="category" class="scroll-select">
  <option value="" disabled selected>select category</option>
  <option>clothing</option>
  <option>furniture</option>
  <option>electronics</option>
  <option>books</option>
  <option>tools</option>
  <option>home goods</option>
  <option>collectibles</option>
  <option>other</option>
</select>
