﻿:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --violet: #ff6f4f;
  --gradient: linear-gradient(135deg, #ff405c 0%, #ff6f4f 100%);
  --shadow: 0 24px 70px rgba(17, 24, 39, .10);
  --soft-shadow: 0 12px 32px rgba(17, 24, 39, .08);
  font-family: Aptos, "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 78%),
    var(--bg);
}

.page-shell {
  animation: pageEnter .42s cubic-bezier(.2, .8, .2, 1) both;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(226, 232, 240, .75);
  backdrop-filter: blur(18px);
}

.brand,
.topbar nav button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: transparent;
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
}

.topbar nav {
  display: flex;
  gap: 5px;
}

.topbar nav button {
  min-height: 36px;
  padding: 0 10px;
  color: var(--muted);
  border-radius: 999px;
}

.topbar nav button:hover {
  color: var(--ink);
  background: #f1f5f9;
}

.u-logo {
  display: inline-grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  color: #fff;
  font-weight: 950;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 10px 28px rgba(255, 61, 130, .20);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: calc(100vh - 66px);
  padding: clamp(34px, 7vw, 88px) clamp(18px, 6vw, 96px) 42px;
}

.hero-v2 {
  grid-template-columns: minmax(0, 560px) minmax(340px, 500px);
  justify-content: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 66px);
}

.product-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
  font-size: 14px;
  font-weight: 950;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: clamp(52px, 10vw, 112px);
  font-weight: 950;
  line-height: .9;
}

.hero-u {
  width: clamp(74px, 12vw, 128px);
  font-size: .65em;
}

.signature {
  margin: 0 0 14px;
  color: #ff4f6d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(64px, 12vw, 132px);
  line-height: .94;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.micro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.micro-grid span {
  padding: 8px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary,
.secondary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 780;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.primary {
  color: #fff;
  border: 1px solid rgba(255, 79, 89, .18);
  background: var(--gradient);
  box-shadow: 0 16px 36px rgba(255, 64, 92, .22), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(255, 64, 92, .28), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.secondary,
.ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-actions .secondary {
  max-width: 230px;
  white-space: normal;
}

.ghost {
  color: var(--muted);
}

.full { width: 100%; }

.pulse-theater {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.pulse-device {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .96)),
    radial-gradient(circle at 50% 42%, rgba(255, 61, 130, .14), transparent 36%);
  box-shadow: 0 34px 90px rgba(15, 23, 42, .12);
}

.pulse-device::before {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 25px;
}

.device-status,
.signal-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
}

.device-status {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.live-dot {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

.device-status strong,
.signal-sheet strong {
  font-size: 14px;
}

.signal-sheet span,
.signal-sheet small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pulse-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.pulse-stage::before,
.pulse-stage::after {
  position: absolute;
  width: 285px;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  border: 1px solid rgba(255, 61, 130, .18);
  animation: breathe 5s cubic-bezier(.2, .8, .2, 1) infinite;
}

.pulse-stage::after {
  width: 385px;
  border-color: rgba(124, 58, 237, .12);
  animation-delay: .8s;
}

.pulse-orbit,
.pulse-orbit::before,
.pulse-orbit::after {
  position: absolute;
  width: min(82vw, 420px);
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  border: 1px solid rgba(255, 61, 130, .22);
  animation: breathe 4.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.pulse-orbit::before {
  inset: 34px;
  width: auto;
  animation-delay: .55s;
}

.pulse-orbit::after {
  inset: 72px;
  width: auto;
  animation-delay: 1.1s;
}

.puls-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 206px;
  aspect-ratio: 1;
  color: #fff;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 30px 78px rgba(255, 61, 130, .28), inset 0 1px 1px rgba(255, 255, 255, .45);
  isolation: isolate;
  animation: buttonBreath 3.6s cubic-bezier(.2, .8, .2, 1) infinite;
}

.puls-button::after {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(255, 61, 130, .16);
  animation: ripple 2.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.puls-button span {
  font-size: 84px;
  font-weight: 950;
  line-height: 1;
}

.puls-button small {
  margin-top: -20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.giant {
  width: min(68vw, 248px);
}

.giant span {
  font-size: clamp(82px, 24vw, 118px);
}

.band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric,
.step-card,
.info-card,
.opportunity,
.signal-card,
.panel,
.mobile-frame,
.modal {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--soft-shadow);
}

.metric {
  padding: 18px;
}

.metric span,
.metric small,
.info-card span,
.info-card small,
.page-head small,
.screen small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(28px, 4vw, 42px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 50px;
}

.step-card {
  padding: 20px;
}

.step-card small {
  color: #ff4f6d;
  font-weight: 900;
}

.step-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 22px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.45;
}

.onboarding,
.login-page {
  display: grid;
  place-items: start center;
  min-height: calc(100vh - 66px);
  padding: clamp(38px, 7vw, 78px) 16px 56px;
}

.mobile-frame {
  width: min(100%, 560px);
  overflow: hidden;
}

.progress {
  height: 8px;
  background: #eef2f7;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--gradient);
  transition: width .3s ease;
}

.screen {
  padding: 24px;
}

.screen h1,
.screen h2 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.05;
}

.screen p,
.page-head p {
  color: var(--muted);
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 12px;
}

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

.field,
.search {
  display: grid;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--muted);
  font-weight: 750;
}

.field input,
.field select,
.field textarea,
.search input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(16, 21, 39, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  outline: 0;
  box-shadow: 0 10px 24px rgba(16, 21, 39, .04);
}

.field textarea {
  min-height: 92px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.35;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search input:focus {
  border-color: rgba(255, 61, 130, .7);
  box-shadow: 0 0 0 4px rgba(255, 61, 130, .12);
}

.chip-group {
  margin: 16px 0;
}

.chip-group > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 750;
}

.chip-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.choice {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid rgba(16, 21, 39, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 18px rgba(16, 21, 39, .04);
  font-weight: 760;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.chip:hover,
.choice:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 66, 107, .28);
  box-shadow: 0 14px 28px rgba(16, 21, 39, .08);
}

.chip.selected,
.choice.selected {
  color: #ff426b;
  border-color: rgba(255, 66, 107, .28);
  background: linear-gradient(180deg, rgba(255, 66, 107, .10), rgba(255, 138, 61, .08));
  box-shadow: 0 12px 28px rgba(255, 66, 107, .12);
}

.choice-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.choice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 54px;
  border-radius: 8px;
  font-weight: 800;
}

.dot {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
}

.dot.green { background: var(--green); }
.dot.amber { background: var(--amber); }
.dot.red { background: var(--red); }
.dot.violet { background: var(--violet); }

.privacy-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.privacy-stack label,
.privacy-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.privacy-stack input,
.check-mark {
  margin-top: 4px;
}

.check-mark {
  display: inline-grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  aspect-ratio: 1;
  color: #fff;
  border-radius: 6px;
  background: #0f7acb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.privacy-stack strong {
  display: block;
  font-weight: 850;
}

.privacy-stack small,
.field-hint {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 4px;
}

.first-pulse {
  display: grid;
  justify-items: center;
  text-align: center;
}

.onboarding-pulse-screen {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
}

.onboarding-pulse-screen::before,
.onboarding-pulse-screen::after {
  position: absolute;
  inset: auto;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.onboarding-pulse-screen::before {
  width: 430px;
  aspect-ratio: 1;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 66, 107, .16), transparent 66%);
}

.onboarding-pulse-screen::after {
  width: 360px;
  aspect-ratio: 1;
  left: 50%;
  top: 54%;
  border: 1px solid rgba(255, 66, 107, .16);
  transform: translate(-50%, -50%);
  animation: collectivePulse 4.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.onboarding-pulse-screen > * {
  position: relative;
  z-index: 1;
}

.onboarding-pulse-button {
  width: min(68vw, 280px);
  margin: 22px auto 12px;
}

.pulse-commitment {
  margin: 0 0 10px;
  color: #ff426b;
  font-weight: 850;
}

.first-pulse .ghost {
  margin-top: 18px;
}

.talent-home,
.company-page,
.admin-page,
.empty-state {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 70px;
}

.hello {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.hello span {
  color: var(--muted);
  font-weight: 800;
}

.hello h1,
.page-head h1,
.empty-state h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 8vw, 62px);
  line-height: 1;
}

.status-pill {
  justify-self: start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.status-pill.recent { color: #15803d; background: #dcfce7; }
.status-pill.active { color: #0369a1; background: #e0f2fe; }
.status-pill.stale { color: #a16207; background: #fef3c7; }
.status-pill.inactive { color: #991b1b; background: #fee2e2; }
.status-pill.pending { color: #b42318; background: #fee4e2; }

.pulse-center {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 18px 0 24px;
  padding: 28px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72));
  border: 1px solid var(--line);
}

.pulse-center p {
  color: var(--muted);
  font-weight: 800;
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-card {
  padding: 16px;
}

.info-card strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.opportunities {
  margin-top: 28px;
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 14px;
}

.section-head span {
  color: #ff426b;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #101527;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: #5d667e;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.45;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.opportunity {
  display: grid;
  gap: 18px;
  align-content: space-between;
  margin-top: 10px;
  padding: 18px;
}

.opportunity span,
.opportunity small,
.signal-card span,
.signal-card p {
  color: var(--muted);
}

.opportunity b {
  justify-self: start;
  padding: 7px 10px;
  color: #cf174c;
  border-radius: 999px;
  background: rgba(255, 66, 107, .08);
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(15, 23, 42, .32);
}

.modal {
  position: relative;
  width: min(100%, 470px);
  padding: 24px;
  animation: slideUp .22s ease both;
}

.close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  aspect-ratio: 1;
  color: var(--muted);
  border-radius: 999px;
  background: #f8fafc;
  font-size: 24px;
}

.page-head {
  margin-bottom: 22px;
}

.search {
  max-width: 520px;
}

.signal-list,
.admin-panels {
  display: grid;
  gap: 12px;
}

.signal-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card small {
  justify-self: end;
  padding: 7px 10px;
  color: #4338ca;
  background: #eef2ff;
  border-radius: 999px;
  font-weight: 900;
}

.admin-metrics {
  width: 100%;
  margin-bottom: 18px;
}

.admin-panels {
  grid-template-columns: repeat(3, 1fr);
}

.admin-latest {
  margin-top: 18px;
}

.panel {
  padding: 18px;
}

.panel h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.panel p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0;
  color: var(--muted);
}

.panel b {
  color: var(--ink);
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-height: 70vh;
  align-content: center;
}

.empty-state p,
.hint {
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 16px;
  color: #fff;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow);
  animation: slideUp .2s ease both;
}

.reveal {
  animation: reveal .55s ease both;
}

.delay {
  animation-delay: .12s;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes breathe {
  0%, 100% { opacity: .52; transform: scale(.94); }
  50% { opacity: .9; transform: scale(1.04); }
}

@keyframes buttonBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes ripple {
  0% { opacity: .72; transform: scale(.88); }
  100% { opacity: 0; transform: scale(1.32); }
}

@keyframes resonanceWave {
  0% { opacity: .82; transform: translate(-50%, -50%) scale(.78); }
  70% { opacity: .16; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.45); }
}

@keyframes coreBreath {
  0%, 100% { transform: scale(1); box-shadow: 0 24px 64px rgba(255, 61, 130, .20), inset 0 1px 0 rgba(255, 255, 255, .95); }
  50% { transform: scale(1.045); box-shadow: 0 32px 82px rgba(255, 61, 130, .30), inset 0 1px 0 rgba(255, 255, 255, .95); }
}

@keyframes dotFloat {
  0%, 100% { opacity: .45; transform: translate3d(0, 0, 0) scale(.92); }
  50% { opacity: .95; transform: translate3d(6px, -8px, 0) scale(1.12); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes liveBlink {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.14); }
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    gap: 10px;
    padding-inline: 14px;
  }

  .topbar nav {
    max-width: 72vw;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .topbar nav button {
    padding-inline: 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 16px 34px;
  }

  .pulse-theater {
    min-height: 320px;
    order: -1;
  }

  .metrics,
  .steps,
  .mobile-grid,
  .admin-panels {
    grid-template-columns: 1fr;
  }

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

  .signal-card,
  .opportunity {
    grid-template-columns: 1fr;
  }

  .signal-card small {
    justify-self: start;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .primary,
  .hero-actions .secondary {
    width: 100%;
    max-width: none;
  }

  .talent-home,
  .company-page,
  .admin-page,
  .empty-state {
    width: min(100% - 24px, 1120px);
    padding-top: 22px;
  }

  .pulse-center {
    margin-inline: -4px;
    padding-block: 34px;
  }
}

@media (max-width: 980px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    padding-top: 28px;
  }

  .hero-v2 .hero-copy {
    display: grid;
    justify-items: center;
    max-width: 640px;
    text-align: center;
  }

  .hero-v2 h1 {
    font-size: clamp(68px, 18vw, 116px);
  }

  .hero-v2 .lead {
    max-width: 500px;
  }

  .pulse-device {
    width: min(100%, 460px);
    min-height: 460px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .brand span:last-child {
    display: none;
  }

  .pulse-device {
    width: 100%;
    order: -1;
    min-height: 500px;
    border-radius: 24px;
  }

  .pulse-stage::before {
    width: 235px;
  }

  .pulse-stage::after {
    width: 315px;
  }

  .puls-button {
    width: 184px;
  }

  .puls-button span {
    font-size: 76px;
  }

  .giant {
    width: min(72vw, 236px);
  }

  .screen {
    padding: 20px;
  }

  .hello h1,
  .page-head h1,
  .empty-state h1 {
    font-size: clamp(32px, 12vw, 50px);
  }

  .hero-v2 h1 {
    font-size: clamp(68px, 24vw, 116px);
  }
}

/* DA PULS */
body {
  background:
    linear-gradient(180deg, rgba(255, 251, 249, .96) 0%, rgba(255, 255, 255, .98) 42%, #f8fafc 100%),
    radial-gradient(circle at 78% 12%, rgba(255, 138, 61, .12), transparent 30%);
}

.topbar {
  top: 24px;
  width: calc(100% - 48px);
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 32px;
  background: rgba(255, 250, 247, .82);
  box-shadow: 0 24px 70px rgba(17, 24, 39, .10);
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.topbar nav {
  flex: 1;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.topbar nav button {
  color: #303343;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 850;
  white-space: nowrap;
}

.top-actions {
  display: flex;
  gap: 12px;
}

.top-actions button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 10px 28px rgba(17, 24, 39, .08);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 760;
}

.hero-da {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .8fr);
  max-width: 1600px;
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding-top: clamp(72px, 9vw, 130px);
}

.hero-da .hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 28px;
  color: #737684;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 850;
}

.hero-da h1 {
  max-width: 920px;
  color: #080d21;
  font-size: clamp(58px, 7.3vw, 112px);
  line-height: .98;
}

.hero-da h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ff3d67 0%, #ff8a57 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-da .lead,
.talent-da .lead {
  max-width: 820px;
  color: #3f4863;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.42;
}

.hero-da .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 900px;
  gap: 18px;
}

.role-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  min-height: 136px;
  padding: 26px;
  text-align: left;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.role-card .role-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: #fff0f3;
  overflow: hidden;
}

.role-card .role-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.role-card strong {
  color: #101527;
  font-size: 22px;
}

.role-card small {
  color: #5d667e;
  font-size: 17px;
  line-height: 1.35;
}

.da-stack {
  display: grid;
  gap: 28px;
  align-self: center;
}

.signal-hero-card,
.resonance-card {
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 44px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .08);
}

.signal-hero-card {
  display: grid;
  justify-items: center;
  padding: clamp(44px, 6vw, 80px) 28px;
  text-align: center;
}

.signal-hero-card img {
  width: clamp(150px, 16vw, 230px);
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 36px rgba(255, 79, 109, .18));
}

.signal-hero-card h2 {
  margin-bottom: 14px;
  color: #081027;
  font-size: clamp(30px, 3vw, 46px);
}

.signal-hero-card p {
  color: #70778b;
  font-size: 20px;
  font-weight: 850;
}

.resonance-card {
  padding: 28px;
}

.resonance-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.resonance-head img {
  width: 58px;
}

.resonance-head strong {
  flex: 1;
  letter-spacing: .28em;
}

.resonance-head button {
  min-height: 44px;
  padding: 0 18px;
  color: #ff4f6d;
  border: 1px solid rgba(255, 79, 109, .22);
  border-radius: 999px;
  background: #fff2f5;
  font-weight: 850;
}

.resonance-body {
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 22px;
  background: #fffdfa;
}

.resonance-body strong,
.resonance-body span {
  display: block;
}

.resonance-body strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.resonance-body span {
  color: #70778b;
}

.da-metrics,
.da-steps {
  max-width: 1480px;
}

.talent-da {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 28px;
}

.talent-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
  gap: clamp(28px, 5vw, 80px);
  width: min(1500px, calc(100% - 72px));
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 0 70px;
}

.talent-entry-copy {
  align-self: center;
}

.talent-entry h1,
.talent-copy h1 {
  margin-bottom: 22px;
  color: #080d21;
  max-width: 820px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .98;
  overflow-wrap: anywhere;
}

.talent-entry h1 span,
.talent-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ff3d67 0%, #ff8a57 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.talent-copy h1 .hello-name {
  display: inline-block;
  max-width: 100%;
  color: #080d21;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: clamp(36px, 4.8vw, 64px);
}

.talent-entry-card {
  align-self: center;
  display: grid;
  justify-items: center;
  padding: clamp(42px, 6vw, 76px) 28px;
  text-align: center;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 44px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .08);
}

.talent-entry-card img {
  width: clamp(140px, 15vw, 220px);
  margin-bottom: 26px;
  filter: drop-shadow(0 22px 36px rgba(255, 79, 109, .18));
}

.talent-entry-card h2 {
  margin-bottom: 12px;
  color: #081027;
  font-size: clamp(30px, 3vw, 44px);
}

.talent-entry-card p {
  color: #70778b;
  font-size: 20px;
  font-weight: 850;
}

.mini-proof {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 22px;
  background: #fffdfa;
}

.mini-proof strong {
  color: #ff4f6d;
  font-size: 34px;
}

.mini-proof span {
  color: #70778b;
  font-weight: 800;
}

.talent-copy {
  align-self: center;
}

.talent-signal-panel {
  align-self: start;
}

.signal-hero-card.compact {
  position: relative;
  overflow: hidden;
  padding: 38px 28px;
}

.signal-hero-card.compact img {
  width: 150px;
}

.active-resonance-card {
  border-color: rgba(255, 79, 109, .16);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 61, 130, .14), transparent 28%),
    radial-gradient(circle at 52% 48%, rgba(255, 138, 61, .10), transparent 36%),
    rgba(255, 255, 255, .92);
  box-shadow:
    0 34px 86px rgba(17, 24, 39, .10),
    0 22px 70px rgba(255, 61, 130, .12);
}

.active-resonance-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border-radius: 34px;
  border: 1px solid rgba(255, 79, 109, .08);
  pointer-events: none;
}

.talent-resonance {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 310px);
  aspect-ratio: 1;
  margin-bottom: 18px;
  isolation: isolate;
}

.resonance-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 158px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .98) 0 45%, rgba(255, 239, 245, .88) 46% 100%);
  box-shadow:
    0 24px 64px rgba(255, 61, 130, .22),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  animation: coreBreath 3.2s cubic-bezier(.2, .8, .2, 1) infinite;
}

.resonance-core img,
.signal-hero-card.compact .resonance-core img {
  width: 118px;
  margin: 0;
  filter: drop-shadow(0 16px 24px rgba(255, 79, 109, .18));
}

.resonance-ring {
  position: absolute;
  inset: 50%;
  z-index: 1;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 79, 109, .26);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: resonanceWave 3.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.ring-two {
  animation-delay: .72s;
}

.ring-three {
  animation-delay: 1.44s;
}

.resonance-dot {
  position: absolute;
  z-index: 2;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 0 24px rgba(255, 61, 130, .38);
  animation: dotFloat 3.4s ease-in-out infinite;
}

.dot-one {
  top: 22%;
  right: 22%;
}

.dot-two {
  bottom: 24%;
  left: 20%;
  animation-delay: .75s;
}

.dot-three {
  right: 18%;
  bottom: 30%;
  animation-delay: 1.35s;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, .18);
  border-radius: 999px;
  color: #15803d;
  background: rgba(34, 197, 94, .08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-badge::before {
  width: 8px;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

.live-badge.pending {
  color: #b42318;
  border-color: rgba(255, 66, 107, .22);
  background: rgba(255, 66, 107, .08);
}

.live-badge.pending::before {
  background: #ff405c;
  box-shadow: 0 0 0 6px rgba(255, 64, 92, .12);
}

.pulse-action {
  margin-top: 8px;
}

.pulse-meta {
  display: grid;
  gap: 2px;
  margin: 4px 0 18px;
  color: #64748b;
  font-size: 15px;
  font-weight: 680;
}

.pulse-meta span {
  color: #8a94a8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse-meta strong {
  color: #394155;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
}

.talent-da .mobile-grid,
.talent-da .opportunities {
  grid-column: 1 / -1;
}

.login-da {
  min-height: calc(100vh - 150px);
  padding-top: clamp(54px, 8vw, 96px);
}

.login-card {
  border-radius: 32px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .08);
}

.login-symbol {
  display: block;
  width: 68px;
  margin-bottom: 18px;
}

@media (max-width: 1040px) {
  .topbar {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 26px;
  }

  .brand img {
    width: 118px;
  }

  .topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-actions {
    display: none;
  }

  .hero-da,
  .talent-da,
  .talent-entry {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .da-stack {
    order: 0;
  }

  .hero-da .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    top: 10px;
    padding: 12px;
  }

  .topbar nav {
    max-width: calc(100vw - 156px);
  }

  .hero-da {
    padding-top: 34px;
  }

  .hero-da h1,
  .talent-copy h1,
  .talent-entry h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .hero-da .lead,
  .talent-da .lead,
  .talent-entry .lead {
    font-size: 19px;
  }

  .signal-hero-card,
  .resonance-card,
  .talent-entry-card {
    border-radius: 28px;
  }

  .talent-entry {
    width: min(100% - 28px, 1500px);
    padding-top: 36px;
  }
}

/* Movement landing */
.topbar {
  width: min(1320px, calc(100% - 56px));
  min-height: 58px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 20px;
}

.brand img {
  width: 116px;
}

.topbar nav button {
  color: #252a3a;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 760;
  letter-spacing: 0;
}

.topbar nav button:hover {
  color: #ff426b;
  background: rgba(255, 66, 107, .07);
}

.movement-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
  gap: clamp(28px, 4vw, 64px);
  width: min(1400px, calc(100% - 72px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 0 clamp(54px, 6vw, 86px);
  overflow: visible;
}

.movement-copy {
  align-self: center;
}

.movement-kicker {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: #cf174c;
  border: 1px solid rgba(255, 66, 107, .28);
  border-radius: 999px;
  background: rgba(255, 66, 107, .10);
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 700;
}

.movement-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #070c1f;
  font-size: clamp(48px, 5.25vw, 84px);
  font-weight: 720;
  line-height: .96;
  letter-spacing: 0;
}

.movement-lead {
  max-width: 680px;
  color: #30394f;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.42;
}

.movement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.movement-primary,
.movement-secondary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
}

.movement-primary {
  color: #fff;
  border: 1px solid rgba(255, 79, 89, .18);
  background: linear-gradient(135deg, #ff405c 0%, #ff6f4f 100%);
  box-shadow: 0 18px 42px rgba(255, 64, 92, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.movement-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(255, 64, 92, .30), inset 0 1px 0 rgba(255, 255, 255, .36);
}

.movement-secondary {
  color: #101527;
  border: 1px solid rgba(16, 21, 39, .12);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px rgba(16, 21, 39, .08);
}

.movement-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.movement-proof span {
  position: relative;
  display: grid;
  gap: 3px;
  min-width: 132px;
  padding: 10px 14px;
  color: #3d465d;
  border: 1px solid rgba(16, 21, 39, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
}

.movement-proof strong {
  color: #111827;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 680;
  line-height: 1;
}

.movement-proof small {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

.movement-proof .live-count {
  padding-left: 28px;
}

.movement-proof .live-count::before {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 8px;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
  animation: liveBlink 1.8s ease-in-out infinite;
}

.movement-stage {
  position: relative;
  display: grid;
  place-items: center;
  justify-items: center;
  align-items: center;
  align-self: center;
  min-height: 520px;
}

.collective-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 66, 107, .18);
  box-shadow: inset 0 0 60px rgba(255, 66, 107, .035);
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: collectivePulse 4.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.ring-one { width: min(42vw, 500px); }
.ring-two { width: min(34vw, 380px); animation-delay: .55s; }
.ring-three { width: min(25vw, 270px); animation-delay: 1.1s; }

.movement-pulse {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  justify-items: center;
  justify-self: center;
  align-self: center;
  width: clamp(200px, 17vw, 250px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 34px 90px rgba(255, 66, 107, .22), 0 20px 80px rgba(16, 21, 39, .10), inset 0 1px 0 rgba(255,255,255,.75);
  animation: pulseLift 3.2s cubic-bezier(.2, .8, .2, 1) infinite;
}

.movement-pulse::before {
  position: absolute;
  inset: -24px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 66, 107, .24), transparent 66%);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.movement-pulse img {
  width: 62%;
  grid-area: 1 / 1;
  display: block;
  align-self: center;
  justify-self: center;
  margin: 0;
  filter: drop-shadow(0 18px 28px rgba(255, 66, 107, .24));
}

.pulse-caption {
  position: absolute;
  z-index: 4;
  bottom: 2px;
  left: 50%;
  width: min(390px, 86vw);
  margin: 0;
  color: #20283c;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 760;
  line-height: 1.35;
}

.signal-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 21, 39, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(16, 21, 39, .10);
  animation: nodeFloat 5s ease-in-out infinite;
}

.signal-node strong {
  color: #101527;
  font-size: clamp(16px, 1.1vw, 20px);
}

.signal-node span {
  color: #4b566f;
  font-weight: 760;
}

.node-a { top: 6%; right: 0; }
.node-b { left: 0; bottom: 16%; animation-delay: .7s; }
.node-c { right: 2%; bottom: 36%; animation-delay: 1.2s; }

.movement-manifest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -24px;
}

.movement-call {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 13, 33, .98), rgba(32, 20, 58, .96)),
    var(--gradient);
  box-shadow: 0 22px 54px rgba(16, 21, 39, .18);
}

.movement-call span {
  color: #ff9aad;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.movement-call strong {
  max-width: 1120px;
  color: #fff;
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.14;
}

.movement-manifest article,
.movement-role {
  border: 1px solid rgba(16, 21, 39, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(16, 21, 39, .07);
}

.movement-manifest article {
  padding: 24px;
}

.movement-manifest strong {
  color: #ff426b;
}

.movement-manifest h2 {
  margin: 12px 0 10px;
  color: #101527;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
}

.movement-manifest p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.45;
}

.movement-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px 0 70px;
}

.movement-next-actions {
  padding: 20px 0 70px;
}

.movement-action-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(16, 21, 39, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 18px 44px rgba(16, 21, 39, .07);
}

.movement-action-card img {
  width: 58px;
}

.movement-action-card strong,
.movement-action-card small {
  display: block;
}

.movement-action-card strong {
  margin-bottom: 6px;
  color: #101527;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.movement-action-card small {
  color: #64748b;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.35;
}

.movement-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.movement-role {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  text-align: left;
}

.movement-role img {
  width: 64px;
}

.movement-role strong,
.movement-role small {
  display: block;
}

.movement-role strong {
  margin-bottom: 6px;
  color: #101527;
  font-size: 24px;
}

.movement-role small {
  color: #64748b;
  font-size: 18px;
  line-height: 1.35;
}

.movement-role.locked {
  opacity: .74;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.chip-group.has-error .chip {
  border-color: rgba(239, 68, 68, .52);
}

.field-error {
  display: block;
  margin-top: 5px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 850;
}

.login-da .primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(255, 64, 92, .22), inset 0 1px 0 rgba(255, 255, 255, .30);
}

@keyframes collectivePulse {
  0%, 100% { opacity: .46; transform: translate(-50%, -50%) scale(.94); }
  50% { opacity: .92; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes pulseLift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.025); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: .58; transform: scale(.9); }
  50% { opacity: .95; transform: scale(1.08); }
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .movement-hero {
    grid-template-columns: minmax(0, .94fr) minmax(300px, .72fr);
    gap: 26px;
    width: min(100% - 44px, 1500px);
    padding-top: 42px;
  }

  .movement-copy h1 {
    font-size: clamp(52px, 7vw, 78px);
  }

  .movement-lead {
    font-size: clamp(18px, 2vw, 22px);
  }

  .movement-actions {
    margin-top: 24px;
  }

  .movement-primary,
  .movement-secondary {
    min-height: 52px;
    padding-inline: 18px;
  }

  .movement-stage {
    min-height: 500px;
  }

  .movement-pulse {
    width: clamp(190px, 23vw, 240px);
  }

  .signal-node {
    min-width: 150px;
    padding: 12px 14px;
  }

  .node-a { top: 10%; right: 0; }
  .node-b { left: 0; bottom: 16%; }
  .node-c { display: none; }
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
    top: 8px;
    width: min(100% - 20px, 1440px);
    margin-top: 8px;
    padding: 10px 12px;
    gap: 10px;
  }

  .brand img {
    width: 112px;
  }

  .topbar nav {
    max-width: none;
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
  }

  .topbar nav button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .topbar nav button:nth-child(n+3) {
    display: none;
  }

  .movement-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .movement-stage {
    min-height: 520px;
  }

  .movement-manifest,
  .movement-roles {
    grid-template-columns: 1fr;
  }

  .movement-action-card {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

  .movement-action-card img {
    width: 48px;
  }

  .movement-action-buttons {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .movement-action-buttons .movement-primary,
  .movement-action-buttons .movement-secondary {
    flex: 1 1 190px;
  }

  .movement-call {
    border-radius: 20px;
  }
}

@media (max-width: 620px) {
  .movement-hero {
    width: min(100% - 28px, 1500px);
  }

  .movement-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .movement-lead {
    font-size: 19px;
  }

  .movement-stage {
    min-height: 500px;
  }

  .ring-one { width: min(115vw, 430px); }
  .ring-two { width: min(94vw, 350px); }
  .ring-three { width: min(72vw, 260px); }

  .signal-node {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
  }

  .pulse-caption {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 8px;
    transform: none;
  }

  .node-a,
  .node-b,
  .node-c {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

/* Fixed app navigation + profile editor */
.page-shell {
  padding-top: 0;
}

.topbar {
  position: relative;
  top: auto;
  left: 50%;
  width: min(1320px, calc(100% - 56px));
  margin: 16px 0 0;
  transform: translateX(-50%);
  z-index: 100;
}

.talent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.profile-edit-page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 60px) 0 76px;
}

.profile-edit-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.profile-edit-head h1 {
  margin: 0;
  color: #080d21;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  letter-spacing: 0;
}

.profile-edit-head p {
  margin: 16px 0 0;
  color: #46506a;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.36;
}

.profile-edit-card {
  width: min(100%, 940px);
  margin: 0;
}

.profile-edit-card .screen > small {
  display: block;
  margin: 26px 0 12px;
  color: #6c7890;
  font-weight: 820;
}

.profile-edit-card .screen > small:first-child {
  margin-top: 0;
}

.compact-choice-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px 0 20px;
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 0;
  }

  .topbar {
    top: auto;
    width: min(100% - 20px, 1440px);
  }

  .profile-edit-page {
    width: min(100% - 20px, 1040px);
    padding-top: 28px;
  }

  .profile-edit-head h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .compact-choice-list {
    grid-template-columns: 1fr;
  }
}

/* Campaign-aligned teaser refresh */
body {
  background: #fff;
}

.campaign-hero {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1040px, calc(100% - 36px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: clamp(24px, 3.8vw, 46px) 0 34px;
  overflow: hidden;
  text-align: center;
}

.campaign-hero::before {
  position: absolute;
  inset: 8% -18% auto;
  height: 64%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 64, 92, .14), transparent 34%),
    radial-gradient(circle at 45% 68%, rgba(202, 82, 255, .16), transparent 26%),
    radial-gradient(circle at 59% 56%, rgba(255, 138, 61, .14), transparent 24%);
  filter: blur(18px);
}

.campaign-copy,
.campaign-stage,
.campaign-cta,
.campaign-proof {
  position: relative;
  z-index: 1;
}

.campaign-kicker {
  margin: 0 0 8px;
  color: #02051f;
  font-size: clamp(24px, 3.8vw, 64px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.campaign-copy h1 {
  max-width: 980px;
  margin: 0;
  color: #02051f;
  font-size: clamp(52px, 8.2vw, 124px);
  font-weight: 950;
  line-height: .86;
  text-transform: uppercase;
}

.campaign-copy h1 span {
  color: #ff2f6d;
}

.campaign-subline {
  margin: clamp(10px, 1.5vw, 18px) auto 0;
  color: #02051f;
  font-size: clamp(22px, 3.2vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.campaign-subline strong {
  color: transparent;
  background: linear-gradient(90deg, #ff2f74 0%, #ff743f 72%, #8d5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.campaign-stage {
  width: min(100%, 860px);
  min-height: clamp(320px, 40vw, 500px);
  margin-top: clamp(0px, 1vw, 14px);
  overflow: visible;
}

.campaign-stage .collective-ring {
  border-color: rgba(255, 68, 104, .20);
  box-shadow: inset 0 0 70px rgba(255, 68, 104, .05), 0 0 48px rgba(255, 86, 172, .08);
}

.campaign-stage .ring-one { width: min(92vw, 760px); }
.campaign-stage .ring-two { width: min(76vw, 600px); }
.campaign-stage .ring-three { width: min(56vw, 430px); }

.campaign-stage .movement-pulse {
  width: clamp(200px, 25vw, 310px);
  background:
    radial-gradient(circle at 44% 36%, #fff 0%, #fff 56%, #f4f0f4 100%);
  box-shadow:
    0 42px 90px rgba(2, 5, 31, .12),
    0 32px 84px rgba(255, 47, 116, .26),
    0 72px 120px rgba(141, 92, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.campaign-stage .movement-pulse::before {
  inset: -42px;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 47, 116, .18), transparent 58%),
    conic-gradient(from 110deg, rgba(255, 47, 116, .10), rgba(255, 116, 63, .16), rgba(141, 92, 255, .14), rgba(255, 47, 116, .10));
}

.ghost-word {
  position: absolute;
  z-index: 1;
  color: rgba(2, 5, 31, .12);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 47, 116, .24);
  text-underline-offset: -.18em;
  text-transform: lowercase;
  transform: rotate(-7deg);
  pointer-events: none;
  filter: blur(.25px);
  text-shadow: none;
}

.ghost-job { top: 2%; left: 50%; transform: translateX(-50%) rotate(-3deg); }
.ghost-feed { left: 2%; bottom: 31%; transform: rotate(-8deg); }
.ghost-cv { right: 0; bottom: 27%; transform: rotate(-6deg); }
.ghost-apply { left: 4%; top: 22%; font-size: clamp(18px, 2.4vw, 32px); color: rgba(2, 5, 31, .10); transform: rotate(5deg); }

.campaign-stage .movement-pulse {
  z-index: 5;
}

.campaign-cta {
  display: inline-grid;
  grid-template-columns: minmax(0, auto) 24px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  margin-top: -22px;
  padding: 8px 30px;
  color: #02051f;
  border: 3px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, #ff2f74, #ff743f 68%, #8d5cff) border-box;
  box-shadow: 0 18px 42px rgba(2, 5, 31, .06);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 850;
}

.campaign-hero > .campaign-cta {
  margin-top: clamp(20px, 2.5vw, 30px);
}

.campaign-cta img {
  width: 38px;
}

.campaign-cta b {
  color: #ff2f74;
  font-size: 34px;
  line-height: 1;
}

.campaign-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  color: #02051f;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-proof strong {
  color: #ff2f74;
}

.campaign-proof i {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #ff2f74, #ff743f, #8d5cff);
}

.talent-free-note,
.gate-note {
  margin: 10px 0 0;
  color: #ff2f74;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 900;
  text-transform: uppercase;
}

.launch-gate {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  margin-top: 8px;
  padding: clamp(42px, 7vw, 84px) 18px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: center;
  overflow: hidden;
}

.gate-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vw, 740px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    conic-gradient(from -130deg, #ff2f74 0deg, #ff743f var(--progress, 0deg), rgba(2, 5, 31, .06) var(--progress, 0deg), rgba(2, 5, 31, .06) 360deg);
  opacity: .9;
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%, #000 64%, transparent 65%);
  mask: radial-gradient(circle, transparent 58%, #000 59%, #000 64%, transparent 65%);
}

.gate-copy,
.gate-meter,
.gate-cta {
  position: relative;
  z-index: 1;
}

.gate-copy span {
  color: #02051f;
  font-size: clamp(18px, 2.3vw, 34px);
  letter-spacing: .22em;
}

.gate-copy strong {
  color: #02051f;
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 950;
  line-height: .86;
  text-transform: uppercase;
}

.gate-copy strong em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #ff2f74, #ff743f, #8d5cff);
  -webkit-background-clip: text;
  background-clip: text;
}

.count-up {
  display: inline-block;
  min-width: 1.2em;
}

.gate-copy p {
  max-width: none;
  margin-top: 22px;
  color: #02051f;
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.gate-meter {
  width: min(580px, 80vw);
  height: 5px;
  background: rgba(2, 5, 31, .09);
}

.gate-meter span {
  min-width: 0;
  background: linear-gradient(90deg, #ff2f74, #ff743f, #8d5cff);
}

.gate-note {
  margin-top: -4px;
}

.gate-cta {
  margin-top: 12px;
}

.movement-manifest {
  margin-top: 24px;
}

.movement-call {
  padding-block: clamp(26px, 4vw, 44px);
  background: #02051f;
}

.movement-call span {
  color: #ff5c70;
  letter-spacing: 0;
}

.movement-call strong {
  max-width: 980px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: .98;
}

.movement-manifest h2 {
  color: #02051f;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.movement-manifest p {
  color: #53627c;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.42;
}

.campaign-legal {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: start;
  padding: 28px 0 44px;
  color: #53627c;
  border-top: 1px solid rgba(2, 5, 31, .10);
  font-size: 14px;
  line-height: 1.45;
}

.campaign-legal img {
  width: 118px;
  margin-top: 2px;
}

.campaign-legal strong {
  display: block;
  margin-bottom: 6px;
  color: #02051f;
  font-size: 16px;
}

.campaign-legal p {
  max-width: 760px;
  margin: 0;
}

.legal-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.legal-contact-link {
  grid-column: 3;
  justify-self: end;
  align-self: start;
  min-height: 44px;
  padding: 0 18px;
  color: #02051f;
  border: 1px solid rgba(2, 5, 31, .12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2, 5, 31, .06);
  font-weight: 850;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 86px);
  width: min(1120px, calc(100% - 36px));
  min-height: calc(100vh - 98px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 72px;
  align-items: start;
}

.contact-copy h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #02051f;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 650px;
  color: #53627c;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
}

.contact-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-reassurance span {
  padding: 8px 12px;
  color: #02051f;
  border: 1px solid rgba(2, 5, 31, .10);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(2, 5, 31, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.contact-form-page {
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 22px 54px rgba(2, 5, 31, .08);
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: #53627c;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: #02051f;
  border: 1px solid rgba(2, 5, 31, .12);
  border-radius: 12px;
  background: #fff;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 47, 116, .58);
  box-shadow: 0 0 0 4px rgba(255, 47, 116, .10);
}

.contact-form button {
  justify-self: start;
  min-height: 42px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-status {
  display: block;
  font-weight: 850;
}

.contact-status.success { color: #15803d; }
.contact-status.error { color: #dc2626; }

.legal-links span {
  color: #6b7891;
}

@media (max-width: 980px) {
  .campaign-hero {
    min-height: auto;
    padding-top: 26px;
  }

  .campaign-stage {
    min-height: 360px;
  }

  .gate-orbit {
    width: min(112vw, 680px);
  }
}

@media (max-width: 620px) {
  .campaign-hero {
    width: min(100% - 22px, 1040px);
    padding-bottom: 34px;
  }

  .campaign-copy h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .campaign-subline {
    font-size: clamp(24px, 9vw, 42px);
  }

  .campaign-stage {
    min-height: 340px;
  }

  .ghost-word {
    font-size: clamp(17px, 5.8vw, 27px);
  }

  .ghost-job { top: 5%; }
  .ghost-feed { left: 2%; bottom: 30%; }
  .ghost-cv { right: 1%; bottom: 26%; }
  .ghost-apply { left: 3%; top: 23%; font-size: clamp(16px, 4.8vw, 24px); }

  .campaign-cta {
    grid-template-columns: minmax(0, 1fr) 20px;
    width: min(100%, 420px);
    min-height: 66px;
    gap: 10px;
    padding: 8px 18px 8px 24px;
    font-size: 17px;
    text-align: left;
  }

  .campaign-cta img {
    width: 31px;
  }

  .campaign-proof {
    display: grid;
    gap: 8px;
  }

  .campaign-proof i {
    justify-self: center;
  }

  .campaign-legal {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 34px;
  }

  .legal-links {
    grid-column: auto;
    display: grid;
    gap: 6px;
  }

  .legal-contact-link {
    grid-column: auto;
    justify-self: start;
  }

  .contact-page {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .contact-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
  }
}

/* PULS movement homepage */
.campaign-hero {
  min-height: calc(100vh - 74px);
  padding-top: clamp(12px, 1.6vw, 22px);
  padding-bottom: 26px;
}

.campaign-copy {
  align-self: end;
}

.campaign-kicker {
  font-size: clamp(34px, 5.4vw, 86px);
  letter-spacing: .01em;
}

.campaign-copy h1 {
  max-width: 840px;
  font-size: clamp(54px, 7.4vw, 104px);
}

.hero-rhythm {
  margin: clamp(12px, 1.7vw, 20px) auto 0;
  color: #02051f;
  font-size: clamp(28px, 4.1vw, 62px);
  font-weight: 950;
  line-height: .98;
  text-transform: uppercase;
}

.hero-rhythm strong {
  color: transparent;
  background: linear-gradient(90deg, #ff2f74 0%, #ff743f 66%, #8d5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-promise {
  max-width: 720px;
  margin: clamp(12px, 1.8vw, 22px) auto 0;
  color: #263149;
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 760;
  line-height: 1.24;
}

.campaign-stage {
  min-height: clamp(340px, 34vw, 470px);
  margin-top: clamp(6px, 1vw, 14px);
}

.campaign-stage .ring-one { width: min(104vw, 860px); }
.campaign-stage .ring-two { width: min(86vw, 690px); }
.campaign-stage .ring-three { width: min(62vw, 500px); }

.campaign-stage .movement-pulse {
  width: clamp(232px, 26vw, 338px);
  animation: pulseLift 3.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.campaign-stage .movement-pulse::after {
  position: absolute;
  inset: -90px;
  z-index: -2;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 47, 116, .20), transparent 48%),
    radial-gradient(circle, rgba(141, 92, 255, .16), transparent 64%);
  filter: blur(12px);
  animation: heroHalo 5.8s ease-in-out infinite;
}

.campaign-stage .movement-pulse img {
  width: 60%;
  transform: none;
  filter:
    drop-shadow(0 10px 18px rgba(255, 47, 116, .18))
    drop-shadow(0 18px 26px rgba(2, 5, 31, .08));
}

.campaign-stage .movement-pulse.reference-pulse {
  width: clamp(320px, 42vw, 540px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: referencePulseBreath 5.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.campaign-stage .movement-pulse.reference-pulse::before {
  display: block;
  position: absolute;
  inset: 9%;
  z-index: -2;
  content: "";
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle, rgba(255, 47, 116, .12) 0 1px, transparent 1px 62px),
    repeating-radial-gradient(circle, rgba(141, 92, 255, .08) 0 1px, transparent 1px 96px);
  opacity: .68;
  transform: scale(1.42);
  animation: referenceWaves 6.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.campaign-stage .movement-pulse.reference-pulse::after {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: -1;
  width: 76%;
  height: 30%;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 47, 116, .34), rgba(255, 116, 63, .22) 42%, rgba(141, 92, 255, .20) 62%, transparent 78%);
  filter: blur(18px);
  transform: translateX(-50%);
  animation: referenceGlow 5.8s ease-in-out infinite;
}

.campaign-stage .movement-pulse.reference-pulse img {
  width: 100%;
  border-radius: 999px;
  filter: drop-shadow(0 26px 58px rgba(2, 5, 31, .08));
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 56%, rgba(0, 0, 0, .82) 68%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 56%, rgba(0, 0, 0, .82) 68%, transparent 82%);
  animation: referenceImageFloat 7.4s cubic-bezier(.2, .8, .2, 1) infinite;
}

@keyframes referencePulseBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.012); }
}

@keyframes referenceImageFloat {
  0%, 100% { transform: scale(1); opacity: .98; }
  50% { transform: scale(1.018); opacity: 1; }
}

@keyframes referenceGlow {
  0%, 100% { opacity: .62; transform: translateX(-50%) scale(.94); }
  50% { opacity: .92; transform: translateX(-50%) scale(1.08); }
}

@keyframes referenceWaves {
  0% { opacity: .38; transform: scale(1.24); }
  55% { opacity: .70; transform: scale(1.48); }
  100% { opacity: .38; transform: scale(1.24); }
}

.campaign-stage .pulse-caption {
  bottom: 18px;
  color: rgba(2, 5, 31, .72);
  font-size: clamp(14px, 1.32vw, 19px);
  font-weight: 900;
  letter-spacing: .02em;
  z-index: 8;
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 34px rgba(2, 5, 31, .045);
  backdrop-filter: blur(10px);
}

.campaign-stage .collective-ring {
  animation-duration: 5.8s;
}

.puls-button-3d {
  --puls-size: clamp(240px, 27vw, 350px);
  position: relative;
  z-index: 8;
  display: grid;
  place-items: center;
  width: var(--puls-size);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  isolation: isolate;
}

.puls-button-3d.is-animated {
  animation: pulsButtonBreath 5.8s cubic-bezier(.2, .8, .2, 1) infinite;
}

.puls-button-3d > span {
  grid-area: 1 / 1;
}

.puls-waves {
  position: absolute;
  inset: -78%;
  z-index: -4;
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle, rgba(255, 47, 116, .105) 0 1px, transparent 1px 82px),
    repeating-radial-gradient(circle, rgba(141, 92, 255, .075) 0 1px, transparent 1px 128px);
  opacity: .68;
  mask: radial-gradient(circle, transparent 0 28%, #000 29% 80%, transparent 81%);
  animation: pulsWaveBreath 7.2s cubic-bezier(.2, .8, .2, 1) infinite;
}

.puls-glow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  z-index: -3;
  width: 168%;
  height: 58%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 66, 107, .44) 0 17%, rgba(255, 116, 63, .32) 18% 39%, rgba(141, 92, 255, .25) 40% 62%, transparent 74%);
  filter: blur(18px);
  transform: translateX(-50%);
  animation: pulsHaloBreath 6.8s ease-in-out infinite;
}

.puls-base {
  position: absolute;
  inset: 4%;
  z-index: -2;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(232, 226, 235, .92));
  box-shadow:
    0 30px 0 rgba(224, 218, 226, .76),
    0 46px 62px rgba(2, 5, 31, .15),
    0 68px 118px rgba(255, 47, 116, .16),
    0 84px 150px rgba(141, 92, 255, .12);
}

.puls-face {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, #ffffff 0 32%, #fff 33% 50%, #faf8fb 51% 68%, #ede8ef 69% 100%);
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, .98),
    inset 0 -32px 54px rgba(2, 5, 31, .11),
    inset 0 0 0 18px rgba(255, 255, 255, .42);
}

.puls-face::before {
  position: absolute;
  inset: 11%;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .88) 0 38%, rgba(255, 255, 255, .34) 39% 64%, transparent 65%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -18px 30px rgba(2, 5, 31, .045);
}

.puls-face img {
  position: relative;
  z-index: 1;
  display: block;
  width: 60%;
  filter:
    drop-shadow(0 10px 18px rgba(255, 47, 116, .18))
    drop-shadow(0 18px 26px rgba(2, 5, 31, .08));
}

.problem-puls-button {
  --puls-size: clamp(190px, 22vw, 272px);
}

@keyframes pulsButtonBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@keyframes pulsHaloBreath {
  0%, 100% { opacity: .70; transform: translateX(-50%) scale(.96); }
  50% { opacity: .94; transform: translateX(-50%) scale(1.06); }
}

@keyframes pulsWaveBreath {
  0%, 100% { opacity: .48; transform: scale(.965); }
  50% { opacity: .76; transform: scale(1.035); }
}

.campaign-proof {
  max-width: min(100%, 780px);
}

.campaign-proof span {
  white-space: nowrap;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: #ff2f74;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  max-width: 940px;
  margin-bottom: 12px;
}

.section-head > p:not(.section-eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #53627c;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.35;
}

.section-head h2,
.message-lab h2,
.why-copy h2 {
  margin: 0;
  color: #02051f;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 950;
  line-height: .94;
  text-transform: uppercase;
}

.message-lab {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 6vw, 74px) 0 24px;
}

.message-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.message-options article {
  display: grid;
  align-content: space-between;
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(2, 5, 31, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(2, 5, 31, .06);
}

.message-options article.active {
  border-color: rgba(255, 47, 116, .38);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(110deg, rgba(255, 47, 116, .28), rgba(255, 116, 63, .18), rgba(141, 92, 255, .26)) border-box;
}

.message-options span {
  color: #ff2f74;
  font-weight: 950;
}

.message-options strong {
  color: #02051f;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.08;
}

.launch-gate {
  margin-top: clamp(24px, 4vw, 48px);
}

.gate-copy span {
  display: block;
  margin-bottom: 14px;
  color: #ff2f74;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.why-puls {
  padding-top: clamp(20px, 4vw, 48px);
}

.gate-copy strong {
  font-size: clamp(50px, 8.4vw, 118px);
}

.gate-copy p {
  letter-spacing: .08em;
}

.how-it-works {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  padding-top: clamp(36px, 6vw, 78px);
}

.how-it-works article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at 12% 0%, rgba(255, 47, 116, .10), transparent 32%);
}

.how-it-works article strong {
  font-size: 18px;
  font-weight: 950;
}

.how-it-works h2 {
  margin-top: 18px;
}

.who-pulses,
.live-network {
  display: grid;
  gap: 22px;
  padding: clamp(40px, 7vw, 86px) 0;
}

.pulse-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pulse-segments article {
  position: relative;
  min-height: 150px;
  padding: 18px 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(2, 5, 31, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 18px 44px rgba(2, 5, 31, .055);
  animation: profileSignalFloat 5.4s ease-in-out infinite;
}

.pulse-segments article::after {
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 88px;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 47, 116, .18), transparent 64%);
}

.pulse-segments article::before {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 10px;
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: #ff405c;
  box-shadow: 0 0 0 8px rgba(255, 64, 92, .12);
  animation: liveBlink 1.9s ease-in-out infinite;
}

.pulse-segments article:nth-child(2) { animation-delay: .35s; }
.pulse-segments article:nth-child(3) { animation-delay: .7s; }
.pulse-segments article:nth-child(4) { animation-delay: 1.05s; }
.pulse-segments article:nth-child(5) { animation-delay: 1.4s; }
.pulse-segments article:nth-child(6) { animation-delay: 1.75s; }

.pulse-segments span,
.network-grid span {
  display: block;
  color: #53627c;
  font-weight: 850;
}

.pulse-segments strong {
  display: block;
  margin-top: 24px;
  color: #02051f;
  font-size: clamp(26px, 3vw, 42px);
  line-height: .96;
}

.pulse-segments small {
  display: block;
  margin-top: 8px;
  color: #ff2f74;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 900;
}

.why-puls {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, .95fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) 0;
}

.why-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(390px, 42vw, 520px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 47, 116, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 62%, #fbfbfd 100%);
  box-shadow:
    inset 0 0 0 1px rgba(2, 5, 31, .06),
    0 30px 86px rgba(2, 5, 31, .09);
}

.why-visual::before {
  position: absolute;
  inset: 8%;
  content: "";
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle, rgba(255, 47, 116, .10) 0 1px, transparent 1px 74px),
    repeating-radial-gradient(circle, rgba(141, 92, 255, .08) 0 1px, transparent 1px 112px);
  opacity: .56;
  mask: radial-gradient(circle, transparent 0 28%, #000 29% 76%, transparent 77%);
  pointer-events: none;
}

.why-visual::after {
  position: absolute;
  left: 50%;
  top: 53%;
  width: min(86%, 500px);
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .72) 0 28%, transparent 29%),
    radial-gradient(circle, rgba(255, 47, 116, .13), transparent 46%),
    radial-gradient(circle at 38% 62%, rgba(141, 92, 255, .13), transparent 58%),
    radial-gradient(circle at 66% 62%, rgba(255, 116, 63, .14), transparent 54%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.relief-pulse {
  position: relative;
  z-index: 8;
  display: grid;
  place-items: center;
  width: clamp(190px, 22vw, 272px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0 46%, #faf8fb 47% 76%, #f1edf3 100%);
  box-shadow:
    0 20px 44px rgba(2, 5, 31, .08),
    0 30px 78px rgba(255, 47, 116, .14),
    0 44px 96px rgba(141, 92, 255, .11),
    inset 0 1px 0 rgba(255, 255, 255, .98),
    inset 0 -12px 22px rgba(2, 5, 31, .045);
}

.relief-pulse::before,
.relief-pulse::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: inherit;
}

.relief-pulse::before {
  inset: -10%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .62) 0 48%, rgba(255, 255, 255, .16) 49% 68%, transparent 69%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 116, .055),
    0 14px 42px rgba(255, 47, 116, .06);
}

.relief-pulse::after {
  left: 50%;
  bottom: -18%;
  width: 132%;
  height: 34%;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 66, 107, .30) 0 18%, rgba(255, 116, 63, .20) 19% 38%, rgba(141, 92, 255, .18) 39% 60%, transparent 71%);
  filter: blur(14px);
  transform: translateX(-50%);
}

.relief-pulse img {
  width: 62%;
  filter:
    drop-shadow(0 8px 14px rgba(255, 47, 116, .15))
    drop-shadow(0 12px 20px rgba(2, 5, 31, .045));
}

.why-visual span {
  position: absolute;
  z-index: 6;
  color: rgba(2, 5, 31, .28);
  font-size: clamp(16px, 1.55vw, 24px);
  font-weight: 950;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 47, 116, .42);
  text-decoration-thickness: 2px;
  white-space: nowrap;
  text-shadow: 0 10px 24px rgba(255, 255, 255, .84);
  filter: none;
  transform-origin: center;
}

.why-visual span:nth-child(1) { top: 13%; left: 9%; transform: rotate(-5deg); opacity: .42; }
.why-visual span:nth-child(2) { top: 15%; right: 8%; transform: rotate(4deg); opacity: .42; }
.why-visual span:nth-child(3) { left: 9%; bottom: 13%; transform: rotate(4deg); opacity: .40; }
.why-visual span:nth-child(4) { right: 12%; bottom: 14%; transform: rotate(-4deg); opacity: .38; }
.why-visual span:nth-child(5) { top: 42%; left: 6%; transform: rotate(-7deg); opacity: .30; }
.why-visual span:nth-child(6) { top: 42%; right: 8%; transform: rotate(7deg); opacity: .30; }
.why-visual span:nth-child(n+7) {
  z-index: 2;
  color: rgba(2, 5, 31, .16);
  font-size: clamp(11px, 1vw, 15px);
  text-decoration-color: rgba(255, 47, 116, .28);
  filter: blur(.35px);
  opacity: .24;
}
.why-visual span:nth-child(7) { top: 25%; left: 7%; transform: rotate(8deg); }
.why-visual span:nth-child(8) { top: 26%; right: 6%; transform: rotate(-8deg); }
.why-visual span:nth-child(9) { left: 5%; bottom: 30%; transform: rotate(7deg); }
.why-visual span:nth-child(10) { right: 7%; bottom: 30%; transform: rotate(-7deg); }
.why-visual span:nth-child(11) { top: 7%; left: 39%; transform: rotate(-2deg); opacity: .18; }
.why-visual span:nth-child(12) { top: 57%; left: 7%; transform: rotate(-5deg); opacity: .20; }
.why-visual span:nth-child(13) { top: 58%; right: 8%; transform: rotate(5deg); opacity: .20; }
.why-visual span:nth-child(14) { left: 30%; bottom: 7%; transform: rotate(3deg); opacity: .18; }

.why-copy p:not(.section-eyebrow) {
  max-width: 620px;
  color: #53627c;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.42;
}

.why-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.why-copy li {
  color: #02051f;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.why-copy li::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-right: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, #ff2f74, #ff743f, #8d5cff);
}

.network-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  gap: 14px;
}

.network-grid article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(2, 5, 31, .09);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(2, 5, 31, .06);
}

.network-grid p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(2, 5, 31, .08);
}

.network-grid p strong {
  color: #02051f;
}

.network-grid p small,
.network-grid article > small {
  color: #64748b;
  font-weight: 760;
}

.network-grid article > strong {
  display: block;
  margin: 30px 0 10px;
  color: transparent;
  font-size: clamp(64px, 7vw, 104px);
  line-height: .85;
  background: linear-gradient(90deg, #ff2f74, #ff743f, #8d5cff);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes heroHalo {
  0%, 100% { opacity: .58; transform: scale(.94); }
  50% { opacity: .95; transform: scale(1.08); }
}

@keyframes profileSignalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 980px) {
  .message-options,
  .pulse-segments,
  .network-grid {
    grid-template-columns: 1fr 1fr;
  }

  .network-grid article:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .why-puls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .campaign-hero {
    min-height: auto;
  }

  .campaign-stage .movement-pulse {
    width: clamp(220px, 62vw, 290px);
  }

  .campaign-stage .pulse-caption {
    bottom: 0;
  }

  .campaign-proof span {
    white-space: normal;
  }

  .message-options,
  .how-it-works,
  .pulse-segments,
  .network-grid,
  .why-puls {
    grid-template-columns: 1fr;
  }

  .message-options article,
  .how-it-works article,
  .pulse-segments article,
  .network-grid article {
    min-height: auto;
  }
}

