:root {
  color-scheme: dark;
  --lw-bg: #030711;
  --lw-bg-soft: #081120;
  --lw-panel: rgba(8, 18, 32, 0.76);
  --lw-panel-strong: rgba(7, 17, 31, 0.94);
  --lw-border: rgba(35, 231, 255, 0.24);
  --lw-border-strong: rgba(255, 189, 66, 0.34);
  --lw-line: rgba(255, 255, 255, 0.08);
  --lw-text: #f5f9ff;
  --lw-muted: #9cb3c7;
  --lw-cyan: #23e7ff;
  --lw-cyan-deep: #1786d9;
  --lw-amber: #ffbd42;
  --lw-mint: #7bf2d2;
  --lw-rose: #ff6a8d;
  --lw-ink: #03101d;
  --lw-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --lw-shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.24);
  --lw-header-top: 12px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lw-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(35, 231, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(255, 189, 66, 0.12), transparent 24rem),
    linear-gradient(180deg, #02050b 0%, #08111e 52%, #04070d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 88%);
  opacity: 0.42;
}

body.lw-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
label {
  font: inherit;
}

button {
  cursor: pointer;
}

.lw-shell {
  width: min(1280px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 12px 0 52px;
}

.lw-header {
  position: sticky;
  top: var(--lw-header-top);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 24px;
  min-height: 74px;
  margin-bottom: 18px;
  padding: 10px 0 10px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid var(--lw-line);
  isolation: isolate;
}

.lw-header::before {
  content: "";
  position: absolute;
  inset: -8px -18px -10px;
  background: linear-gradient(180deg, rgba(3, 7, 17, 0.94) 0%, rgba(3, 7, 17, 0.84) 52%, rgba(3, 7, 17, 0) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.lw-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  text-decoration: none;
}

.lw-brand-wordmark {
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  opacity: 0.94;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 16px rgba(35, 231, 255, 0.18))
    drop-shadow(0 0 12px rgba(255, 189, 66, 0.08));
}

.lw-header-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lw-header-link,
.lw-button,
.lw-auth-mode-button,
.lw-form-toggle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 15px;
  border: 1px solid var(--lw-border);
  border-radius: 10px;
  background: rgba(8, 18, 32, 0.54);
  color: #d7e5f2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.lw-header-link.is-primary,
.lw-button.is-primary {
  border-color: rgba(35, 231, 255, 0.34);
  background: linear-gradient(90deg, rgba(35, 231, 255, 0.2), rgba(255, 189, 66, 0.14));
  box-shadow: 0 0 30px rgba(35, 231, 255, 0.06);
}

.lw-header-link.is-current {
  border-color: rgba(255, 189, 66, 0.38);
  color: #fff3d8;
}

.lw-header-link:hover,
.lw-header-link:focus-visible,
.lw-button:hover,
.lw-button:focus-visible,
.lw-link-panel:hover,
.lw-link-panel:focus-visible,
.lw-card-link:hover,
.lw-card-link:focus-visible,
.lw-auth-mode-button:hover,
.lw-auth-mode-button:focus-visible,
.lw-form-toggle-link:hover,
.lw-form-toggle-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(35, 231, 255, 0.38);
  box-shadow: 0 0 34px rgba(35, 231, 255, 0.08);
}

.lw-button.is-secondary {
  border-color: rgba(255, 189, 66, 0.28);
  color: #fff1cd;
}

.lw-page-hero {
  padding: 40px 0 18px;
  display: grid;
  align-items: stretch;
  gap: 30px;
}

.lw-page-hero.two-column {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.lw-visual-panel,
.lw-side-panel,
.lw-card,
.lw-auth-panel,
.lw-plan-card,
.lw-locked-card,
.lw-modal-dialog,
.lw-spotlight-copy {
  border: 1px solid var(--lw-border);
  border-radius: 12px;
  background: var(--lw-panel);
  box-shadow: var(--lw-shadow-soft);
}

.lw-visual-panel,
.lw-auth-panel {
  min-height: 100%;
  padding: 28px;
}

.lw-visual-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.lw-shield-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 0 0 8px;
  background: transparent;
  isolation: isolate;
  overflow: visible;
}

.lw-shield-stage::before {
  content: "";
  position: absolute;
  inset: 4% 8% 8%;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(35, 231, 255, 0.20), transparent 34%),
    radial-gradient(circle at 66% 62%, rgba(255, 189, 66, 0.16), transparent 26%),
    radial-gradient(circle at center, rgba(16, 46, 62, 0.22), transparent 66%);
  filter: blur(18px);
  z-index: 0;
}

.lw-hero-mark {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 44px rgba(35, 231, 255, 0.26))
    drop-shadow(0 0 24px rgba(255, 189, 66, 0.12));
}

.lw-heartbeat-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  filter: drop-shadow(0 0 14px rgba(35, 231, 255, 0.45));
  pointer-events: none;
}

.lw-heartbeat-track {
  fill: none;
  stroke: rgba(178, 238, 255, 0.34);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.lw-heartbeat-pulse {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  stroke-dasharray: 210 900;
  animation: lw-heartbeat-travel 3.8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(35, 231, 255, 0.7));
}

.lw-heartbeat-pulse.is-amber {
  stroke: var(--lw-amber);
  stroke-dasharray: 90 1020;
  animation-delay: 2.85s;
  filter: drop-shadow(0 0 10px rgba(255, 189, 66, 0.72));
}

.lw-heartbeat-burst {
  fill: rgba(255, 189, 66, 0.86);
  transform-origin: center;
  animation: lw-heartbeat-burst 3.8s ease-out infinite;
}

.lw-heartbeat-fragment {
  fill: rgba(35, 231, 255, 0.9);
  transform-origin: center;
  animation: lw-heartbeat-fragment 3.8s ease-out infinite;
}

.lw-heartbeat-fragment.is-gold {
  fill: rgba(255, 189, 66, 0.92);
}

.lw-link-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: -10px;
}

.lw-link-panel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(35, 231, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(35, 231, 255, 0.08), rgba(255, 189, 66, 0.06)),
    rgba(8, 18, 32, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 20px 40px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.lw-link-panel.membership {
  border-color: rgba(255, 189, 66, 0.34);
  color: #fff5e1;
}

.lw-link-copy {
  display: grid;
  gap: 6px;
}

.lw-link-eyebrow {
  color: rgba(184, 228, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lw-link-copy strong {
  font-size: 20px;
  font-weight: 900;
}

.lw-link-side {
  display: grid;
  justify-items: end;
  gap: 10px;
  flex: 0 0 auto;
}

.lw-link-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(3, 12, 24, 0.68);
  color: #d7ebff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lw-link-copy span,
.lw-link-trail,
.lw-inline-note,
.lw-list span,
.lw-card p,
.lw-side-panel p,
.lw-plan-card p,
.lw-spotlight-copy p,
.lw-form-help,
.lw-form-caption {
  color: var(--lw-muted);
  line-height: 1.65;
}

.lw-link-trail {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lw-auth-panel,
.lw-copy-column {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.lw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgba(35, 231, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 16, 30, 0.64);
  color: #7cf1d3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  align-self: flex-start;
}

.lw-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #36e6a8;
  box-shadow: 0 0 12px rgba(54, 230, 168, 0.65);
}

.lw-title {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.94;
}

.lw-gradient-text {
  background: linear-gradient(90deg, var(--lw-cyan), #5ad8ff 36%, var(--lw-mint) 66%, var(--lw-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lw-lede {
  margin: 0;
  max-width: 740px;
  color: #d4dfeb;
  font-size: 20px;
  line-height: 1.7;
}

.lw-auth-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lw-auth-mode-button {
  min-height: 44px;
  background: rgba(8, 18, 32, 0.72);
}

.lw-auth-mode-button.is-active {
  border-color: rgba(35, 231, 255, 0.34);
  background: linear-gradient(90deg, rgba(35, 231, 255, 0.2), rgba(255, 189, 66, 0.14));
  color: #ffffff;
}

.lw-auth-pane {
  display: grid;
  gap: 16px;
}

.lw-auth-pane.is-hidden {
  display: none;
}

.lw-signin-card,
.lw-signup-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(35, 231, 255, 0.08), transparent 16rem),
    rgba(2, 10, 20, 0.54);
}

.lw-auth-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lw-auth-card-step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  color: var(--lw-ink);
}

.lw-auth-card-step.mint {
  background: var(--lw-mint);
}

.lw-auth-card-step.gold {
  background: var(--lw-amber);
}

.lw-auth-card-head h2,
.lw-modal-copy h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
}

.lw-auth-card-head p,
.lw-modal-copy p {
  margin: 4px 0 0;
}

.lw-field-grid {
  display: grid;
  gap: 14px;
}

.lw-field-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.lw-form-field span,
.lw-consent-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(123, 242, 210, 0.82);
}

.lw-form-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(1, 8, 16, 0.78);
  color: var(--lw-text);
  padding: 13px 15px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.lw-form-field input::placeholder {
  color: rgba(156, 179, 199, 0.4);
}

.lw-form-field input:focus {
  border-color: rgba(35, 231, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(35, 231, 255, 0.08);
}

.lw-checkbox-list {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(1, 8, 16, 0.62);
}

.lw-checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 12px;
  color: #dbe6f2;
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
  user-select: none;
}

.lw-checkbox input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.lw-checkbox-box {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(2, 10, 20, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.lw-checkbox-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #04121f;
  border-bottom: 2px solid #04121f;
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  transition: transform 120ms ease, opacity 120ms ease;
}

.lw-checkbox-text {
  display: block;
}

.lw-checkbox input:checked + .lw-checkbox-box {
  border-color: rgba(35, 231, 255, 0.72);
  background: linear-gradient(135deg, rgba(35, 231, 255, 0.94), rgba(255, 189, 66, 0.86));
  box-shadow:
    0 0 0 3px rgba(35, 231, 255, 0.12),
    0 0 22px rgba(35, 231, 255, 0.2);
}

.lw-checkbox input:checked + .lw-checkbox-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.lw-checkbox:hover .lw-checkbox-box,
.lw-checkbox.is-checked .lw-checkbox-box,
.lw-checkbox input:focus-visible + .lw-checkbox-box {
  border-color: rgba(35, 231, 255, 0.56);
  box-shadow: 0 0 0 3px rgba(35, 231, 255, 0.08);
}

.lw-form-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lw-form-status {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe6f2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.lw-form-status.is-blue {
  border-color: rgba(56, 189, 248, 0.24);
  color: #ccecff;
}

.lw-form-status.is-mint {
  border-color: rgba(123, 242, 210, 0.28);
  color: #d9fff4;
}

.lw-form-status.is-rose {
  border-color: rgba(255, 106, 141, 0.28);
  color: #ffd7e2;
}

.lw-form-caption {
  font-size: 13px;
}

.lw-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lw-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--lw-line);
}

.lw-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.lw-list-marker {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lw-cyan), var(--lw-amber));
}

.lw-list strong,
.lw-card strong,
.lw-plan-card strong,
.lw-spotlight-copy strong,
.lw-metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 900;
}

.lw-band {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--lw-line);
}

.lw-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.lw-section-head p {
  margin: 0;
  color: #7cf1d3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lw-section-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
}

.lw-section-head span {
  color: var(--lw-muted);
  font-size: 16px;
  line-height: 1.7;
}

.lw-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lw-card,
.lw-side-panel,
.lw-plan-card,
.lw-locked-card,
.lw-spotlight-copy {
  padding: 22px;
}

.lw-card h3,
.lw-side-panel h3,
.lw-plan-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 900;
}

.lw-card {
  display: flex;
  flex-direction: column;
}

.lw-card p {
  flex: 1;
}

.lw-card-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(35, 231, 255, 0.28);
  border-radius: 10px;
  background: rgba(35, 231, 255, 0.08);
  color: #e6f8ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  align-self: center;
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.lw-side-panel {
  display: grid;
  gap: 18px;
  justify-items: center;
  background:
    radial-gradient(circle at top right, rgba(35, 231, 255, 0.12), transparent 14rem),
    radial-gradient(circle at bottom left, rgba(255, 189, 66, 0.1), transparent 14rem),
    var(--lw-panel-strong);
}

.lw-side-panel .lw-hero-mark {
  width: min(100%, 280px);
  margin: 0 auto;
}

.lw-wordmark {
  width: min(100%, 360px);
  margin: 0 auto;
  object-fit: contain;
  justify-self: center;
}

.lw-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lw-side-panel p,
.lw-side-panel .lw-list {
  width: 100%;
}

.lw-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e5f0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lw-membership-pyramid {
  display: grid;
  gap: 16px;
}

.lw-tier-top {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lw-tier-bottom {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lw-plan-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.lw-plan-card.is-founder {
  border-color: rgba(255, 189, 66, 0.42);
  background:
    radial-gradient(circle at top right, rgba(255, 189, 66, 0.18), transparent 13rem),
    radial-gradient(circle at bottom left, rgba(35, 231, 255, 0.08), transparent 12rem),
    rgba(18, 14, 7, 0.92);
}

.lw-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lw-plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.lw-plan-badge.current {
  color: #c6ffef;
  background: rgba(123, 242, 210, 0.12);
}

.lw-plan-badge.founder {
  color: #fff4d2;
  background: rgba(255, 189, 66, 0.18);
}

.lw-plan-badge.future {
  color: #d6ebf8;
  background: rgba(56, 189, 248, 0.14);
}

.lw-plan-price {
  color: #fff0c0;
  font-size: 18px;
  font-weight: 900;
}

.lw-feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lw-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d7e4ef;
  font-size: 14px;
  line-height: 1.55;
}

.lw-feature-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lw-cyan), var(--lw-amber));
}

.lw-spotlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.86fr);
}

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

.lw-card-preview-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 16%, rgba(35, 231, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 82% 74%, rgba(255, 189, 66, 0.16), transparent 14rem),
    rgba(1, 8, 16, 0.88);
}

.lw-card-preview-image {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: contain;
  filter: blur(8px) saturate(0.84);
  transform: scale(1.03);
  opacity: 0.74;
}

.lw-card-preview-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 9, 18, 0.1), rgba(3, 9, 18, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 12px, rgba(1, 8, 16, 0.1) 12px, rgba(1, 8, 16, 0.1) 24px);
}

.lw-card-lock-banner {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 189, 66, 0.34);
  border-radius: 10px;
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 0 32px rgba(255, 189, 66, 0.12);
}

.lw-card-lock-banner strong {
  margin: 0;
}

.lw-card-lock-banner span {
  color: #ffe7b4;
  font-size: 13px;
  font-weight: 800;
}

.lw-card-preview-action {
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0;
}

.lw-card-metadata-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lw-metric {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(1, 8, 16, 0.62);
}

.lw-metric span {
  display: block;
  color: rgba(156, 179, 199, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lw-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.lw-modal.is-open {
  display: block;
}

.lw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.76);
  backdrop-filter: blur(12px);
}

.lw-modal-dialog {
  position: relative;
  width: min(1180px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  overflow: auto;
  background: rgba(5, 14, 27, 0.96);
}

.lw-modal-grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
}

.lw-modal-preview,
.lw-modal-copy {
  padding: 28px;
}

.lw-modal-preview {
  border-right: 1px solid var(--lw-line);
}

.lw-modal-copy {
  display: grid;
  gap: 18px;
}

.lw-modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 60px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 14px 14px 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(3, 10, 20, 0.82);
  color: var(--lw-text);
  font-size: 24px;
  line-height: 1;
}

.lw-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--lw-line);
}

.lw-footer p {
  margin: 0;
  color: var(--lw-muted);
  font-size: 13px;
  line-height: 1.6;
}

.lw-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lw-footer-links a {
  color: #d8e6f2;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@keyframes lw-heartbeat-travel {
  0% {
    stroke-dashoffset: 1110;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes lw-heartbeat-burst {
  0%, 72% {
    opacity: 0;
    transform: scale(0.2);
  }

  79% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.35);
  }
}

@keyframes lw-heartbeat-fragment {
  0%, 75% {
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
  }

  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.2) translate(var(--lw-fragment-x, 0px), var(--lw-fragment-y, 0px));
  }
}

@media (max-width: 1220px) {
  .lw-title {
    font-size: 60px;
  }
}

@media (max-width: 1080px) {
  .lw-page-hero.two-column,
  .lw-spotlight-grid,
  .lw-modal-grid,
  .lw-card-grid {
    grid-template-columns: 1fr;
  }

  .lw-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .lw-header-links {
    justify-content: center;
  }

  .lw-modal-preview {
    border-right: 0;
    border-bottom: 1px solid var(--lw-line);
  }

  .lw-tier-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .lw-tier-top,
  .lw-tier-bottom,
  .lw-field-grid.two-column,
  .lw-card-metadata-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lw-shell {
    width: min(100vw - 24px, 1280px);
    padding: 18px 0 42px;
  }

  .lw-header {
    display: none;
  }

  .lw-brand-wordmark {
    width: min(100%, 260px);
  }

  .lw-title {
    font-size: 42px;
  }

  .lw-lede {
    font-size: 18px;
  }

  .lw-section-head h2 {
    font-size: 30px;
  }

  .lw-link-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .lw-link-side {
    justify-items: start;
  }

  .lw-form-actions,
  .lw-footer-links,
  .lw-auth-switch {
    width: 100%;
  }

  .lw-button,
  .lw-card-link,
  .lw-auth-mode-button {
    width: 100%;
  }

  .lw-visual-panel,
  .lw-auth-panel,
  .lw-modal-preview,
  .lw-modal-copy {
    padding: 20px;
  }

  .lw-shield-stage {
    min-height: 320px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .lw-visual-panel,
  .lw-side-panel {
    justify-items: center;
  }

  .lw-link-stack,
  .lw-side-panel .lw-wordmark,
  .lw-side-panel .lw-hero-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-page-hero {
    padding-top: 18px;
  }

  .lw-visual-panel {
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
