.access-body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090b10;
  color: #f4f7fb;
}

.access-page {
  width: min(100%, 520px);
  padding: 32px;
  border: 1px solid #2a3445;
  border-radius: 8px;
  background: #111722;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.access-eyebrow {
  margin: 0 0 12px;
  color: #e10600;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-title {
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.access-message,
.access-note {
  margin: 18px 0 0;
  color: #a8b3c4;
  font-size: 1rem;
  line-height: 1.65;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, opacity 160ms ease;
}

.access-button-primary {
  background: #e10600;
  color: #ffffff;
}

.access-button-primary:hover {
  background: #b90500;
}

.access-button-secondary {
  background: #1d2634;
  color: #f4f7fb;
}

.access-button[data-pending="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.access-button:focus-visible,
.landing-body a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.landing-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 7px;
  background: #ffffff;
  color: #090b10 !important;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}
.landing-skip-link:focus { transform: translateY(0); }

@media (max-width: 560px) {
  .access-page {
    padding: 24px;
  }

  .access-title {
    font-size: 2rem;
  }
}

.landing-body {
  --landing-bg: #08080a;
  --landing-panel: #0c0c0f;
  --landing-panel-2: #101013;
  --landing-panel-3: #0e0e12;
  --landing-border: rgba(255, 255, 255, 0.08);
  --landing-border-strong: rgba(255, 255, 255, 0.14);
  --landing-text: #fafafa;
  --landing-text-2: #e4e4e7;
  --landing-muted: #a1a1aa;
  --landing-dim: #71717a;
  --landing-faint: #52525b;
  --landing-red: #e10600;
  --landing-red-bright: #ff4b45;
  --landing-green: #34d399;
  --landing-yellow: #f5d90a;
  --landing-orange: #ff8000;
  --landing-purple: #a855f7;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-body * {
  box-sizing: border-box;
}

.landing-body a {
  color: inherit;
  text-decoration: none;
}

.landing-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--landing-border);
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(14px);
}

.landing-header-inner,
.landing-header-main,
.landing-header-actions,
.landing-actions,
.landing-footer-inner,
.landing-footer-brand,
.landing-footer-links {
  display: flex;
  align-items: center;
}

.landing-header-inner {
  min-height: 64px;
  justify-content: space-between;
  gap: 22px;
}

.landing-header-main {
  min-width: 0;
  gap: 14px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.landing-brand > span:last-child span {
  color: var(--landing-red);
}

.landing-brand-mark {
  display: inline-block;
  width: 7px;
  height: 24px;
  border-radius: 1px;
  background: var(--landing-red);
}

.landing-console-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--landing-muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-feed-status::before,
.landing-pill span,
.landing-btn-red span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--landing-red);
  animation: landingPulse 1.4s ease-in-out infinite;
}

.landing-header-actions {
  justify-content: flex-end;
  gap: 10px;
  color: var(--landing-muted);
  font-size: 14px;
}

.landing-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--landing-dim);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-feed-status::before {
  content: "";
  animation: none;
  background: currentColor;
}

.landing-feed-status[data-state="online"] {
  border-color: rgba(52, 211, 153, 0.34);
  color: var(--landing-green);
}

.landing-feed-status[data-state="pending"] {
  border-color: rgba(245, 217, 10, 0.3);
  color: var(--landing-yellow);
}

.landing-feed-status[data-state="offline"] {
  border-color: rgba(255, 75, 69, 0.34);
  color: var(--landing-red-bright);
}

.landing-header-command,
.landing-header-link,
.landing-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.landing-header-command {
  border-color: var(--landing-border);
  background: rgba(255, 255, 255, 0.035);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.landing-header-command-live {
  border-color: rgba(225, 6, 0, 0.38);
  background: rgba(225, 6, 0, 0.13);
  color: #ffffff;
}

.landing-header-command:hover,
.landing-header-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.landing-account {
  max-width: 180px;
  gap: 8px;
  border-color: rgba(52, 211, 153, 0.26);
  background: rgba(52, 211, 153, 0.08);
  color: #d1fae5;
}

.landing-account > span:first-child {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--landing-green);
}

.landing-account > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-account-muted {
  border-color: rgba(245, 217, 10, 0.26);
  background: rgba(245, 217, 10, 0.06);
  color: var(--landing-yellow);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 180ms ease;
}

.landing-btn:hover {
  transform: translateY(-1px);
}

.landing-btn-red {
  background: var(--landing-red);
  color: #ffffff;
}

.landing-btn-red:hover {
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.34);
}

.landing-btn-light {
  background: #ffffff;
  color: #0a0a0a;
}

.landing-btn-ghost {
  border-color: var(--landing-border-strong);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.landing-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--landing-border);
  background:
    linear-gradient(115deg, rgba(225, 6, 0, 0.22) 0%, rgba(225, 6, 0, 0) 42%),
    linear-gradient(180deg, #0e0e11 0%, #08080a 100%);
}

.landing-hero-word {
  position: absolute;
  top: -74px;
  right: -44px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.024);
  font-size: 300px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  padding: 76px 0 112px;
}

.landing-pill,
.landing-kicker,
.landing-section-head p,
.landing-replay-head > span,
.landing-session > span:last-child,
.landing-footer {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(225, 6, 0, 0.14);
  color: var(--landing-red-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.landing-hero h1,
.landing-section-head h2,
.landing-card h3,
.landing-final h2,
.landing-meeting-head h3 {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-hero h1 {
  max-width: 820px;
  font-size: 76px;
  line-height: 0.9;
}

.landing-hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--landing-muted);
  font-size: 19px;
  line-height: 1.55;
}

.landing-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

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

.landing-section {
  padding-top: 64px;
}

.landing-replays {
  padding-top: 48px;
}

.landing-section-head {
  margin-bottom: 24px;
}

.landing-section-head-center {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-section-head p,
.landing-kicker {
  margin: 0 0 12px;
  color: var(--landing-red-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-section-head h2 {
  font-size: 38px;
  line-height: 1.06;
}

.landing-feature-grid,
.landing-plan-grid,
.landing-session-grid {
  display: grid;
  gap: 14px;
}

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

.landing-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card {
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: var(--landing-panel);
}

.landing-feature,
.landing-plan {
  padding: 28px;
}

.landing-feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 8px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--landing-red-bright);
}

.landing-feature-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
}

.landing-icon-bolt::before {
  clip-path: polygon(54% 0, 10% 58%, 42% 58%, 34% 100%, 90% 38%, 58% 38%);
}

.landing-icon-wave::before {
  height: 14px;
  background: none;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewX(-22deg);
}

.landing-icon-clock::before {
  border: 2px solid currentColor;
  border-radius: 999px;
  background: none;
  box-shadow: inset 5px -5px 0 -3px currentColor;
}

.landing-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.landing-card p {
  margin: 11px 0 0;
  color: var(--landing-dim);
  font-size: 14px;
  line-height: 1.65;
}

.landing-plan-pro {
  position: relative;
  overflow: hidden;
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(180deg, #1a0c0d 0%, #120a0b 100%);
  box-shadow: 0 0 60px rgba(225, 6, 0, 0.12);
}

.landing-plan-pro::before {
  content: "PRO";
  position: absolute;
  top: -38px;
  right: -4px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.landing-plan > * {
  position: relative;
}

.landing-plan ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.landing-plan li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.landing-plan li span {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0.74);
  color: var(--landing-faint);
}

.landing-plan-pro li span {
  color: var(--landing-red-bright);
}

.landing-plan .landing-btn {
  margin-top: 28px;
}

.landing-replay-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.landing-replay-head > span {
  color: var(--landing-dim);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-replay-list {
  display: grid;
  gap: 14px;
}

.landing-meeting {
  padding: 22px;
}

.landing-meeting-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.landing-meeting-head h3 {
  font-size: 23px;
  line-height: 1.18;
}

.landing-meeting-head p {
  margin-top: 6px;
}

.landing-meeting-head > span {
  color: var(--landing-dim);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
}

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

.landing-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.landing-session:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 0, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.landing-session-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.landing-session-left > span:first-child {
  width: 3px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--session-accent, var(--landing-faint));
}

.landing-session-left > span:last-child {
  min-width: 0;
}

.landing-session-left > span:last-child > span:first-child {
  display: block;
  overflow: hidden;
  color: var(--landing-text-2);
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-session-left > span:last-child > span:last-child {
  display: block;
  margin-top: 3px;
  color: var(--landing-dim);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.landing-session > span:last-child {
  flex: 0 0 auto;
  color: var(--landing-red-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-session-race {
  --session-accent: var(--landing-red);
  border-color: rgba(225, 6, 0, 0.34);
  background: rgba(225, 6, 0, 0.05);
}

.landing-session-qualifying {
  --session-accent: var(--landing-orange);
}

.landing-session-sprint {
  --session-accent: var(--landing-green);
}

.landing-session-practice {
  --session-accent: var(--landing-faint);
}

.landing-empty {
  margin: 0;
  border: 1px dashed var(--landing-border-strong);
  border-radius: 8px;
  padding: 30px 22px;
  color: var(--landing-dim);
  font-size: 14px;
  text-align: center;
}

.landing-final {
  padding-top: 64px;
  padding-bottom: 12px;
}

.landing-final-panel {
  overflow: hidden;
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-radius: 8px;
  padding: 54px 28px;
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.2) 0%, rgba(225, 6, 0, 0) 56%),
    #0e0e12;
  text-align: center;
}

.landing-final h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: 46px;
  line-height: 1.02;
}

.landing-final p {
  max-width: 500px;
  margin: 20px auto 0;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.6;
}

.landing-footer {
  margin-top: 48px;
  border-top: 1px solid var(--landing-border);
  background:
    linear-gradient(90deg, rgba(225, 6, 0, 0.08) 0%, rgba(225, 6, 0, 0) 34%),
    #060608;
  color: var(--landing-faint);
}

.landing-footer-inner {
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.landing-footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.landing-footer-brand span:first-child {
  color: #ffffff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-footer-brand span:last-child,
.landing-footer-note {
  color: var(--landing-faint);
  font-size: 12px;
}

.landing-footer-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.landing-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.landing-footer-links a:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.landing-footer-note {
  flex: 0 0 auto;
}

@keyframes landingPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

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

@media (max-width: 980px) {
  .landing-console-label {
    display: none;
  }

  .landing-feature-grid,
  .landing-plan-grid,
  .landing-session-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-shell {
    width: min(100% - 32px, 1240px);
  }

  .landing-header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .landing-header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .landing-header-pro {
    margin-left: auto;
  }

  .landing-hero-word {
    display: none;
  }

  .landing-hero-inner {
    padding: 58px 0 96px;
  }

  .landing-hero h1 {
    font-size: 48px;
  }

  .landing-hero-copy {
    font-size: 16px;
  }

  .landing-section {
    padding-top: 52px;
  }

  .landing-replays {
    padding-top: 40px;
  }

  .landing-section-head h2,
  .landing-final h2 {
    font-size: 32px;
  }

  .landing-replay-head,
  .landing-meeting-head,
  .landing-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-footer-inner {
    justify-content: center;
    padding: 16px 0;
  }

  .landing-footer-links {
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .landing-header-actions {
    gap: 10px;
  }

  .landing-feed-status,
  .landing-header-command,
  .landing-header-link,
  .landing-account {
    font-size: 12px;
  }

  .landing-header-link {
    display: none;
  }

  .landing-header-pro {
    min-height: 30px;
    margin-left: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .landing-actions .landing-btn {
    width: 100%;
  }

  .landing-feature,
  .landing-plan,
  .landing-meeting {
    padding: 22px;
  }

  .landing-session {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-session > span:last-child {
    align-self: flex-end;
  }
}
