.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo{
  height: 26px;
  width: auto;
  display:block;
}

/* Instructions page styling */
.steps{
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.steps__title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: left;
}

.steps__list{
  margin: 0;
  padding-left: 18px;
  color: #111827;
  line-height: 1.6;
}

.steps__list li{
  margin: 8px 0;
}
:root{
  --bg: #ffffff;
  --text: #1f2328;
  --muted: #6b7280;
  --line: #e5e7eb;

  --primary: #0b5cff;
  --primary-hover: #094ed6;

  --btn-secondary-bg: #eef0f4;
  --btn-secondary-hover: #e3e6eb;

  --btn-ghost-bg: #ffffff;
  --btn-ghost-hover: #f5f7fb;

  --radius: 14px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:10px;
  background:#111827;
  color:#fff;
  z-index:9999;
}

/* Top bar */
.topbar{
  height:64px;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar__inner{
  max-width: 1100px;
  height:100%;
  margin:0 auto;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo{
  height: 26px;
  width: auto;
  display:block;
}

.topbar__nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar__link{
  color: var(--primary);
  text-decoration:none;
  font-weight:500;
}
.topbar__link:hover{ text-decoration:underline; }
.topbar__divider{
  width:1px;
  height:18px;
  background: var(--line);
}
.lang{
  border:0;
  background:transparent;
  font: inherit;
  color: var(--muted);
  cursor:pointer;
  padding: 8px 10px;
  border-radius: 10px;
}
.lang:hover{ background: #f3f4f6; }

/* Layout */
.page{
  min-height: calc(100vh - 64px - 84px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 56px 18px 36px;
}

.card{
  width: 100%;
  max-width: 520px;
  padding: 34px 26px 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,0.8);
}

.title{
  margin: 4px 0 26px;
  text-align:center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color:#111827;
}

.actions{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:stretch;
}

/* Buttons */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:54px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition: background .15s ease, transform .02s ease, border-color .15s ease;
}
.btn:active{ transform: scale(0.99); }

.btn--primary{
  background: var(--primary);
  color:#fff;
}
.btn--primary:hover{ background: var(--primary-hover); }

.btn--secondary{
  background: var(--btn-secondary-bg);
  color:#111827;
}
.btn--secondary:hover{ background: var(--btn-secondary-hover); }

.btn--ghost{
  background: var(--btn-ghost-bg);
  color:#111827;
  border-color: #d1d5db;
}
.btn--ghost:hover{ background: var(--btn-ghost-hover); }

/* Separators + copy */
.hint{
  margin: 2px 0 -2px;
  text-align:center;
  color: var(--muted);
  font-size: 14px;
}

.or{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 6px 0;
}
.or__line{
  flex:1;
  height:1px;
  background: var(--line);
}
.or__text{
  color: var(--muted);
  font-size: 13px;
}

.note{
  margin: 0;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding: 18px 0;
}
.footer__inner{
  max-width: 1100px;
  margin:0 auto;
  padding: 0 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  text-align:center;
}
.footer__fineprint{
  margin:0;
  color: var(--muted);
  font-size: 12px;
}
.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.footer__links a{
  color: var(--muted);
  text-decoration:none;
}
.footer__links a:hover{ text-decoration:underline; }

/* Non-Windows notice styles */
.card--notice .noticeText{
  margin: 0 0 18px;
  color:#374151;
  text-align:center;
}
.noticeBox{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  background: #fafafa;
  margin-bottom: 14px;
}
.noticeBox__row{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 6px 0;
}
.noticeBox__label{
  color: var(--muted);
  font-size: 13px;
}
.noticeBox__value{
  color:#111827;
  font-weight:600;
  font-size: 13px;
}

/* Instructions page styling */
.steps{
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.steps__title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: left;
}

.steps__list{
  margin: 0;
  padding-left: 18px;
  color: #111827;
  line-height: 1.6;
}

.steps__list li{
  margin: 8px 0;
}

/* Small screens */
@media (max-width: 420px){
  .title{ font-size: 24px; }
  .card{ padding: 28px 18px 22px; }
}