:root {
  --shark: #5C6066;
  --shark-elevated: #64686D;
  --cue-yellow: #F2C230;
  --chalk: #F3F1EC;
  --slatemute: #DCE1E3;
  --ink: #1B1D20;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--shark);
  color: var(--chalk);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing-page .wrap { padding-bottom: 0; }

@media (min-width: 768px) {
  .wrap { padding-top: 1.5rem; padding-bottom: 5rem; }
  .landing-page .wrap { padding-bottom: 0; }
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left logo right";
  align-items: center;
  column-gap: 2rem;
  width: 100%;
}

.logo { grid-area: logo; height: clamp(3.75rem, 16vw, 95px); width: auto; justify-self: center; }
.logo-sm { height: 3rem; width: auto; }

.hero {
  width: 100%;
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.25rem 0;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slatemute);
  text-decoration: none;
  white-space: nowrap;
}
.social-link:hover, .social-link:focus-visible { color: var(--cue-yellow); }
.social-link--left { grid-area: left; justify-content: flex-end; justify-self: end; }
.social-link--right { grid-area: right; justify-content: flex-start; justify-self: start; }

.social-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .top-bar {
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo logo"
      "left right";
    justify-content: center;
    row-gap: 0.5rem;
    column-gap: 1.5rem;
  }
  .logo { justify-self: center; }
  .social-link--left,
  .social-link--right { justify-self: auto; }
}

.eyebrow {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cue-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pip {
  width: 7px;
  height: 7px;
  background: var(--cue-yellow);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: inline-block;
  flex-shrink: 0;
}

h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--chalk);
}

.lede {
  margin: 0.5rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--slatemute);
}

.hero-columns {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3%;
    padding: 0 4%;
    align-items: stretch;
  }
  .hero-columns .hero-copy:first-child { grid-column: 1; margin: 30px 0; }
  .hero-columns .form-block { grid-column: 2; }
  .hero-columns .hero-copy:last-child { grid-column: 3; margin: 30px 0; }
  .hero-columns .hero-copy {
    padding-top: calc(1.1rem + 15px);
  }
  .hero-columns .hero-copy:first-child .section-title {
    font-size: 0.875rem;
  }
  .hero-columns .hero-copy:last-child .section-title {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

.section-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--chalk);
}

.form-block, .hero-copy {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.1rem 1rem;
}
.form-block .eyebrow { margin-top: 0; justify-content: center; }
.form-help { margin: 0.35rem 0 0; font-size: 0.8125rem; color: var(--slatemute); }

.hero-copy { display: flex; flex-direction: column; justify-content: flex-start; }
.hero-copy .eyebrow { margin-top: 0; justify-content: center; }
.hero-copy .section-title { font-size: 1.125rem; }

form {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hp { position: absolute; left: -9999px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: var(--shark-elevated);
  color: var(--chalk);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
}
input::placeholder, textarea::placeholder { color: rgba(243,241,236,0.85); }
input:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--cue-yellow);
  outline-offset: 2px;
}
textarea { resize: vertical; }

button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--cue-yellow);
  color: var(--ink);
  padding: 0.9rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1), box-shadow 220ms cubic-bezier(0.16,1,0.3,1);
}
button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(242,194,48,0.35); }
button:active { transform: translateY(0) scale(0.98); }

.rule-block {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 40rem;
  width: 100%;
}
.rule-block--panel {
  background: var(--chalk);
  color: var(--ink);
  border-top: none;
  border-radius: 0;
  padding: 20px 1.5rem;
  max-width: none;
  width: 100vw;
  margin-top: 1.5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.rule-block--panel .eyebrow { color: #8A6D12; }

.brands {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 6vw, 6rem);
  max-width: 100%;
}

.brandmark {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-width: 0;
}
.brandmark img {
  height: clamp(1.05rem, 4.5vw, 2.5rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.brand-label {
  font-family: var(--font-mono);
  font-size: clamp(0.45rem, 1.6vw, 0.5625rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--shark);
  white-space: nowrap;
}

.brandmark--feature img {
  height: clamp(1.45rem, 6.3vw, 3.5rem);
}

.about-text {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--slatemute);
}
.about-text + .about-text { margin-top: 0.5rem; }

footer.mini {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slatemute);
}
footer.mini a { color: var(--cue-yellow); text-decoration: none; }
footer.mini a:hover { text-decoration: underline; }

.back-link {
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slatemute);
  text-decoration: none;
}
.back-link:hover { color: var(--cue-yellow); }
