/* ── Starving Chartist v1 ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-outer:   #050A10;
  --bg-post:    #0A1018;
  --bg-card:    #111b2a;
  --border:     #1e2f42;
  --text:       #E2ECF5;
  --muted:      #7691AD;   /* brand spec */
  --dim:        #3E5974;   /* brand spec - tertiary */
  --sub-muted:  #9BB8D4;
  --orange:     #E8782A;   /* Brand Orange — logo, CTAs, highlights */
  --gold:       #F2B349;   /* Gold — data/alerts/warnings ONLY */
  --blue:       #61A8FF;   /* Brand Blue — links, headers */
  --green:      #55c08d;
  --red:        #ff7f79;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-outer);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 10, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
}
.nav-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* icon-button style — matches the reference screenshot */
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  border-radius: 8px;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-link:hover {
  background: rgba(232,120,42,0.12);
}
.nav-link .nav-icon-svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  padding: 64px 32px 56px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-cta {
  display: inline-block;
  padding: 13px 36px;
  background: var(--orange);
  color: #0A1018;
  font-weight: 700;
  font-size: 1em;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 8px;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.88; }
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  transition: border-color .15s;
}
.subscribe-form input:focus { border-color: var(--orange); }
.subscribe-form button {
  padding: 14px 22px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
  transition: opacity .15s;
}
.subscribe-form button:hover { opacity: .88; }
.micro {
  font-size: 12px;
  color: var(--muted);
}
.micro span { color: var(--green); }

/* ── PROOF STRIP ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-outer);
  padding: 22px 32px;
  display: flex;
  justify-content: center;
  gap: 56px;
}
.proof-item { text-align: center; }
.proof-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.proof-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

/* ── SECTION ── */
.section {
  padding: 48px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-outer);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-alt .section { border: none; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
}

/* ── TIER CARDS ── */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.tier-card.featured { border-color: var(--orange); }
.tier-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.tier-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.tier-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.tier-price strong { color: var(--green); font-size: 22px; }
.tier-features {
  list-style: none;
}
.tier-features li {
  font-size: 13px;
  color: var(--sub-muted);
  padding: 6px 0;
  border-bottom: 1px solid #1a2535;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.tier-features li::before { content: "→"; color: var(--orange); flex-shrink: 0; }
.tier-price-alt {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.yearly-btn-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.yearly-btn {
  flex: 1;
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s;
}
.yearly-btn:hover { border-color: var(--muted); }
.yearly-btn span { color: var(--text); font-weight: 700; }
.save-badge {
  background: rgba(85,192,141,0.15);
  color: var(--green);
  border-radius: 4px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.tier-features li:last-child { border-bottom: none; }
.tier-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 11px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}
.tier-btn:hover { opacity: .85; }
.tier-btn-free {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--sub-muted);
}
.tier-btn-featured {
  background: var(--orange);
  color: #fff;
  border: none;
}
.tier-btn-standard {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

/* ── FORMAT CARDS ── */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.format-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.format-banner {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.format-body { padding: 16px 20px 20px; }
.format-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.format-desc {
  font-size: 13px;
  color: var(--sub-muted);
  line-height: 1.55;
}

/* ── TEAM PHOTO ── */
.team-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.team-wrap img {
  width: 100%;
  display: block;
}
.team-caption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  padding: 52px 32px;
  text-align: center;
  background: var(--bg-outer);
  border-top: 1px solid var(--border);
}
.bottom-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.bottom-cta p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
  background: var(--bg-outer);
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-icon { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; }
.footer-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-legal { font-size: 11px; color: var(--muted); line-height: 1.8; }
.footer-legal a { color: var(--blue); text-decoration: none; }
.footer-right { display: flex; align-items: center; gap: 16px; }
.footer-x { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
.footer-x:hover { color: var(--text); }

/* ── SUBSCRIBE PAGE ── */
.sub-hero {
  padding: 80px 32px 60px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.urgency-bar {
  background: #0d1a10;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--green);
  max-width: 500px;
  margin: 0 auto 32px;
}
.urgency-bar strong { color: var(--text); }

.proof-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0;
}
.proof-block-icon { font-size: 36px; flex-shrink: 0; }
.proof-block-text h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.proof-block-text p { font-size: 13px; color: var(--sub-muted); line-height: 1.6; }

/* ── FAQ ── */
.faq { max-width: 680px; margin: 0 auto; padding: 48px 32px; }
.faq-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--sub-muted); line-height: 1.65; }

/* ── ARCHIVE ── */
.archive-header {
  padding: 48px 32px 28px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.archive-header h1 { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.archive-header p { font-size: 14px; color: var(--muted); }

.filter-bar {
  padding: 16px 32px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-outer);
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.filter-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: color .15s, border-color .15s, background .15s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--orange);
  border-color: var(--orange);
  background: #1a1505;
}

.post-list { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.post-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  margin: 0 -8px;
  padding: 20px 8px;
  border-radius: 6px;
}
.post-row:hover { background: var(--bg-card); }
.post-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.badge-dd { background: #1a1505; color: var(--orange); border: 1px solid #3a2a10; }
.menu-disclaimer {
  margin-top: 28px;
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.footer-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.badge-lp { background: #05101a; color: var(--blue); border: 1px solid #1e2f42; }
.badge-mc { background: #0a1505; color: var(--green); border: 1px solid #1a2f1a; }
.badge-dish { background: #150505; color: var(--red); border: 1px solid #3a1010; }
.post-content { flex: 1; }
.post-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.post-meta { font-size: 12px; color: var(--muted); }
.post-lock { color: var(--orange); margin-left: 4px; }
.post-chevron { color: var(--border); font-size: 20px; align-self: center; flex-shrink: 0; }

/* ── MASTHEAD ── */
.masthead {
  background: var(--bg-post);
  padding: 20px 32px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.masthead-rule { display: none; }
.masthead-inner {
  display: inline-block;
  text-align: left;
  padding: 0 0 16px;
}
.masthead-logo {
  display: inline-block;
  text-align: left;
}
.mh-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.masthead-wordmark {
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.mh-bracket {
  font-weight: 300;
  color: var(--text);
}
.mh-word {
  position: relative;
  top: 0.10em;   /* optical centering within bracket height — per E8 spec */
}
.mh-rule {
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 9px 0 8px;
}
.masthead-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MENU CARD ── */
.menu-card {
  background: #0d1520;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  position: relative;
}
.menu-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
  opacity: 0.4;
  margin: 12px 0;
}
.menu-subtitle {
  text-align: center;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}
.menu-section-head {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin: 20px 0 16px;
  font-weight: 500;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.menu-item-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}
.menu-item-img {
  width: 80px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.menu-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--sub-muted);
  line-height: 1.5;
}
.menu-item-freq {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  padding-top: 4px;
  flex-shrink: 0;
}
.menu-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.menu-tag.free { background: #0d1a10; color: var(--green); border: 1px solid #1a3020; }
.menu-tag.paid { background: #1a1505; color: var(--orange); border: 1px solid #3a2a10; }
.menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
/* tall menu item — banner edge-to-edge, text below */
.menu-item-tall {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 12px 0;
  background: #0a1520;
}
.menu-banner-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.menu-item-tall-body {
  padding: 14px 18px 16px;
}
.menu-item-tall-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.menu-item-freq-inline {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-footer-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  padding: 8px 0 4px;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
/* ── Tablet (≤ 960px) ── */
@media (max-width: 960px) {
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 40px; }
  .masthead-wordmark { font-size: 34px; }
}

/* ── Mobile (≤ 720px) ── */
@media (max-width: 720px) {
  /* Nav — hide text links, keep CTA only */
  nav { padding: 0 16px; height: 52px; }
  .nav-name { display: none; }
  .nav-links { gap: 6px; }
  .nav-link { padding: 7px 12px; font-size: 11px; letter-spacing: 0.5px; }
  .nav-link span:not(.nav-icon-svg) { display: none; } /* icons only on very small */
  .nav-cta { padding: 7px 14px; font-size: 11px; }

  /* Masthead */
  .masthead { padding: 16px 20px 0; }
  .masthead-wordmark { font-size: 28px; }
  .mh-eyebrow { font-size: 8px; }

  /* Hero */
  .hero { padding: 40px 20px 36px; }
  .hero h1 { font-size: 30px; line-height: 1.1; }
  .hero p { font-size: 15px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { width: 100%; }

  /* Proof */
  .proof-strip { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* Grids → single column */
  .tier-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }

  /* Sections */
  .section-title { font-size: 20px; }
  section { padding: 40px 20px; }
  .formats-section { padding: 40px 20px; }
  .tiers-section { padding: 40px 20px; }
  .team-section { padding: 40px 20px; }

  /* Team image */
  .team-img { border-radius: 10px; }

  /* Bottom CTA */
  .bottom-cta { padding: 48px 20px; }
  .bottom-cta h2 { font-size: 24px; }
  .bottom-cta .subscribe-form { flex-direction: column; }

  /* Footer */
  footer { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .footer-links { justify-content: center; }

  /* Archive/Leftovers */
  .filter-bar { padding: 12px 16px; flex-wrap: wrap; }
  .post-list { padding: 0 16px; }
}

/* ── Small phone (≤ 400px) ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 26px; }
  .masthead-wordmark { font-size: 22px; }
  .nav-link { display: none; } /* hide nav links entirely, keep only CTA */
  .nav-cta { display: flex; }
}

/* Urgency strip — slim top */
.urgency-strip {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: #0d1e0d;
  border-bottom: 1px solid #1e3a1e;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.urgency-strip strong { color: var(--text); }
.urgency-strip a {
  color: #5dca8a;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(93,202,138,0.4);
  margin-left: 12px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
