:root {
  --bg: #ffffff;
  --fg: #0b0d12;
  --muted: #5b6170;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 12px 40px rgba(2, 6, 23, 0.08);

  --radius: 16px;
  --max: 980px;

  /* Product accents (best-effort defaults; adjust to match your exact brand). */
  --okr: #E13700;
  --kano: #635bff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 999;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 28px;
}

.section {
  padding: 18px 0 44px;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    1px 0 0 #0b0d12,
    -1px 0 0 #0b0d12,
    0 1px 0 #0b0d12,
    0 -1px 0 #0b0d12,
    1px 1px 0 #0b0d12,
    -1px 1px 0 #0b0d12,
    1px -1px 0 #0b0d12,
    -1px -1px 0 #0b0d12;
}

.title__logo {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  vertical-align: middle;
}

.lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch;
}

.links {
  margin: 18px 0 0;
}

.link {
  color: var(--fg);
}

.link:hover {
  opacity: 0.85;
}

.hero__avatar {
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow);
  border-radius: 50%;
}

.avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #f4f6fb;
}

.avatar__hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
}

.section__title {
  margin: 0 0 16px;
  letter-spacing: 0em;
}

.productGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.productCard {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  
}

.productCard:hover {
  background: #f7f7f7;
}

.productCard__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.productCard__logo {
  border-radius: 12px;
  width: 50px;
}

.productCard--kano .productCard__logo {
  width: 55px;
}

.productCard__name {
  font-weight: 650;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.productCard__tagline {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.productCard__cta {
  font-weight: 600;
  font-size: 13px;
  opacity: 0.92;
  margin-top: 12px;
}

.productCard--okr .productCard__cta {
  color: var(--okr);
}

.productCard--kano .productCard__cta {
  color: var(--kano);
}

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

.footer {
  padding: 18px 0 0;
  margin-top: 100px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .page {
    padding-top: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .productGrid {
    grid-template-columns: 1fr;
  }
}
