/* Raw Kettlebell — root landing (minimal, black / silver / white) */

:root {
  --rk-bg: #030303;
  --rk-fg: #f4f4f2;
  --rk-muted: #8b8f98;
  --rk-silver: #c5cad3;
  --rk-line: rgba(255, 255, 255, 0.08);
  --rk-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
}

.rk-landing-body {
  font-family: var(--rk-font);
  background: var(--rk-bg);
  color: var(--rk-fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rk-skip {
  position: absolute;
  left: -9999px;
}
.rk-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.35rem 0.75rem;
  background: #111;
  color: var(--rk-fg);
}

.rk-landing-main {
  text-align: center;
  padding: 2rem;
}

.rk-landing-title {
  margin: 0 0 1.25rem;
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rk-silver);
}

.rk-landing-links {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.rk-landing-links a,
.rk-landing-wl {
  color: var(--rk-muted);
  text-decoration: none;
  border: none;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid rgba(197, 202, 211, 0.25);
  padding-bottom: 0.1em;
}

.rk-landing-links a:hover,
.rk-landing-wl:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.rk-landing-dot {
  margin: 0 0.65rem;
  opacity: 0.35;
  color: var(--rk-muted);
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rk-wl-dialog {
  max-width: 24rem;
  width: calc(100vw - 2rem);
  padding: 0;
  border: 1px solid var(--rk-line);
  background: #0a0a0a;
  color: var(--rk-fg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
}

.rk-wl-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.rk-wl-dialog-inner {
  padding: 1.5rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rk-wl-dialog h2 {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rk-silver);
}

.rk-wl-dialog .rk-wl-dialog-lead {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--rk-muted);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
}

.rk-wl-form .rk-wl-field {
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  border: 1px solid var(--rk-line);
  background: #050505;
  color: var(--rk-fg);
}

.rk-wl-form .rk-wl-field:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.rk-wl-consent {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0.6rem 0 0.85rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--rk-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.rk-wl-consent input {
  margin-top: 0.15rem;
}

.rk-wl-submit {
  width: 100%;
  padding: 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #e8eaef 0%, #b8bcc4 100%);
  color: #0a0a0a;
  cursor: pointer;
}

.rk-wl-submit:hover {
  filter: brightness(1.05);
}

.rk-wl-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.rk-wl-msg {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: #9dccb0;
}

.rk-wl-msg.rk-wl-msg--err {
  color: #e08080;
}

.rk-wl-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  color: #555;
  font-size: 1.2rem;
  cursor: pointer;
}

.rk-wl-close:hover {
  color: #fff;
}

.rk-wl-dialog-wrap {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
  }
}
