:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-dark: #0b213a;
  --surface-dark-2: #14375a;
  --ink: #10263d;
  --muted: #4a6784;
  --line: rgba(16, 36, 59, 0.09);
  --line-strong: rgba(16, 36, 59, 0.16);
  --accent: #e07812;
  --accent-soft: #fdf1e4;
  --shadow: 0 1rem 2.4rem rgba(16, 38, 61, 0.08);
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(5.2rem, 8vw, 8.2rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7f9fc 0%, #edf1f6 100%);
}

.section-dark,
.cta-band,
.thoughts-hero {
  background:
    radial-gradient(620px 240px at 100% 0%, rgba(95, 165, 236, 0.22), transparent 70%),
    linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  color: #edf4fb;
}

.section-head {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-head h2,
.hero-copy h1,
.prose-block h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-head p,
.hero-copy p,
.prose-block p,
.info-card p,
.offer-card p,
.scan-item p,
.demo-card p,
.article-prose p,
.article-prose li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-dark .section-head p,
.cta-band .section-head p,
.thoughts-hero .hero-copy p,
.plugins-hero-aside p,
.thoughts-hero-aside p,
.section-dark .section-head h2,
.section-dark .section-head .eyebrow,
.cta-band .section-head h2,
.cta-band .section-head .eyebrow,
.thoughts-hero .hero-copy h1,
.thoughts-hero .hero-copy .eyebrow {
  color: #edf4fb;
}

.scan-card h3,
.scan-card strong {
  color: var(--ink);
}

.scan-card p,
.scan-card .scan-item p {
  color: var(--muted);
}

/* Glassmorphism for dark section cards */
.section-dark .scan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #edf4fb;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.section-dark .scan-card h3,
.section-dark .scan-card strong {
  color: #fff;
}

.section-dark .scan-card p,
.section-dark .scan-card .scan-item p {
  color: rgba(237, 244, 251, 0.85);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: #1d4a6e;
}

.eyebrow-light {
  color: #9fc3e8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #163b5f;
  border-color: rgba(16, 36, 59, 0.09);
}

.btn-ghost,
.btn-secondary-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 36, 59, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.site-brand img {
  width: 52px;
}

.site-brand-stack {
  display: grid;
  gap: 0.05rem;
}

.site-brand-stack strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
}

.site-brand-stack span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
}

.mobile-nav {
  border-top: 1px solid rgba(16, 36, 59, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav-inner {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0 1.2rem;
}

.mobile-nav-inner a {
  text-decoration: none;
  font-weight: 600;
}

.hero-cinema {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 22%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, #091e38 0%, #091e38 34%, rgba(9, 30, 56, 0.86) 50%, rgba(9, 30, 56, 0.34) 66%, transparent 84%),
    linear-gradient(180deg, transparent 62%, #091e38 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  display: grid;
  gap: 1.25rem;
}

.hero-cinema .hero-copy h1,
.hero-cinema .hero-copy p {
  color: #fff;
}

.proof-line,
.post-meta,
.demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.proof-line span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.proof-line span+span::before {
  content: "•";
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.32);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.prose-block {
  max-width: 48rem;
}

.prose-block-wide {
  max-width: 62rem;
}

.prose-block p+p {
  margin-top: 1rem;
}

.offer-grid,
.three-column-grid,
.demo-grid,
.post-grid {
  display: grid;
  gap: 1.2rem;
}

.offer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.three-column-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.two-by-two-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .two-by-two-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.location-strip {
  text-align: center;
  max-width: 560px;
  margin: 3.5rem auto 0;
}

.location-strip .eyebrow {
  justify-content: center;
}

.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card,
.info-card,
.scan-card,
.demo-card,
.post-card,
.featured-post,
.side-card,
.article-prose {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.offer-card,
.info-card,
.scan-card,
.demo-card,
.post-card {
  padding: 1.45rem 1.35rem 1.5rem;
}

.offer-card,
.info-card,
.scan-card,
.demo-card,
.post-card,
.featured-post {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover,
.info-card:hover,
.scan-card:hover,
.demo-card:hover,
.post-card:hover,
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(16, 38, 61, 0.12);
}

.offer-card h3,
.info-card h3,
.scan-card h3,
.demo-card h3,
.post-card h3,
.featured-post h2,
.side-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.offer-card ul,
.side-bullets {
  padding-left: 1.1rem;
  color: var(--muted);
}

.offer-card li+li,
.side-bullets li+li {
  margin-top: 0.55rem;
}

.scan-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.scan-item {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section:not(.section-dark) .scan-item {
  border-top-color: rgba(16, 36, 59, 0.08);
}

.scan-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Outfit", sans-serif;
}

.demo-card,
.post-card,
.featured-post {
  text-decoration: none;
}

.featured-post {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0;
  overflow: hidden;
  background: none;
  box-shadow: none;
  border: none;
}

.featured-post.has-thumbnail {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.featured-copy {
  padding: 1rem 0;
}

.featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    clamp(1rem, 2vw, 1.5rem)
    clamp(1.4rem, 2.8vw, 2rem)
    clamp(1rem, 2vw, 1.5rem)
    clamp(2rem, 3.8vw, 2.75rem);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3.5rem rgba(16, 38, 61, 0.12);
  background:
    radial-gradient(circle at top right, rgba(95, 165, 236, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96));
}

.featured-image img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-post:hover .featured-image img {
  transform: scale(1.015);
}

.post-card.has-thumbnail {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
  overflow: hidden;
  background: white;
}

.post-card-content {
  padding: 1.5rem;
}

.post-card-image {
  height: 14rem;
  overflow: hidden;
  background: var(--line);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover .post-card-image img {
  transform: scale(1.08);
}

.post-meta,
.demo-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.post-meta-light {
  color: rgba(255, 255, 255, 0.78);
}

.view-all-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.95));
  border: 1px dashed rgba(16, 36, 59, 0.15);
  box-shadow: none;
}

.view-all-card:hover {
  background: #fff;
  border-style: solid;
  border-color: var(--accent);
}

.view-all-card h3 {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  margin-top: 0.5rem;
  color: var(--accent);
}

.thoughts-hero {
  position: relative;
  padding-top: clamp(6.4rem, 12vw, 9.6rem);
  padding-bottom: clamp(5.2rem, 10vw, 8.2rem);
  background:
    linear-gradient(90deg, #091e38 0%, #091e38 34%, rgba(9, 30, 56, 0.86) 50%, rgba(9, 30, 56, 0.34) 66%, transparent 84%),
    linear-gradient(180deg, rgba(11, 33, 58, 0.82) 0%, rgba(20, 55, 90, 0.95) 100%),
    radial-gradient(100% 100% at 50% 0%, rgba(95, 165, 236, 0.15) 0%, transparent 60%),
    url('../images/posts-hero.jpg') center/cover no-repeat;
}

.thoughts-hero-grid,
.plugins-hero-grid,
.two-column-hero,
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.35rem;
  align-items: start;
}

.thoughts-hero-grid .hero-copy,
.plugins-hero-grid .hero-copy,
.two-column-hero .hero-copy,
.thoughts-single-hero .hero-copy {
  margin-left: 0;
  width: 100%;
}

.thoughts-hero-aside,
.plugins-hero-aside,
.about-portrait,
.article-side,
.side-card-dark {
  border-radius: 1rem;
}

.thoughts-hero-aside,
.plugins-hero-aside,
.side-card,
.about-portrait {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(237, 244, 251, 0.12);
  backdrop-filter: blur(8px);
}

.thoughts-hero-aside,
.plugins-hero-aside {
  background:
    radial-gradient(220px 110px at 100% 0%, rgba(95, 165, 236, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(18, 49, 79, 0.96), rgba(12, 34, 57, 0.98));
  border-color: rgba(159, 195, 232, 0.22);
}

.hero-metrics {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-metrics div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(237, 244, 251, 0.12);
}

.hero-metrics strong {
  display: block;
  color: #edf4fb;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.hero-metrics span {
  color: rgba(237, 244, 251, 0.74);
  font-size: 0.9rem;
}

.plugins-hero {
  padding-top: clamp(4.8rem, 9vw, 7rem);
}

.plugins-hero-copy {
  margin-left: 0;
  width: auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.5rem 3rem rgba(16, 38, 61, 0.08);
}

.plugins-hero-copy h1,
.plugins-hero-copy p {
  color: var(--ink);
}

.plugins-hero-aside p {
  color: rgba(237, 244, 251, 0.9);
}

.about-hero {
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(245, 144, 46, 0.13), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.92));
}

.about-portrait {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1.5rem 3.2rem rgba(16, 38, 61, 0.18);
  background: #d9e1ea;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  object-fit: cover;
  object-position: center 32%;
}

.location-strip {
  margin-top: 1.5rem;
}

.article-shell {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
}

.article-prose {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 760px;
  margin: 0 auto;
}

.article-prose h2,
.article-prose h3 {
  margin: 2rem 0 0.8rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.article-prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.article-prose ul,
.article-prose ol {
  padding-left: 1.2rem;
  color: var(--muted);
}

.article-prose .lede {
  font-family: "Newsreader", serif;
  font-size: 1.85rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}

.article-prose .pullquote {
  font-family: "Newsreader", serif;
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-style: italic;
  color: var(--accent);
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-left: 5px solid var(--accent);
  margin: 4.5rem 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.article-side {
  display: grid;
  gap: 1rem;
}

.side-card {
  padding: 1.35rem;
}

.side-card-dark {
  background:
    radial-gradient(240px 110px at 92% -14%, rgba(95, 165, 236, 0.32), transparent 70%),
    linear-gradient(180deg, #0d2f52, #0a243d);
  color: #edf4fb;
  border: 1px solid rgba(237, 244, 251, 0.08);
}

.side-card-dark p,
.side-card-dark h3 {
  color: #edf4fb;
}

.side-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.side-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.cta-band .container {
  display: grid;
  gap: 1.2rem;
}

.section-cta {
  display: flex;
  align-items: center;
}

.site-footer {
  padding: 2rem 0 1.4rem;
  background: #091e38;
  color: #edf4fb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.footer-brand strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.footer-brand p,
.footer-meta p,
.footer-group a {
  color: rgba(237, 244, 251, 0.76);
}

.footer-email {
  display: block;
  margin-top: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-group {
  display: grid;
  gap: 0.5rem;
}

.footer-label {
  color: #9fc3e8;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.footer-group a {
  text-decoration: none;
}

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(237, 244, 251, 0.1);
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-column-grid,
  .demo-grid,
  .thoughts-hero-grid,
  .plugins-hero-grid,
  .two-column-hero,
  .footer-grid,
  .footer-links,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {

  .site-nav,
  .site-header-cta .btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-cinema {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    position: relative;
    height: 52vw;
    min-height: 280px;
    max-height: 420px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(9, 30, 56, 0.18) 0%, #091e38 100%);
  }

  .hero-copy {
    margin-left: 0;
    width: 100%;
    padding: 1.8rem 20px 2.4rem;
    background: #091e38;
  }

  .about-hero .hero-copy {
    padding: 1.8rem 1.5rem 2rem;
    border: 1px solid rgba(16, 36, 59, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1rem 2.2rem rgba(16, 38, 61, 0.08);
  }

  .about-hero .hero-copy h1,
  .about-hero .hero-copy p {
    color: var(--ink);
  }

  .about-hero .hero-copy .eyebrow,
  .about-hero .hero-copy .proof-line {
    color: var(--muted);
  }

  .plugins-hero .hero-copy {
    padding: 1.8rem 1.5rem 2rem;
    border: 1px solid rgba(16, 36, 59, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1rem 2.2rem rgba(16, 38, 61, 0.08);
  }

  .plugins-hero .hero-copy h1,
  .plugins-hero .hero-copy p,
  .plugins-hero .hero-copy .eyebrow {
    color: var(--ink);
  }

  .proof-line {
    display: grid;
    gap: 0.45rem;
  }

  .proof-line span+span::before {
    display: none;
  }

  .offer-grid,
  .three-column-grid,
  .demo-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait img {
    min-height: 24rem;
  }
}

/* --- TAB LAYOUT FOR ENGAGEMENTS --- */
.engagement-tabs-container {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  margin-top: 3rem;
}

.offer-anchor-set {
  position: relative;
  height: 0;
}

.offer-anchor {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden;
}

.engagement-tab-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.engagement-tab-btn {
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-left: 4px solid rgba(16, 36, 59, 0.08);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0 0.5rem 0.5rem 0;
}

.engagement-tab-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.engagement-tab-btn.active {
  background: rgba(255, 255, 255, 0.98);
  border-left-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 1rem 2rem rgba(16, 38, 61, 0.06);
}

.engagement-panel {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 1.5rem 3rem rgba(16, 38, 61, 0.08);
  border: 1px solid var(--line);
  animation: fadeIn 0.4s ease forwards;
}

.engagement-panel.active {
  display: block;
}

.engagement-panel h3 {
  margin: 0 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.engagement-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.engagement-panel li+li {
  margin-top: 0.6rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .engagement-tabs-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .engagement-tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .engagement-tab-list::-webkit-scrollbar {
    display: none;
  }

  .engagement-tab-btn {
    border-left: none;
    border-bottom: 4px solid rgba(16, 36, 59, 0.08);
    white-space: nowrap;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .engagement-tab-btn.active {
    border-bottom-color: var(--accent);
  }
}

/* --- SCROLL ANIMATIONS --- */
.fade-up-target {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-up-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .fade-up-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}
