/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #f8f7f4;
  overflow-x: hidden;
}

/* ── DESIGN TOKENS ── */
:root {
  --black:      #0f0e17;
  --white:      #f8f7f4;
  --ink:        #1a1a2e;
  --ink-muted:  #6b6b80;
  --ink-light:  #9898aa;
  --accent:     #ff6b35;
  --accent-2:   #00c9a7;
  --accent-3:   #7c3aed;
  --surface:    #ffffff;
  --surface-2:  #f1f0ec;
  --border:     #e2e1dc;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);
}

/* ── MICRO-ANIMATIONS & REVEALS ── */
@keyframes floatGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-45px, 25px) scale(1.05); }
}
@keyframes floatGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, -30px) scale(1.08); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,107,53,.10);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.tag.green  { color: var(--accent-2); background: rgba(0,201,167,.10); }
.tag.purple { color: var(--accent-3); background: rgba(124,58,237,.10); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 16px; font-weight: 600; }
p { color: var(--ink-muted); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 99px;
  text-decoration: none; cursor: pointer;
  transition: transform .25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .25s, background .25s, border-color .25s;
  border: none;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e85c29; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); transition: border-color 0.25s, color 0.25s, background-color 0.25s; }
.btn-outline:hover { border-color: var(--ink); background-color: rgba(26, 26, 46, 0.03); }
.btn-ghost  { background: transparent; color: var(--accent); font-weight: 600; padding: 0; display: inline-flex; align-items: center; gap: 6px; transition: color 0.25s; }
.btn-ghost:hover { transform: none; box-shadow: none; color: #e85c29; }
.btn svg, .btn-ghost svg { width: 16px; height: 16px; transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.btn:hover .icon-shift, .btn-ghost:hover .icon-shift { transform: translateX(4px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
  letter-spacing: .02em;
}
.topbar span { color: var(--accent); font-weight: 600; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,247,244,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 68px; gap: 32px;
}
.logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.logo svg {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo:hover svg {
  transform: scale(1.15) rotate(-10deg);
}
.logo-dot { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  text-decoration: none; padding: 6px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a i {
  transition: transform 0.25s ease;
}
.nav-links a:hover:not(.nav-cta) {
  background: var(--surface-2);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav-links a:hover i {
  transform: rotate(180deg);
}
.nav-links .nav-cta {
  background: var(--accent); color: #fff; border-radius: 99px;
  padding: 7px 18px; font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
  background: #e85c29;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.25);
}
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── SECTION 1: HERO ── */
.hero {
  background: var(--black);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; top: -120px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.25) 0%, transparent 65%);
  pointer-events: none;
  animation: floatGlow1 15s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 65%);
  pointer-events: none;
  animation: floatGlow2 12s ease-in-out infinite alternate;
}
.hero-inner {
  position: relative; max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(255,107,53,.15);
  padding: 6px 14px; border-radius: 99px; border: 1px solid rgba(255,107,53,.3);
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fff;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* Hero subscribe card */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 20px; }
.email-form { display: flex; flex-direction: column; gap: 10px; }
.email-form input {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: #fff; font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.email-form input::placeholder { color: rgba(255,255,255,.35); }
.email-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35); background: rgba(255,255,255,.12); }
.email-form button {
  width: 100%; padding: 13px; border-radius: 10px; border: none;
  background: var(--accent); color: #fff; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; cursor: pointer; transition: background .18s;
}
.email-form button:hover { background: #e85c29; }
.hero-card-note { font-size: 12px; color: rgba(255,255,255,.35); text-align: center; margin-top: 10px; }
.hero-card-social { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-card-social p { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background .15s;
}
.social-icon:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── SECTION 2: FEATURED POSTS ── */
.featured { background: var(--white); }
.section-header { margin-bottom: 48px; }
.section-header h2 { color: var(--ink); margin-bottom: 10px; }
.section-header p { font-size: 17px; max-width: 520px; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.post-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--ink-light); letter-spacing: .04em; text-transform: uppercase;
}
/* Coloured placeholder thumbnails */
.thumb-orange { background: linear-gradient(135deg, #ff6b35 0%, #ff9a6c 100%); color: #fff; }
.thumb-teal   { background: linear-gradient(135deg, #00c9a7 0%, #00e5c0 100%); color: #fff; }
.thumb-purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); color: #fff; }

.post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--ink-light);
  margin-bottom: 10px;
}
.post-card-cat {
  font-weight: 600; font-family: var(--font-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--accent);
}
.post-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.post-card p  { font-size: 14px; color: var(--ink-muted); flex: 1; }
.post-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 14px; font-weight: 500; color: var(--accent);
  text-decoration: none;
  transition: color 0.25s;
}
.post-card-link svg {
  width: 14px; height: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover .post-card-link {
  color: #e85c29;
}
.post-card:hover .post-card-link svg {
  transform: translateX(4px);
}

.featured-grid .post-card:first-child .post-card-img { aspect-ratio: 4/3; }
.featured-grid .post-card:first-child h3 { font-size: 22px; }

/* ── SECTION 3: TOPICS ── */
.topics { background: var(--surface-2); }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.topic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  text-decoration: none; color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column; gap: 10px;
}
.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: var(--accent);
}
.topic-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 4px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}
.topic-icon svg {
  width: 20px; height: 20px;
  transition: color 0.3s;
}
.topic-card:hover .topic-icon {
  transform: scale(1.15) rotate(5deg);
}
.topic-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.topic-card span { font-size: 12px; color: var(--ink-light); }
.topic-count {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--ink-light); margin-top: auto;
}

/* ── SECTION 4: LATEST POSTS ── */
.latest { background: var(--white); }
.latest-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

.post-list { display: flex; flex-direction: column; gap: 0; }
.post-list-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 12px; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  border-radius: 8px;
  margin: 2px -12px;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}
.post-list-item:last-child  { border-bottom: none; }
.post-list-item:hover {
  background-color: var(--surface-2);
  padding-left: 20px;
}
.post-list-item:hover .post-list-title { color: var(--accent); }
.post-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--border); line-height: 1; min-width: 36px; margin-top: -2px;
}
.post-list-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: 4px; }
.post-list-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 6px; transition: color .15s; }
.post-list-meta  { font-size: 12px; color: var(--ink-light); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h4 { font-size: 16px; color: var(--ink); margin-bottom: 16px; }
.sidebar-subscribe p { font-size: 14px; color: var(--ink-muted); margin-bottom: 14px; }
.sidebar-form input {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1px solid var(--border); font-family: var(--font-body); font-size: 14px;
  color: var(--ink); outline: none; margin-bottom: 8px;
  transition: border-color .25s, box-shadow .25s, background-color .25s; background: var(--white);
}
.sidebar-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15); }
.sidebar-form button {
  width: 100%; padding: 11px; border-radius: 8px; border: none;
  background: var(--accent); color: #fff; font-family: var(--font-body);
  font-size: 14px; font-weight: 500; cursor: pointer;
}
.popular-list { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.popular-list li a {
  display: flex; gap: 10px; text-decoration: none; color: var(--ink);
  font-size: 13px; font-weight: 500; line-height: 1.4;
  transition: color .15s;
}
.popular-list li a:hover { color: var(--accent); }
.popular-num { font-family: var(--font-display); font-weight: 800; color: var(--border); font-size: 18px; min-width: 20px; }

/* ── SECTION 5: PILLAR STRIPS ── */
.pillars { background: var(--black); padding: 80px 0; }
.pillars h2 { color: #fff; }
.pillars .section-header p { color: rgba(255,255,255,.5); }
.pillar-strip {
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 40px;
}
.pillar-row {
  display: flex; align-items: center;
  padding: 20px 28px; gap: 20px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none; color: inherit;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.pillar-row:last-child { border-bottom: none; }
.pillar-row:hover { background: rgba(255,107,53,.08); padding-left: 36px; }
.pillar-row:hover .pillar-arrow { color: var(--accent); transform: translateX(6px); }
.pillar-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,.25); min-width: 28px;
}
.pillar-icon { min-width: 32px; display: inline-flex; align-items: center; }
.pillar-icon svg { width: 18px; height: 18px; }
.pillar-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; flex: 1; }
.pillar-count { font-size: 13px; color: rgba(255,255,255,.4); white-space: nowrap; }
.pillar-arrow { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: rgba(255,255,255,.2); transition: color .18s, transform .18s; }
.pillar-arrow svg { width: 18px; height: 18px; }

/* ── SECTION 6: NEWSLETTER STRIP ── */
.newsletter-strip {
  background: var(--accent);
  padding: 72px 0;
}
.newsletter-strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.newsletter-strip h2 { color: #fff; font-size: clamp(24px,3.5vw,38px); }
.newsletter-strip p  { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 6px; }
.newsletter-strip-form { display: flex; gap: 10px; }
.newsletter-strip-form input {
  padding: 14px 20px; border-radius: 99px; border: none;
  font-family: var(--font-body); font-size: 15px; width: 280px; outline: none;
}
.newsletter-strip-form button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px; border: none;
  background: var(--black); color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: opacity .15s, transform 0.25s ease, box-shadow 0.25s ease;
}
.newsletter-strip-form button:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.newsletter-strip-form button svg { width: 16px; height: 16px; transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.newsletter-strip-form button:hover svg { transform: translateX(4px); }

/* ── SECTION 7: ABOUT TEASER ── */
.about-teaser { background: var(--surface-2); }
.about-teaser-inner {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center;
}
.about-avatar-wrap { position: relative; }
.about-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ff6b35 0%, #7c3aed 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 64px; font-weight: 800; color: #fff;
}
.about-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow);
}
.about-text h2 { color: var(--ink); margin-bottom: 16px; }
.about-text p  { font-size: 17px; margin-bottom: 12px; }
.about-list { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  font-size: 15px; color: var(--ink-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); margin: 14px 0 20px; max-width: 260px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #fff; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,.5);
  text-decoration: none; margin-bottom: 10px; transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { max-width: 480px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .post-card:first-child { grid-column: 1 / -1; }
  .featured-grid .post-card:first-child .post-card-img { aspect-ratio: 16/9; }
  .topics-grid { grid-template-columns: repeat(4, 1fr); }
  .latest-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-teaser-inner { grid-template-columns: 240px 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .featured-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-strip-inner { grid-template-columns: 1fr; }
  .newsletter-strip-form { flex-direction: column; }
  .newsletter-strip-form input { width: 100%; }
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-avatar { max-width: 200px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sidebar { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}