.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
 
/* Solid block button, as on the live page */
.impact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--surface-dark, #0a0a0b);
  color: var(--text-on-dark, #f7f7f5);
  font-family: "Inter", "Inter-fallback", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color var(--dur-fast, 200ms) ease,
              transform var(--dur-fast, 200ms) ease;
}
 
@media (hover: hover) and (pointer: fine) {
  .impact-btn:hover {
    background: #1c1c1f;
  }
}
 
.impact-btn:focus-visible {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: 3px;
}
 
.impact-btn:active {
  transform: scale(0.98);
}
 
.impact-btn--full {
  display: block;
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.375rem;
}
 
/* ==========================================================================
   01 · HERO
   ========================================================================== */
 
.impact-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 6rem var(--edge, clamp(1.25rem, 4vw, 5rem)) clamp(3rem, 6vh, 5rem);
  color: var(--text-on-dark, #f7f7f5);
  overflow: hidden;
  font-family: "Inter", "Inter-fallback", system-ui, sans-serif;
}
 
.impact-hero__media {
  position: absolute;
  inset: 0;
}
 
.impact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
 
/* Cool wash overall + bottom-left weight for copy legibility,
   echoing the live page's blue-gray treatment */
.impact-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top right,
      rgba(10, 10, 11, 0.62) 0%,
      rgba(10, 10, 11, 0.24) 45%,
      rgba(10, 10, 11, 0.05) 100%
    ),
    rgba(38, 46, 74, 0.28);
}
 
.impact-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
 
.impact-hero__title {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 1.67rem + 3.7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
 
.impact-hero__lead {
  max-width: 34ch;
  margin-bottom: 2.25rem;
  font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.75rem);
  font-weight: 400;
  line-height: 1.4;
}
 
/* ==========================================================================
   02 · QUOTE
   ========================================================================== */
 
.quote {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) var(--edge, clamp(1.25rem, 4vw, 5rem));
  font-family: "Inter", "Inter-fallback", system-ui, sans-serif;
  color: var(--text-on-light, #0a0a0b);
}
 
.quote__inner {
  max-width: 1440px;
  margin-inline: auto;
}
 
.quote__block {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 6rem);
}
 
/* Oversized quote glyphs — closing mark top-left, opening mark
   bottom-right, exactly as on the live page */
.quote__block::before,
.quote__block::after {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(10, 10, 11, 0.16);
  pointer-events: none;
}
 
.quote__block::before {
  content: "\201D";
  top: 0;
  left: 0;
}
 
.quote__block::after {
  content: "\201C";
  right: 0;
  bottom: clamp(6rem, 12vw, 8rem);
}
 
.quote__text {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.75rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  color: rgba(10, 10, 11, 0.78);
}
 
.quote__text strong {
  font-weight: 700;
  color: var(--text-on-light, #0a0a0b);
}
 
.quote__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
 
.quote__portrait {
  flex: 0 0 auto;        
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;   
  border-radius: 50%;
  object-fit: cover;
  object-position: center top; 
}
 
.quote__who {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
 
.quote__name {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
}
 
.quote__role {
  font-size: 1rem;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
}
 
/* ==========================================================================
   03 · JOIN THE HUDDLE
   ========================================================================== */
 
.huddle {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) var(--edge, clamp(1.25rem, 4vw, 5rem));
  font-family: "Inter", "Inter-fallback", system-ui, sans-serif;
  color: var(--text-on-light, #0a0a0b);
}
 
.huddle__inner {
  max-width: 50rem;
  margin-inline: auto;
}
 
.huddle__title {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 1.75rem + 2.22vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
}
 
.huddle__lead {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  font-size: clamp(1.125rem, 1.04rem + 0.37vw, 1.375rem);
  line-height: 1.5;
  text-align: center;
  color: rgba(10, 10, 11, 0.78);
}
 
/* --- Underline fields, as on the live page ------------------------------- */
 
.field {
  position: relative;
  margin-bottom: 2.75rem;
}
 
.field__input {
  display: block;
  width: 100%;
  padding: 0.5rem 0 0.875rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.35);
  border-radius: 0;
  font-family: inherit;
  font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.625rem);
  line-height: 1.4;
  color: var(--text-on-light, #0a0a0b);
  transition: border-color var(--dur-fast, 200ms) ease;
  appearance: none;
  resize: vertical;
}
 
.field__input::placeholder {
  color: rgba(10, 10, 11, 0.38);
}
 
.field__input:focus {
  outline: none;
  border-bottom-color: var(--text-on-light, #0a0a0b);
}
 
.field__input--area {
  min-height: 5.5rem;
}
 
.field__error {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-on-light, #0a0a0b);
}
 
.field.is-error .field__input {
  border-bottom-color: var(--text-on-light, #0a0a0b);
  border-bottom-width: 2px;
}
 
/* --- Checkbox -------------------------------------------------------------- */
 
.field--check {
  margin-block: 3rem;
}
 
.check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}
 
.check__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
 
.check__box {
  flex: 0 0 auto;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.2rem;
  border: 1px solid rgba(10, 10, 11, 0.45);
  border-radius: 2px;
  background: transparent;
  position: relative;
  transition: background-color var(--dur-fast, 200ms) ease,
              border-color var(--dur-fast, 200ms) ease;
}
 
.check__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.375rem;
  height: 0.75rem;
  border: solid var(--text-on-dark, #f7f7f5);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity var(--dur-fast, 200ms) ease;
}
 
.check__input:checked + .check__box {
  background: var(--surface-dark, #0a0a0b);
  border-color: var(--surface-dark, #0a0a0b);
}
 
.check__input:checked + .check__box::after {
  opacity: 1;
}
 
.check__input:focus-visible + .check__box {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: 3px;
}
 
.check__label {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.5;
  color: rgba(10, 10, 11, 0.55);
}
 
/* honeypot */
.huddle__hp {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
 
/* submit spacing */
.huddle__form .impact-btn--full {
  margin-top: 1rem;
}
 
.huddle__form.is-busy .impact-btn--full {
  opacity: 0.6;
  pointer-events: none;
}
 
/* Success panel — replaces the form (impact.js) */
.huddle__result {
  text-align: center;
}
 
.huddle__result-title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.625rem);
  font-weight: 600;
}
 
.huddle__result-copy {
  font-size: 1.125rem;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
}
 
/* ==========================================================================
   04 · HAVE AN IDEA
   ========================================================================== */
 
.idea {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) var(--edge, clamp(1.25rem, 4vw, 5rem))
           clamp(4rem, 8vw, 7rem);
  font-family: "Inter", "Inter-fallback", system-ui, sans-serif;
  color: var(--text-on-light, #0a0a0b);
}
 
.idea__inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
 
.idea__title {
  font-size: clamp(1.5rem, 1.25rem + 1.11vw, 2.25rem);
  font-weight: 600;
}
 
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
 
@media (max-width: 767px) {
  .quote__block {
    padding-inline: 1rem;
  }
 
  .quote__block::after {
    bottom: clamp(8rem, 30vw, 10rem);
  }
}
 
/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
 
@media (prefers-reduced-motion: reduce) {
  .impact-btn,
  .check__box,
  .check__box::after,
  .field__input {
    transition: none;
  }
}