:root {
  --pool-bg: whitesmoke;
  --pool-text: #252930;
  --pool-heading: #101215;
  --pool-border: #101215;
  --pool-muted: #5d6573;
  --pool-surface: #ffffff;
  --pool-surface-soft: whitesmoke;
  --pool-accent: whitesmoke;
  --pool-success: #28a745;
}

* {
  box-sizing: border-box;
}

.d-none {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--pool-bg);
  color: var(--pool-text);
  font-family: "Inter", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.pool-homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pool-homepage > main {
  flex: 1 0 auto;
}

.pool-homepage--support > main {
  display: flex;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--pool-heading);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.marketing-header,
.hero,
.feature-band,
.hero-stats-band,
.pool-site-footer__inner {
  width: calc(100% - 2rem);
  max-width: none;
  margin: 0 auto;
}

.marketing-header {
  padding: 1rem 0 0;
}

.marketing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding: 1rem 1.25rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
}

.marketing-header__inner--shared {
  align-items: center;
}

.marketing-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--pool-heading);
  text-decoration: none;
}

.marketing-header__title {
  font-family: "gambado-sans", "Arial Narrow", sans-serif;
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  position: relative;
  padding: 0.08em 0;
  color: var(--pool-heading);
  background: linear-gradient(90deg, var(--pool-heading) 0%, var(--pool-muted) 24%, var(--pool-heading) 50%, var(--pool-muted) 76%, var(--pool-heading) 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pool-brand-shimmer 5.2s ease-in-out infinite;
}

.marketing-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.marketing-header__menu {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  min-width: 2.4rem;
  padding: 0.4rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
  color: var(--pool-heading);
}

.marketing-header__menu:hover,
.marketing-header__menu:focus-visible {
  background: var(--pool-heading);
  color: var(--pool-bg);
}

.marketing-header__menu .icon {
  color: currentColor;
}

.marketing-header__menu-icon {
  display: inline-grid;
  gap: 0.28rem;
}

.marketing-header__menu-icon span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.marketing-header__nav a,
.pool-button,
.marketing-header__support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.72rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
  color: var(--pool-heading);
  text-decoration: none;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.marketing-header__nav a:hover,
.marketing-header__nav a:focus-visible,
.pool-button:hover,
.pool-button:focus-visible {
  background: var(--pool-heading);
  color: var(--pool-bg);
}

.marketing-header__nav a.is-active {
  background: var(--pool-heading);
  color: var(--pool-bg);
}

.marketing-header__support {
  background: var(--pool-heading);
  color: var(--pool-bg);
}

.marketing-header__support:hover,
.marketing-header__support:focus-visible {
  background: var(--pool-success);
  color: #fff;
}

.hero {
  display: block;
  padding: 2rem 0 1rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  grid-template-areas: "intro media" "actions media";
  gap: 2rem;
  align-items: start;
}

.hero__intro {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  grid-area: intro;
}

.hero-demo__eyebrow,
.feature-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.support-page h1,
.confirmation-panel h1,
.feature-band h2,
.support-strip h2,
.hero-demo h2 {
  margin: 0;
  color: var(--pool-heading);
  font-family: "gambado-sans", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__lede,
.feature-band__intro p,
.feature-card p,
.support-strip p,
.hero-demo p {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  grid-area: actions;
}

.pool-button--primary {
  background: var(--pool-heading);
  color: var(--pool-bg);
}

.pool-button--secondary,
.pool-button--ghost {
  background: var(--pool-surface);
  color: var(--pool-heading);
}

.hero__media {
  min-width: 0;
  width: 100%;
  grid-area: media;
}

@media (min-width: 50.01rem) {
  .hero__media {
    align-self: center;
  }
}
.hero-demo {
  display: block;
  width: 100%;
}

.hero-demo__frame {
  display: block;
  width: 100%;
}

.hero-demo__frame--placeholder {
  display: grid;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.92) 0%, rgba(255, 255, 255, 0.98) 55%, rgb(245, 245, 245) 100%);
}

.hero-demo__video {
  display: block;
  width: 100%;
  height: auto;
}

.hero-demo__placeholder {
  min-height: 100%;
}

.feature-band,
.support-strip {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
}

.feature-band__intro,
.support-strip__copy {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.stack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1rem;
  border: 2px solid var(--pool-border);
  background: linear-gradient(180deg, #ffffff 0%, whitesmoke 100%);
}

.feature-card a {
  font-weight: 700;
  margin-top: auto;
}

.support-strip {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
}

.support-strip {
  display: grid;
  gap: 1.5rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-strip--single .support-options {
  grid-template-columns: minmax(0, 1fr);
}

.support-option {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1rem;
  border: 2px solid var(--pool-border);
  background: linear-gradient(180deg, #ffffff 0%, whitesmoke 100%);
}

.support-option h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-option p {
  margin: 0;
  font-size: 1rem;
}

.support-option__cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3rem;
}

.support-option stripe-buy-button {
  display: inline-flex;
}

.support-page {
  width: calc(100% - 2rem);
  max-width: none;
  margin: 2rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.pool-homepage--support .support-page {
  margin: auto;
  padding: 2rem 0;
}

.support-page__lede {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.support-options--support-page {
  margin-top: 0.25rem;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 1rem;
  justify-items: stretch;
  align-items: start;
}

.support-options--support-page.support-strip--single {
  grid-template-columns: minmax(0, 1fr);
}

.support-options--support-page > stripe-buy-button,
.support-options--support-page > .pool-button {
  justify-self: stretch;
  align-self: start;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: visible;
}

@media (min-width: 1100.01px) {
  .support-options--support-page > stripe-buy-button,
  .support-options--support-page > .pool-button {
    justify-self: center;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 1100px) {
  .support-options--support-page {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }
  .support-options--support-page > stripe-buy-button,
  .support-options--support-page > .pool-button {
    justify-self: center;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}
.confirmation-panel {
  width: calc(100% - 2rem);
  max-width: none;
  margin: 2rem auto 0;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
}

.confirmation-panel__lede {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.confirmation-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pool-site-footer {
  margin-top: 2rem;
  padding: 0 0 1.5rem;
}

.pool-homepage--support .pool-site-footer {
  margin-top: 0;
}

.pool-site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  border: 2px solid var(--pool-border);
  background: var(--pool-surface);
}

.pool-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pool-site-footer__logo {
  display: inline-flex;
}

.pool-site-footer__language {
  width: auto;
}

.pool-site-footer__language select {
  min-height: 2.4rem;
  padding: 0.45rem 0.72rem;
  border: 2px solid var(--pool-border);
  border-radius: 0;
  background: var(--pool-surface);
  color: var(--pool-heading);
  font-family: "Inter", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.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;
}

@media (max-width: 900px) {
  .hero__grid,
  .feature-grid,
  .feature-grid--four,
  .stack-grid {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    grid-template-areas: "intro" "media" "actions";
  }
  .support-strip,
  .support-options {
    display: grid;
    align-items: start;
  }
}
@media (max-width: 900px) {
  .support-options--support-page {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }
  .support-options--support-page > stripe-buy-button,
  .support-options--support-page > .pool-button {
    justify-self: center;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .marketing-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .marketing-header__brand {
    min-width: 0;
    flex: none;
  }
  .marketing-header__title {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .marketing-header__menu {
    display: inline-flex;
    flex: none;
    justify-self: end;
  }
  .marketing-header__nav {
    display: none;
    grid-column: 1/-1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }
  [data-site-header][data-menu-open=true] .marketing-header__nav {
    display: flex;
  }
  .marketing-header__nav,
  .hero__actions,
  .confirmation-panel__actions {
    width: 100%;
  }
  .marketing-header__nav a,
  .pool-button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marketing-header__title {
    animation: none;
    background-position: 0 50%;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes pool-brand-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/*# sourceMappingURL=home.css.map */