/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --snow: #FAFAFA;
  --grey-50: #F5F5F6;
  --grey-100: #ECECED;
  --grey-200: #D4D4D6;
  --grey-300: #B0B0B3;
  --grey-400: #8A8A8E;
  --grey-500: #6B6B70;
  --grey-600: #4E4E53;
  --grey-700: #3A3A3E;
  --grey-800: #27272A;
  --grey-900: #1A1A1D;
  --accent: #9FA1FB;
  --accent-dim: rgba(159, 161, 251, 0.12);
  --accent-mid: rgba(159, 161, 251, 0.25);
  --accent-glow: rgba(159, 161, 251, 0.06);
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 820px;
  --gutter: 2rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-800);
  background: var(--white);
}

::selection {
  background: var(--accent-mid);
  color: var(--grey-900);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   NAVIGATION — sticky anchor nav
   ═══════════════════════════════════════════ */
.press-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow 0.3s ease;
}

.press-nav.scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.press-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.press-nav__brand {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  text-transform: uppercase;
}

.press-nav__brand strong {
  color: var(--grey-800);
  font-weight: 700;
}

.press-nav__links {
  display: flex;
  gap: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.press-nav__links a {
  display: block;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-400);
  line-height: 52px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.press-nav__links a:hover,
.press-nav__links a.active {
  color: var(--grey-800);
  text-decoration: none;
}

.press-nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

/* ═══════════════════════════════════════════
   LAYOUT CONTAINERS
   ═══════════════════════════════════════════ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid var(--grey-100);
}

.section--hero {
  padding: 5rem 0 4rem;
  border-top: none;
}

/* ═══════════════════════════════════════════
   HERO / STORY SUMMARY
   ═══════════════════════════════════════════ */
.hero__embargo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero__embargo::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--grey-600);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero__lede strong {
  color: var(--grey-800);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--grey-900);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--grey-700);
  text-decoration: none;
}

.btn--secondary {
  background: var(--grey-50);
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
}

.btn--secondary:hover {
  background: var(--grey-100);
  border-color: var(--grey-300);
  text-decoration: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   STORY ANGLES
   ═══════════════════════════════════════════ */
.angles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.5rem;
}

.angle-card {
  background: var(--snow);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.angle-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.angle-card__outlet {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.angle-card__title {
  font-weight: 600;
  font-size: 18px;
  color: var(--grey-900);
  line-height: 1.4;
  margin-bottom: 6px;
}

.angle-card__desc {
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   WHO NEEDS IT
   ═══════════════════════════════════════════ */
.who-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}

.who-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--snow);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}

.who-card:hover {
  border-color: var(--grey-200);
}

.who-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.who-card__title {
  font-weight: 600;
  font-size: 18px;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.who-card__desc {
  font-size: 15.5px;
  color: var(--grey-500);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section__label {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--grey-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 17px;
  color: var(--grey-500);
  max-width: 580px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FACT TABLE
   ═══════════════════════════════════════════ */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 15.5px;
}

.fact-table tr {
  border-bottom: 1px solid var(--grey-100);
}

.fact-table tr:last-child {
  border-bottom: none;
}

.fact-table td {
  padding: 10px 0;
  vertical-align: top;
}

.fact-table td:first-child {
  font-weight: 600;
  color: var(--grey-800);
  width: 180px;
  padding-right: 2rem;
  white-space: nowrap;
}

.fact-table td:last-child {
  color: var(--grey-600);
}

.fact-table .fact-highlight {
  color: var(--grey-900);
  font-weight: 500;
}

.fact-muted {
  color: var(--grey-400);
}

/* ═══════════════════════════════════════════
   THE PROBLEM — emotional narrative block
   ═══════════════════════════════════════════ */
.narrative-block {
  background: var(--grey-900);
  color: var(--grey-200);
  border-radius: 10px;
  padding: 2.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.narrative-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-mid), transparent 70%);
  pointer-events: none;
}

.narrative-block__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.narrative-block__attr {
  margin-top: 1.25rem;
  font-size: 18px;
  color: var(--grey-400);
  position: relative;
  z-index: 1;
}

.narrative-body {
  margin-top: 1.5rem;
  font-size: 18px;
  color: var(--grey-500);
  line-height: 1.75;
}

.narrative-body strong {
  color: var(--grey-700);
}

/* ═══════════════════════════════════════════
   QUOTES
   ═══════════════════════════════════════════ */
.quote-card {
  background: var(--snow);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}

.quote-card__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--grey-700);
  font-style: italic;
}

.quote-card__attr {
  margin-top: 0.75rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-800);
}

.quote-card__attr span {
  font-weight: 400;
  color: var(--grey-400);
}

.quote-usage-note {
  font-size: 13px;
  color: var(--grey-400);
  font-family: var(--font-mono);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   MEDIA ASSETS
   ═══════════════════════════════════════════ */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1.5rem;
}

.asset-card {
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}

.asset-card:hover {
  border-color: var(--grey-300);
  transform: translateY(-2px);
}

.asset-card__preview {
  background: var(--grey-50);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.asset-card__preview-icon {
  color: var(--grey-300);
}

.asset-card__info {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-card__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--grey-700);
}

.asset-card__meta {
  font-size: 12px;
  color: var(--grey-400);
  font-family: var(--font-mono);
}

.asset-download-all {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-download-all__text {
  font-size: 15px;
  color: var(--grey-500);
}

.asset-download-all__text strong {
  color: var(--grey-800);
}

/* ═══════════════════════════════════════════
   VIDEO EMBED
   ═══════════════════════════════════════════ */
.video-container {
  margin-top: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  background: var(--grey-900);
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.video-placeholder:hover {
  opacity: 0.85;
}

.video-placeholder__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder__play svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
}

.video-placeholder__label {
  font-size: 14px;
  color: var(--grey-400);
}

.video-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--grey-400);
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
#compare .wrap {
  max-width: 960px;
}

.comparison-wrapper {
  margin-top: 1.5rem;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.comparison-table colgroup .col-task { width: 26%; }
.comparison-table colgroup .col-flex { width: 22%; }
.comparison-table colgroup .col-ps   { width: 22%; }
.comparison-table colgroup .col-canva { width: 15%; }
.comparison-table colgroup .col-eagle { width: 15%; }

.comparison-table thead th {
  text-align: left;
  padding: 10px 10px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-500);
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
  vertical-align: bottom;
  line-height: 1.45;
}

.comparison-table thead th:first-child {
  color: var(--grey-400);
}

.comparison-table thead th.highlight {
  color: var(--accent);
  background: var(--accent-glow);
}

.comparison-table thead th .th-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.comparison-table thead th .th-meta {
  display: block;
  font-weight: 500;
  opacity: 0.7;
}

.comparison-table tbody td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--grey-50);
  color: var(--grey-600);
  vertical-align: middle;
  line-height: 1.45;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--grey-700);
}

.comparison-table tbody td.highlight {
  background: var(--accent-glow);
  color: var(--grey-800);
  font-weight: 500;
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.cross {
  color: var(--grey-300);
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   PRESS CTA BOX
   ═══════════════════════════════════════════ */
.section--cta {
  border-top: none;
}

#try-it .wrap {
  max-width: 960px;
}

.section--cta + .section {
  border-top: 1px solid var(--grey-100);
}

.cta-box {
  background: var(--accent-dim);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.cta-box__left {
  flex: 0 0 38%;
}

.cta-box__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--grey-900);
}

.cta-box__right {
  flex: 1;
}

.cta-box__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--grey-600);
  max-width: 520px;
}

.cta-box__actions {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: #8b8df5;
  text-decoration: none;
}

.btn--outline {
  background: var(--white);
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
}

.btn--outline:hover {
  background: var(--grey-50);
  border-color: var(--grey-300);
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   BOILERPLATE
   ═══════════════════════════════════════════ */
.boilerplate {
  background: var(--grey-50);
  border: 1px dashed var(--grey-200);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
}

.boilerplate__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-600);
}

.copy-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 5px;
  border: 1px solid var(--grey-100);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--grey-300);
  padding: 0;
}

.copy-hint:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.copy-hint.copied {
  color: var(--accent);
  border-color: var(--accent);
}

.copy-hint svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.copy-hint .copy-check {
  display: none;
}

.copy-hint.copied .copy-icon {
  display: none;
}

.copy-hint.copied .copy-check {
  display: block;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.5rem;
}

.contact-card {
  background: var(--snow);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-800);
  line-height: 1.5;
}

.contact-card__value a {
  color: var(--grey-800);
  text-decoration: underline;
  text-decoration-color: var(--grey-200);
  text-underline-offset: 3px;
}

.contact-card__value a:hover {
  text-decoration-color: var(--accent);
}

.contact-card__note {
  font-size: 13.5px;
  color: var(--grey-400);
  margin-top: 4px;
}

/* review license callout */
.review-license {
  margin-top: 1.5rem;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}

.review-license__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--grey-800);
  margin-bottom: 4px;
}

.review-license__text {
  font-size: 15.5px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TIMING / CONTEXT SIDEBAR
   ═══════════════════════════════════════════ */
.context-strip {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 1.25rem 0;
  margin: 0;
}

.context-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 1rem;
  font-size: 15px;
  color: var(--grey-500);
  flex-wrap: wrap;
}

.context-strip__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.context-strip__item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.context-strip__item strong {
  color: var(--grey-700);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.press-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--grey-100);
  text-align: center;
  font-size: 13.5px;
  color: var(--grey-400);
}

.press-footer a {
  color: var(--grey-500);
}

/* ═══════════════════════════════════════════
   UTILITY & ANIMATIONS
   ═══════════════════════════════════════════ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
  }

  .press-nav__links { display: none; }

  .angles-grid {
    grid-template-columns: 1fr;
  }

  .assets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }

  .cta-box__left {
    flex: none;
  }

  .fact-table td:first-child {
    width: 140px;
  }

  .context-strip__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section--hero {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .assets-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PRINT STYLESHEET
   ═══════════════════════════════════════════ */
@media print {
  .press-nav,
  .btn,
  .video-container,
  .copy-hint,
  .hero__actions {
    display: none !important;
  }

  .section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .narrative-block {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
  }

  .narrative-block__quote {
    color: #000;
  }

  a { color: #000; text-decoration: underline; }
  a::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
}
