/* =========================================================================
   ABICS — Design System
   Hand-crafted, no framework. Design tokens as CSS custom properties.
   ========================================================================= */

:root {
  /* Brand palette — derived from the ABICS flyers (navy → indigo/purple
     gradient with a gold/amber accent, globe/tech motif) */
  --navy-950: #060a1a;
  --navy-900: #0a0f2c;
  --navy-800: #101a44;
  --indigo-700: #2a1f6e;
  --indigo-600: #3d2a8c;
  --violet-500: #5b3aa8;

  --gold-400: #f7c948;
  --gold-500: #f0b429;
  --gold-600: #d99a1b;
  --gold-700: #b8790a; /* darkest step — the only one with enough contrast on white for large decorative text */

  --ink-900: #111325;
  --ink-700: #3a3d5c;
  --ink-500: #666a8f;
  --ink-300: #9a9dbd;

  --paper-0: #ffffff;
  --paper-50: #f8f8fc;
  --paper-100: #eef0f9;
  --paper-200: #e1e4f2;

  --success-600: #1f9d55;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 15, 44, 0.06), 0 1px 3px rgba(10, 15, 44, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 15, 44, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 15, 44, 0.18);
  --shadow-gold: 0 10px 30px rgba(240, 180, 41, 0.35);

  --gradient-hero: radial-gradient(120% 140% at 85% -10%, #3d2a8c 0%, transparent 55%),
                    radial-gradient(90% 120% at -10% 110%, #1c2f7a 0%, transparent 50%),
                    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--indigo-700) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  --gradient-panel: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container-w: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-dark {
  background: var(--gradient-hero);
  color: var(--paper-0);
}
.section-paper { background: var(--paper-50); }

.stack { display: flex; flex-direction: column; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Type scale ---------- */
/* Gold (--gold-500) only has ~1.9:1 contrast against white — fine on dark
   sections, unreadable on light ones. Default to a dark indigo (10.9:1 on
   white) and only switch to gold inside a dark context. The leading dash
   stays gold in both cases since it's decorative, not text. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-600);
}
.eyebrow::before { content: ""; width: 1.5em; height: 2px; background: var(--gold-500); display: inline-block; }
.section-dark .eyebrow, .card-dark .eyebrow, .on-dark .eyebrow { color: var(--gold-400); }

h1, .h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 650; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-700); }
.section-dark .lede, .card-dark .lede, .on-dark .lede { color: rgba(255,255,255,0.78); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--paper-0); }
.muted { color: var(--ink-500); }
.section-dark .muted, .card-dark .muted, .on-dark .muted { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient-gold); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(240, 180, 41, 0.45); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--paper-0); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark { background: transparent; border-color: var(--navy-800); color: var(--navy-900); }
.btn-outline-dark:hover { background: var(--navy-900); color: var(--paper-0); }
.btn-ghost { background: var(--paper-100); color: var(--ink-900); }
.btn-ghost:hover { background: var(--paper-200); }
.btn-sm { padding: 0.6em 1.2em; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ----------
   Always carries a dark background — a fully transparent navbar only reads
   correctly while it happens to overlap a dark hero; at rest (top of page,
   or on any page/scroll position where light content sits behind it) white
   nav text on a transparent bar becomes invisible against the white page
   background. A permanent dark bar (slightly more opaque once scrolled)
   keeps it legible everywhere. */
/* backdrop-filter (like transform) creates a new containing block for any
   position:fixed descendant — since the mobile nav-links panel below is
   fixed and lives inside .navbar, putting backdrop-filter directly on
   .navbar would trap that panel inside the navbar's own ~60px box instead
   of the full viewport. Applying it via ::before instead keeps .navbar
   itself filter-free. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 10, 26, 0.75);
  backdrop-filter: blur(14px);
  transition: background 0.3s var(--ease-out);
}
.navbar.is-scrolled::before, .navbar.is-solid::before {
  background: rgba(6, 10, 26, 0.94);
}
.navbar.is-scrolled, .navbar.is-solid {
  box-shadow: var(--shadow-sm);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--paper-0); }
/* The official logo has black text — it needs a light backing chip to stay
   legible on the dark navbar/footer. */
.brand-logo-chip {
  background: var(--paper-0);
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-logo-chip img { height: 62px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo-chip img { height: 48px; } }
.brand-sub { font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
@media (max-width: 480px) { .brand-sub { display: none; } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.82); position: relative; padding-block: 0.25rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-500); transition: right 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--paper-0); }
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--paper-0); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
/* position:relative + a z-index above .nav-links (which is position:fixed) is
   required, not decorative — any positioned element paints above a
   non-positioned sibling regardless of DOM order, so without this the open
   nav panel silently intercepts every tap meant for this button and it
   becomes impossible to close. */
.nav-toggle { display: none; position: relative; z-index: 210; background: none; border: none; color: var(--paper-0); padding: 0.4rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.nav-scrim {
  display: none;
  position: fixed; inset: 0; z-index: 190;
  background: rgba(6, 10, 26, 0.5);
  opacity: 0; transition: opacity 0.35s var(--ease-out);
}
.nav-scrim.is-open { display: block; opacity: 1; }

@media (max-width: 900px) {
  .nav-links { position: fixed; z-index: 200; inset: 0 0 0 30%; background: var(--navy-950); flex-direction: column; justify-content: center; align-items: flex-start; padding: 2rem; gap: 1.75rem; transform: translateX(100%); transition: transform 0.35s var(--ease-out); box-shadow: -20px 0 60px rgba(0,0,0,0.3); overflow-y: auto; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 8rem) clamp(4rem, 9vw, 7rem);
}
.hero-orbit {
  position: absolute; top: -20%; right: -12%; width: min(60vw, 640px); aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 201, 72, 0.18);
  pointer-events: none;
}
.hero-orbit::before, .hero-orbit::after {
  content: ""; position: absolute; inset: 10%; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
}
.hero-orbit::after { inset: 22%; border-color: rgba(255,255,255,0.06); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(70vw, 320px); margin-inline: auto; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill); font-size: 0.82rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(240,180,41,0.25); }

.hero-visual {
  position: relative; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4b3aa8, #14204f 65%);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.35), var(--shadow-lg);
  display: grid; place-items: center;
}
.hero-visual::before {
  content: ""; position: absolute; inset: -18px; border-radius: 50%; border: 1px dashed rgba(247,201,72,0.35); animation: spin 40s linear infinite;
}
.hero-visual::after {
  content: ""; position: absolute; inset: -38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual-glow { position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; background: var(--gradient-gold); filter: blur(46px); opacity: 0.55; }
.globe-svg { position: relative; width: 84%; height: auto; display: block; animation: globe-spin 120s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes globe-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .globe-svg, .hero-visual::before { animation: none; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper-0);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-900), var(--indigo-600));
  display: grid; place-items: center; color: var(--gold-400); margin-bottom: 1.1rem;
  font-size: 1.3rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card-dark {
  background: var(--gradient-panel);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--paper-0);
}
.card-dark .muted { color: rgba(255,255,255,0.65); }

/* Event / training cards */
.event-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.event-card-media {
  aspect-ratio: 16/10; background: var(--gradient-hero); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.event-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4em; padding: 0.35em 0.85em;
  border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  width: fit-content;
}
.badge-upcoming { background: rgba(31, 157, 85, 0.12); color: var(--success-600); }
.badge-past { background: var(--paper-100); color: var(--ink-500); }
.badge-gold { background: rgba(240,180,41,0.15); color: var(--gold-600); }
/* On a dark hero the light-card badge colors above look like a mismatched
   solid patch — swap to a translucent "glass" treatment consistent with
   .hero-badge instead. */
.section-dark .badge-upcoming { background: rgba(52, 211, 153, 0.16); color: #6ee7b7; }
.section-dark .badge-past { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.14); }

/* Testimonial cards */
.testimonial-card { position: relative; }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--gold-700); line-height: 1; margin-bottom: 0.25rem; display: block; }
.testimonial-person { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.25rem; }
.star-rating { color: var(--gold-700); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--indigo-600), var(--navy-800));
  display: grid; place-items: center; color: var(--paper-0); font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}

/* Team card */
.team-card { text-align: center; }
.team-photo {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--indigo-600), var(--navy-900));
  display: grid; place-items: center; color: var(--gold-400); font-size: 2.4rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--paper-0);
}

/* ---------- Sections shared bits ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.text-center { margin-inline: auto; }

.pillar-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--paper-200); }

/* Stats row */
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gold-400); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--ink-900); }
.form-field .hint { font-size: 0.78rem; color: var(--ink-500); margin-top: 0.35rem; }
.form-control {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm);
  border: 1.5px solid var(--paper-200); background: var(--paper-0); color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(240,180,41,0.15); outline: none; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem 1.25rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--ink-700); }
.form-check input { margin-top: 0.25rem; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.92rem; }
.alert-success { background: rgba(31,157,85,0.1); color: var(--success-600); border: 1px solid rgba(31,157,85,0.25); }
.alert-error { background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.25); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-heading { font-family: var(--font-display); color: var(--paper-0); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.68); transition: color .2s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.divider { height: 1px; background: var(--paper-200); border: none; margin-block: 0; }
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* AskProf browser-window mockup — an illustrative sketch of the product
   (not a real screenshot, since we don't have one to embed). */
.askprof-mock {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-900);
  box-shadow: var(--shadow-lg); border: 1px solid var(--paper-200);
}
.askprof-mock-bar {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem;
  background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.askprof-mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-block; }
.askprof-mock-url {
  margin-left: 0.6rem; padding: 0.25rem 0.9rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 0.75rem;
}
.askprof-mock-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; min-height: 220px; }
.askprof-bubble { max-width: 82%; padding: 0.7em 1em; border-radius: var(--radius-md); font-size: 0.88rem; line-height: 1.45; }
.askprof-bubble-user { align-self: flex-end; background: var(--gradient-gold); color: var(--navy-950); border-bottom-right-radius: 4px; font-weight: 600; }
.askprof-bubble-ai { align-self: flex-start; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border-bottom-left-radius: 4px; }
.askprof-bubble-ai em { color: var(--gold-400); font-style: normal; }
.askprof-mock-typing { align-self: flex-start; display: flex; gap: 4px; padding: 0.7em 1em; background: rgba(255,255,255,0.08); border-radius: var(--radius-md); border-bottom-left-radius: 4px; }
.askprof-mock-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); animation: askprof-blink 1.4s infinite; }
.askprof-mock-typing span:nth-child(2) { animation-delay: 0.2s; }
.askprof-mock-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes askprof-blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

/* Press strip — "As Featured In" row of outside coverage */
.press-strip { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--paper-200); }
.press-strip-label {
  display: block; text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500);
  margin-bottom: 1.5rem;
}
.press-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.press-item {
  display: flex; flex-direction: column; gap: 0.35rem; padding: 1.1rem 1.25rem;
  border: 1px solid var(--paper-200); border-radius: var(--radius-md); background: var(--paper-0);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}
.press-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.press-outlet { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: var(--indigo-600); }
.press-headline { font-size: 0.85rem; line-height: 1.4; color: var(--ink-700); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--navy-950);
  padding: 0.75rem 1.25rem; z-index: 999; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.empty-state {
  text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; border: 1.5px dashed var(--paper-200);
  border-radius: var(--radius-lg); background: var(--paper-50);
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}
