/* Press Kit — utilitarian info page, sharing the type/colors of the
   main site but without the scroll-snap cinema. Plain document layout. */

body.press-kit-body {
  background: var(--bg-0);
  /* No scroll-snap on this page — it's a flowing document. */
  scroll-snap-type: none;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.press-header {
  /* Standard site-header, but always sits over a plain dark body so the
     backdrop blur isn't required here. Keep it minimal. */
  backdrop-filter: none;
}
.press-header::before { display: none; }

.press-kit {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 36px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.press-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 48px;
}
.press-headline {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 8px 0 0;
  color: var(--text);
}
.press-sub {
  margin: 8px 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
}
.press-sub a { color: var(--accent); border-bottom: 1px solid currentColor; }

.press-section { display: flex; flex-direction: column; gap: 22px; }
.press-h2 {
  font-family: var(--display-font);
  font-size: 1.45rem;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.005em;
}

/* Facts table — definition-list rendered as a 2-column grid using
   `display: contents` on the wrappers so dt/dd line up across rows. */
.press-facts {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.press-facts > div { display: contents; }
.press-facts dt {
  font-family: var(--mono-font);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-dim);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.press-facts dd {
  margin: 0;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.press-facts > div:last-child dt,
.press-facts > div:last-child dd { border-bottom: 0; }
.press-facts a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Card grid — used for both logos and asset stills. */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  transition: border-color 320ms ease, background 320ms ease;
}
.press-card:hover {
  border-color: var(--line-strong);
  background: rgba(207, 232, 255, 0.04);
}

.press-logo-frame {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-logo-frame.is-dark { background: rgba(0, 0, 0, 0.45); }
.press-logo-frame.is-light { background: #f6f5f1; }
.press-logo-frame img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.press-asset-frame {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.press-asset-frame img,
.press-asset-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--mono-font);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  transition: color 240ms ease;
}
.press-link:hover { color: var(--text); }
.press-link .arrow { transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.press-link:hover .arrow { transform: translateY(2px); }

/* Boilerplate copy. Selectable, easy to paste into press articles. */
.press-boilerplate {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}
.press-boilerplate p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}
.press-boilerplate strong {
  color: var(--text);
  font-family: var(--mono-font);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 8px;
}
.press-boilerplate em { color: var(--text); font-style: italic; }

.press-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono-font);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.press-footer a { color: var(--muted); border-bottom: 1px solid currentColor; }

/* Mobile: tighter padding, single-column fact table. */
@media (max-width: 720px) {
  .press-kit { padding: 100px 20px 56px; gap: 48px; }
  .press-facts { grid-template-columns: 1fr; }
  .press-facts dt {
    padding: 14px 16px 4px;
    border-bottom: 0;
    background: transparent;
  }
  .press-facts dd {
    padding: 0 16px 14px;
    border-bottom: 1px solid var(--line);
  }
  .press-facts > div:last-child dd { border-bottom: 0; }
  .press-grid { grid-template-columns: 1fr; }
  .press-boilerplate { padding: 18px 18px; }
}
