/* XLR Pro minimal landing page. */
@font-face {
  font-family: "Inter var";
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #071321;
  --blue: #0062e3;
  --blue-dark: #0059dd;
  --paper: #fff;
  --line: #cbd3dc;
  --muted: #5f6e80;
  font-family: "Inter var", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a,
button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  min-height: 68px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand strong {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.07em;
}

.brand span {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #334358;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: var(--blue-dark);
}

.intro {
  min-height: 390px;
  padding: clamp(52px, 7vw, 94px) clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(54px, 10vw, 170px);
  color: #fff;
  background: var(--ink);
}

.intro h1 {
  margin: 0;
  font-size: clamp(78px, 9vw, 132px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.08em;
}

.intro-copy > p:first-child {
  max-width: 600px;
  margin: 0;
  color: #c0cad6;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.intro-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  min-width: 186px;
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.member-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.member-link:hover {
  color: #8cc0ff;
}

.approval-note {
  margin: 15px 0 0;
  color: #8795a6;
  font-size: 11px;
  line-height: 1.5;
}

.benefits {
  padding: clamp(48px, 6vw, 76px) clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 9vw, 150px);
  background: #fff;
}

.benefits h2,
.member-access h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.06em;
}

.benefits ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.benefits li {
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.benefits strong {
  font-size: 16px;
  letter-spacing: -.025em;
}

.benefits span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.member-access {
  min-height: 210px;
  padding: 46px clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  color: #fff;
  background: var(--blue);
}

.member-access p {
  max-width: 650px;
  margin: 16px 0 0;
  color: #e7f2ff;
  font-size: 15px;
  line-height: 1.5;
}

.button-disabled {
  min-width: 194px;
  color: #d6e9ff;
  border-color: #8fc4ff;
  background: transparent;
  cursor: not-allowed;
}

.site-footer {
  min-height: 96px;
  padding: 24px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.07em;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: #8e9bac;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: #8cc0ff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #8cc0ff;
  outline-offset: 3px;
}

@media (max-width: 850px) {
  .intro {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 60px;
    padding-inline: 18px;
  }

  .brand strong {
    font-size: 25px;
  }

  .back-link {
    font-size: 11px;
  }

  .intro {
    padding: 42px 20px 38px;
    gap: 25px;
  }

  .intro h1 {
    font-size: 68px;
  }

  .intro-copy > p:first-child {
    font-size: 16px;
  }

  .intro-actions {
    margin-top: 25px;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .button-primary {
    width: 100%;
  }

  .member-link {
    min-height: 42px;
    justify-content: center;
  }

  .approval-note {
    margin-top: 12px;
    font-size: 10px;
  }

  .benefits {
    padding: 38px 20px 42px;
    gap: 24px;
  }

  .benefits h2,
  .member-access h2 {
    font-size: 36px;
  }

  .benefits li {
    min-height: 0;
    padding: 17px 0;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .member-access {
    min-height: 0;
    padding: 38px 20px 42px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .button-disabled {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .site-footer {
    min-height: 0;
    padding: 24px 20px;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    gap: 15px;
  }
}
