:root {
  --press-cyan: #38f0ff;
  --press-pink: #ff3ec8;
  --press-green: #5dffa0;
  --press-gold: #ffd447;
  --press-ink: #04050c;
  --press-panel: rgba(8, 13, 29, .88);
  --press-line: rgba(56, 240, 255, .18);
}

html { scroll-behavior: smooth; }
body.press-page { background: #04050c; }
.press-page .prose { max-width: none; padding-bottom: 72px; }
.press-page section[id] { scroll-margin-top: 90px; }
.press-shell { max-width: 1240px; margin: 0 auto; }

.press-hero {
  position: relative;
  min-height: 490px;
  margin: 20px 0 30px;
  border: 1px solid rgba(56, 240, 255, .26);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .5), 0 0 45px rgba(56, 240, 255, .07);
}
.press-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 5, 12, .98) 0%, rgba(4, 5, 12, .78) 48%, rgba(4, 5, 12, .16) 100%),
    linear-gradient(0deg, rgba(4, 5, 12, .8), transparent 55%);
}
.press-hero > picture, .press-hero > picture img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.press-hero > picture img { object-fit: cover; }
.press-hero-copy { max-width: 730px; padding: clamp(30px, 6vw, 76px); }
.press-hero h1 { margin: 4px 0 14px; font-size: clamp(42px, 7vw, 78px); line-height: .98; }
.press-hero .lede { max-width: 670px; color: #c6dae2; font-size: clamp(17px, 2.1vw, 22px); }
.press-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.press-actions .btn { margin: 0; }
.btn-download { border-color: rgba(93, 255, 160, .55); color: var(--press-green); background: rgba(93, 255, 160, .08); }
.btn-download:hover { background: rgba(93, 255, 160, .16); }

.press-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  gap: 7px;
  padding: 10px;
  margin: 0 0 34px;
  overflow-x: auto;
  border: 1px solid var(--press-line);
  border-radius: 12px;
  background: rgba(4, 5, 12, .91);
  backdrop-filter: blur(16px);
  scrollbar-width: thin;
}
.press-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 7px;
  color: #91aeb9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.press-nav a:hover, .press-nav a:focus-visible { color: var(--press-cyan); background: rgba(56, 240, 255, .08); }

.press-section { margin: 62px 0; }
.section-heading { display: flex; gap: 18px; align-items: end; justify-content: space-between; margin-bottom: 20px; }
.section-heading h2 { margin: 0; }
.section-heading p { max-width: 590px; margin: 0; color: #8fa9b4; }
.asset-count { flex: 0 0 auto; color: var(--press-cyan); font-size: 12px; letter-spacing: .12em; }

.press-intro-grid, .press-copy-grid, .guidance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.press-intro-grid { align-items: start; }
.press-card {
  border: 1px solid var(--press-line);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(145deg, rgba(12, 20, 42, .92), rgba(6, 9, 22, .92));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.press-card h3 { margin-top: 0; }
.press-card > :last-child { margin-bottom: 0; }
.copy-block { position: relative; }
.copy-block-wide { grid-column: 1 / -1; }
.copy-block .copy-btn { float: right; margin: -4px 0 12px 14px; }
.copy-btn, .asset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(56, 240, 255, .3);
  border-radius: 6px;
  background: rgba(56, 240, 255, .06);
  color: #9feff6;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.copy-btn:hover, .asset-button:hover { border-color: var(--press-cyan); background: rgba(56, 240, 255, .12); color: #fff; }
.copy-btn[data-copied="true"] { color: var(--press-green); border-color: rgba(93, 255, 160, .5); }

.press-page .facts { margin: 0; }
.facts th { min-width: 155px; }
.press-features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; padding: 0; list-style: none; }
.press-features li { position: relative; padding: 13px 14px 13px 38px; border-left: 1px solid rgba(93, 255, 160, .25); background: rgba(93, 255, 160, .035); }
.press-features li::before { content: "✦"; position: absolute; left: 14px; color: var(--press-green); }

.asset-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.asset-grid.social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.asset-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--press-line);
  border-radius: 12px;
  background: var(--press-panel);
  transition: transform .16s ease, border-color .16s ease;
}
.asset-card:hover { transform: translateY(-2px); border-color: rgba(56, 240, 255, .42); }
.asset-preview { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #02040b; }
.asset-preview.mobile-preview { aspect-ratio: 5 / 6; }
.asset-preview.square-preview { aspect-ratio: 1; }
.asset-preview.portrait-preview { aspect-ratio: 4 / 5; }
.asset-preview.story-preview { aspect-ratio: 9 / 14; }
.asset-preview.logo-preview { aspect-ratio: 3 / 1; background-color: #080b13; background-image: linear-gradient(45deg, rgba(255,255,255,.035) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.035) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,.035) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.035) 75%); background-size: 24px 24px; background-position: 0 0, 0 12px, 12px -12px, -12px 0; }
.asset-preview.logo-square { aspect-ratio: 1; }
.asset-preview picture, .asset-preview img { display: block; width: 100%; height: 100%; }
.asset-preview img { object-fit: cover; transition: transform .28s ease; }
.asset-preview.logo-preview img { object-fit: contain; padding: 7%; }
.asset-preview:hover img { transform: scale(1.018); }
.asset-preview::after { content: "Preview full size"; position: absolute; right: 10px; bottom: 9px; padding: 5px 7px; border-radius: 5px; background: rgba(4, 5, 12, .82); color: #c2f8fb; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transition: opacity .16s; }
.asset-preview:hover::after, .asset-preview:focus-visible::after { opacity: 1; }
.asset-copy { padding: 16px; }
.asset-title-row { display: flex; gap: 12px; justify-content: space-between; align-items: baseline; }
.asset-title-row h3 { margin: 0; color: #e9fbff; font-size: 17px; }
.asset-dim { flex: 0 0 auto; color: var(--press-cyan); font-size: 10px; letter-spacing: .08em; }
.asset-copy p { min-height: 44px; margin: 8px 0 14px; color: #8fa8b2; font-size: 13px; line-height: 1.55; }
.asset-buttons { display: flex; flex-wrap: wrap; gap: 7px; }

.gallery-group { margin-top: 34px; }
.gallery-group-head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.gallery-group-head h3 { margin: 0; color: #d8f7fa; }
.gallery-group-head span { color: #6d8c98; font-size: 11px; letter-spacing: .1em; }

.download-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(93, 255, 160, .36);
  border-radius: 14px;
  background: radial-gradient(circle at 88% 10%, rgba(93, 255, 160, .09), transparent 34%), linear-gradient(120deg, rgba(9, 32, 32, .9), rgba(5, 10, 23, .95));
}
.download-band h2 { margin: 0 0 8px; }
.download-band p { margin: 0; color: #9bb5bd; }

.credit-line { padding: 14px 16px; border: 1px dashed rgba(56, 240, 255, .28); border-radius: 8px; background: #03050b; color: #d9f9fb; }
.coverage-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.coverage-list li { padding: 14px 16px; border-left: 2px solid var(--press-pink); background: rgba(255, 62, 200, .035); }
.coverage-list small { display: block; margin-top: 3px; color: #738f99; }

.press-contact { text-align: center; padding: 48px 24px; border: 1px solid rgba(255, 62, 200, .25); border-radius: 14px; background: radial-gradient(circle at 50% 0, rgba(255, 62, 200, .1), transparent 44%), #070a15; }
.press-contact h2 { margin-top: 0; }
.press-contact .press-actions { justify-content: center; }

.asset-lightbox { width: min(94vw, 1420px); max-width: none; max-height: 94vh; padding: 0; border: 1px solid rgba(56, 240, 255, .38); border-radius: 12px; background: #04050c; color: #e9fbff; box-shadow: 0 30px 120px #000; }
.asset-lightbox::backdrop { background: rgba(0, 0, 0, .84); backdrop-filter: blur(9px); }
.lightbox-media { display: grid; place-items: center; min-height: 240px; max-height: calc(94vh - 90px); padding: 18px; background: #010208; }
.lightbox-media img { display: block; max-width: 100%; max-height: calc(94vh - 125px); object-fit: contain; }
.lightbox-bar { display: flex; gap: 15px; align-items: center; justify-content: space-between; padding: 13px 16px; border-top: 1px solid var(--press-line); }
.lightbox-caption { min-width: 0; color: #a9c3cb; font-size: 13px; }
.lightbox-close { flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: #0b1020; color: #fff; font-size: 24px; cursor: pointer; }

.press-page a:focus-visible, .press-page button:focus-visible { outline: 2px solid var(--press-cyan); outline-offset: 3px; }

@media (max-width: 900px) {
  .asset-grid.social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-hero::after { background: linear-gradient(0deg, rgba(4,5,12,.98) 5%, rgba(4,5,12,.73) 72%, rgba(4,5,12,.28)); }
  .press-hero-copy { max-width: none; }
}

@media (max-width: 680px) {
  .press-page .wrap { width: min(100% - 24px, 1240px); }
  .press-hero { min-height: 530px; border-radius: 12px; }
  .press-hero-copy { padding: 28px 22px; }
  .press-actions .btn { width: 100%; text-align: center; }
  .press-intro-grid, .press-copy-grid, .guidance-grid, .asset-grid, .asset-grid.social-grid, .press-features { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 8px; }
  .asset-count { display: block; margin-top: 7px; }
  .asset-copy p { min-height: 0; }
  .download-band { grid-template-columns: 1fr; }
  .facts th { min-width: 125px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .asset-card, .asset-preview img { transition: none; }
}
