/* ============================================================
   Press section — shared CSS for /press/ index + article pages
   ============================================================ */

/* ---- Article (single press release) ---- */
.press {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}
.press__container { max-width: 820px; margin: 0 auto; padding-inline: 24px; }

.press__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 14px;
  border: 1px solid rgba(74, 243, 248, 0.30);
  border-radius: 999px;
  background: rgba(74, 243, 248, 0.04);
  margin-bottom: 28px;
}
.press__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(74, 243, 248, 0.55);
}

.press__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 24px;
}
.press__title .accent { color: var(--cyan); }

.press__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0 0 36px;
  font-weight: 400;
}
.press__subtitle em { color: var(--cyan); font-style: italic; }

.press__lede {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
  padding: 24px 28px;
  border-left: 3px solid var(--cyan);
  background: rgba(74, 243, 248, 0.04);
  border-radius: 0 16px 16px 0;
  margin: 0 0 50px;
}
.press__lede strong { color: var(--cyan); font-weight: 700; }
.press__lede p { margin: 0 0 12px; }
.press__lede p:last-child { margin-bottom: 0; }

.press__dateline {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 22px;
}

.press__body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 20px;
}
.press__body p strong { color: var(--text); font-weight: 600; }
.press__body p em     { color: var(--cyan);  font-style: italic; }

.press__body h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 48px 0 18px;
  padding-left: 16px;
  border-left: 2px solid var(--cyan);
}

/* Pull quote (structured field) */
.press__quote {
  margin: 36px 0;
  padding: 32px 36px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 22px;
  position: relative;
}
.press__quote::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 28px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.45;
}
.press__quote p {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  padding-top: 8px;
}
.press__quote p em { color: var(--cyan); font-style: italic; }
.press__quote footer {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-soft);
  font-style: normal;
}
.press__quote footer strong { color: var(--cyan); font-weight: 600; }

/* Inline quote from > markdown in body */
.press__inline-quote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--cyan);
  background: rgba(74, 243, 248, 0.04);
  border-radius: 0 12px 12px 0;
}
.press__inline-quote p {
  margin: 0;
  font-style: italic;
  color: var(--text);
}

/* Stats row */
.press__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 48px;
}
.press__stat {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.press__stat__value {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 10px;
  font-feature-settings: 'tnum' 1;
}
.press__stat__value--white { color: var(--text); }
.press__stat__copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Proof block (+30%) */
.press__proof {
  margin: 48px 0;
  padding: 36px 36px;
  border: 1px solid rgba(74, 243, 248, 0.30);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(74, 243, 248, 0.08), rgba(74, 243, 248, 0.02));
  text-align: center;
}
.press__proof__value {
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-shadow: 0 0 36px rgba(74, 243, 248, 0.30);
}
.press__proof__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.press__proof__copy p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 12px;
}

/* About + contact */
.press__about {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.press__contact {
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
  line-height: 1.6;
}
.press__contact strong { color: var(--text); font-weight: 600; }
.press__contact a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 243, 248, 0.30);
}
.press__contact a:hover { border-bottom-color: var(--cyan); }

.press__back { margin-top: 40px; display: inline-flex; }

/* ---- Press INDEX (newsroom landing) ---- */
.press-index { padding-top: 140px; padding-bottom: 100px; }
.press-index__inner { max-width: 920px; margin: 0 auto; padding-inline: 24px; }
.press-index__title {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  margin: 24px 0 18px;
}
.press-index__title .accent { color: var(--cyan); }
.press-index__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 0 60px;
}

.press-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: transform 380ms var(--ease-out), border-color 280ms ease;
  margin-bottom: 14px;
}
.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 243, 248, 0.30);
}
.press-card__date {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-right: 6px;
  border-right: 1px solid var(--border);
}
.press-card__body { min-width: 0; }
.press-card__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.press-card__title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.press-card__title .accent { color: var(--cyan); }
.press-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
.press-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--cyan);
  color: #001214;
  box-shadow: 0 0 28px rgba(74, 243, 248, 0.30);
  transition: transform 240ms var(--ease-out);
}
.press-card:hover .press-card__arrow { transform: translateX(4px); }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .press__stats { grid-template-columns: 1fr; }
  .press__lede, .press__quote, .press__proof { padding: 22px; }
  .press-card { grid-template-columns: 1fr; gap: 18px; padding: 24px 22px; }
  .press-card__date {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 8px;
  }
  .press-card__arrow { justify-self: flex-end; }
}

/* Inline image inside the article body */
.press__inline-image {
  margin: 36px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.press__inline-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}
@media (max-width: 720px) {
  .press__inline-image { margin: 24px 0; border-radius: 14px; }
}
