@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  color-scheme: light;
  --cok-blue: #0546b0;
  --cok-red: #d90713;
  --cok-black: #000000;
  --cok-white: #ffffff;
  --cok-text: #000000;
  --cok-muted: rgba(0, 0, 0, 0.72);
  --cok-border: rgba(0, 0, 0, 0.16);
  --cok-surface: rgba(255, 255, 255, 0.96);
  --cok-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--cok-text);
  background:
    radial-gradient(circle at top, rgba(5, 70, 176, 0.1), transparent 34%),
    linear-gradient(180deg, var(--cok-white) 0%, var(--cok-white) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.theme-centered {
  display: grid;
  place-items: center;
  padding: 24px;
}

.theme-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 36px;
}

.theme-panel {
  background: var(--cok-surface);
  border: 1px solid var(--cok-border);
  box-shadow: var(--cok-shadow);
}

.theme-wordmark {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.theme-wordmark-inline {
  display: inline-block;
  height: 1.1em;
  width: auto;
  vertical-align: -0.12em;
}

.theme-logo {
  width: min(100%, 320px);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.theme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: filter 140ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.theme-pill:hover {
  filter: brightness(0.95);
}

.theme-pill--primary {
  background: var(--cok-blue);
  color: var(--cok-white);
}

.theme-pill--red {
  background: var(--cok-red);
  color: var(--cok-white);
}

.theme-pill--dark {
  background: var(--cok-black);
  color: var(--cok-white);
}

.theme-pill--secondary {
  background: transparent;
  color: var(--cok-text);
  border-color: var(--cok-border);
}

.theme-pill--secondary:hover {
  background: var(--cok-black);
  color: var(--cok-white);
  filter: none;
}

.theme-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme-muted {
  color: var(--cok-muted);
}

@media (max-width: 640px) {
  .theme-page {
    width: min(100%, calc(100% - 20px));
    padding-top: 10px;
  }

  .theme-pill {
    width: 100%;
  }
}