/* FineInkPrint.com stylesheet */

/* ========================================
   VARIABLES
   ======================================== */
:root {
  --color-bg:           #f7f4ee;
  --color-bg-warm:      #f2ede4;
  --color-dark:         #111118;
  --color-dark-mid:     #1c1c24;
  --color-text:         #1a1a1e;
  --color-text-muted:   #6b6b72;
  --color-text-light:   #ffffff;
  --color-gold:         #c8a84b;
  --color-gold-dark:    #a8893a;
  --color-border:       #e2ddd5;
  --color-header:       #ffffff;

  --font-stack:  'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --utility-height: 34px;
  --header-height:  70px;
  --total-header:   calc(var(--utility-height) + var(--header-height));

  --max-width:       1280px;
  --max-width-narrow: 760px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --shadow-dropdown: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-card:     0 2px 12px rgba(0,0,0,0.06);
}

/* ========================================
   RESET + BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-stack);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-top: var(--total-header);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ========================================
   CONTAINERS
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-stack);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 40px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-text);
  color: #fff;
  border: 1.5px solid var(--color-text);
}
.btn--primary:hover { background: #333; border-color: #333; }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn--outline-dark:hover { border-color: var(--color-text); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-text);
  border: 1.5px solid var(--color-gold);
}
.btn--gold:hover { background: var(--color-gold-dark); border-color: var(--color-gold-dark); }

/* ========================================
   UTILITY BAR
   ======================================== */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--utility-height);
  background: var(--color-dark);
  z-index: 200;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.utility-bar__brand {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.utility-bar__tagline {
  flex: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.utility-bar__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.utility-bar__nav a {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.utility-bar__nav a:hover { color: #fff; }

/* ========================================
   MAIN HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.main-header {
  position: absolute;
  top: var(--utility-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
}
.main-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}
.site-logo__sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Primary nav */
.primary-nav { flex: 1; }
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-gold-dark); }
.nav-link--toggle { background: none; border: none; }

.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item.is-open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-top: 2px solid var(--color-gold);
  box-shadow: var(--shadow-dropdown);
  padding: 8px 0;
  z-index: 300;
}
.nav-item.is-open .nav-dropdown { display: block; }

.nav-dropdown__link {
  display: block;
  padding: 10px 20px;
  transition: background 0.15s;
}
.nav-dropdown__link:hover { background: var(--color-bg); }

.nav-dropdown__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}
.nav-dropdown__desc {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-muted);
  transition: color 0.15s;
}
.search-toggle:hover { color: var(--color-text); }

.marketplace-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 16px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  gap: 0;
  line-height: 1;
}
.marketplace-btn:hover { background: var(--color-dark-mid); }
.marketplace-btn__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marketplace-btn__sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px;
  color: var(--color-text);
}
.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger__label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--total-header);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.is-open { display: block; }

.mobile-nav-group { border-bottom: 1px solid var(--color-border); }

.mobile-nav-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-align: left;
  text-decoration: none;
}
.mobile-nav-group__toggle svg { flex-shrink: 0; transition: transform 0.2s; }
.mobile-nav-group__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-nav-group__children {
  padding-bottom: 12px;
}
.mobile-nav-group__children li a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 16px;
  color: var(--color-text-muted);
  border-left: 2px solid var(--color-border);
  margin-left: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.mobile-nav-group__children li a:hover {
  color: var(--color-text);
  border-color: var(--color-gold);
}

.mobile-nav-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-utility a {
  font-size: 14px;
  color: var(--color-text-muted);
}
.mobile-nav-utility a:hover { color: var(--color-text); }

.mobile-marketplace-btn {
  display: block;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--color-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: calc(100vh - var(--total-header));
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--total-header));
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 100%;
}

.hero__content { padding-right: 24px; }

.hero__heading {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--color-text);
  margin-bottom: 24px;
}
.hero__heading-emphasis { display: inline; }

.hero__subheadline {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.hero__tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero images panel */
.hero__images {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}
.hero__image-a {
  position: absolute;
  inset: 0;
  right: -24px;
  background: linear-gradient(145deg, #b5a28c 0%, #8b7355 35%, #6b5c48 60%, #4a3f33 100%);
  background-image: url('/assets/images/hero-landscape.jpg');
  background-size: cover;
  background-position: center;
}
.hero__image-b {
  position: absolute;
  bottom: -30px;
  right: 40px;
  width: 45%;
  height: 48%;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  background-image: url('/assets/images/hero-detail.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: -8px -8px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ========================================
   AUDIENCE PATHWAYS
   ======================================== */
.audience-section {
  padding: 80px 0;
  background: var(--color-bg-warm);
  text-align: center;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.audience-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.audience-card__icon {
  width: 44px;
  height: 44px;
  color: var(--color-text-muted);
}
.audience-card__icon svg {
  width: 44px;
  height: 44px;
}
.audience-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.audience-card__desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ========================================
   DARK SECTION
   ======================================== */
.dark-section {
  background: var(--color-dark);
  padding: 80px 0;
  color: var(--color-text-light);
}
.dark-section__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}
.dark-section__heading {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}
.dark-section__body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Topics grid */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.topics-grid li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.topics-grid li:nth-last-child(-n+2) { border-bottom: none; }

.topic-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
  gap: 8px;
}
.topic-link:hover { color: #fff; }
.topic-link svg { flex-shrink: 0; opacity: 0.5; }
.topic-link:hover svg { opacity: 1; }

/* ========================================
   MARKETPLACE BAR
   ======================================== */
.marketplace-bar {
  background: var(--color-dark-mid);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marketplace-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.marketplace-bar__heading {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}
.marketplace-bar__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  padding: 80px 0;
  background: var(--color-bg);
}
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}
.faq-item__question:hover { color: var(--color-gold-dark); }

.faq-chevron { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-item__answer {
  padding-bottom: 20px;
}
.faq-item__answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================
   PAGE HERO (interior pages)
   ======================================== */
.page-hero {
  padding: 64px 0 56px;
}
.page-hero--light { background: var(--color-bg); }
.page-hero--warm  { background: var(--color-bg-warm); }

.page-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 620px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: var(--color-border);
}
.breadcrumb a:hover { color: var(--color-text); }

/* ========================================
   PAGE BODY (interior pages)
   ======================================== */
.page-body {
  padding: 64px 0 80px;
  background: var(--color-bg);
}

/* Content sections */
.content-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.content-section:last-of-type { border-bottom: none; }

.content-section__heading {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--color-text);
}

.content-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}

.content-checklist {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}
.content-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 8px;
}

.content-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-links a {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.15s;
}
.content-links a:hover { color: var(--color-gold-dark); }

/* Guide sections (numbered) */
.guide-section {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.guide-section:last-of-type { border-bottom: none; }

.guide-section__number {
  font-size: 40px;
  font-weight: 200;
  color: var(--color-border);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}
.guide-section__heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.guide-section__content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}

/* Content FAQ */
.content-faq {
  padding: 40px 0;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-section { padding: 40px 0; }
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
}
.comparison-table th:first-child { width: 30%; }
.comparison-table th:nth-child(2) { color: var(--color-text); }

.comparison-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}
.comparison-table__label {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table__a { font-weight: 500; color: var(--color-text); }
.comparison-table__b { color: var(--color-text-muted); }

/* ========================================
   BRIDGE CTA
   ======================================== */
.bridge-cta {
  margin-top: 64px;
  padding: 48px;
  background: var(--color-dark);
  border-radius: var(--radius-md);
  text-align: center;
}
.bridge-cta__heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}
.bridge-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

/* ========================================
   GLOSSARY
   ======================================== */
.glossary-body {
  padding: 0 0 80px;
  background: var(--color-bg);
}
.glossary-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.glossary-alpha__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.glossary-alpha__letter:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.glossary-group { margin-bottom: 48px; }
.glossary-group__letter {
  font-size: 28px;
  font-weight: 200;
  color: var(--color-border);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}
.glossary-list { display: flex; flex-direction: column; }
.glossary-entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: calc(var(--total-header) + 24px);
}
.glossary-entry:last-child { border-bottom: none; }
.glossary-entry__term {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.glossary-entry__def {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ========================================
   GENERIC PAGE
   ======================================== */
.generic-body { padding: 0 0 32px; }
.generic-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--color-text);
}
.mission-statement {
  border-left: 3px solid var(--color-gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--color-bg-warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.mission-statement p {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
}
.coming-soon-notice {
  padding: 24px;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.coming-soon-notice p {
  font-size: 15px;
  color: var(--color-text-muted);
}
.related-links, .page-links {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}
.related-links h2, .page-links h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.related-links ul, .page-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-links a, .page-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.15s;
}
.related-links a:hover, .page-links a:hover { color: var(--color-gold-dark); }

/* ========================================
   FOOTER PILLARS
   ======================================== */
.footer-pillars {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
.footer-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar__icon {
  width: 36px;
  height: 36px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.pillar__icon svg { width: 36px; height: 36px; }
.pillar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar__text strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.pillar__text span {
  font-size: 12px;
  color: var(--color-text-muted);
}
.pillar--logo {
  justify-content: flex-end;
}

/* Footer logo */
.footer-logo,
.footer-logo-stacked {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.footer-logo__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}
.footer-logo__sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   FOOTER MAIN
   ======================================== */
.footer-main {
  background: var(--color-dark);
  padding: 64px 0 32px;
}
.footer-main__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col--about .footer-logo-stacked .footer-logo__name { color: #fff; }
.footer-col--about .footer-logo-stacked .footer-logo__sub { color: rgba(255,255,255,0.4); }
.footer-col--about p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 16px 0;
}
.footer-partner-link {
  font-size: 13px;
  color: var(--color-gold);
  transition: color 0.15s;
}
.footer-partner-link:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom p:last-child {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Large - hide some utility bar items */
@media (max-width: 1100px) {
  .utility-bar__tagline { display: none; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-pillars__grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }

  .primary-nav,
  .marketplace-btn,
  .search-toggle { display: none; }

  .hamburger { display: flex; }

  .header-actions { margin-left: auto; }

  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
  .hero__content { padding-right: 0; }
  .hero__images { display: none; }

  .audience-grid { grid-template-columns: repeat(4, 1fr); }

  .dark-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .topics-grid { grid-template-columns: 1fr; }

  .marketplace-bar__inner { flex-direction: column; text-align: center; }

  .footer-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar--logo { justify-content: flex-start; grid-column: 1 / -1; }

  .footer-main__grid { grid-template-columns: 1fr 1fr; }

  .utility-bar__brand { display: none; }
}

@media (max-width: 640px) {
  :root { --utility-height: 32px; }

  .utility-bar__nav { display: none; }

  .hero { min-height: auto; padding: 48px 0; }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  .guide-section { grid-template-columns: 1fr; gap: 8px; }
  .guide-section__number { font-size: 28px; }

  .bridge-cta { padding: 32px 24px; }

  .footer-pillars {
    padding: 32px 0;
  }
  .footer-pillars__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pillar--logo { grid-column: auto; }

  /* Mobile footer: single column, 2x size text */
  .footer-main__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col h3 { font-size: 14px; }
  .footer-col ul li a { font-size: 20px; line-height: 1.6; }
  .footer-col--about p { font-size: 16px; }
  .footer-partner-link { font-size: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom p:last-child { flex-wrap: wrap; gap: 12px; }
  .footer-bottom a { font-size: 16px; }

  .comparison-table th, .comparison-table td { padding: 10px; }

  .glossary-alpha { gap: 4px; }
  .glossary-alpha__letter { width: 30px; height: 30px; font-size: 12px; }
}

/* ========================================
   FOCUS / ACCESSIBILITY
   ======================================== */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
