/* ═══════════════════════════════════════════════════════════════════════════
   THE PLAIN BRIEF — Global Stylesheet
   theplainbrief.com | Complex decisions. Plain language.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --navy:    #0D1B3E;
  --blue:    #2C57C4;
  --sky:     #4A82EA;
  --ink:     #1A1A2E;
  --slate:   #4A5568;
  --steel:   #718096;
  --rule:    #CBD5E0;
  --bg:      #F7F9FC;
  --white:   #FFFFFF;
  --lt:      #EBF4FF;
  --muted:   #A0AEC0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,249,252,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: 3px;
}
.nav-cta:hover { background: var(--blue) !important; }
.nav-back {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--slate); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
}
.nav-back::before { content: '←'; }
.nav-back:hover { color: var(--blue); }

/* ── SHARED LAYOUT ────────────────────────────────────────────────────────── */
.container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }

.section-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--blue);
}
.section-head {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 1.2rem; letter-spacing: -0.01em;
}
.section-body {
  font-size: 1rem; color: var(--slate);
  max-width: 560px; line-height: 1.8;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 0 2rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(44,87,196,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px; margin: 0 auto;
  padding: 8rem 0 6rem; position: relative; z-index: 1;
}
.hero-label {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky);
  border: 1px solid rgba(74,130,234,0.35); padding: 0.35rem 0.9rem;
  border-radius: 2px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500; color: var(--white);
  line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-headline em { font-style: italic; color: rgba(255,255,255,0.6); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.6);
  max-width: 560px; line-height: 1.75; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.6s ease forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--white); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.9rem 2rem; border-radius: 3px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sky); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; color: rgba(255,255,255,0.6); font-size: 0.85rem;
  font-weight: 400; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-navy {
  display: inline-block; background: var(--navy); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.9rem 2rem; border-radius: 3px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--blue); transform: translateY(-1px); }

/* ── BRIEF CARDS ──────────────────────────────────────────────────────────── */
.brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5px; background: var(--rule);
  border: 1px solid var(--rule);
}
.brief-card {
  background: var(--white); padding: 1.8rem 1.8rem 1.5rem;
  display: flex; flex-direction: column;
  text-decoration: none; transition: background 0.15s; cursor: pointer;
}
.brief-card:hover { background: var(--lt); }
.brief-card-meta {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.brief-domain {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.brief-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }
.brief-code { font-size: 0.65rem; color: var(--steel); letter-spacing: 0.08em; }
.brief-title {
  font-family: 'EB Garamond', serif; font-size: 1.2rem; font-weight: 500;
  color: var(--navy); line-height: 1.35; margin-bottom: 1.2rem; flex: 1;
}
.brief-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--rule);
}
.brief-formats { font-size: 0.72rem; color: var(--steel); }
.brief-price {
  font-family: 'EB Garamond', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--navy);
}
.brief-cta { font-size: 0.72rem; font-weight: 500; color: var(--blue); }
.brief-cta::after { content: ' →'; }

/* ── DOMAIN TABS ──────────────────────────────────────────────────────────── */
.domain-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.domain-tab {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem; border-radius: 2px;
  border: 1px solid var(--rule); color: var(--slate);
  background: transparent; cursor: pointer; transition: all 0.15s;
  text-transform: uppercase;
}
.domain-tab.active, .domain-tab:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ── PACKS ────────────────────────────────────────────────────────────────── */
.packs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1); margin-top: 3rem;
}
.pack-card {
  background: rgba(255,255,255,0.04); padding: 2rem 1.8rem;
  transition: background 0.2s;
}
.pack-card:hover { background: rgba(255,255,255,0.08); }
.pack-card.featured { background: rgba(44,87,196,0.3); }
.pack-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 1rem; display: block;
}
.pack-name {
  font-family: 'EB Garamond', serif; font-size: 1.4rem;
  font-weight: 500; color: var(--white); margin-bottom: 0.5rem; line-height: 1.3;
}
.pack-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.5rem; }
.pack-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.4rem; }
.pack-price { font-family: 'EB Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--white); }
.pack-period { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.pack-was { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-bottom: 1.5rem; }
.pack-includes { list-style: none; margin-bottom: 2rem; }
.pack-includes li {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.6rem;
}
.pack-includes li::before { content: '—'; color: var(--sky); font-size: 0.7rem; flex-shrink: 0; }
.pack-btn {
  display: block; text-align: center; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.8rem; border-radius: 3px;
  text-decoration: none; transition: all 0.15s;
}
.pack-btn.outline { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); }
.pack-btn.outline:hover { border-color: var(--sky); color: var(--sky); }
.pack-btn.solid { background: var(--white); color: var(--navy); }
.pack-btn.solid:hover { background: var(--sky); color: var(--white); }

/* ── EMAIL CAPTURE ────────────────────────────────────────────────────────── */
.capture-section { background: var(--navy); position: relative; overflow: hidden; }
.capture-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(44,87,196,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.capture-inner {
  max-width: 900px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.capture-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem;
}
.capture-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--sky); }
.capture-headline {
  font-family: 'EB Garamond', serif; font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.capture-desc { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.5rem; }
.capture-what { list-style: none; }
.capture-what li {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  padding: 0.35rem 0; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4;
}
.capture-what li::before { content: '—'; color: var(--sky); flex-shrink: 0; font-size: 0.75rem; margin-top: 1px; }
.capture-right {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 2.2rem 2rem;
}
.capture-form-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.2rem; display: block;
}
.capture-input {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 3px;
  padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--white); outline: none; margin-bottom: 0.85rem;
  transition: border-color 0.2s;
}
.capture-input::placeholder { color: rgba(255,255,255,0.3); }
.capture-input:focus { border-color: var(--sky); }
.capture-btn {
  width: 100%; background: var(--white); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.95rem; border: none; border-radius: 3px;
  cursor: pointer; transition: background 0.2s; margin-bottom: 1rem;
}
.capture-btn:hover { background: var(--sky); color: var(--white); }
.capture-fine { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.5; }
.capture-preview { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.capture-preview-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.6rem; }
.capture-preview-card {
  background: rgba(255,255,255,0.06); border-radius: 3px;
  padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.capture-preview-icon {
  width: 32px; height: 32px; background: var(--blue); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; flex-shrink: 0;
}
.capture-preview-title { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.35; }
.capture-preview-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 1px; }
.capture-success { display: none; text-align: center; padding: 1rem 0; }
.capture-success-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.capture-success-head { font-family: 'EB Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.capture-success-body { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── PRODUCT PAGE ─────────────────────────────────────────────────────────── */
.product-hero { background: var(--navy); padding: 7rem 2rem 4rem; position: relative; overflow: hidden; }
.product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 30%, rgba(44,87,196,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.product-hero-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.product-domain {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sky); border: 1px solid rgba(74,130,234,0.4); padding: 0.3rem 0.8rem; border-radius: 2px;
}
.product-code { font-size: 0.68rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.product-title {
  font-family: 'EB Garamond', serif; font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.product-subtitle { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin-bottom: 2rem; }
.product-specs { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.product-spec-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.product-spec-val { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.product-body {
  max-width: 820px; margin: 0 auto; padding: 3rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start;
}
.product-content {}
.preview-block { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-bottom: 2.5rem; }
.preview-header {
  background: var(--navy); padding: 0.85rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.preview-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); }
.preview-duration { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.preview-player { padding: 1.2rem; }
.buzzsprout-placeholder {
  background: var(--bg); border: 2px dashed var(--rule); border-radius: 3px;
  padding: 1.5rem; text-align: center; color: var(--steel); font-size: 0.82rem; line-height: 1.6;
}
.buzzsprout-placeholder strong { display: block; color: var(--slate); margin-bottom: 0.4rem; }
.product-section { margin-bottom: 2.5rem; }
.product-section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem;
}
.product-section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue); }
.product-section-head { font-family: 'EB Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: 0.8rem; }
.product-section-body { font-size: 0.95rem; color: var(--slate); line-height: 1.8; }
.product-section-body p + p { margin-top: 0.8rem; }
.learn-list { list-style: none; margin-top: 1rem; }
.learn-list li {
  font-size: 0.9rem; color: var(--slate); padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg); display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.5;
}
.learn-list li::before { content: '—'; color: var(--blue); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.formats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  border-radius: 3px; overflow: hidden; margin-top: 1rem;
}
.format-card { background: var(--white); padding: 1rem 1.2rem; }
.format-name { font-family: 'EB Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.format-desc { font-size: 0.78rem; color: var(--steel); line-height: 1.5; }
.example-callout {
  background: var(--lt); border-left: 3px solid var(--blue);
  border-radius: 0 3px 3px 0; padding: 1.2rem 1.4rem; margin-top: 1rem;
}
.example-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.example-name { font-size: 0.8rem; color: var(--slate); margin-bottom: 0.6rem; font-weight: 500; }
.example-text { font-size: 0.9rem; color: var(--slate); line-height: 1.7; font-style: italic; }

/* ── PURCHASE CARD ────────────────────────────────────────────────────────── */
.purchase-card { position: sticky; top: 80px; background: var(--white); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.purchase-card-top { background: var(--navy); padding: 1.5rem; }
.purchase-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.3rem; }
.purchase-price { font-family: 'EB Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--white); }
.purchase-per { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.purchase-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.purchase-card-body { padding: 1.4rem; }
.purchase-includes { list-style: none; margin-bottom: 1.4rem; }
.purchase-includes li {
  font-size: 0.82rem; color: var(--slate); padding: 0.45rem 0;
  border-bottom: 1px solid var(--bg); display: flex; align-items: center; gap: 0.6rem;
}
.purchase-includes li::before { content: '✓'; color: var(--blue); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.purchase-btn {
  display: block; width: 100%; background: var(--navy); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 1rem; border: none; border-radius: 3px;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background 0.15s; margin-bottom: 0.8rem;
}
.purchase-btn:hover { background: var(--blue); }
.purchase-guarantee { font-size: 0.72rem; color: var(--steel); text-align: center; line-height: 1.5; }
.purchase-divider { height: 1px; background: var(--rule); margin: 1.2rem 0; }
.purchase-series-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--steel); margin-bottom: 0.8rem; }
.purchase-pack-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border-radius: 3px; padding: 0.85rem 1rem;
  text-decoration: none; transition: background 0.15s; margin-bottom: 0.5rem;
}
.purchase-pack-link:hover { background: var(--lt); }
.pack-link-name { font-size: 0.82rem; font-weight: 500; color: var(--navy); line-height: 1.3; }
.pack-link-sub { font-weight: 300; font-size: 0.75rem; color: var(--steel); }
.pack-link-price { font-family: 'EB Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--blue); flex-shrink: 0; margin-left: 0.5rem; }

/* ── RELATED ──────────────────────────────────────────────────────────────── */
.related-section { border-top: 1px solid var(--rule); padding-top: 3rem; margin-top: 1rem; grid-column: 1/-1; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 1.5rem;
}
.related-card { background: var(--white); padding: 1.4rem; text-decoration: none; display: block; transition: background 0.12s; }
.related-card:hover { background: var(--lt); }
.related-domain { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.related-title { font-family: 'EB Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: 0.8rem; }
.related-cta { font-size: 0.72rem; color: var(--blue); font-weight: 500; }

/* ── FREE GUIDE PAGE ──────────────────────────────────────────────────────── */
.guide-hero { background: var(--navy); padding: 8rem 2rem 5rem; text-align: center; position: relative; overflow: hidden; }
.guide-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(44,87,196,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.guide-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.guide-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky);
  border: 1px solid rgba(74,130,234,0.4); padding: 0.35rem 0.9rem;
  border-radius: 2px; margin-bottom: 2rem;
}
.guide-title {
  font-family: 'EB Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem;
}
.guide-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 2.5rem; }
.guide-form-wrap {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 2rem; max-width: 440px; margin: 0 auto;
}
.guide-form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; display: block; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.contact-hero { background: var(--navy); padding: 8rem 2rem 5rem; }
.contact-body { max-width: 680px; margin: 0 auto; padding: 4rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-method { border-top: 2px solid var(--navy); padding-top: 1.2rem; }
.contact-method-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--steel); margin-bottom: 0.5rem; }
.contact-method-val { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-method-val a { color: var(--blue); text-decoration: none; }
.contact-method-val a:hover { text-decoration: underline; }
.contact-method-desc { font-size: 0.85rem; color: var(--slate); margin-top: 0.4rem; line-height: 1.6; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 4rem 2rem; }
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand { margin-bottom: 0.4rem; }
.footer-brand img { height: 28px; width: auto; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-disclaimer {
  width: 100%; font-size: 0.75rem; color: rgba(255,255,255,0.25);
  line-height: 1.6; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2rem;
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .packs-grid, .capture-inner, .product-body, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .brief-grid { grid-template-columns: 1fr; }
  .purchase-card { position: static; }
  .formats-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
