/* =====================
   WIN THE DAY — CSS
   Steve Enns Personal Brand
   ===================== */

:root {
  --black: #0a0a08;
  --off-black: #111110;
  --dark: #1a1a18;
  --mid: #2e2e2b;
  --border: #2a2a27;
  --muted: #5a5a55;
  --subtle: #8a8a82;
  --light: #c8c8be;
  --off-white: #f0ede6;
  --white: #faf8f4;
  --accent: #c9a84c;
  --accent-light: #e8d08a;
  --accent-dark: #8a6f2e;
  --green: #4a8c5c;
  --green-light: #e8f5ec;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  backdrop-filter: blur(12px);
  background: rgba(10,10,8,0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--subtle);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.2s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100vw / 12 - 1px),
    rgba(255,255,255,0.015) calc(100vw / 12)
  );
}
.hero-inner {
  padding: 5rem 2rem 5rem 8vw;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 12px;
  font-weight: 400;
  color: var(--subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 120px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-image-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 1s ease 0.3s both;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 30%),
              linear-gradient(0deg, var(--black) 0%, transparent 20%);
  z-index: 1;
}
.hero-image-caption {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--light);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--white);
}
.full-width { width: 100%; justify-content: center; }
.text-link {
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.text-link:hover { gap: 8px; }

/* ===================== CONTAINER ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
  margin-bottom: 4rem;
}
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--subtle);
  margin-top: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ===================== MANIFESTO ===================== */
.manifesto {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.manifesto-quote {
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}
blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1.5rem;
}
cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.08em;
}
.manifesto-text p {
  color: var(--light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}
.manifesto-text p:first-child { font-size: 1.05rem; }

/* ===================== LADDER ===================== */
.ladder {
  padding: 8rem 0;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ladder-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ladder-step {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.ladder-step:last-child { border-bottom: none; }
.ladder-step:hover { background: rgba(255,255,255,0.02); }
.ladder-step.featured {
  background: rgba(201,168,76,0.05);
  border-left: 3px solid var(--accent);
  padding-left: calc(2rem - 3px);
}
.step-number {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--border);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.ladder-step.featured .step-number { color: var(--accent-dark); }
.step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.step-tag.free { background: rgba(74,140,92,0.15); color: var(--green); }
.step-tag.paid { background: rgba(201,168,76,0.15); color: var(--accent); }
.step-tag.product { background: rgba(100,120,200,0.15); color: #8899dd; }
.step-tag.cohort { background: rgba(180,100,100,0.15); color: #cc8888; }
.step-tag.book { background: rgba(100,100,100,0.15); color: var(--subtle); }
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.step-link {
  font-size: 13px;
  color: var(--accent);
  transition: gap 0.2s;
  display: inline-flex;
  gap: 4px;
}
.step-link:hover { gap: 8px; }
.step-price {
  text-align: right;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.ladder-step.featured .step-price { color: var(--accent); }

/* ===================== READING ===================== */
.reading {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border);
}
.reading-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 6rem;
  align-items: center;
}
.book-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.book-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.book-spine {
  width: 60px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.book-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}
.book-author {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.reading-pull {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.reading-text p {
  color: var(--light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ===================== BLOG POSTS ===================== */
.latest-posts {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border);
}
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.post-card {
  background: var(--off-black);
  padding: 2rem;
  transition: background 0.2s;
}
.post-card:hover { background: var(--dark); }
.featured-post {
  background: var(--dark);
  grid-column: span 1;
}
.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.post-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  padding: 3px 8px;
  border-radius: 20px;
}
.post-date {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
}
.post-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.post-card p {
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.post-link {
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  gap: 4px;
  transition: gap 0.2s;
}
.post-link:hover { gap: 8px; }
.posts-footer { text-align: center; }

/* ===================== NEWSLETTER CTA ===================== */
.newsletter-cta {
  padding: 8rem 0;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-text p {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-list li {
  font-size: 14px;
  color: var(--subtle);
  padding-left: 1.25rem;
  position: relative;
}
.cta-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--off-white);
  font-family: var(--sans);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--muted); }
.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 5rem 0 3rem;
  background: var(--off-black);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.footer-logo {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a { color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--off-white); }

/* ===================== BLOG PAGE ===================== */
.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--subtle);
  max-width: 500px;
  line-height: 1.7;
}
.blog-grid {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
}
.blog-card:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0.75rem 0;
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ===================== POST PAGE ===================== */
.post-header {
  padding: 10rem 0 4rem;
  max-width: 760px;
  margin: 0 auto;
}
.post-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
}
.post-body p {
  color: var(--light);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  padding: 10rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}
.about-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.about-content p {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* ===================== NEWSLETTER PAGE ===================== */
.newsletter-hero {
  padding: 10rem 2rem 8rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.newsletter-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.newsletter-hero p {
  font-size: 1.1rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.newsletter-form-wrap {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-tiers {
  padding: 5rem 0;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.2s;
}
.tier-card:hover { border-color: var(--muted); }
.tier-card.featured-tier {
  border-color: var(--accent);
  background: rgba(201,168,76,0.04);
}
.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.tier-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}
.tier-name {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.tier-features li {
  font-size: 13px;
  color: var(--subtle);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 1px;
}
.tier-features li.locked {
  opacity: 0.4;
}
.tier-features li.locked::before {
  content: '—';
  color: var(--muted);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero-inner { padding: 5rem 2rem 4rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reading-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .ladder-step { grid-template-columns: 60px 1fr; }
  .step-price { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero-inner { padding: 4rem 1.25rem 3rem; }
  .ladder-step { grid-template-columns: 1fr; gap: 0.75rem; padding: 2rem 1.25rem; }
  .hero-proof { gap: 1.25rem; }
  .tiers-grid { grid-template-columns: 1fr; }
}
