:root {
  --beam-ink: #09110d;
  --beam-ink-soft: #3f4b44;
  --beam-muted: #778179;
  --beam-paper: #f5f7f1;
  --beam-surface: #ffffff;
  --beam-surface-soft: #eef2ea;
  --beam-line: #dce3da;
  --beam-line-strong: #c5cfc3;
  --beam-green: #b8ff6a;
  --beam-green-strong: #9bf342;
  --beam-green-soft: #e9ffd2;
  --beam-red: #b42318;
  --beam-red-soft: #fff1ef;
  --beam-shadow: 0 30px 80px rgba(19, 44, 29, .10);
  --beam-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --beam-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--beam-ink);
  background: var(--beam-paper);
  font-family: var(--beam-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { appearance: none; }

::selection {
  color: var(--beam-ink);
  background: var(--beam-green);
}

[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--beam-ink);
  background: var(--beam-green);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.claim-page {
  --claim-gutter: clamp(20px, 4.2vw, 72px);
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% 46%, rgba(184, 255, 106, .24), transparent 25rem),
    linear-gradient(135deg, #fafbf8 0%, var(--beam-paper) 56%, #edf3e8 100%);
}

.claim-page::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(9, 17, 13, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 17, 13, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 54%);
}

.beam-header {
  position: relative;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 var(--claim-gutter);
  border-bottom: 1px solid rgba(9, 17, 13, .08);
  background: rgba(250, 251, 248, .78);
  backdrop-filter: blur(20px) saturate(140%);
}

.beam-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .18em;
}

.beam-brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--beam-ink);
  background: var(--beam-green);
  border: 1px solid rgba(9, 17, 13, .10);
  border-radius: 11px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 8px 20px rgba(121, 193, 45, .18);
}

.claim-header-link {
  color: var(--beam-ink-soft);
  font-size: 12px;
  font-weight: 680;
  transition: color .18s ease, transform .18s ease;
}

.claim-header-link:hover {
  color: var(--beam-ink);
  transform: translateY(-1px);
}

.claim-shell {
  --pointer-x: 70%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 136px);
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(520px, 700px);
  justify-content: center;
  align-items: center;
  gap: clamp(50px, 7vw, 116px);
  isolation: isolate;
  overflow: clip;
  padding: clamp(42px, 6vh, 76px) var(--claim-gutter);
}

.claim-field-canvas {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .48;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.claim-shell::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 70%;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(75, 98, 80, .08);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 105px, rgba(61, 86, 66, .07) 106px, transparent 107px),
    radial-gradient(circle, rgba(184, 255, 106, .13), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: field-breathe 9s ease-in-out infinite alternate;
}

.claim-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--pointer-y);
  left: 8%;
  width: 84%;
  height: 1px;
  opacity: .24;
  background: linear-gradient(90deg, transparent, var(--beam-green-strong), transparent);
  transform: translateY(-50%);
  transition: top .2s ease;
  pointer-events: none;
}

.claim-context {
  position: relative;
  min-width: 0;
  align-self: center;
  padding: 14px 0;
  animation: context-arrive .68s cubic-bezier(.2, .72, .2, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--beam-ink-soft);
  font-family: var(--beam-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--beam-green-strong);
  border-radius: 999px;
}

.claim-context h1 {
  max-width: 470px;
  margin: 22px 0 20px;
  font-size: clamp(64px, 6.8vw, 106px);
  font-weight: 830;
  line-height: .86;
  letter-spacing: -.075em;
}

.claim-context h1 em {
  color: var(--beam-ink);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--beam-green);
  text-decoration-thickness: .17em;
  text-underline-offset: -.04em;
  text-decoration-skip-ink: none;
}

.claim-context-copy {
  max-width: 390px;
  margin: 0;
  color: var(--beam-ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  letter-spacing: -.018em;
}

.claim-beacon {
  position: relative;
  width: 228px;
  height: 130px;
  margin: 28px 0 24px 8px;
}

.beacon-ring {
  position: absolute;
  top: 50%;
  left: 76px;
  border: 1px solid rgba(31, 54, 38, .15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { width: 86px; height: 86px; animation: beacon-pulse 3.8s ease-out infinite; }
.ring-b { width: 128px; height: 128px; animation: beacon-pulse 3.8s .8s ease-out infinite; }
.ring-c { width: 166px; height: 166px; animation: beacon-pulse 3.8s 1.6s ease-out infinite; }

.beacon-core {
  position: absolute;
  top: 50%;
  left: 76px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--beam-ink);
  background: var(--beam-green);
  border: 1px solid rgba(9, 17, 13, .11);
  border-radius: 18px;
  font-size: 28px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 40px rgba(102, 164, 36, .22);
}

.beacon-label {
  position: absolute;
  top: 50%;
  left: 130px;
  width: 96px;
  color: var(--beam-muted);
  font-family: var(--beam-mono);
  font-size: 8px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: .1em;
  transform: translateY(-50%);
}

.claim-promises {
  max-width: 410px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 17, 13, .13);
}

.claim-promises li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(9, 17, 13, .10);
}

.claim-promises li > span {
  padding-top: 2px;
  color: #5e8b2d;
  font-family: var(--beam-mono);
  font-size: 9px;
  font-weight: 700;
}

.claim-promises p {
  margin: 0;
  color: var(--beam-muted);
  font-size: 11px;
  line-height: 1.45;
}

.claim-promises strong {
  display: block;
  margin-bottom: 3px;
  color: var(--beam-ink);
  font-size: 12px;
  font-weight: 730;
}

.claim-panel {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100svh - 156px));
  display: flex;
  flex-direction: column;
  align-self: center;
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 54px) clamp(30px, 5vw, 64px);
  color: var(--beam-ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(9, 17, 13, .10);
  border-radius: 30px;
  box-shadow: var(--beam-shadow);
  backdrop-filter: blur(22px) saturate(140%);
  animation: panel-arrive .72s .08s cubic-bezier(.2, .72, .2, 1) both;
}

.claim-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 54px;
  width: 86px;
  height: 4px;
  background: var(--beam-green);
  border-radius: 0 0 6px 6px;
}

.claim-progress {
  display: flex;
  align-items: center;
  margin-bottom: clamp(40px, 6vh, 70px);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9aa39c;
  font-family: var(--beam-mono);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .28s ease;
}

.progress-step i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--beam-line-strong);
  border-radius: 50%;
  font-style: normal;
  transition: color .28s ease, background .28s ease, border-color .28s ease, transform .28s ease;
}

.progress-step.is-active { color: var(--beam-ink); }
.progress-step.is-active i {
  background: var(--beam-green);
  border-color: var(--beam-green);
  transform: scale(1.05);
}
.progress-step.is-done { color: var(--beam-ink-soft); }
.progress-step.is-done i {
  color: var(--beam-green);
  background: var(--beam-ink);
  border-color: var(--beam-ink);
}

.progress-line {
  flex: 1;
  height: 1px;
  margin: 0 12px;
  overflow: hidden;
  background: var(--beam-line);
}

.progress-line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--beam-green-strong);
  transform: translateX(-120%);
}

.is-state-changing .progress-line::after { animation: progress-beam .72s ease both; }

.claim-state {
  width: 100%;
  max-width: 570px;
  margin: auto;
}

.is-state-changing .claim-state:not([hidden]) { animation: state-enter .48s cubic-bezier(.2, .72, .2, 1) both; }

.panel-heading { margin-bottom: 30px; }

.panel-kicker {
  margin: 0 0 13px;
  color: #667169;
  font-family: var(--beam-mono);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .12em;
}

.panel-heading h2,
.claim-state > h2 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.055em;
}

.panel-heading > p:last-child,
.claim-state > p {
  margin: 0;
  color: var(--beam-muted);
  font-size: 13px;
  line-height: 1.55;
}

#claim-form {
  display: grid;
  gap: 18px;
}

.claim-field {
  display: grid;
  gap: 8px;
}

.claim-field > span:first-child {
  color: var(--beam-ink-soft);
  font-size: 11px;
  font-weight: 730;
}

.claim-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--beam-ink);
  background: var(--beam-paper);
  border: 1px solid transparent;
  border-radius: 13px;
  outline: none;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.claim-field input:hover { background: #f0f4ed; }
.claim-field input:focus {
  background: var(--beam-surface);
  border-color: #7d937f;
  box-shadow: 0 0 0 4px rgba(184, 255, 106, .35);
  transform: translateY(-1px);
}
.claim-field input::placeholder { color: #a5ada7; }
.claim-field small {
  color: #8a948c;
  font-size: 10px;
  line-height: 1.35;
}

.beam-input-wrap {
  position: relative;
  display: block;
}

.beam-input-wrap input {
  padding-right: 156px;
  font-family: var(--beam-mono);
}

.beam-input-wrap strong {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #68736b;
  font-family: var(--beam-mono);
  font-size: 11px;
  font-weight: 650;
  transform: translateY(-50%);
  pointer-events: none;
}

.claim-submit,
.recovery-button {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.claim-submit {
  margin-top: 4px;
  color: var(--beam-ink);
  background: var(--beam-green);
  border: 1px solid rgba(9, 17, 13, .1);
  box-shadow: 0 12px 28px rgba(106, 169, 40, .17);
}

.claim-submit::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: var(--hot-y, 50%);
  left: var(--hot-x, 50%);
  background: rgba(255, 255, 255, .32);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .28s ease;
  pointer-events: none;
}

.claim-submit > * { position: relative; z-index: 1; }
.claim-submit:hover {
  background: var(--beam-green-strong);
  box-shadow: 0 16px 34px rgba(106, 169, 40, .23);
  transform: translateY(-2px);
}
.claim-submit:hover::before { transform: translate(-50%, -50%) scale(1); }
.claim-submit:active { transform: translateY(0); }
.claim-submit:disabled { opacity: .56; cursor: wait; transform: none; }
.claim-submit i,
.recovery-button i { font-size: 17px; font-style: normal; }

.form-error {
  padding: 12px 14px;
  color: var(--beam-red);
  background: var(--beam-red-soft);
  border: 1px solid #ffd0ca;
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.45;
}

.claim-separator {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 25px 0 13px;
  color: #929b94;
  font-family: var(--beam-mono);
  font-size: 8px;
  letter-spacing: .1em;
}
.claim-separator::before,
.claim-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--beam-line);
}

.organization-path {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid var(--beam-line);
  border-radius: 13px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.organization-path:hover {
  background: var(--beam-paper);
  border-color: var(--beam-line-strong);
  transform: translateY(-1px);
}
.organization-path strong,
.organization-path small { display: block; }
.organization-path strong { font-size: 11px; font-weight: 740; }
.organization-path small { margin-top: 4px; color: var(--beam-muted); font-size: 9px; }
.organization-path i { font-style: normal; }

.state-symbol {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--beam-ink);
  background: var(--beam-green-soft);
  border: 1px solid #c9eaaa;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(102, 164, 36, .12);
}

.state-symbol::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(90, 121, 91, .18);
  border-radius: 30px;
  animation: symbol-float 3.5s ease-in-out infinite;
}

.mail-symbol span {
  position: relative;
  width: 30px;
  height: 22px;
  border: 2px solid var(--beam-ink);
  border-radius: 4px;
}
.mail-symbol span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 17px;
  height: 17px;
  border-right: 2px solid var(--beam-ink);
  border-bottom: 2px solid var(--beam-ink);
  transform: translateX(-50%) rotate(45deg);
}
.verify-symbol {
  background: var(--beam-green);
  border-color: var(--beam-green-strong);
  font-family: var(--beam-mono);
  font-size: 25px;
  font-weight: 900;
}
.invalid-symbol {
  color: var(--beam-red);
  background: var(--beam-red-soft);
  border-color: #ffd0ca;
  font-size: 34px;
}

[data-state="email"] > p:not(.panel-kicker),
[data-state="confirm"] > p:not(.panel-kicker),
[data-state="complete"] > p:not(.panel-kicker),
[data-state="invalid"] > p:not(.panel-kicker) {
  max-width: 500px;
  margin-top: 16px;
}

.email-check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--beam-line);
  border-bottom: 1px solid var(--beam-line);
}
.email-check-list span { color: var(--beam-ink-soft); font-size: 11px; }
.email-check-list i { margin-right: 10px; color: #5b8e27; font-style: normal; }

.text-button {
  display: inline-flex;
  gap: 12px;
  padding: 0;
  color: var(--beam-ink-soft);
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
}
.text-button:hover { color: var(--beam-ink); }

.identity-preview,
.claimed-identity {
  position: relative;
  margin: 26px 0 21px;
  overflow: hidden;
  padding: 23px;
  color: var(--beam-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), transparent 58%),
    var(--beam-green-soft);
  border: 1px solid #cfe9b5;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(66, 105, 54, .10);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease;
}

.identity-preview::after,
.claimed-identity::after {
  content: "B";
  position: absolute;
  right: 18px;
  bottom: -20px;
  color: rgba(9, 17, 13, .055);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.identity-preview:hover,
.claimed-identity:hover {
  box-shadow: 0 20px 46px rgba(66, 105, 54, .14);
}

.identity-preview small,
.claimed-identity small {
  display: block;
  margin-bottom: 11px;
  color: #55712f;
  font-family: var(--beam-mono);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
}

.identity-preview strong,
.claimed-identity strong {
  position: relative;
  z-index: 1;
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--beam-mono);
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.25;
}
.identity-preview > span {
  display: block;
  margin-top: 16px;
  color: #5f6f62;
  font-family: var(--beam-mono);
  font-size: 9px;
}
.identity-preview i { color: #538723; font-style: normal; }
.confirm-note { margin-bottom: 22px !important; font-size: 11px !important; }

.completion-orbit {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(9, 17, 13, .14);
  border-radius: 50%;
}
.completion-orbit::before,
.completion-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(9, 17, 13, .10);
  border-radius: 50%;
}
.completion-orbit::before { inset: -11px; animation: symbol-float 3.5s ease-in-out infinite; }
.completion-orbit::after { inset: 15px; }
.completion-orbit span {
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--beam-ink);
  background: var(--beam-green);
  border-radius: 15px;
  font-size: 25px;
  font-weight: 900;
}

.claimed-identity > span {
  display: block;
  margin-top: 9px;
  color: #6d786f;
  font-family: var(--beam-mono);
  font-size: 8px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.claimed-identity > div {
  display: flex;
  gap: 8px;
  margin-top: 19px;
  color: #5f6b62;
  font-family: var(--beam-mono);
  font-size: 8px;
  letter-spacing: .08em;
}
.claimed-identity > div i { color: #528822; font-style: normal; }
.open-network-button { margin-top: 23px; }

.recovery-button {
  margin-top: 10px;
  color: var(--beam-ink);
  background: var(--beam-surface);
  border: 1px solid var(--beam-line-strong);
  box-shadow: none;
}
.recovery-button:hover { background: var(--beam-paper); transform: translateY(-1px); }
.result-home { margin-top: 21px; }
.anchor-submit { text-decoration: none; }

.claim-loading {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  color: var(--beam-muted);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
  font-family: var(--beam-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.loading-beam {
  position: relative;
  width: 90px;
  height: 3px;
  overflow: hidden;
  background: var(--beam-line);
  border-radius: 999px;
}
.loading-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 36px;
  background: var(--beam-green-strong);
  animation: load 1s ease-in-out infinite;
}

.claim-footer {
  position: relative;
  z-index: 2;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--claim-gutter);
  color: #7b857e;
  background: rgba(250, 251, 248, .78);
  border-top: 1px solid rgba(9, 17, 13, .08);
  font-family: var(--beam-mono);
  font-size: 8px;
  letter-spacing: .04em;
  backdrop-filter: blur(16px);
}
.claim-footer nav { display: flex; gap: 20px; }
.claim-footer a { transition: color .18s ease; }
.claim-footer a:hover { color: var(--beam-ink); }

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

@keyframes panel-arrive {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes state-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes progress-beam {
  from { transform: translateX(-120%); }
  to { transform: translateX(340%); }
}

@keyframes field-breathe {
  from { opacity: .7; transform: translate(-50%, -50%) scale(.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes beacon-pulse {
  0% { opacity: .62; transform: translate(-50%, -50%) scale(.86); }
  78%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes symbol-float {
  0%, 100% { transform: translateY(0); opacity: .62; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes load {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

@media (max-width: 1100px) {
  .claim-shell {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 48px 64px;
  }

  .claim-context {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0 40px;
    justify-self: center;
    padding: 0 6px;
  }

  .claim-context .eyebrow,
  .claim-context h1,
  .claim-context-copy { grid-column: 1; }

  .claim-context h1 {
    max-width: 590px;
    margin-block: 20px 18px;
    font-size: clamp(58px, 10vw, 86px);
  }

  .claim-beacon {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    margin: 0;
  }

  .claim-promises { display: none; }

  .claim-panel {
    width: min(100%, 760px);
    min-height: 690px;
    justify-self: center;
  }

  .claim-shell::before { left: 50%; width: 960px; }
}

@media (min-width: 760px) and (max-width: 1100px) and (max-height: 850px) {
  .claim-shell {
    grid-template-columns: minmax(220px, 300px) minmax(470px, 1fr);
    gap: 28px;
    align-items: center;
    padding-block: 28px;
  }

  .claim-context {
    display: block;
    width: auto;
    padding: 0;
  }

  .claim-context h1 { font-size: clamp(50px, 6.4vw, 68px); }
  .claim-context-copy { font-size: 14px; }
  .claim-beacon { width: 190px; height: 126px; margin: 20px 0 12px; }
  .beacon-ring { left: 61px; }
  .beacon-core { left: 61px; }
  .beacon-label { left: 108px; }
  .ring-a { width: 68px; height: 68px; }
  .ring-b { width: 100px; height: 100px; }
  .ring-c { width: 128px; height: 128px; }
  .claim-promises { display: none; }

  .claim-panel {
    min-height: min(650px, calc(100svh - 120px));
    padding: 30px 38px;
  }

  .claim-progress { margin-bottom: 32px; }
  .panel-heading { margin-bottom: 24px; }
  .panel-heading h2,
  .claim-state > h2 { font-size: 38px; }
  #claim-form { gap: 14px; }
  .claim-field input { height: 49px; }
  .claim-submit { min-height: 52px; }
  .claim-separator { margin-top: 19px; }
  .organization-path { min-height: 54px; }
}

@media (max-width: 620px) {
  .claim-page {
    background: var(--beam-surface);
  }

  .claim-page::before {
    opacity: .3;
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black, transparent 38%);
  }

  .beam-header {
    min-height: 64px;
    padding-inline: 18px;
    background: rgba(255, 255, 255, .86);
  }

  .beam-brand-mark {
    width: 33px;
    height: 33px;
    border-radius: 10px;
    font-size: 18px;
  }

  .claim-header-link { font-size: 10px; }

  .claim-shell {
    display: block;
    min-height: calc(100svh - 64px);
    padding: 22px 18px 46px;
  }

  .claim-shell::before {
    top: 235px;
    left: 50%;
    width: 540px;
    opacity: .6;
  }

  .claim-shell::after { left: 0; width: 100%; opacity: .16; }
  .claim-field-canvas { opacity: .32; }

  .claim-context {
    display: block;
    width: 100%;
    padding: 0 2px 18px;
  }

  .claim-context h1 {
    max-width: 360px;
    margin: 14px 0 0;
    font-size: clamp(44px, 12.4vw, 52px);
    line-height: .88;
  }

  .claim-context-copy { display: none; }

  .claim-beacon,
  .claim-promises { display: none; }

  .claim-panel {
    width: calc(100% + 20px);
    min-height: 0;
    margin-left: -10px;
    overflow: visible;
    padding: 23px 20px 28px;
    background: rgba(255, 255, 255, .96);
    border-color: var(--beam-line);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(19, 44, 29, .09);
  }

  .claim-panel::before { left: 24px; width: 64px; }

  .claim-progress { margin-bottom: 27px; }

  .progress-step {
    gap: 0;
    font-size: 0;
  }

  .progress-step i { font-size: 9px; }
  .progress-line { margin-inline: 8px; }

  .panel-heading { margin-bottom: 20px; }

  .panel-heading h2,
  .claim-state > h2 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1;
  }

  #claim-form { gap: 16px; }
  .claim-field input { height: 52px; }
  .beam-input-wrap input { padding-right: 132px; }
  .beam-input-wrap strong { right: 13px; font-size: 9px; }
  .claim-submit { min-height: 56px; }

  .claim-separator { margin-top: 23px; }
  .organization-path { min-height: 62px; }
  .organization-path small { max-width: 240px; }

  .state-symbol { width: 66px; height: 66px; margin-bottom: 25px; border-radius: 20px; }
  .state-symbol::after { border-radius: 26px; }

  .identity-preview,
  .claimed-identity {
    padding: 20px;
    transform: none;
  }

  .claim-footer {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-inline: 18px;
    background: var(--beam-surface);
  }
}

@media (max-width: 370px) {
  .claim-shell { padding-inline: 14px; }
  .claim-panel { width: 100%; margin-left: 0; padding-inline: 16px; }
  .claim-header-link { max-width: 112px; text-align: right; }
  .organization-path small { max-width: 190px; }
}

@media (max-width: 620px) and (max-height: 820px) {
  .claim-shell { padding-top: 16px; }
  .claim-context { padding-bottom: 13px; }
  .claim-context h1 { font-size: 42px; }
  .claim-progress { margin-bottom: 22px; }
  .panel-heading { margin-bottom: 17px; }
  #claim-form { gap: 13px; }
  .claim-field input { height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
