```css
/* ═══════════════════════════════════════════════
   JMCOMIC2 · 次元漫境
   "Manga Pop Editorial" Design System
   Bright · Playful · Dimensional · Handcrafted
   ═══════════════════════════════════════════════ */

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FDF6EC;
  --cream-deep: #F1E5D5;
  --paper: #FFFFFF;
  --ink: #241F35;
  --coral: #FF4D6D;
  --teal: #00B5A4;
  --yellow: #FFC93C;
  --lavender: #9B6DFF;
  --shadow-hard: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --border-ink: 2px solid var(--ink);
  --font: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  --num: 900;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(rgba(36, 31, 53, 0.03) 1px, transparent 1.5px);
  background-size: 26px 26px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Core Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--cream-deep);
  background-image:
    radial-gradient(rgba(36, 31, 53, 0.025) 1px, transparent 1.5px);
  background-size: 22px 22px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  transform: rotate(-15deg) scale(1.05);
  box-shadow: 4px 4px 0 var(--teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
  padding: 4px 2px;
  letter-spacing: 0.01em;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--coral);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px !important;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 700 !important;
  background: var(--coral);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.15s ease;
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--teal);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: var(--paper);
  border: var(--border-ink);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.2s;
  flex-shrink: 0;
}

.menu-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--coral);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 77, 109, 0.12) 0%, transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(0, 181, 164, 0.1) 0%, transparent 35%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(36, 31, 53, 0.045) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
  transition: transform 0.2s;
}

.hero-eyebrow:hover {
  transform: rotate(0deg);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-shadow: 3px 3px 0 rgba(255, 201, 60, 0.35);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.78;
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border: 3px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--teal);
  transform: rotate(2.5deg);
  position: relative;
  background: var(--paper);
  transition: all 0.3s ease;
}

.hero-image:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 12px 12px 0 var(--coral);
}

.hero-image::after {
  content: '✦';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--teal);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(36, 31, 53, 0.15);
}

.btn-outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--yellow);
  border-color: var(--ink);
  color: var(--ink);
}

/* ---------- Section Label & Title ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--teal);
  color: #fff;
  padding: 6px 16px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 15%;
  min-width: 60px;
  height: 6px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--teal));
  border-radius: 3px;
}

.section-desc {
  max-width: 620px;
  opacity: 0.68;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.category-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 30px;
  transition: all 0.22s ease;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
}

.category-card:nth-child(5n+1) { transform: rotate(-0.6deg); }
.category-card:nth-child(5n+2) { transform: rotate(0.8deg); }
.category-card:nth-child(5n+3) { transform: rotate(-0.4deg); }
.category-card:nth-child(5n+4) { transform: rotate(1.1deg); }
.category-card:nth-child(5n+5) { transform: rotate(-0.9deg); }

.category-card:hover {
  transform: translate(-2px, -2px) rotate(0deg) scale(1.01);
  box-shadow: 6px 6px 0 var(--coral);
  z-index: 2;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: rgba(255, 201, 60, 0.35);
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.3s ease;
}

.category-card:nth-child(2n) .card-icon {
  background: rgba(0, 181, 164, 0.2);
}

.category-card:nth-child(3n) .card-icon {
  background: rgba(255, 77, 109, 0.15);
}

.category-card:hover .card-icon {
  transform: rotate(-10deg) scale(1.08);
  background: var(--yellow);
}

.category-card h4 {
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.62;
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link::after {
  content: '→';
  font-size: 1.05rem;
  transition: transform 0.2s;
}

.card-link:hover {
  text-decoration: none;
  gap: 10px;
}

.card-link:hover::after {
  transform: translateX(2px);
}

/* ---------- Feature Block ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border: 3px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 9px 9px 0 var(--yellow);
  transform: rotate(-2deg);
  transition: all 0.35s ease;
  position: relative;
}

.feature-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 130px;
  height: 26px;
  background: rgba(255, 201, 60, 0.45);
  border-left: 2px dashed rgba(36, 31, 53, 0.25);
  border-right: 2px dashed rgba(36, 31, 53, 0.25);
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.feature-image:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 12px 12px 0 var(--teal);
}

.feature-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
}

.feature-text h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.feature-text > p {
  opacity: 0.72;
  line-height: 1.7;
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: var(--teal);
  background: rgba(0, 181, 164, 0.13);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  background: var(--paper);
  padding: 34px 16px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.22s ease;
}

.stat-item:nth-child(4n+1) { transform: rotate(-0.5deg); }
.stat-item:nth-child(4n+2) { transform: rotate(0.7deg); }
.stat-item:nth-child(4n+3) { transform: rotate(-0.3deg); }
.stat-item:nth-child(4n+4) { transform: rotate(0.6deg); }

.stat-item:hover {
  transform: translate(-2px, -2px) rotate(0deg);
  box-shadow: 6px 6px 0 var(--teal);
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coral);
  display: block;
}

.stat-number::after {
  content: '';
  display: block;
  width: 28px;
  height: 5px;
  background: var(--ink);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.15;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.55;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Content Wall ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.22s ease;
}

.content-wall-item:nth-child(2n) {
  transform: rotate(0.6deg);
}

.content-wall-item:nth-child(2n+1) {
  transform: rotate(-0.5deg);
}

.content-wall-item:hover {
  transform: translate(-2px, -2px) rotate(0deg);
  box-shadow: 7px 7px 0 var(--teal);
  z-index: 2;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  transition: transform 0.35s ease, filter 0.25s ease;
  filter: saturate(0.9) contrast(1.02);
}

.content-wall-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.15);
}

.content-wall-body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.content-wall-body p {
  font-size: 0.82rem;
  opacity: 0.55;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:nth-child(odd) {
  transform: rotate(-0.25deg);
}

.faq-item:nth-child(even) {
  transform: rotate(0.25deg);
}

.faq-item:hover {
  box-shadow: 4px 4px 0 rgba(0, 181, 164, 0.45);
  transform: rotate(0deg) translateY(-2px);
}

.faq-item.open {
  box-shadow: 4px 4px 0 var(--yellow);
  transform: rotate(0deg);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  user-select: none;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.7rem;
  line-height: 0.8;
  color: var(--coral);
  font-weight: 500;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px dashed rgba(36, 31, 53, 0.12);
  padding-top: 14px;
  margin-top: -4px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--coral);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--teal);
  border-radius: 4px;
  padding: 64px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, 0.09) 0%, transparent 30%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 0 rgba(36, 31, 53, 0.15);
}

.cta-banner h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--yellow);
  margin: 12px auto 0;
  border-radius: 3px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.cta-banner .btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  border-top: 3px solid var(--ink);
  padding: 56px 0 28px;
  color: var(--ink);
  margin-top: 20px;
  background-image:
    radial-gradient(rgba(36, 31, 53, 0.02) 1px, transparent 1.5px);
  background-size: 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.55;
}

.footer-brand .logo-icon {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.65;
  font-weight: 400;
  max-width: 300px;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 70%;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  opacity: 0.5;
}

.footer-col a {
  display: block;
  color: inherit;
  opacity: 0.66;
  text-decoration: none;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
  opacity: 1;
  text-decoration: none;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 2px solid rgba(36, 31, 53, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 500;
}

/* ---------- Utility ---------- */
.text-accent {
  color: var(--coral);
  font-weight: 900;
  position: relative;
  display: inline-block;
  z-index: 0;
}

.text-accent::before {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.03em;
  right: -0.03em;
  height: 0.38em;
  background: rgba(255, 201, 60, 0.45);
  z-index: -1;
  transform: rotate(-0.8deg);
  border-radius: 2px;
}

.text-center {
  text-align: center;
}

.section.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 640px;
  margin: 0 auto 48px;
  opacity: 0.68;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero > .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }

  .hero-image {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-image {
    transform: rotate(0deg);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 24px 24px 28px;
    gap: 4px;
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 12px 0 rgba(255, 77, 109, 0.15);
    animation: dropIn 0.25s ease;
  }

  .main-nav.open a {
    padding: 11px 0;
    font-size: 1.02rem;
    border-bottom: 1px dashed rgba(36, 31, 53, 0.14);
  }

  .main-nav.open a:last-child {
    border-bottom: none;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 10px;
    color: #fff !important;
    padding: 12px 0 !important;
  }

  .main-nav.open a:not(.nav-cta)::after {
    display: none;
  }

  @keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 0 0 40px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
  }

  .section {
    padding: 60px 0;
  }

  .cta-banner {
    padding: 40px 18px;
    box-shadow: 6px 6px 0 var(--teal);
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .content-wall-item img {
    height: 170px;
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .header-inner {
    height: 64px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav.open {
    top: 64px;
  }
}