:root {
  --paper: #f4f4f1;
  --paper-soft: #fbfaf7;
  --ink: #202126;
  --ink-muted: #5d626b;
  --ink-soft: #858b94;
  --rule: #d8dde2;
  --rule-strong: #c4cbd1;
  --hot: #ff2844;
  --orange: #ff7a1a;
  --pink: #ff2d8f;
  --blue: #123c8c;
  --shape-glow: rgba(255, 40, 68, 0.2);
  --black: #050505;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(24, 28, 38, 0.12);
  --shadow-soft: 0 8px 24px rgba(24, 28, 38, 0.08);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 56px);
  --section-y: clamp(76px, 10vw, 150px);
  --display: Georgia, "Times New Roman", serif;
  --brand-display: Impact, Haettenschweiler, "Arial Black", "Helvetica Neue Condensed Black", sans-serif;
  --body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    linear-gradient(90deg, rgba(205, 214, 222, 0.58) 1px, transparent 1px),
    linear-gradient(180deg, rgba(205, 214, 222, 0.48) 1px, transparent 1px),
    radial-gradient(circle at 84% 8%, rgba(255, 40, 68, 0.13), transparent 24rem),
    var(--paper);
  background-size: min(18vw, 220px) 100%, 100% min(18vw, 220px), auto, auto;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--hot);
}

a {
  color: inherit;
  text-decoration: none;
}

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

iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.global-art {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  filter: saturate(1.15);
}

.global-art--disk {
  top: 8vh;
  right: -11vw;
  width: min(36vw, 480px);
  aspect-ratio: 1;
  background-image: url("assets/disks.png");
}

.global-art--bubble {
  bottom: 9vh;
  left: -13vw;
  width: min(34vw, 520px);
  aspect-ratio: 3 / 2;
  background-image: url("assets/bubble.png");
  opacity: 0.12;
}

.global-art--logo {
  right: -5vw;
  bottom: -3vh;
  width: min(50vw, 720px);
  aspect-ratio: 3 / 2;
  background-image: url("assets/ai-build-club-logo.png");
  opacity: 0.08;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 14px var(--gutter);
  min-height: 72px;
  background: rgba(244, 244, 241, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196, 203, 209, 0.75);
}

.site-header__brand {
  width: min(320px, 54vw);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.site-header__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 1px 0 rgba(20, 22, 28, 0.9))
    drop-shadow(1px 0 0 rgba(20, 22, 28, 0.9))
    drop-shadow(0 -1px 0 rgba(20, 22, 28, 0.76))
    drop-shadow(-1px 0 0 rgba(20, 22, 28, 0.76))
    drop-shadow(0 8px 18px rgba(24, 28, 38, 0.18));
}

.site-header__nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
}

.site-header__nav a,
.site-header__cta,
.button {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--ink);
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--ink);
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header__cta {
  color: var(--white);
  background: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button--primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  border-color: var(--rule-strong);
}

.button:hover,
.site-header__cta:hover,
.button:focus-visible,
.site-header__cta:focus-visible {
  transform: translateY(-2px);
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section__frame {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section__frame--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8.8vw, 128px);
}

.hero-section h1 {
  max-width: 980px;
  font-family: var(--brand-display);
  font-size: clamp(54px, 9.4vw, 138px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title__line {
  display: inline;
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--body);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.58;
}

.keep-together {
  white-space: nowrap;
}

.section-heading {
  max-width: 820px;
}

.section-heading--center {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--center h2 {
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  min-height: min(860px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(34px, 5vw, 72px);
}

.hero-section__frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-section__lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: #343740;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

.hero-lede__line {
  display: inline;
}

.hero-section__visual {
  position: relative;
  min-height: clamp(440px, 48vw, 660px);
}

.hero-section__poster-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 560px);
  aspect-ratio: 1;
  border-radius: 22px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) rotate(1deg);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-section__poster-link:hover,
.hero-section__poster-link:focus-visible {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.015);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.32);
}

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

.hero-section__float {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-section__float--blob {
  width: min(58%, 360px);
  top: -2%;
  right: 45%;
  opacity: 0.82;
  animation: float-slow 8s ease-in-out infinite;
}

.hero-section__float--bubble {
  width: min(72%, 430px);
  right: -11%;
  bottom: -1%;
  opacity: 0.62;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.milestone-section {
  padding-top: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(42px, 7vw, 92px);
}

.intro-section {
  padding-top: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.events-section {
  padding-top: clamp(22px, 3vw, 36px);
}

.intro-section__frame {
  display: grid;
  justify-items: center;
}

.intro-section__content {
  display: grid;
  justify-items: center;
  min-width: 0;
  align-content: center;
  gap: 0;
  width: min(100%, 900px);
  text-align: center;
}

.intro-section__heading {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0 0 -18px;
  padding: clamp(18px, 2.8vw, 30px) clamp(22px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(205, 214, 222, 0.5) 1px, transparent 1px),
    linear-gradient(180deg, rgba(205, 214, 222, 0.42) 1px, transparent 1px);
  background-size: 110px 100%, 100% 54px;
  border: 1px solid rgba(196, 203, 209, 0.7);
}

.intro-section__heading::before {
  content: "";
  position: absolute;
  inset: 10px -16px -12px 16px;
  z-index: -1;
  border: 1px solid rgba(196, 203, 209, 0.58);
}

.intro-section__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: clamp(82px, 12vw, 150px);
  height: 3px;
  background: var(--hot);
  transform: translateX(-50%);
}

.intro-section__heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 600;
}

.intro-section__body {
  width: min(100%, 760px);
  max-width: 100%;
  padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 56px) clamp(26px, 4vw, 44px);
}

.intro-section__body p {
  color: #343740;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

.intro-section__body p:last-child {
  margin-bottom: 0;
}

.events-section__panel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
}

.next-session-card {
  position: relative;
  width: 100%;
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(5, 5, 5, 0.22);
  overflow: hidden;
}

.next-session-card::before {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -46%;
  width: min(44vw, 340px);
  aspect-ratio: 1;
  background: url("assets/disks.png") center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(-14deg);
  pointer-events: none;
}

.next-session-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 40, 68, 0.24), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(255, 122, 26, 0.2), transparent 30%),
    radial-gradient(circle at 64% 18%, rgba(255, 45, 143, 0.14), transparent 24%);
  filter: blur(28px);
  opacity: 0.52;
  pointer-events: none;
  animation: event-glow-drift 14s ease-in-out infinite alternate;
}

.next-session-card > * {
  position: relative;
  z-index: 1;
}

.next-session-card__title {
  width: min(100%, 620px);
  margin: 0 0 28px;
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

.next-session-card__loading-bar {
  position: relative;
  width: min(100%, 620px);
  height: 42px;
  margin-bottom: 32px;
  padding-top: 18px;
  filter: drop-shadow(0 0 8px rgba(255, 40, 68, 0.34));
}

.next-session-card__loading-bar::before,
.next-session-card__loading-bar::after {
  position: absolute;
  top: 0;
  color: var(--hot);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.next-session-card__loading-bar::before {
  content: "NEXT SESSION LOADING";
  left: 0;
}

.next-session-card__loading-bar::after {
  content: attr(data-progress) "%";
  right: 0;
}

.next-session-card__loading-fill {
  position: relative;
  width: 100%;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 2px rgba(5, 5, 5, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.next-session-card__loading-fill::before,
.next-session-card__loading-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 12px;
  transform: translateY(-50%);
}

.next-session-card__loading-fill::before {
  background: var(--hot);
  transform: translateY(-50%) scaleX(var(--loader-scale, 0));
  transform-origin: left center;
}

.next-session-card__loading-fill::after {
  background: repeating-linear-gradient(
    90deg,
    transparent 0 17px,
    rgba(5, 5, 5, 0.98) 17px 21px
  );
}

.next-session-card p {
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.35;
}

.next-session-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.12), var(--shadow-soft);
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.next-session-card__cta-logo {
  display: block;
  width: 52px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  filter: brightness(0);
  transform: translateY(0.08em);
}

.next-session-card__cta-label--short {
  display: none;
}

.next-session-card__cta:hover,
.next-session-card__cta:focus-visible {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.next-event-widget {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: stretch;
  min-height: 360px;
  color: var(--ink);
}

.next-event-widget::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: min(40vw, 330px);
  aspect-ratio: 1;
  background: url("assets/disks.png") center / contain no-repeat;
  opacity: 0.22;
  transform: rotate(-12deg);
  pointer-events: none;
}

.next-event-widget__date {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(160deg, var(--hot), var(--pink) 52%, var(--blue)),
    var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.next-event-widget__date::before,
.next-event-widget__date::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.next-event-widget__date::before {
  inset: 16px;
}

.next-event-widget__date::after {
  width: 84px;
  height: 84px;
  right: -20px;
  bottom: -24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.next-event-widget__date span,
.next-event-widget__date strong {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.next-event-widget__date span {
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.next-event-widget__date strong {
  margin-top: 8px;
  font-family: var(--brand-display);
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.next-event-widget__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(10px, 2vw, 20px) 0;
}

.next-event-widget__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(18px, 3vw, 30px);
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-event-widget__brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(24, 28, 38, 0.12));
}

.next-event-widget__eyebrow {
  margin: 0 0 8px;
  color: var(--hot);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-event-widget h3 {
  width: min(100%, 620px);
  margin: 0;
  font-family: var(--brand-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.next-event-widget__content > p:not(.next-event-widget__eyebrow) {
  width: min(100%, 590px);
  margin: clamp(16px, 2vw, 22px) 0 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.4;
}

.next-event-widget__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin: clamp(22px, 3vw, 34px) 0;
}

.next-event-widget__details div {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(196, 203, 209, 0.72);
}

.next-event-widget__details dt {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-event-widget__details dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.next-event-widget .button {
  align-self: flex-start;
  min-height: 48px;
  padding-inline: 22px;
}

.panel-corners::before,
.panel-corners::after,
.events-section__panel::before,
.events-section__panel::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--rule-strong);
  background: var(--white);
  z-index: 2;
}

.events-section__panel::before {
  top: -5px;
  left: -5px;
}

.events-section__panel::after {
  top: -5px;
  right: -5px;
}

.panel-corners::before {
  bottom: -5px;
  left: -5px;
}

.panel-corners::after {
  bottom: -5px;
  right: -5px;
}

.events-section__panel .panel-corners,
.events-section__panel::before,
.events-section__panel::after {
  display: none;
}

.event-types-section .section-heading {
  max-width: 900px;
  margin: 0 auto clamp(64px, 8vw, 118px);
  text-align: center;
}

.event-types-section .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-art {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-art--disk {
  width: min(34vw, 430px);
  top: -2rem;
  right: -8vw;
  opacity: 0.46;
  mix-blend-mode: multiply;
  transform: rotate(-8deg);
}

.section-art--dc {
  width: min(44vw, 640px);
  right: -11vw;
  bottom: 0;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.format-board {
  display: grid;
  gap: clamp(74px, 10vw, 150px);
}

.format-board__primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 9vw, 128px);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.format-card {
  display: grid;
  grid-template-rows: clamp(178px, 15vw, 210px) auto;
  justify-items: center;
  gap: clamp(22px, 3vw, 34px);
}

.format-card__logo {
  align-self: center;
  width: auto;
  height: 100%;
  max-width: min(100%, 360px);
  max-height: 100%;
  background: transparent;
  transform: rotate(-2deg);
}

.format-card__logo--demo {
  height: 88%;
  max-height: 88%;
  justify-self: center;
}

.format-card__logo--one-thing {
  height: 100%;
  max-height: 100%;
  justify-self: center;
  transform: rotate(2deg);
}

.peer-syncs-card h3,
.peer-sync-type h4 {
  font-family: var(--body);
  font-weight: 600;
}

.format-card p {
  max-width: 420px;
  margin-bottom: 0;
  justify-self: start;
  color: #343740;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.35;
}

.peer-syncs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 7vw, 84px);
  align-items: center;
  justify-items: center;
}

.peer-syncs-card {
  display: grid;
  gap: clamp(28px, 3vw, 38px);
  justify-items: center;
  text-align: center;
}

.peer-syncs-card__logo {
  width: min(72vw, 330px);
  height: auto;
  background: transparent;
}

.peer-syncs-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.12;
  text-align: left;
}

.peer-sync-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(74px, 8vw, 112px) clamp(58px, 8vw, 108px);
  width: min(100%, 780px);
  direction: ltr;
}

.peer-sync-type {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 270px);
  min-width: 0;
  justify-self: center;
}

.peer-sync-type:nth-child(3) {
  grid-column: 1 / -1;
}

.peer-sync-type__logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 270px);
  aspect-ratio: 220 / 183;
  padding: clamp(24px, 3.4vw, 36px);
  background: url("assets/ps-square.svg") center / 100% 100% no-repeat;
  animation: taped-card-drift 4800ms ease-in-out infinite;
  transform-origin: 50% 8%;
}

.peer-sync-type__tape {
  position: absolute;
  z-index: 2;
  top: -22px;
  left: 50%;
  width: 128px;
  aspect-ratio: 99 / 43;
  background: url("assets/tape.svg") center / contain no-repeat;
  pointer-events: none;
  transform: translateX(-50%) rotate(7deg);
}

.peer-sync-type:nth-child(1) .peer-sync-type__tape {
  top: -21px;
  transform: translateX(-54%) rotate(8deg) scaleX(1.08);
}

.peer-sync-type:nth-child(1) .peer-sync-type__logo-slot {
  animation-delay: -900ms;
}

.peer-sync-type:nth-child(2) .peer-sync-type__tape {
  top: -24px;
  transform: translateX(-45%) rotate(-14deg) scaleX(1.12);
}

.peer-sync-type:nth-child(2) .peer-sync-type__logo-slot {
  animation-name: taped-card-drift-alt;
  animation-delay: -2600ms;
}

.peer-sync-type:nth-child(3) .peer-sync-type__tape {
  top: -23px;
  transform: translateX(-50%) rotate(11deg) scaleX(1.04);
}

.peer-sync-type:nth-child(3) .peer-sync-type__logo-slot {
  animation-delay: -4300ms;
}

.peer-sync-type__logo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.peer-sync-type__logo--pldc {
  width: min(100%, 214px);
}

.peer-sync-type__logo--designer {
  width: min(100%, 161px);
}

.peer-sync-type__logo--how-we-ai {
  width: min(100%, 156px);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.builder-card-grid {
  gap: clamp(18px, 2vw, 24px);
}

.builder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(430px, 34vw, 560px);
  padding: clamp(26px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(196, 203, 209, 0.9);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(24, 28, 38, 0.08);
  overflow: hidden;
}

.builder-card__icon {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  margin-bottom: clamp(36px, 5vw, 66px);
  color: var(--ink);
}

.builder-card__icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-card__copy {
  min-height: clamp(190px, 13vw, 238px);
}

.builder-card h3 {
  margin: 0 0 26px;
  color: var(--black);
  font-family: var(--body);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 850;
  line-height: 1.08;
}

.builder-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(32, 33, 38, 0.66);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.38;
}

.builder-card__mockup {
  position: relative;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 203, 209, 0.72);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(24, 28, 38, 0.12);
}

.builder-card__mockup--skills {
  width: min(100%, 350px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.builder-card__filebar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(196, 203, 209, 0.72);
  background: rgba(244, 244, 241, 0.74);
}

.builder-card__filebar span,
.builder-card__filebar span::before,
.builder-card__filebar span::after {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hot);
}

.builder-card__filebar span {
  position: relative;
  margin-right: 18px;
}

.builder-card__filebar span::before,
.builder-card__filebar span::after {
  content: "";
  position: absolute;
  top: 0;
}

.builder-card__filebar span::before {
  left: 12px;
  background: var(--orange);
}

.builder-card__filebar span::after {
  left: 24px;
  background: var(--rule-strong);
}

.builder-card__filebar strong {
  color: var(--black);
  font-family: var(--mono);
  font-size: 13px;
}

.builder-card__mockup--skills pre {
  margin: 0;
  padding: 18px;
  color: rgba(32, 33, 38, 0.78);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.builder-card__mockup--messages {
  display: grid;
  gap: 16px;
  width: min(100%, 360px);
  min-height: 210px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.94)),
    var(--white);
}

.builder-message {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.builder-message--right {
  grid-template-columns: minmax(0, 1fr) 34px;
  justify-self: end;
}

.builder-message i {
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  box-shadow: 0 4px 12px rgba(24, 28, 38, 0.12);
}

.builder-message--right i {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.builder-message span {
  display: block;
  max-width: 250px;
  padding: 12px 14px;
  color: var(--black);
  background: rgba(32, 33, 38, 0.07);
  border-radius: 18px 18px 18px 6px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.28;
}

.builder-message--right span {
  grid-column: 1;
  grid-row: 1;
  color: var(--white);
  background: var(--ink);
  border-radius: 18px 18px 6px 18px;
}

.builder-card__mockup--prompt {
  display: grid;
  gap: 24px;
  width: min(100%, 350px);
  min-height: 164px;
  padding: 24px;
}

.builder-card__mockup--prompt span {
  max-width: 270px;
  color: var(--black);
  font-size: 19px;
  line-height: 1.28;
}

.builder-card__mockup--prompt div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.builder-card__mockup--prompt i,
.builder-card__mockup--prompt strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(32, 33, 38, 0.06);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.builder-card__mockup--prompt strong {
  margin-left: auto;
  color: var(--white);
  background: var(--black);
}

.info-card {
  position: relative;
  min-height: 265px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.shape-token {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 28px var(--shape-glow));
}

.shape-token svg {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  fill: none;
  stroke: var(--pillar-icon-gradient);
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 16px rgba(255, 40, 68, 0.18));
}

.shape-token--orb {
  --pillar-icon-gradient: url("#pillar-gradient-users");
  transform: rotate(-14deg);
}

.shape-token--slab {
  --pillar-icon-gradient: url("#pillar-gradient-pipeline");
  transform: rotate(-28deg) skewX(-8deg);
}

.shape-token--ring {
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(210, 215, 216, 0.38);
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(76, 82, 90, 0.24);
  transform: rotate(-18deg);
}

.shape-token--capsule {
  --pillar-icon-gradient: url("#pillar-gradient-shovel");
  transform: rotate(8deg);
}

.info-card .shape-token {
  position: absolute;
  right: 24px;
  bottom: 22px;
  opacity: 0.54;
}

.info-card h3,
.info-card p {
  position: relative;
  z-index: 1;
}

.info-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.how-section .info-card {
  min-height: 210px;
}

.stats-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(44px, 7vw, 74px);
  color: var(--ink);
}

.milestone-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  width: min(100%, 920px);
  margin: 0 auto;
}

.stat {
  display: grid;
  justify-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.stat__value {
  display: flex;
  min-height: 1em;
  align-items: flex-start;
  gap: 0.015em;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 68px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.stat__slot {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}

.stat__reel {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.stat__reel span {
  display: block;
  height: 1em;
  line-height: 1;
}

.js .stats-strip.is-visible .stat__reel {
  animation: slot-reel 980ms cubic-bezier(0.14, 0.82, 0.19, 1) var(--slot-delay) both;
}

.js .stats-strip.is-visible.is-settled .stat__reel {
  transform: translateY(var(--slot-stop));
  animation: slot-nudge 7000ms ease-in-out infinite;
}

.stat__label {
  display: block;
  max-width: 150px;
  min-width: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.milestone-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 76px) clamp(28px, 8vw, 74px);
  width: min(100%, 720px);
  margin: 0 auto;
  min-width: 0;
}

.milestone-photo {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: clamp(18px, 3vw, 34px);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.milestone-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.milestone-photo--1 {
  transform: rotate(-5deg);
}

.milestone-photo--2 {
  transform: rotate(5deg);
}

.milestone-photo--3 {
  transform: rotate(-5deg);
}

.milestone-photo--4 {
  transform: rotate(4deg);
}

.case-section {
  padding-top: clamp(82px, 10vw, 150px);
  padding-bottom: clamp(82px, 10vw, 150px);
}

.case-section__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 64px);
}

.case-section .section-heading {
  max-width: 640px;
}

.case-section h2 {
  margin-bottom: 0;
}

.case-carousel {
  width: 100%;
  overflow: hidden;
}

.case-track {
  display: flex;
  width: max-content;
  animation: case-marquee 86s linear infinite;
  will-change: transform;
}

.case-carousel:hover .case-track,
.case-carousel:focus-within .case-track {
  animation-play-state: paused;
}

.case-loop {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-right: 12px;
}

.case-tile {
  position: relative;
  display: flex;
  flex: 0 0 clamp(420px, 31vw, 520px);
  width: clamp(420px, 31vw, 520px);
  min-height: 300px;
  flex-direction: column;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}

.case-tile__quote {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(133, 139, 148, 0.22);
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 76px);
  line-height: 1;
}

.case-tile__rating {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  color: rgba(133, 139, 148, 0.42);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1;
}

.case-tile__rating span {
  position: relative;
  display: inline-block;
  transform-origin: center;
}

.case-tile__rating .is-filled {
  color: #f5b301;
  animation: star-shine-run 3.4s ease-in-out infinite;
  animation-delay: calc(var(--star-index) * 140ms);
  will-change: color, text-shadow, transform;
}

.case-tile__rating .is-final-filled::after {
  content: "";
  position: absolute;
  top: -0.18em;
  right: -0.28em;
  width: 0.34em;
  height: 0.34em;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 18%, transparent 19%),
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.9) 43% 57%, transparent 58%),
    linear-gradient(0deg, transparent 42%, rgba(255, 255, 255, 0.9) 43% 57%, transparent 58%);
  filter: drop-shadow(0 0 7px rgba(245, 179, 1, 0.95));
  opacity: 0;
  transform: scale(0.2) rotate(45deg);
  animation: star-end-sparkle 3.4s ease-in-out infinite;
  pointer-events: none;
}

.case-tile p {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  color: var(--ink-muted);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.case-tile__more {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin: 10px 0 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: rgba(32, 33, 38, 0.32);
  text-underline-offset: 3px;
  cursor: pointer;
}

.case-tile__more:hover,
.case-tile__more:focus-visible {
  color: var(--accent-red);
  text-decoration-color: currentColor;
}

.case-tile__person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
  min-width: 0;
}

.case-tile__person div {
  min-width: 0;
}

.case-tile__person strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-tile__person strong a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(32, 33, 38, 0.28);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.case-tile__person strong a:hover,
.case-tile__person strong a:focus-visible {
  color: var(--accent-red);
  text-decoration-color: currentColor;
}

.case-tile__person span {
  display: block;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.review-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 33, 38, 0.46);
}

.review-modal__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(82vh, 680px);
  padding: clamp(24px, 4vw, 38px);
  overflow: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(24, 28, 38, 0.24);
}

.review-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(32, 33, 38, 0.18);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-modal__close:hover,
.review-modal__close:focus-visible {
  color: var(--accent-red);
  border-color: rgba(255, 40, 68, 0.34);
}

.review-modal h3 {
  margin: 18px 48px 4px 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.review-modal h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(32, 33, 38, 0.28);
  text-underline-offset: 4px;
}

.review-modal h3 a:hover,
.review-modal h3 a:focus-visible {
  color: var(--accent-red);
  text-decoration-color: currentColor;
}

.review-modal p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.review-modal blockquote {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 550;
  line-height: 1.42;
}

body.is-review-modal-open {
  overflow: hidden;
}

.route-list {
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.route-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(18px, 3.4vw, 44px);
  align-items: center;
  min-height: clamp(176px, 15vw, 230px);
  padding: clamp(28px, 4.5vw, 58px);
  background: rgba(251, 250, 247, 0.32);
  border: 1px solid rgba(94, 106, 122, 0.38);
  border-radius: 12px;
  box-shadow: none;
  transform-origin: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover,
.route-card:focus-within {
  z-index: 2;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(32, 33, 38, 0.62);
  box-shadow: 0 20px 54px rgba(24, 28, 38, 0.1);
  transform: scale(1.014);
}

.route-card h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.02;
}

.route-card p {
  max-width: 860px;
  margin-bottom: 0;
}

.route-card__tag {
  justify-self: end;
  color: var(--ink-muted);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.route-card__arrow {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

.route-card:hover .route-card__arrow,
.route-card:focus-within .route-card__arrow {
  transform: translateX(6px);
}

.coleads-section {
  padding-top: clamp(70px, 8vw, 120px);
}

.coleads-section__frame {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.coleads-section .section-heading {
  width: min(100%, 780px);
  margin: 0 auto;
}

.coleads-section .section-heading p {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.colead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.colead-card {
  display: grid;
  grid-template-columns: clamp(132px, 13vw, 190px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 180ms ease;
}

.colead-card__photo-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(24, 28, 38, 0.14);
  transform: rotate(-2deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.colead-card:nth-child(even) .colead-card__photo-link {
  background: var(--paper-soft);
  padding: 8px;
  transform: rotate(2deg);
}

.colead-card:hover,
.colead-card:focus-within {
  transform: none;
}

.colead-card:hover .colead-card__photo-link,
.colead-card:focus-within .colead-card__photo-link {
  box-shadow: 0 24px 54px rgba(24, 28, 38, 0.2);
  transform: translateY(-3px) rotate(0deg);
}

.colead-card__photo-link img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.colead-card h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 850;
  line-height: 1.06;
}

.colead-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.45;
}

.colead-card .colead-card__title {
  margin-bottom: 16px;
  color: var(--hot);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.final-cta-section {
  padding-bottom: clamp(70px, 8vw, 120px);
}

.final-cta-section__frame {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: clamp(18px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  color: var(--white);
  background: var(--black);
  border-radius: clamp(24px, 3vw, 42px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.final-cta-section__frame img {
  width: 190px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: contrast(1.25) saturate(1.1);
}

.final-cta-section__frame h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 64px);
}

.final-cta-section__frame p {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta-section__frame .button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px var(--gutter);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer__made {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer__heart {
  display: inline-block;
  color: #7a8089;
  font-size: 18px;
  line-height: 1;
  transform-origin: center;
  animation: footer-heart-beat 1.55s ease-in-out infinite;
}

.site-footer__dc-flag {
  display: block;
  width: 36px;
  height: auto;
  border: 1px solid rgba(122, 128, 137, 0.26);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-slow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(2deg);
  }
}

@keyframes slot-reel {
  0% {
    transform: translateY(0);
    filter: blur(1.5px);
  }
  72% {
    filter: blur(0.6px);
  }
  100% {
    transform: translateY(var(--slot-stop));
    filter: blur(0);
  }
}

@keyframes slot-nudge {
  0%,
  88%,
  100% {
    transform: translateY(var(--slot-stop));
  }
  91% {
    transform: translateY(calc(var(--slot-stop) - 0.12em));
  }
  94% {
    transform: translateY(calc(var(--slot-stop) + 0.04em));
  }
}

@keyframes case-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes star-shine-run {
  0%,
  18%,
  100% {
    color: #f5b301;
    text-shadow: none;
    transform: translateY(0) scale(1);
  }

  7% {
    color: #ffe083;
    text-shadow:
      0 0 8px rgba(245, 179, 1, 0.72),
      0 0 18px rgba(255, 224, 131, 0.52);
    transform: translateY(-1px) scale(1.18);
  }

  11% {
    color: #ffc928;
    text-shadow: 0 0 10px rgba(245, 179, 1, 0.42);
    transform: translateY(0) scale(1.04);
  }
}

@keyframes star-end-sparkle {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: scale(0.2) rotate(45deg);
  }

  30% {
    opacity: 1;
    transform: scale(1.28) rotate(45deg);
  }

  37% {
    opacity: 0.72;
    transform: scale(0.86) rotate(45deg);
  }

  45% {
    opacity: 0;
    transform: scale(1.7) rotate(45deg);
  }
}

@keyframes event-glow-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate3d(2%, 1%, 0) rotate(2deg) scale(1.04);
  }

  100% {
    transform: translate3d(-1%, 2%, 0) rotate(-1deg) scale(1.02);
  }
}

@keyframes footer-heart-beat {
  0%,
  30%,
  42%,
  100% {
    color: #7a8089;
    transform: scale(1);
  }

  14% {
    color: #7a8089;
    transform: scale(1.28);
  }

  24% {
    color: #7a8089;
    transform: scale(0.96);
  }

  34% {
    color: var(--accent-red);
    transform: scale(1.14);
  }
}

@keyframes taped-card-drift {
  0%,
  100% {
    transform: rotate(-1.1deg) translateY(0);
  }

  50% {
    transform: rotate(1.35deg) translateY(6px);
  }
}

@keyframes taped-card-drift-alt {
  0%,
  100% {
    transform: rotate(1.15deg) translateY(0);
  }

  50% {
    transform: rotate(-1.35deg) translateY(6px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header__nav {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section__frame,
  .section__frame--split,
  .intro-section__frame,
  .final-cta-section__frame {
    grid-template-columns: 1fr;
  }

  .intro-section__frame {
    gap: 34px;
  }

  .intro-section__heading {
    margin-left: 0;
  }

  .hero-section__visual {
    min-height: 560px;
  }

  .card-grid--three,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .builder-card-grid {
    grid-template-columns: 1fr;
  }

  .how-section .section-heading {
    margin-bottom: 34px;
  }

  .builder-card {
    min-height: 420px;
  }

  .stats-strip {
    gap: 42px;
  }

  .milestone-stats {
    justify-content: space-between;
  }

  .next-event-widget {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .next-event-widget__date {
    min-height: 190px;
  }

  .next-event-widget__details {
    grid-template-columns: 1fr;
  }

  .format-board__primary,
  .peer-syncs-layout,
  .peer-sync-types {
    grid-template-columns: 1fr;
  }

  .peer-sync-type:nth-child(3) {
    grid-column: auto;
  }

  .format-card__logo--demo {
    max-height: 88%;
  }

  .format-card__logo--one-thing {
    max-height: 100%;
  }

  .peer-syncs-layout {
    gap: 48px;
  }

  .peer-sync-types {
    width: min(100%, 640px);
    gap: 54px;
  }

  .case-tile {
    flex-basis: clamp(210px, 34vw, 260px);
    width: clamp(210px, 34vw, 260px);
  }

  .route-card {
    grid-template-columns: 1fr;
  }

  .route-card__tag {
    justify-self: start;
  }

  .route-card__arrow {
    justify-self: start;
  }

  .colead-grid {
    grid-template-columns: 1fr;
  }

  .colead-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-block: 10px;
  }

  .site-header__brand {
    width: min(190px, 50vw);
    height: 38px;
  }

  .site-header__cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

  .hero-section h1 {
    font-size: clamp(56px, 14.8vw, 64px);
    line-height: 0.9;
  }

  .hero-section__copy {
    text-align: center;
  }

  .hero-section__lede {
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
  }

  .hero-lede__line {
    display: block;
  }

  .hero-section .button-row {
    justify-content: center;
  }

  .hero-title__line {
    display: block;
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-section__visual {
    min-height: 430px;
  }

  .hero-section__poster {
    width: 100%;
  }

  .hero-section__poster-link {
    width: min(92vw, 430px);
    top: 52%;
  }

  .hero-section__float--blob {
    right: 36%;
  }

  .events-section__panel {
    padding: 0;
  }

  .next-session-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .next-session-card__title {
    margin-bottom: 22px;
    font-size: clamp(31px, 9.2vw, 46px);
    white-space: normal;
  }

  .next-session-card p {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .next-session-card__cta {
    width: 100%;
  }

  .next-session-card__cta-label--long {
    display: none;
  }

  .next-session-card__cta-label--short {
    display: inline;
  }

  .next-event-widget {
    gap: 20px;
  }

  .next-event-widget__date {
    min-height: 150px;
  }

  .next-event-widget__brand {
    margin-bottom: 18px;
  }

  .next-event-widget__brand img {
    width: 48px;
    height: 36px;
  }

  .next-event-widget h3 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .next-event-widget .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
  }

  .builder-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .builder-card__copy {
    min-height: 0;
  }

  .builder-card__icon {
    margin-bottom: 22px;
  }

  .builder-card h3 {
    margin-bottom: 16px;
  }

  .builder-card__mockup {
    margin-top: 18px;
  }

  .format-board {
    gap: 72px;
  }

  .event-types-section .section-heading {
    margin-bottom: 54px;
  }

  .format-board__primary {
    gap: 58px;
  }

  .format-card {
    justify-items: center;
    grid-template-rows: 150px auto;
    gap: 22px;
  }

  .format-card__logo--demo {
    max-height: 88%;
  }

  .format-card__logo--one-thing {
    max-height: 100%;
  }

  .format-card p {
    max-width: 286px;
    justify-self: center;
    font-size: clamp(19px, 2.2vw, 28px);
    line-height: 1.35;
  }

  .peer-syncs-card {
    gap: 24px;
  }

  .peer-syncs-card__logo {
    width: min(74vw, 270px);
  }

  .peer-syncs-card p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.16;
  }

  .peer-sync-type {
    width: min(72vw, 270px);
  }

  .peer-sync-type:nth-child(even) {
    justify-self: end;
  }

  .peer-sync-type:nth-child(odd) {
    justify-self: start;
  }

  .peer-sync-type__logo-slot {
    width: 100%;
    padding: 30px;
  }

  .peer-sync-type__tape {
    width: 116px;
    top: -20px;
  }

  .peer-sync-type__logo--pldc {
    width: min(100%, 202px);
  }

  .peer-sync-type__logo--designer {
    width: min(100%, 150px);
  }

  .peer-sync-type__logo--how-we-ai {
    width: min(100%, 145px);
  }

  .intro-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .events-section {
    padding-top: 18px;
  }

  .intro-section__frame {
    row-gap: 24px;
  }

  .intro-section__heading {
    width: 100%;
    margin-bottom: -12px;
    padding: 20px;
  }

  .intro-section__heading::before {
    inset: 8px -8px -8px 8px;
  }

  .intro-section__heading h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .intro-section__body {
    width: 100%;
    padding: 32px 22px 24px;
  }

  .milestone-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    width: 100%;
  }

  .stat__value {
    font-size: 42px;
  }

  .stat__label {
    max-width: 9ch;
    font-size: 20px;
  }

  .milestone-photos {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    width: 100%;
    padding-inline: 8px;
  }

  .case-section__stack {
    gap: 28px;
  }

  .case-tile {
    flex-basis: min(76vw, 280px);
    width: min(76vw, 280px);
  }

  .route-list {
    gap: 14px;
  }

  .route-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .route-card:hover,
  .route-card:focus-within {
    transform: scale(1.006);
  }

  .coleads-section {
    padding-top: 58px;
  }

  .colead-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 22px;
    text-align: center;
  }

  .colead-card__photo-link {
    width: min(62vw, 190px);
  }

  .final-cta-section__frame img {
    width: 150px;
  }

  .site-footer {
    flex-direction: column;
  }
}

main .section p:not(.colead-card__title) {
  color: #343740;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

main .section .next-session-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.35;
}

main .section .case-tile p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .case-track {
    animation: none;
  }

  .case-tile__rating .is-filled,
  .case-tile__rating .is-final-filled::after {
    animation: none;
  }

  .site-footer__heart {
    animation: none;
  }

  .peer-sync-type__logo-slot {
    animation: none;
  }
}
