/* @source:start 404.njk */
/* 404 */

.notfound {
  padding-right: var(--p-grid-gap-main);
  padding-left: var(--p-grid-gap-main);
  text-align: center;
}

.notfound__contain {
  flex-flow: column;
  place-content: center;
  align-items: center;
  display: flex;
}

.notfound__heading {
  font-family: var(--p-font-family-serif);
  font-weight: var(--p-font-weight-light);
  font-size: var(--p-font-size-display);
  line-height: var(--p-line-height-sm);
  letter-spacing: var(--p-letter-spacing-tight);
  text-wrap: balance;
}

.notfound__text {
  max-width: 50ch;
  font-size: var(--p-font-size-text-lg);
  line-height: var(--p-line-height-lg);
  text-wrap: balance;
}

.notfound__link {
  font-size: var(--p-font-size-text-lg);
  line-height: var(--p-line-height-lg);
}
/* @source:end 404.njk */

/* @source:start _includes/partials/cookie-banner.njk */
/* Cookie Consent Banner */

.cookie-banner {
  z-index: 99;
  pointer-events: none;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.cookie-banner__banner {
  z-index: 3;
  padding: var(--p-space-6) var(--p-page-gutter);
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
}

.cookie-banner__banner--open {
  background-color: var(--color-bg-frosted);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: auto;
}

.cookie-banner__modal {
  max-width: var(--p-max-width-narrow);
  padding-top: var(--p-space-6);
  padding-bottom: var(--p-space-6);
  border-radius: var(--p-radius-sm);
  background-color: var(--color-bg-alt);
  pointer-events: auto;
  font-size: var(--p-font-size-sm);
  transition: transform 0.5s;
  transform: translate(0, 150%);
}

.cookie-banner__banner--open .cookie-banner__modal {
  transform: translate(0, 0);
}

.cookie-banner__header {
  padding-right: var(--p-space-7);
  padding-bottom: 0;
  padding-left: var(--p-space-7);
  max-height: 0;
  transition: padding-bottom 0.2s, max-height 0.5s;
  display: block;
  overflow: hidden;
}

.cookie-banner__heading {
  margin-top: 0;
  margin-bottom: var(--p-space-4);
  font-family: var(--p-font-family-mono);
  font-size: var(--p-font-size-md);
  font-weight: var(--p-font-weight-medium);
  /* Opt out of the base heading ramp's line-height; keep the inherited one. */
  line-height: inherit;
}

.cookie-banner__options {
  margin-bottom: 0;
  border-bottom: 0 solid var(--color-border-subtle);
  max-height: 0;
  transition: margin-bottom 0.2s, max-height 0.5s;
  display: block;
  overflow: hidden;
}

.cookie-banner__banner--expanded .cookie-banner__header {
  max-height: 2000px;
  padding-bottom: var(--p-space-6);
}

.cookie-banner__banner--expanded .cookie-banner__options {
  max-height: 2000px;
  margin-bottom: var(--p-space-6);
  border-bottom-width: var(--p-border-width);
}

.cookie-banner__toggle {
  padding: var(--p-space-4) var(--p-space-7);
  gap: var(--p-grid-gap-main);
  border-top: var(--p-border-width) solid var(--color-border-subtle);
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.cookie-banner__toggle-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--p-font-family-mono);
  font-size: var(--p-font-size-sm);
  font-weight: var(--p-font-weight-medium);
  /* Opt out of the base heading ramp's line-height; keep the inherited one. */
  line-height: inherit;
}

.cookie-banner__toggle-desc {
  margin-bottom: 0;
  font-size: var(--p-font-size-xs);
  color: var(--color-text-secondary);
}

.cookie-banner__switch {
  align-items: center;
  margin-bottom: 0;
  font-size: var(--p-font-size-xl);
  line-height: 1;
  display: flex;
  position: relative;
  cursor: pointer;
}

.cookie-banner__switch input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.cookie-banner__track {
  border: var(--p-border-width) solid var(--color-border);
  border-radius: var(--p-radius-pill);
  background-color: var(--color-bg);
  width: 1.75em;
  height: 0.825em;
  margin-top: 0;
  padding: var(--p-size-1);
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
}

.cookie-banner__track--locked {
  border-color: var(--color-border-subtle);
  background-color: var(--color-border-subtle);
  justify-content: center;
  align-items: center;
  display: flex;
}

.cookie-banner__knob {
  border-radius: var(--p-radius-pill);
  background-color: var(--color-border);
  width: 0.75em;
  height: 100%;
  margin-left: 0;
  transition: background-color 0.2s, margin-left 0.2s;
}

.cookie-banner__switch input:checked + .cookie-banner__track {
  border-color: var(--color-selected);
  background-color: var(--color-selected);
}

.cookie-banner__switch input:checked + .cookie-banner__track .cookie-banner__knob {
  margin-left: calc(100% - 0.75em);
  background-color: var(--color-bg-alt);
}

.cookie-banner__switch input:focus-visible + .cookie-banner__track {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.cookie-banner__lock {
  color: var(--color-text-muted);
  width: 0.4em;
}

.cookie-banner__footer {
  padding-right: var(--p-space-7);
  padding-left: var(--p-space-7);
  gap: var(--p-grid-gap-main);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.cookie-banner__notes {
  /* Hidden on live — the banner always shows the full panel; the compact
     notes strip exists in the markup but never renders. */
  display: none;
}

.cookie-banner__icon {
  max-width: var(--p-size-11);
  flex: none;
}

.cookie-banner__note {
  flex: 1;
}

.cookie-banner__buttons {
  gap: var(--p-space-5);
  flex-direction: row;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.cookie-banner__link {
  font-size: var(--p-font-size-xs);
  text-transform: uppercase;
  text-underline-position: under;
  text-decoration: underline;
}

.cookie-banner__button {
  padding: var(--p-space-4) var(--p-space-6);
  border: var(--p-border-width) solid var(--color-btn-border);
  border-radius: var(--p-radius-sm);
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--p-font-family-mono);
  font-size: var(--p-font-size-xs);
  font-weight: var(--p-font-weight-book);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.cookie-banner__button:hover {
  border-color: var(--color-btn-border-hover);
  background-color: var(--color-btn-bg-hover);
  color: var(--color-btn-text-hover);
  transform: translate(0, -2px);
}

@media screen and (max-width: 767px) {
  .cookie-banner__banner {
    max-width: 100%;
    padding: var(--p-space-5);
  }

  .cookie-banner__footer {
    flex-flow: column;
  }

  .cookie-banner__notes {
    flex-flow: column;
  }

  .cookie-banner__buttons {
    flex-flow: column;
    align-self: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
/* @source:end _includes/partials/cookie-banner.njk */

/* @source:start _includes/partials/footer.njk */
/* Footer */

.footer {
  color: var(--color-text-secondary);
  overflow: hidden;
}

.footer__contain {
  text-align: center;
}

.footer__social-links {
  padding-bottom: var(--p-space-6);
  gap: var(--p-grid-gap-main);
  font-family: var(--p-font-family-serif);
  font-size: var(--p-font-size-h3);
  justify-content: center;
  align-items: center;
  font-style: italic;
  text-decoration: underline;
  display: flex;
}

.footer__social-links a {
  text-decoration: underline;
}

.footer__legal {
  font-family: var(--p-font-family-mono);
  font-size: var(--p-font-size-xs);
  font-weight: var(--p-font-weight-light);
}

.footer__legal-link {
  text-underline-position: under;
  text-decoration: underline dotted;
}

.footer__visual {
  position: relative;
  margin-top: -4rem;
  bottom: -3rem;
}
/* @source:end _includes/partials/footer.njk */

/* @source:start _includes/partials/header.njk */
/* Header / Navigation */

/* Transparent like live — the hero watermark bleeds under the nav and is
   cut by the top page edge. */
.nav {
  z-index: 99;
}

.nav__contain {
  padding-top: var(--p-space-5);
  padding-bottom: var(--p-space-5);
  color: var(--color-text-secondary);
  flex-flow: row;
  place-content: center;
  align-items: center;
  display: flex;
}

.nav__logo {
  display: block;
  opacity: 0.7;
  width: clamp(120px, 15vw, 200px);
}

.nav__logo-svg {
  display: block;
}
/* @source:end _includes/partials/header.njk */

/* @source:start _includes/partials/waitlist-button.njk */
/* ---- Waitlist button (multi-state, live-parity) ---- */

.btn__align {
  display: flex;
  align-items: center;
  /* Live: pins the button to the right of its track through the width
     transitions. */
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.btn {
  --transition-delay: 0.2s;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius-input) - var(--p-border-width));
  color: var(--color-btn-text);
  /* Small bold label in a large (3.5rem) box — per Rick's review of the
     live proportions. Box, icon and loader sizes are rem, so the label
     size stays independent of the geometry. */
  font-size: var(--p-font-size-xs);
  font-weight: var(--p-font-weight-medium);
  text-transform: uppercase;
  cursor: pointer;
  transition: padding 0.2s, color 0.2s, background-color 0.2s;
}

.btn[data-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
}

.btn__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  height: 100%;
  /* Live literal; collapses to 0 1.25rem when the input expands. */
  padding: 0 1.5rem;
  border-radius: inherit;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  transition: all 0.2s;
}

.btn:not([data-disabled="true"]):hover .btn__layout {
  background-color: var(--color-btn-bg-hover);
  color: var(--color-btn-text-hover);
}

.btn__states {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* States stack on top of each other; the idle layer is in flow and sizes
   the button. Inactive layers sit translated 200% off and transparent;
   the active layer slides to 0 with the 0.2s delay — the cross-slide. */
.btn__state {
  display: grid;
  grid-template-areas: "text icon";
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  min-height: 1em;
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: translate(0, -200%);
  transition: all 0.3s ease, transform 0.3s ease var(--transition-delay), opacity 0.3s ease var(--transition-delay);
}

.btn__state--idle {
  position: relative;
  transform: translate(0, 200%);
}

.btn__state .btn__state-text { grid-area: text; }
.btn__state .btn__state-icon { grid-area: icon; }

.btn__state:has(> .btn__state-icon:only-child) {
  grid-template-areas: "icon";
  grid-template-columns: auto;
}

.signup-form__form[data-status=""] .btn__state--idle,
.signup-form__form[data-status="error"] .btn__state--error,
.signup-form__form[data-status="warning"] .btn__state--warning,
.signup-form__form[data-status="success"] .btn__state--success,
.signup-form__form[data-status="loading"] .btn__state--loading {
  transform: translateY(0);
  opacity: 1;
}

/* overflow:hidden gives the text an automatic minimum size of 0, so the
   0fr track below can squeeze it away. The icon keeps its auto minimum
   and never collapses. */
.btn__state-text {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1em;
  white-space: nowrap;
}

/* rem, not em: the icon and loader keep the live 24px geometry even
   though the label font is smaller. */
.btn__state-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.btn__state-icon .sprite-svg {
  width: 1em;
  height: 1em;
}

/* ---- Choreography with the input field ----
   While the input expands (hover / focus / content / any status), the
   button label collapses to the icon and the layout padding tightens. */

.signup-form__item:hover .btn__state,
.signup-form__item:focus-within .btn__state,
.signup-form__item:has(.signup-form__input:not(:placeholder-shown)) .btn__state,
.signup-form__form:not([data-status=""]) .btn__state {
  grid-template-columns: 0fr auto;
}

.signup-form__item:hover .btn__state-text,
.signup-form__item:focus-within .btn__state-text,
.signup-form__item:has(.signup-form__input:not(:placeholder-shown)) .btn__state-text,
.signup-form__form:not([data-status=""]) .btn__state-text {
  padding: 0;
}

.signup-form__item:hover .btn__layout,
.signup-form__item:focus-within .btn__layout,
.signup-form__item:has(.signup-form__input:not(:placeholder-shown)) .btn__layout,
.signup-form__form:not([data-status=""]) .btn__layout {
  padding: 0 1.25rem;
}

/* Loading and success re-collapse the field around the button. These come
   after the rules above: equal specificity, so source order decides. */

.signup-form__form[data-status="loading"] .btn__layout,
.signup-form__form[data-status="success"] .btn__layout {
  padding: 0 1.25rem;
}

.signup-form__form[data-status="success"] .btn__state {
  grid-template-columns: 1fr auto;
}

.signup-form__form[data-status="success"] .btn__state-text {
  padding: 1rem;
}

/* The submit hit area uses the shared .clickable block (_components.css). */

/* ---- Loader dot ring (live geometry, literal values) ---- */

.loader {
  --loader-radius: 0.675em;  /* ring radius */
  --dot-w: 0.125em;          /* tick length, radial */
  --dot-h: 0.0625rem;        /* tick thickness, tangential */
  --loader-duration: 1s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

.loader__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loader__dot,
.loader__moving-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--loader-radius);
  height: 0;
  transform-origin: 0%;
}

.loader__dot { transform: rotate(calc(var(--index) * 22.5deg)); }

.loader__dot::after,
.loader__moving-dot::after {
  content: "";
  position: absolute;
  right: calc(var(--dot-h) * -0.5);
  top: calc(var(--dot-w) * -0.5);
  width: var(--dot-h);
  height: var(--dot-w);
  background-color: currentColor;
}

.loader__dot::after {
  animation: waitlist_loader_activate var(--loader-duration) linear infinite;
  animation-delay: calc(-1 * var(--loader-duration) + (var(--index) * (var(--loader-duration) / 16)));
}

.loader__dot:nth-child(1)  { --index: 0; }
.loader__dot:nth-child(2)  { --index: 1; }
.loader__dot:nth-child(3)  { --index: 2; }
.loader__dot:nth-child(4)  { --index: 3; }
.loader__dot:nth-child(5)  { --index: 4; }
.loader__dot:nth-child(6)  { --index: 5; }
.loader__dot:nth-child(7)  { --index: 6; }
.loader__dot:nth-child(8)  { --index: 7; }
.loader__dot:nth-child(9)  { --index: 8; }
.loader__dot:nth-child(10) { --index: 9; }
.loader__dot:nth-child(11) { --index: 10; }
.loader__dot:nth-child(12) { --index: 11; }
.loader__dot:nth-child(13) { --index: 12; }
.loader__dot:nth-child(14) { --index: 13; }
.loader__dot:nth-child(15) { --index: 14; }
.loader__dot:nth-child(16) { --index: 15; }

.loader__moving-dot {
  animation: waitlist_loader_rotate var(--loader-duration) linear infinite;
}

@keyframes waitlist_loader_rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes waitlist_loader_activate {
  0% { opacity: 0; transform: scale(0.1); }
  5% { opacity: 1; transform: scale(1); }
  50%, 100% { opacity: 0; transform: scale(0.1); }
}
/* @source:end _includes/partials/waitlist-button.njk */

/* @source:start _includes/sections/cta.njk */
/* CTA Section */

.cta__contain {
  display: flex;
  flex-flow: column;
  gap: var(--p-grid-gap-main);
  padding-top: var(--space-pad-y-sm);
  padding-bottom: var(--space-pad-y-md);
}

.cta__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  row-gap: var(--p-grid-gap-main);
  position: relative;
  /* Live card: ~94px/48px padding, deep forest bg (#283517) — inside the
     invert island --color-surface-secondary resolves to exactly that. */
  padding: var(--p-space-10) var(--space-pad-x-lg);
  border-radius: var(--radius-card);
  background-color: var(--color-surface-secondary);
  color: var(--color-text);
  text-align: center;
}

.cta__heading {
  margin: 0;
  color: var(--color-text-accent);
  text-wrap: balance;
}

.cta__text {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  /* Same scale and weight as the hero subline. */
  font-size: var(--p-font-size-md);
  line-height: var(--p-line-height-xl);
  font-weight: var(--p-font-weight-book);
}

/* ---- Badge ---- */

.cta__badge {
  position: absolute;
  top: var(--space-pad-y-sm);
  right: var(--space-pad-y-sm);
  width: 8em;
  max-width: 20%;
  padding: 1em;
}

.cta__badge-anim {
  position: absolute;
  inset: 0;
}

.cta__badge-anim--rotate {
  animation: cta-rotate 20s linear infinite reverse;
}

@keyframes cta-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- Form ----
   Live-parity resting state: the field is collapsed to the button alone.
   Hover, focus, typed content or a non-empty status expands the input
   column (0fr -> 1fr). The button-side choreography lives in
   partials/waitlist-button.njk. */

.signup-form {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  /* Live form scale: 14px input base; the em-based button/loader geometry
     in waitlist-button.njk scales from this. */
  font-size: var(--p-font-size-sm);
  line-height: var(--p-line-height-lg);
}

.signup-form__form {
  display: flex;
  flex-flow: column;
}

.signup-form__item {
  display: grid;
  grid-template-columns: 0fr auto;
  align-items: stretch;
  /* Right-anchor: while the track transition runs, the container can be
     wider than the tracks. "end" packs the slack on the input side, so
     the button stays pinned to the right edge — live behavior. */
  justify-content: end;
  position: relative;
  height: 3.5rem; /* live: 3.5rem button */
  margin-top: var(--space-stack-sm);
  border: var(--p-border-width) solid var(--color-text-secondary);
  border-radius: var(--radius-input);
  transition: all 500ms ease;
}

.signup-form__item:hover,
.signup-form__item:focus-within,
.signup-form__item:has(.signup-form__input:not(:placeholder-shown)),
.signup-form__form:not([data-status=""]) .signup-form__item {
  grid-template-columns: 1fr auto;
  border-color: var(--color-text);
}

/* Loading and success close the field around the button again.
   Same specificity as the expand rules above — source order decides. */
.signup-form__form[data-status="loading"] .signup-form__item,
.signup-form__form[data-status="success"] .signup-form__item {
  grid-template-columns: 0fr auto;
}

/* Horizontal clip hides the input in the collapsed column; the open
   vertical axis lets the floated label sit on the border. */
.signup-form__input-wrap {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
  overflow-x: clip;
  overflow-y: visible;
}

.signup-form__label {
  position: absolute;
  z-index: 1;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25em 0.5em;
  /* Matches the card bg so the floated label sits on the border cleanly;
     the hero overrides this with its own light bg. */
  background-color: var(--color-surface-secondary);
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: top 0.3s, font-size 0.3s, color 0.3s;
}

.signup-form__input-wrap:focus-within .signup-form__label,
.signup-form__input-wrap:has(.signup-form__input:not(:placeholder-shown)) .signup-form__label,
.signup-form__form:not([data-status=""]) .signup-form__label {
  top: 0;
  font-size: 0.75em;
}

/* Fixed width (live: 20rem) gives the 1fr track its size; the min() keeps
   the expanded field on-screen on narrow viewports. */
.signup-form__input {
  width: min(20rem, calc(100vw - 12em));
  height: 100%;
  padding: 0.5em 1em;
  border: none;
  background-color: transparent;
  color: var(--color-text);
  font: inherit;
}

.signup-form__input:focus {
  outline: none;
}

/* ---- Field message ---- */

.signup-form__message {
  min-height: 1.6em;
  padding: 0.25em 0.5em 0;
  font-size: 0.75em;
  text-align: left;
  color: var(--color-text-secondary);
}

.signup-form__form[data-status="loading"] .signup-form__message {
  display: none;
}

.signup-form__form[data-status="warning"] .signup-form__message {
  color: var(--color-warning-text);
}

.signup-form__form[data-status="error"] .signup-form__message {
  color: var(--color-error-text);
}

/* ---- Note ---- */

.cta__note {
  padding: var(--space-pad-y-sm) 0;
  font-family: var(--p-font-family-serif);
  font-weight: var(--p-font-weight-light);
  font-size: var(--p-font-size-h4);
  line-height: var(--p-line-height-sm);
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .cta__badge {
    position: relative;
    top: auto;
    right: auto;
    width: 6em;
    max-width: none;
    margin: 0 auto;
  }
}
/* @source:end _includes/sections/cta.njk */

/* @source:start _includes/sections/hero.njk */
/* Hero Section */

.hero {
  padding-left: var(--p-grid-gap-main);
  padding-right: var(--p-grid-gap-main);
  text-align: center;
}

/* Live: the Webflow u-container carries 5.75rem vertical padding; the repo
   .container has horizontal gutters only, so the section sets its own rhythm. */
.hero__contain {
  flex-flow: column;
  place-content: center;
  align-items: center;
  display: flex;
  gap: var(--p-grid-gap-main);
  padding-top: var(--space-section-lg);
  padding-bottom: var(--space-section-lg);
}

.hero__floater {
  position: absolute;
  top: -35%;
  width: 110%;
  opacity: 0.05;
  /* Clipped at the page edge by .page { overflow: clip; } — live parity. */
}

.hero__heading {
  margin: 0;
  max-width: 26ch;
  /* Display scale on an h1; family, weight and line-height come from the
     base h1 ramp. */
  font-size: var(--p-font-size-display);
  letter-spacing: var(--p-letter-spacing-tight);
  text-wrap: balance;
}

.hero__text {
  max-width: 70ch;
  /* Body text runs smaller than the old 20px subline and carries book
     weight to hold its color at that size (Rick, 2026-08-11). */
  font-size: var(--p-font-size-md);
  line-height: var(--p-line-height-xl);
  font-weight: var(--p-font-weight-book);
  text-wrap: balance;
}

/* The floating label backdrop must match the surface behind the form.
   Here that is the page background; in the CTA section it is the dark panel. */
.hero .signup-form__label {
  background-color: var(--color-bg);
}
/* @source:end _includes/sections/hero.njk */

/* @source:start _includes/sections/platforms.njk */
/* Platforms Section */

.platforms {
  background-color: var(--color-bg);
}

.platforms__content {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--space-pad-y-sm);
  padding-bottom: var(--space-pad-y-lg);
  color: var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.platforms__content::-webkit-scrollbar {
  display: none;
}

.platforms__logo {
  color: var(--color-text);
}

.platforms__item {
  flex: none;
  width: 10rem;
}

.platforms__divider {
  flex: none;
  width: 8.5rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
/* @source:end _includes/sections/platforms.njk */

/* @source:start _includes/sections/why.njk */
/* Why Section */

.why__contain {
  padding-top: var(--space-pad-y-sm);
  padding-bottom: var(--space-pad-y-xs);
}

.why__heading {
  margin-top: 0;
  margin-bottom: var(--space-stack-sm);
}

.why__subheading {
  max-width: 70ch;
  margin-bottom: var(--space-stack-xl);
  font-size: var(--p-font-size-md);
  line-height: var(--p-line-height-lg);
  font-weight: var(--p-font-weight-book);
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--p-grid-gap-main);
}

.why__card {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--p-grid-gap-main);
  padding: var(--space-pad-y-lg) var(--space-pad-x-lg);
  border-radius: var(--radius-card);
  background-color: var(--color-bg-alt);
}

.why__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5rem;
  color: var(--color-border);
  --icon-accent: var(--color-brand);
}

.why__card-heading {
  margin-top: 0;
  margin-bottom: var(--space-stack-sm);
  /* h4 scale on an h3; family, weight and line-height come from the
     base h3 ramp. */
  font-size: var(--p-font-size-h4);
}

.why__card-text {
  font-size: var(--p-font-size-sm);
  line-height: var(--p-line-height-xl);
  font-weight: var(--p-font-weight-book);
}

@media (max-width: 991px) {
  .why__layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .why__layout {
    grid-template-columns: 1fr;
  }
}
/* @source:end _includes/sections/why.njk */

/* @source:start _includes/sections/work.njk */
/* Work Section */

.work {
  background-color: var(--color-bg);
}

.work__contain {
  padding-bottom: var(--space-pad-y-lg);
}

.work__content {
  padding: var(--space-pad-y-lg);
  border-radius: var(--p-radius-md);
  background-color: var(--color-surface-secondary);
}

.work__heading {
  margin-top: 0;
  margin-bottom: var(--space-stack-xl);
  text-align: center;
}

.work__heading-icon {
  vertical-align: middle;
  height: 1.1em;
  font-size: 0.825em;
  display: inline-block;
}

.work__heading-icon .sprite-svg {
  width: 1.1em;
  height: 1.1em;
}

.work__grid {
  gap: var(--space-gap-md);
  grid-template-rows: 2.75fr 0.75fr 1fr 1.75rem;
  grid-template-columns: 3.5fr 1.5fr 4fr 3fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.work__item {
  border-radius: var(--p-radius-sm);
  /* Live carries backdrop-filter: blur(10px) here, but the backdrop is the
     section's flat panel color — the blur has no visible effect and costs a
     per-frame re-blur of five regions while scrolling (the mid-page jank). */
  background-color: var(--color-bg-frosted);
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.work__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Grid placement (live Webflow w-node rules, named) ---- */

.work__item--01 {
  grid-area: 1 / 1 / 3 / 4;
}

.work__cell--02 {
  grid-area: 1 / 4 / 4 / 5;
}

.work__cell--03 {
  grid-area: 2 / 1 / 5 / 2;
}

.work__cell--04 {
  grid-area: 3 / 2 / 5 / 3;
}

.work__cell--05 {
  grid-area: 3 / 3 / 5 / 4;
}

.work__tags {
  grid-area: 4 / 4 / 5 / 5;
  place-self: end;
  gap: var(--space-gap-sm);
  flex-flow: wrap;
  place-content: flex-start flex-end;
  align-items: flex-end;
  display: flex;
}

/* ---- Media items ---- */

.work__item--02 {
  justify-content: center;
  align-items: flex-end;
  padding-top: min(1rem, 1.5vw);
  padding-left: min(1rem, 1.5vw);
  padding-right: min(1rem, 1.5vw);
}

.work__item--03 {
  justify-content: center;
  align-items: flex-end;
  margin-left: 10%;
  padding: min(1rem, 1.5vw) min(1rem, 1.5vw) 0%;
}

.work__item--04 {
  gap: var(--space-gap-md);
  flex-flow: column;
  height: 100%;
  padding-top: 20%;
  padding-bottom: 20%;
  display: flex;
}

.work__item-icon {
  max-width: var(--p-size-14);
}

.work__item--05 {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0%;
  padding-left: 0%;
  padding-right: 5%;
  overflow: hidden;
}

.tag {
  padding: var(--p-space-1) var(--space-pad-x-sm);
  border: var(--p-border-width) dotted var(--color-text);
  border-radius: var(--p-radius-xs);
  font-size: var(--p-font-size-xs);
  font-weight: var(--p-font-weight-medium);
  line-height: var(--p-line-height-sm);
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

/* The platforms strip (sections/platforms.njk) ships an overflow-x: auto
   fallback so the logos stay reachable without JS. When the GSAP loop in
   this file's js block takes over, it stamps data-loop and the strip
   becomes a clipped marquee — same as live. */
.platforms__content[data-loop] {
  overflow: hidden;
}

@media (max-width: 991px) {
  .work__content {
    padding-right: var(--space-pad-x-md);
    padding-left: var(--space-pad-x-md);
  }

  .work__grid {
    grid-template-rows: 3fr 2fr 3.5fr 3fr 0.25fr;
    grid-template-columns: 2fr 1fr 1.5fr;
  }

  .work__cell--02 {
    grid-area: 2 / 1 / 6 / 2;
    align-self: end;
  }

  .work__cell--03 {
    grid-area: 3 / 3 / 4 / 4;
  }

  .work__cell--04 {
    grid-row: 3 / 4;
  }

  .work__cell--05 {
    grid-row-start: 4;
    grid-column-start: 2;
  }

  .work__tags {
    grid-area: 5 / 2 / 6 / 4;
  }

  .tag {
    line-height: var(--p-line-height-xs);
  }

  .work__item--02 {
    margin-left: 10%;
  }

  .work__item--03 {
    margin-left: 0%;
  }

  .work__item--04 {
    gap: var(--space-gap-lg);
  }

  .work__item--04.work__item {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .work__content {
    padding-right: var(--space-pad-x-sm);
    padding-left: var(--space-pad-x-sm);
  }

  .work__grid {
    grid-template-rows: 0.5fr 0.25fr 0.5fr 1fr 0.5fr 1.5rem;
    grid-template-columns: 1.25fr 1.5fr;
  }

  .work__item--01 {
    grid-column-end: 3;
  }

  .work__cell--02 {
    grid-row-end: 5;
  }

  .work__cell--03 {
    grid-area: 4 / 2 / 5 / 3;
  }

  .work__cell--04 {
    grid-row: 3 / 4;
    align-self: end;
  }

  .work__cell--05 {
    grid-area: 5 / 1 / 6 / 3;
  }

  .work__tags {
    grid-area: 6 / 1 / 7 / 3;
  }

  .work__item--02 {
    margin-left: 0%;
  }

  .work__item--04 {
    flex-flow: row;
    height: auto;
  }
}

@media (max-width: 479px) {
  .work__grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .work__item {
    height: 100%;
    display: block;
  }

  .work__item--01,
  .work__cell--02,
  .work__cell--03,
  .work__cell--04,
  .work__cell--05,
  .work__tags {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  .work__item--03 {
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .work__item--04 {
    /* Live uses a fixed 10rem gap at this breakpoint (no token maps to it) */
    gap: 10rem;
    padding: 15% 20%;
    display: flex;
  }
}
/* @source:end _includes/sections/work.njk */

/* @source:start privacy-policy.njk */
/* Legal / Privacy Policy */

.legal {
  padding-right: var(--p-grid-gap-main);
  padding-left: var(--p-grid-gap-main);
}

.legal__copy {
  max-width: 70ch;
  margin-right: auto;
  margin-left: auto;
}

.legal__note {
  margin-block: var(--p-space-4);
  padding: var(--p-space-4);
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-secondary);
}
/* @source:end privacy-policy.njk */

