:root {
  --ink: #111111;
  --acid: #f0ff48;
  --paper: #f4f1ea;
  --orange: #ff5d31;
  --muted: #77766f;
  --line: rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Rapid branded wipe used for genuine same-origin page navigation. */
.pulse-page-transition {
  --pulse-page-transition-yellow: #f4ff61;
  position: fixed;
  z-index: 11000;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.pulse-page-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pulse-page-transition-yellow);
  transform: scaleY(0);
  transform-origin: center;
}

.pulse-page-transition__wave {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: clamp(42px, 8vw, 76px);
  opacity: 0;
  transform: translateY(-50%) scaleX(0.16);
  transform-origin: center;
}

.pulse-page-transition__wave svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  fill: none;
  stroke: var(--pulse-page-transition-yellow);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.pulse-page-transition__wave path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.pulse-page-transition__label {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 60px);
  bottom: clamp(20px, 4vw, 52px);
  color: #000;
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
}

.pulse-page-transition.is-exiting {
  visibility: visible;
  pointer-events: auto;
}

.pulse-page-transition.is-exiting::before {
  animation: pulse-page-transition-cover 220ms 120ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.pulse-page-transition.is-exiting .pulse-page-transition__wave {
  animation: pulse-page-transition-signal 190ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pulse-page-transition.is-exiting .pulse-page-transition__wave path {
  animation: pulse-page-transition-draw 180ms ease-out forwards;
}

.pulse-page-transition.is-exiting .pulse-page-transition__label {
  animation: pulse-page-transition-label-in 100ms 190ms ease-out forwards;
}

html.pulse-page-transition-pending .pulse-loader {
  display: none;
}

html.pulse-page-transition-pending .pulse-page-transition,
.pulse-page-transition.is-entering {
  visibility: visible;
  background: var(--pulse-page-transition-yellow);
  pointer-events: auto;
}

.pulse-page-transition.is-entering {
  animation: pulse-page-transition-reveal 340ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pulse-page-transition-signal {
  0% { opacity: 0; transform: translateY(-50%) scaleX(0.16); }
  35% { opacity: 1; }
  100% { opacity: 1; transform: translateY(-50%) scaleX(1); }
}

@keyframes pulse-page-transition-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes pulse-page-transition-cover {
  to { transform: scaleY(1); }
}

@keyframes pulse-page-transition-label-in {
  to { opacity: 0.72; }
}

@keyframes pulse-page-transition-reveal {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-page-transition__wave {
    display: none;
  }

  .pulse-page-transition.is-exiting::before {
    animation: pulse-page-transition-cover-reduced 100ms ease-out forwards;
  }

  .pulse-page-transition.is-entering {
    animation: pulse-page-transition-reveal-reduced 120ms ease-out forwards;
  }
}

/* Venues directory */
.venues-page { background: var(--paper); }
.venues-page .pulse-loader { display: none; }
.venues-header { position: absolute; }
.venues-header .brand img,
.venues-page footer .brand img { width: auto; height: 32px; display: block; }
.venues-nav { display: flex; align-items: center; gap: clamp(22px, 4vw, 52px); }
.venues-nav > a:first-child { font-family: "DM Mono", monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.venues-nav > a:first-child::before { content: "•"; margin-right: 9px; color: var(--acid); }

.venues-hero { min-height: 82svh; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 145px clamp(24px, 6.4vw, 98px) 65px; color: white; background: #111; }
.venues-hero::after { content: ""; position: absolute; width: 55vw; height: 55vw; right: -10vw; top: -28vw; border: 1px solid rgba(240,255,72,.28); border-radius: 50%; box-shadow: 0 0 0 9vw rgba(240,255,72,.035), 0 0 0 18vw rgba(240,255,72,.025); }
.venues-hero__grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 8vw 8vw; mask-image: linear-gradient(to bottom, transparent, black); }
.venues-hero h1 { margin: 27px 0 45px; font-size: clamp(4.7rem, 11vw, 10.5rem); }
.venues-hero__foot { z-index: 1; display: flex; justify-content: flex-end; align-items: flex-end; gap: 12vw; }
.venues-hero__foot p { max-width: 410px; margin: 0; color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.65; }
.venues-index { color: var(--acid); font-family: "DM Mono", monospace; font-size: .7rem; letter-spacing: .08em; }

.venues-directory { padding: clamp(80px, 10vw, 145px) clamp(24px, 6.4vw, 98px); }
.venues-directory__head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: end; }
.venues-directory h2 { margin: 32px 0 0; font-size: clamp(3.5rem, 7vw, 7.2rem); line-height: .88; letter-spacing: -.075em; }
.venue-search-wrap label { display: block; margin-bottom: 13px; color: var(--muted); font-family: "DM Mono", monospace; font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; }
.venue-search-wrap > div { display: flex; align-items: center; border-bottom: 1px solid var(--ink); }
.venue-search-wrap input { width: 100%; padding: 16px 0; border: 0; outline: 0; background: transparent; font-size: 1rem; }
.venue-search-wrap span { font-size: 1.5rem; }
.venue-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 70px 0 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.venue-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.venue-filters button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer; font-family: "DM Mono", monospace; font-size: .65rem; letter-spacing: .04em; text-transform: uppercase; transition: background .18s, color .18s; }
.venue-filters button:hover, .venue-filters button.is-active { color: white; background: var(--ink); }
.venue-toolbar > p { flex: 0 0 auto; margin: 0; color: var(--muted); font-family: "DM Mono", monospace; font-size: .68rem; text-transform: uppercase; }
.venue-toolbar > p span { color: var(--orange); }
.venue-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.venue-card { min-height: 500px; display: flex; flex-direction: column; overflow: hidden; background: #fff; }
.venue-card[hidden] { display: none; }
.venue-card__art { min-height: 285px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--card-color); }
.venue-card__art::before, .venue-card__art::after { display: none; }
.venue-card__art span { z-index: 1; font-size: clamp(3.5rem, 6vw, 6.4rem); font-weight: 800; letter-spacing: -.09em; transform: skewY(-7deg); }
.venue-card__art img { z-index: 1; width: min(72%, 260px); max-height: 135px; display: block; object-fit: contain; }
.venue-card__art i { position: absolute; z-index: 2; width: 72px; height: 72px; right: 18px; bottom: 18px; border-radius: 50%; background: var(--card-button, #111); }
.venue-card__art i::before, .venue-card__art i::after { content: ""; position: absolute; left: 18px; right: 18px; top: 35px; height: 1px; background: var(--card-button-line, var(--acid)); transform: rotate(38deg); }
.venue-card__art i::after { transform: rotate(-38deg); }
.venue-card--acid { --card-color: var(--acid); }.venue-card--orange { --card-color: var(--orange); }.venue-card--violet { --card-color: #9c63ff; }.venue-card--blue { --card-color: #5ab5ff; }
.venue-card--bonnie { --card-color: #171717; }
.venue-card:has(img[src*="bonnie-rogues"]) { --card-color: #021c24; --card-ring: rgba(244,155,45,.62); --card-button: #f49b2d; --card-button-line: #021c24; }
.venue-card:has(img[src*="barbaras-bier-haus"]) { --card-color: #12103a; --card-ring: rgba(240,179,46,.62); --card-button: #f0b32e; --card-button-line: #12103a; }
.venue-card:has(img[src*="circuit"]) { --card-color: #e6ff03; --card-ring: rgba(0,0,0,.32); --card-button: #000; --card-button-line: #f388bf; }
.venue-card:has(img[src*="bonnie-rogues"]) .venue-card__meta { box-shadow: inset 0 4px 0 #f49b2d; }
.venue-card:has(img[src*="barbaras-bier-haus"]) .venue-card__meta { box-shadow: inset 0 4px 0 #f0b32e; }
.venue-card:has(img[src*="circuit"]) .venue-card__meta { box-shadow: inset 0 4px 0 #e6ff03; }
.venue-card:has(img[src*="bonnie-rogues"]) .venue-card__art img { width: min(58%, 210px); max-height: 155px; }
.venue-card:has(img[src*="barbaras-bier-haus"]) .venue-card__art img { width: min(76%, 280px); }
.venue-card:has(img[src*="circuit"]) .venue-card__art img { width: min(68%, 245px); }
.venue-card__meta { flex: 1; display: flex; flex-direction: column; padding: 22px 24px 25px; }
.venue-card__meta p { margin: 0 0 18px; color: var(--muted); font-family: "DM Mono", monospace; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.venue-card__meta h3 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: .92; letter-spacing: -.06em; }
.venue-card__meta > span { margin-top: auto; padding-top: 24px; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.venue-card { cursor: pointer; transition: transform 220ms ease, box-shadow 220ms ease; }
.venue-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(17,17,17,.14); }
.venue-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

body.venue-modal-open { overflow: hidden; }
.venue-modal { position: fixed; z-index: 12000; inset: 0; display: grid; place-items: center; padding: clamp(16px,4vw,56px); visibility: hidden; opacity: 0; transition: opacity 220ms ease, visibility 0s 220ms; }
.venue-modal.is-open { visibility: visible; opacity: 1; transition: opacity 220ms ease; }
.venue-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.venue-modal__panel { --modal-accent: var(--acid); --modal-bg: #111; position: relative; width: min(1040px,100%); max-height: min(760px,calc(100dvh - 32px)); display: grid; grid-template-columns: minmax(300px,.9fr) minmax(420px,1.1fr); overflow: auto; color: white; background: var(--modal-bg); transform: translateY(24px) scale(.98); transition: transform 280ms cubic-bezier(.2,.8,.2,1); }
.venue-modal.is-open .venue-modal__panel { transform: none; }
.venue-modal__panel[data-brand="bonnie-rogues"] { --modal-bg: #021c24; --modal-accent: #f49b2d; }
.venue-modal__panel[data-brand="barbaras-bier-haus"] { --modal-bg: #12103a; --modal-accent: #f0b32e; }
.venue-modal__panel[data-brand="circuit"] { --modal-bg: #080808; --modal-accent: #e6ff03; }
.venue-modal__close { position: absolute; z-index: 2; top: 22px; right: 22px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; cursor: pointer; }
.venue-modal__close span { position: absolute; left: 12px; right: 12px; top: 22px; height: 1px; background: white; transform: rotate(45deg); }.venue-modal__close span:last-child { transform: rotate(-45deg); }
.venue-modal__visual { min-height: 520px; display: grid; place-items: center; padding: 55px; background: var(--modal-accent); }
.venue-modal__visual img { width: min(82%,330px); max-height: 190px; object-fit: contain; }
.venue-modal__panel[data-brand="bonnie-rogues"] .venue-modal__visual { background: #021c24; border-right: 1px solid rgba(244,155,45,.35); }
.venue-modal__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px,7vw,95px); }
.venue-modal__kicker { margin: 0 0 32px; color: var(--modal-accent); font-family: "DM Mono",monospace; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.venue-modal__content h2 { margin: 0 0 30px; font-size: clamp(3.3rem,6vw,6.2rem); line-height: .84; letter-spacing: -.075em; }
.venue-modal__copy { max-width: 440px; margin: 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.venue-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 46px; }
.venue-modal__actions a { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 170px; padding: 16px 18px; border: 1px solid var(--modal-accent); color: var(--modal-accent); font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.venue-modal__actions a:first-child { color: #111; background: var(--modal-accent); }
.venue-empty { padding: 90px 20px; text-align: center; border: 1px solid var(--line); }
.venue-empty p { margin: 0 0 8px; font-size: 2rem; font-weight: 700; }.venue-empty span { color: var(--muted); }
.venues-cta { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 145px) clamp(24px, 6.4vw, 98px); color: white; background: var(--ink); }
.venues-cta::after { content: ""; position: absolute; width: 42vw; height: 42vw; right: -8vw; top: -11vw; border: 1px solid rgba(240,255,72,.3); border-radius: 50%; }
.venues-cta h2 { position: relative; z-index: 1; margin: 35px 0 32px; font-size: clamp(4.3rem, 9vw, 9rem); line-height: .84; letter-spacing: -.08em; }.venues-cta h2 span { color: var(--acid); }
.venues-cta > p:not(.section-label) { max-width: 420px; color: rgba(255,255,255,.58); line-height: 1.65; }
.venues-cta > a { position: absolute; z-index: 2; right: 10vw; bottom: 9vw; width: 132px; height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: .72rem; font-weight: 800; text-transform: uppercase; transition: transform .2s; }.venues-cta > a:hover { transform: rotate(7deg); }.venues-cta > a span { align-self: flex-end; font-size: 1.2rem; }

@media (max-width: 900px) { .venue-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.venues-directory__head { grid-template-columns: 1fr; }.venue-search-wrap { max-width: 440px; }.venues-hero__foot { justify-content: space-between; }.venues-cta > a { right: 7vw; } }
@media (max-width: 620px) { .venues-nav { gap: 18px; }.venues-nav > a:first-child { display: none; }.venues-hero { min-height: 690px; padding-bottom: 50px; }.venues-hero h1 { font-size: clamp(4rem,20vw,5.7rem); }.venues-hero__foot { display: block; }.venues-index { display: block; margin-top: 25px; }.venue-toolbar { align-items: flex-end; }.venue-grid { grid-template-columns: 1fr; }.venue-card { min-height: 470px; }.venue-card__art { min-height: 270px; }.venues-cta { padding-bottom: 260px; }.venues-cta > a { left: 24px; right: auto; bottom: 70px; } }
@media (max-width: 760px) { .venue-modal { padding: 0; align-items: end; }.venue-modal__panel { width: 100%; max-height: 92dvh; grid-template-columns: 1fr; }.venue-modal__visual { min-height: 230px; padding: 50px; }.venue-modal__visual img { max-height: 115px; }.venue-modal__content { padding: 42px 24px 34px; }.venue-modal__content h2 { font-size: 3.7rem; }.venue-modal__close { top: 14px; right: 14px; }.venue-modal__actions { display: grid; }.venue-modal__actions a { width: 100%; } }

@keyframes pulse-page-transition-cover-reduced {
  from { opacity: 0; transform: scaleY(1); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes pulse-page-transition-reveal-reduced {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Fine-pointer-only PULSE cursor. JS opts the document in after initialization. */
.pulse-cursor-dot,
.pulse-cursor-ring {
  position: fixed;
  z-index: 10050;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
}

.pulse-cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4ff61;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.82),
    0 0 7px rgba(244, 255, 97, 0.24);
  transition: width 180ms ease, height 180ms ease, opacity 120ms ease;
}

.pulse-cursor-ring {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #f4ff61;
  border-radius: 50%;
  color: #000;
  background: rgba(244, 255, 97, 0);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.72),
    0 0 10px rgba(244, 255, 97, 0.08);
  transition: width 190ms cubic-bezier(0.2, 0.8, 0.2, 1), height 190ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 190ms ease, border-color 190ms ease;
}

.pulse-cursor-ring > span {
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0;
  transition: opacity 120ms ease;
}

html.pulse-custom-cursor,
html.pulse-custom-cursor * {
  cursor: none;
}

html.pulse-custom-cursor .pulse-cursor-dot,
html.pulse-custom-cursor .pulse-cursor-ring {
  visibility: visible;
}

html.pulse-custom-cursor .pulse-cursor-dot.is-visible,
html.pulse-custom-cursor .pulse-cursor-ring.is-visible {
  opacity: 1;
}

.pulse-cursor-ring.is-active {
  width: 50px;
  height: 50px;
  background: rgba(244, 255, 97, 0.1);
}

.pulse-cursor-dot.is-active {
  width: 4px;
  height: 4px;
}

.pulse-cursor-ring.is-labelled {
  width: 64px;
  height: 64px;
  border-color: #f4ff61;
  background: #f4ff61;
}

.pulse-cursor-ring.is-view {
  width: 72px;
  height: 72px;
}

.pulse-cursor-ring.is-labelled > span {
  opacity: 1;
}

.pulse-cursor-dot.is-labelled {
  opacity: 0 !important;
}

.pulse-cursor-ring.is-clicking {
  width: 26px;
  height: 26px;
  transition-duration: 110ms;
}

.pulse-cursor-ring.is-labelled.is-clicking {
  width: 54px;
  height: 54px;
}

.pulse-cursor-dot.is-clicking {
  width: 11px;
  height: 11px;
}

html.pulse-custom-cursor input,
html.pulse-custom-cursor textarea,
html.pulse-custom-cursor select,
html.pulse-custom-cursor [contenteditable="true"],
html.pulse-custom-cursor [disabled],
html.pulse-custom-cursor iframe,
html.pulse-custom-cursor [data-native-cursor] {
  cursor: auto;
}

html.pulse-custom-cursor input:not([type]),
html.pulse-custom-cursor input[type="text"],
html.pulse-custom-cursor input[type="email"],
html.pulse-custom-cursor input[type="search"],
html.pulse-custom-cursor input[type="url"],
html.pulse-custom-cursor input[type="tel"],
html.pulse-custom-cursor input[type="password"],
html.pulse-custom-cursor textarea,
html.pulse-custom-cursor [contenteditable="true"] {
  cursor: text;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pulse-cursor-dot,
  .pulse-cursor-ring {
    display: none !important;
  }
}

body.pulse-handoff-open {
  overflow: hidden;
}

body > header,
body > main,
body > footer {
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  transform-origin: center;
}

body.pulse-handoff-open > header,
body.pulse-handoff-open > main,
body.pulse-handoff-open > footer {
  transform: scale(0.985);
  filter: brightness(0.38);
}

/* Desktop-to-mobile PULSE handoff */
.pulse-handoff {
  --handoff-acid: #f4ff61;
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: grid;
  overflow: auto;
  padding: clamp(28px, 4vw, 64px);
  color: #fff;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s 220ms;
}

.pulse-handoff.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 280ms ease;
}

.pulse-handoff__shell {
  width: min(1180px, 100%);
  min-height: min(700px, calc(100svh - 2 * clamp(28px, 4vw, 64px)));
  position: relative;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(244, 255, 97, 0.22);
  background: #000;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 240ms ease, opacity 180ms ease;
}

.pulse-handoff.is-open .pulse-handoff__shell {
  transform: scale(1);
  opacity: 1;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}

.pulse-handoff__logo {
  width: clamp(132px, 15vw, 210px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
}

.pulse-handoff.is-open .pulse-handoff__logo {
  opacity: 1;
  transform: none;
  transition: opacity 300ms 100ms ease, transform 500ms 100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-handoff__close {
  position: fixed;
  z-index: 2;
  top: clamp(18px, 2.5vw, 36px);
  right: clamp(18px, 2.5vw, 36px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.pulse-handoff__close:hover { border-color: var(--handoff-acid); transform: rotate(4deg); }
.pulse-handoff__close:focus-visible,
.pulse-handoff__preview:focus-visible,
.pulse-handoff__qr-frame:focus-visible { outline: 2px solid var(--handoff-acid); outline-offset: 4px; }
.pulse-handoff__close span { position: absolute; left: 13px; top: 21px; width: 17px; height: 1px; background: #fff; transform: rotate(45deg); }
.pulse-handoff__close span:last-child { transform: rotate(-45deg); }

.pulse-handoff__scan-state {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.pulse-handoff__kicker,
.pulse-handoff__tagline,
.pulse-handoff__preview {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pulse-handoff__kicker { margin: 0 0 28px; color: rgba(255, 255, 255, 0.44); font-size: 0.66rem; }
.pulse-handoff h2 { margin: 0; font-size: clamp(4.6rem, 7.8vw, 8.3rem); line-height: 0.83; letter-spacing: -0.075em; }
.pulse-handoff h2 span { display: block; clip-path: inset(0 100% 0 0); }
.pulse-handoff.is-open h2 span { clip-path: inset(0); transition: clip-path 600ms 180ms cubic-bezier(0.16, 1, 0.3, 1); }
.pulse-handoff.is-open h2 span + span { transition-delay: 260ms; }
.pulse-handoff__instruction { margin: 28px 0 0; color: rgba(255, 255, 255, 0.64); }
.pulse-handoff__wave { width: min(100%, 560px); height: 58px; margin-top: 42px; fill: none; stroke: var(--handoff-acid); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(244, 255, 97, 0.4)); }
.pulse-handoff__wave path { stroke-dasharray: 1; animation: handoff-wave 2.6s ease-in-out infinite; }
@keyframes handoff-wave { 0%, 100% { stroke-dashoffset: 0; opacity: 0.6; } 50% { stroke-dashoffset: -1; opacity: 1; } }

.pulse-handoff__qr-column { display: grid; justify-items: center; opacity: 0; transform: scale(0.9); }
.pulse-handoff.is-open .pulse-handoff__qr-column { opacity: 1; transform: scale(1); transition: opacity 360ms 250ms ease, transform 560ms 250ms cubic-bezier(0.16, 1, 0.3, 1); }
.pulse-handoff__qr-frame { width: min(32vw, 360px); min-width: 280px; aspect-ratio: 1; display: grid; place-items: center; padding: 20px; background: #fff; }
.pulse-handoff__qr-frame canvas { width: 100%; height: 100%; display: block; image-rendering: pixelated; }
.pulse-handoff__qr-fallback { display: none; color: #000; font-weight: 800; text-transform: uppercase; }
.pulse-handoff__qr-frame.is-fallback canvas { display: none; }
.pulse-handoff__qr-frame.is-fallback .pulse-handoff__qr-fallback { display: block; }
.pulse-handoff__tagline { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 0.66rem; }
.pulse-handoff__tagline i { width: 7px; height: 7px; border-radius: 50%; background: var(--handoff-acid); box-shadow: 0 0 10px var(--handoff-acid); }
.pulse-handoff__preview { margin-top: 22px; padding: 9px 12px; border: 1px dashed rgba(244, 255, 97, 0.5); color: var(--handoff-acid); background: transparent; cursor: pointer; font-size: 0.58rem; }

.pulse-handoff__success-state { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; padding: 40px; text-align: center; visibility: hidden; opacity: 0; pointer-events: none; }
.pulse-handoff__success-state h2 { font-size: clamp(5rem, 10vw, 10rem); }
.pulse-handoff__success-state p { margin: 30px 0 0; color: rgba(255, 255, 255, 0.62); }
.pulse-handoff__wave--success { width: min(72vw, 820px); margin: 0 0 42px; transform: scaleX(0.45); }
.pulse-handoff.is-success .pulse-handoff__scan-state { opacity: 0; transform: scale(0.96); pointer-events: none; transition: opacity 180ms ease, transform 240ms ease; }
.pulse-handoff.is-success .pulse-handoff__success-state { visibility: visible; opacity: 1; pointer-events: auto; transition: opacity 300ms 180ms ease; }
.pulse-handoff.is-success .pulse-handoff__success-state h2 span { clip-path: inset(0); transition: clip-path 480ms 180ms cubic-bezier(0.16, 1, 0.3, 1); }
.pulse-handoff.is-success .pulse-handoff__success-state h2 span + span { transition-delay: 250ms; }
.pulse-handoff.is-success .pulse-handoff__wave--success { transform: scaleX(1); transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }

@media (max-width: 980px) {
  .pulse-handoff__scan-state { grid-template-columns: 1fr; justify-items: center; gap: 32px; padding-top: 50px; text-align: center; }
  .pulse-handoff__wave { margin-top: 24px; }
  .pulse-handoff__qr-frame { width: 280px; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  body > header, body > main, body > footer, .pulse-handoff, .pulse-handoff *, .pulse-handoff *::before, .pulse-handoff *::after { animation: none !important; transition-duration: 1ms !important; transition-delay: 0ms !important; }
  body.pulse-handoff-open > header, body.pulse-handoff-open > main, body.pulse-handoff-open > footer { transform: none; }
  .pulse-handoff h2 span { clip-path: inset(0); }
}

/* PULSE session loader */
body.pulse-loading {
  overflow: hidden;
}

.pulse-loader {
  --loader-acid: #f4ff61;
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: pulse-loader-exit 1.48s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.pulse-loader.is-hidden {
  display: none;
}

.pulse-loader__lockup {
  position: relative;
  z-index: 2;
  width: min(72vw, 520px);
  transform: translateY(-1vh);
}

.pulse-loader__logo-wrap {
  width: min(58vw, 380px);
  margin: 0 auto clamp(12px, 2.2vh, 22px);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: pulse-logo-reveal 0.58s 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pulse-loader__logo {
  width: 100%;
  height: auto;
  display: block;
}

.pulse-loader__wave {
  width: 100%;
  height: clamp(44px, 7vw, 72px);
  display: block;
  overflow: visible;
  fill: none;
  stroke: var(--loader-acid);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-loader__wave-flat {
  opacity: 0.35;
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulse-flat-build 0.34s ease-out both;
}

.pulse-loader__wave-signal {
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 7px rgba(244, 255, 97, 0.72));
  animation: pulse-signal-draw 0.68s 0.14s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.pulse-loader__wipe {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 2px;
  background: var(--loader-acid);
  box-shadow: 0 0 16px rgba(244, 255, 97, 0.75);
  transform: translate(-50%, -50%) scaleX(0) scaleY(1);
  animation: pulse-screen-wipe 0.48s 0.82s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pulse-flat-build {
  from { transform: scaleX(0.08); opacity: 0.16; }
  to { transform: scaleX(1); opacity: 0.35; }
}

@keyframes pulse-signal-draw {
  0% { stroke-dashoffset: 1; opacity: 0.2; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes pulse-logo-reveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0.5; }
  to { clip-path: inset(0); opacity: 1; }
}

@keyframes pulse-screen-wipe {
  0% { transform: translate(-50%, -50%) scaleX(0) scaleY(1); }
  44% { transform: translate(-50%, -50%) scaleX(1) scaleY(1); }
  100% { transform: translate(-50%, -50%) scaleX(1) scaleY(700); }
}

@keyframes pulse-loader-exit {
  0%, 88% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-loader {
    animation: pulse-loader-reduced 240ms ease-out forwards;
  }

  .pulse-loader__logo-wrap {
    clip-path: none;
    margin-bottom: 0;
    animation: pulse-logo-reduced 180ms ease-out both;
  }

  .pulse-loader__wave,
  .pulse-loader__wipe {
    display: none;
  }
}

@keyframes pulse-logo-reduced {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-loader-reduced {
  0%, 70% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 76px);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 19px;
  height: 19px;
  border: 3px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--acid);
}

.nav-cta {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-cta span {
  margin-left: 9px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
}

.header-nav > a:first-child {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav > a:first-child:hover {
  color: var(--acid);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 150px clamp(24px, 6.4vw, 98px) 92px;
  color: white;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 93, 49, 0.88), transparent 27%),
    radial-gradient(circle at 43% 79%, rgba(119, 30, 255, 0.55), transparent 31%),
    #111111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(240, 255, 72, 0.27);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 46vw;
  height: 46vw;
  min-width: 480px;
  min-height: 480px;
  right: -10vw;
  top: -12vw;
}

.orbit-two {
  width: 28vw;
  height: 28vw;
  right: 4vw;
  top: 2vw;
}

.eyebrow,
.section-label {
  position: relative;
  z-index: 1;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 25px 0 38px;
  font-size: clamp(4rem, 10.2vw, 9.2rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  font-weight: 800;
}

h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.78);
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-left: 42%;
}

.hero-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(0.95rem, 1.25vw, 1.14rem);
  line-height: 1.6;
}

.circle-link {
  width: 118px;
  height: 118px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 0 0 auto;
  margin-left: 30px;
  padding: 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.circle-link:hover {
  transform: rotate(7deg) scale(1.04);
  background: white;
}

.circle-link .arrow {
  align-self: flex-end;
  font-size: 1.5rem;
}

.ticker {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  color: var(--ink);
  background: var(--acid);
  font-family: "DM Mono", monospace;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 24s linear infinite;
}

.ticker i {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  background: var(--ink);
}

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

.manifesto {
  min-height: 72vh;
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 2.3fr 1fr;
  align-items: start;
  gap: 30px;
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6.4vw, 98px);
}

.section-label {
  margin: 10px 0 0;
  color: var(--muted);
}

.manifesto-copy {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.manifesto-copy span {
  color: var(--orange);
}

.manifesto-note {
  align-self: end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.manifesto-note span {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: var(--orange);
}

.manifesto-note p {
  margin: 18px 0 0;
  color: #44433f;
  font-size: 0.9rem;
  line-height: 1.6;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 6.4vw, 98px);
  color: white;
  background: var(--ink);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.48);
}

.signup-intro h2 {
  margin: 38px 0 30px;
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.signup-intro > p:not(.section-label) {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.signal {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 65px;
}

.signal span {
  width: 3px;
  height: 14px;
  background: var(--acid);
  animation: signal 1.2s ease-in-out infinite alternate;
}

.signal span:nth-child(2) { height: 32px; animation-delay: -0.2s; }
.signal span:nth-child(3) { height: 48px; animation-delay: -0.4s; }
.signal span:nth-child(4) { height: 25px; animation-delay: -0.6s; }
.signal span:nth-child(5) { height: 42px; animation-delay: -0.8s; }
.signal span:nth-child(6) { height: 19px; animation-delay: -1s; }
.signal span:nth-child(7) { height: 36px; animation-delay: -0.3s; }
.signal span:nth-child(8) { height: 11px; animation-delay: -0.7s; }

@keyframes signal {
  to { transform: scaleY(0.35); opacity: 0.5; }
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  align-content: start;
}

.field {
  position: relative;
  margin-bottom: 32px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: none;
  color: white;
  background: transparent;
  font-size: 1.06rem;
  transition: border 180ms ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--acid);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.field input[type="date"] {
  color-scheme: dark;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 4px;
  top: 16px;
  pointer-events: none;
  color: var(--acid);
}

.field select {
  appearance: none;
  padding-right: 30px;
}

.field select:invalid {
  color: rgba(255, 255, 255, 0.25);
}

.field select option {
  color: var(--ink);
}

.field-error,
.consent-error {
  min-height: 18px;
  display: block;
  padding-top: 5px;
  color: #ff8a70;
  font-size: 0.72rem;
}

.field.invalid input,
.field.invalid select {
  border-color: #ff8a70;
}

.consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.consent input:checked + .checkmark {
  border-color: var(--acid);
  background: var(--acid);
}

.consent input:checked + .checkmark::after {
  content: "✓";
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.consent-error {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.submit-button {
  grid-column: 1 / -1;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 28px;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 180ms ease, transform 180ms ease;
}

.submit-button:hover:not(:disabled) {
  background: white;
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.35);
  border-radius: 50%;
  font-size: 1rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 15px 0 0;
  font-size: 0.8rem;
}

.form-status.success {
  color: var(--acid);
}

.form-status.error {
  color: #ff8a70;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 32px clamp(24px, 6.4vw, 98px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  background: var(--ink);
  font-size: 0.72rem;
}

.footer-brand {
  color: white;
}

.pulse-share-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 34px);
}

.pulse-share-footer-actions > a {
  transition: color 180ms ease;
}

.pulse-share-footer-actions > a:hover {
  color: var(--acid);
}

.pulse-share-button {
  --pulse-share-acid: #f4ff61;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 15px 0 17px;
  border: 1px solid var(--pulse-share-acid);
  color: var(--pulse-share-acid);
  background: #000;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pulse-share-button:hover:not(:disabled) {
  color: #000;
  background: var(--pulse-share-acid);
}

.pulse-share-button:focus-visible {
  outline: 2px solid var(--pulse-share-acid);
  outline-offset: 4px;
}

.pulse-share-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.pulse-share-button.is-pressed {
  animation: pulse-share-press 280ms ease-out;
}

.pulse-share-button__icon {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.pulse-share-toast {
  --pulse-share-acid: #f4ff61;
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 13px 17px;
  border: 1px solid var(--pulse-share-acid);
  color: var(--pulse-share-acid);
  background: #000;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s 220ms;
}

.pulse-share-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.pulse-share-toast.is-error {
  border-color: #ff8a70;
  color: #fff;
}

@keyframes pulse-share-press {
  50% { transform: scale(0.96); }
}

@media (max-width: 900px) {
  .hero-footer {
    margin-left: 20%;
  }

  .manifesto {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    margin: 35px 0 70px;
  }

  .manifesto-note {
    max-width: 330px;
    margin-left: auto;
  }

  .signup-section {
    grid-template-columns: 1fr;
  }

  .signup-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }

  .signup-intro .section-label,
  .signup-intro h2 {
    grid-column: 1;
  }

  .signup-intro > p:not(.section-label) {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  .signal {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 22px;
  }

  .nav-cta {
    font-size: 0.65rem;
  }

  .header-nav {
    gap: 18px;
  }

  .header-nav > a:first-child {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(3.75rem, 18vw, 5.4rem);
    margin-top: 36px;
  }

  .hero-footer {
    align-items: flex-start;
    margin-left: 0;
  }

  .hero-footer p {
    max-width: 240px;
    font-size: 0.83rem;
  }

  .circle-link {
    width: 92px;
    height: 92px;
    padding: 15px;
    font-size: 0.62rem;
  }

  .manifesto-copy {
    font-size: 3.25rem;
  }

  .signup-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-intro {
    display: block;
  }

  .signup-intro h2 {
    font-size: 5rem;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .field {
    grid-column: 1 / -1;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pulse-share-footer-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

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

  .ticker-track,
  .signal span {
    animation: none;
  }

  .pulse-share-button,
  .pulse-share-toast {
    animation: none !important;
    transition: none !important;
  }
}
