  @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

  :root {
    --cream: #faf8f4;
    --warm-white: #ffffff;
    --ink: #1a1a18;
    --ink-soft: #4a4a44;
    --ink-muted: #8a8a82;
    --teal: #2a7c6f;
    --teal-light: #3a9e8e;
    --teal-pale: #e8f5f3;
    --amber: #d97b2a;
    --amber-pale: #fdf0e3;
    --sage: #6b8f71;
    --sage-pale: #eef4ef;
    --border: #e8e6e0;
    --shadow-sm: 0 2px 12px rgba(26,26,24,0.06);
    --shadow-md: 0 8px 40px rgba(26,26,24,0.10);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,248,244,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--teal);
    letter-spacing: -0.02em;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 101;
  }

  .nav-logo span { color: var(--ink); }

  .nav-links {
    display: flex; gap: 1.4rem; list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.8rem; font-weight: 500;
    color: var(--ink-soft); text-decoration: none;
    transition: color 0.2s; white-space: nowrap;
  }

  .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--teal); color: white;
    padding: 0.45rem 1.1rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    flex-shrink: 0; white-space: nowrap;
  }

  .nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }

  /* hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 101;
  }

  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  /* mobile drawer */
  .nav-drawer {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw 2rem;
    flex-direction: column; gap: 0;
    z-index: 99;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }

  .nav-drawer.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-drawer li {
    list-style: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer li:last-child { border-bottom: none; }

  .nav-drawer a {
    display: block; padding: 0.875rem 0;
    font-size: 0.95rem; font-weight: 500;
    color: var(--ink-soft); text-decoration: none;
    transition: color 0.2s;
  }

  .nav-drawer a:hover { color: var(--teal); }

  .nav-drawer-cta {
    margin-top: 1.25rem;
    background: var(--teal); color: white;
    padding: 0.75rem 1.5rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; text-align: center;
    display: block;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 5vw 60px;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(42,124,111,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal-pale); color: var(--teal);
    padding: 0.35rem 0.875rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-tag::before {
    content: ''; width: 6px; height: 6px;
    background: var(--teal); border-radius: 50%;
  }

  .hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero-headline em {
    font-style: italic; color: var(--teal);
  }

  .hero-sub {
    font-size: 1.125rem; font-weight: 300;
    color: var(--ink-soft); line-height: 1.7;
    max-width: 42ch;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--teal); color: white;
    padding: 0.875rem 1.75rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }

  .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,124,111,0.25); }

  .btn-secondary {
    background: transparent; color: var(--ink);
    padding: 0.875rem 1.75rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid var(--border); cursor: pointer;
    transition: all 0.2s;
  }

  .btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

  /* Hero visual */
  .hero-visual {
    display: flex; flex-direction: column; gap: 1rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .stat-card {
    background: white; border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem; color: var(--teal);
    line-height: 1; margin-bottom: 0.25rem;
  }

  .stat-label { font-size: 0.875rem; color: var(--ink-soft); font-weight: 400; }

  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .stat-card.accent { background: var(--teal); color: white; }
  .stat-card.accent .stat-number { color: white; }
  .stat-card.accent .stat-label { color: rgba(255,255,255,0.75); }

  /* ── SECTION COMMONS ── */
  section { padding: 6rem 5vw; }

  .section-tag {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 1rem;
  }

  .section-lead {
    font-size: 1.05rem; color: var(--ink-soft);
    font-weight: 300; max-width: 52ch; line-height: 1.75;
  }

  .section-header { margin-bottom: 3.5rem; }

  /* ── UNDERSTAND SECTION ── */
  .understand { background: white; }

  .understand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .understanding-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .understanding-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  .understanding-card::before {
    content: attr(data-number);
    position: absolute; top: -0.5rem; right: 1rem;
    font-family: 'DM Serif Display', serif;
    font-size: 5rem; color: var(--border);
    line-height: 1; font-weight: 400; pointer-events: none;
  }

  .card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
  }

  .card-icon.teal { background: var(--teal-pale); }
  .card-icon.amber { background: var(--amber-pale); }
  .card-icon.sage { background: var(--sage-pale); }

  .card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem; color: var(--ink);
    margin-bottom: 0.75rem; line-height: 1.2;
  }

  .card-body {
    font-size: 0.9rem; color: var(--ink-soft);
    line-height: 1.7; font-weight: 300;
  }

  /* ── MYTH VS REALITY ── */
  .myths { background: var(--ink); color: white; }

  .myths .section-tag { color: var(--teal-light); }
  .myths .section-title { color: white; }
  .myths .section-lead { color: rgba(255,255,255,0.6); }

  .myth-list { display: flex; flex-direction: column; gap: 1px; }

  .myth-item {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 16px; overflow: hidden;
    margin-bottom: 1rem;
  }

  .myth-side, .reality-side {
    padding: 1.75rem 2rem;
  }

  .myth-side {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-right: none;
    border-radius: 16px 0 0 16px;
  }

  .reality-side {
    background: var(--teal);
    border-radius: 0 16px 16px 0;
  }

  .myth-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 0.5rem;
    opacity: 0.5;
  }

  .myth-text {
    font-size: 0.95rem; line-height: 1.55;
    font-weight: 300;
  }

  .reality-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.65);
  }

  .reality-text {
    font-size: 0.95rem; line-height: 1.55;
    font-weight: 400; color: white;
  }

  /* ── WHAT HAPPENS IN YOUR BODY ── */
  .body-science { background: var(--cream); }

  .timeline {
    position: relative;
    padding-left: 2.5rem;
  }

  .timeline::before {
    content: ''; position: absolute;
    left: 0.6rem; top: 0; bottom: 0;
    width: 2px; background: var(--border);
  }

  .timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
  }

  .timeline-item:last-child { padding-bottom: 0; }

  .timeline-dot {
    position: absolute;
    left: -2.5rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--teal);
    display: flex; align-items: center; justify-content: center;
    top: 0.15rem;
  }

  .timeline-dot::after {
    content: '';
    width: 7px; height: 7px;
    background: var(--teal); border-radius: 50%;
  }

  .timeline-step {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.4rem;
  }

  .timeline-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem; color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .timeline-body {
    font-size: 0.9rem; color: var(--ink-soft);
    line-height: 1.7; max-width: 55ch; font-weight: 300;
  }

  .science-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .science-aside {
    position: sticky;
    top: 5rem;
  }

  .aside-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem; color: var(--ink);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }

  .aside-tag {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.5rem;
  }

  /* ── KEY FACT CARDS ── */
  .key-fact-cards {
    display: flex; flex-direction: column; gap: 0.75rem;
  }

  .key-fact-card {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .key-fact-card:hover {
    transform: translateY(-3px);
  }

  /* individual gradient per card */
  .key-fact-card:nth-child(1) {
    background: linear-gradient(135deg, #e8f5f3 0%, #f4fbfa 100%);
    border-color: rgba(42,124,111,0.18);
    box-shadow: 0 2px 10px rgba(42,124,111,0.10), 0 6px 20px rgba(42,124,111,0.07);
  }
  .key-fact-card:nth-child(1):hover {
    box-shadow: 0 4px 16px rgba(42,124,111,0.18), 0 12px 32px rgba(42,124,111,0.12);
  }

  .key-fact-card:nth-child(2) {
    background: linear-gradient(135deg, #fdf0e3 0%, #fef8f3 100%);
    border-color: rgba(217,123,42,0.18);
    box-shadow: 0 2px 10px rgba(217,123,42,0.08), 0 6px 20px rgba(217,123,42,0.06);
  }
  .key-fact-card:nth-child(2):hover {
    box-shadow: 0 4px 16px rgba(217,123,42,0.15), 0 12px 32px rgba(217,123,42,0.10);
  }

  .key-fact-card:nth-child(3) {
    background: linear-gradient(135deg, #eef4ef 0%, #f6faf6 100%);
    border-color: rgba(107,143,113,0.18);
    box-shadow: 0 2px 10px rgba(107,143,113,0.08), 0 6px 20px rgba(107,143,113,0.06);
  }
  .key-fact-card:nth-child(3):hover {
    box-shadow: 0 4px 16px rgba(107,143,113,0.15), 0 12px 32px rgba(107,143,113,0.10);
  }

  .key-fact-card:nth-child(4) {
    background: linear-gradient(135deg, #e8f0f7 0%, #f4f8fc 100%);
    border-color: rgba(50,100,160,0.15);
    box-shadow: 0 2px 10px rgba(50,100,160,0.08), 0 6px 20px rgba(50,100,160,0.06);
  }
  .key-fact-card:nth-child(4):hover {
    box-shadow: 0 4px 16px rgba(50,100,160,0.14), 0 12px 32px rgba(50,100,160,0.09);
  }

  .key-fact-card:nth-child(5) {
    background: linear-gradient(135deg, #f5edf8 0%, #faf6fc 100%);
    border-color: rgba(140,90,180,0.15);
    box-shadow: 0 2px 10px rgba(140,90,180,0.08), 0 6px 20px rgba(140,90,180,0.06);
  }
  .key-fact-card:nth-child(5):hover {
    box-shadow: 0 4px 16px rgba(140,90,180,0.14), 0 12px 32px rgba(140,90,180,0.09);
  }

  .key-fact-card:nth-child(6) {
    background: linear-gradient(135deg, #e8f5f3 0%, #edfaf8 100%);
    border-color: rgba(22,160,133,0.18);
    box-shadow: 0 2px 10px rgba(22,160,133,0.08), 0 6px 20px rgba(22,160,133,0.07);
  }
  .key-fact-card:nth-child(6):hover {
    box-shadow: 0 4px 16px rgba(22,160,133,0.16), 0 12px 32px rgba(22,160,133,0.10);
  }

  .fact-icon-wrap {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  .fact-icon-wrap svg {
    width: 18px; height: 18px;
  }

  .fact-text {
    font-size: 0.855rem; color: var(--ink-soft);
    line-height: 1.65; font-weight: 400;
    padding-top: 0.1rem;
  }

  .fact-text strong {
    display: block;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 0.2rem;
    opacity: 0.7;
  }

  /* ── YOUR PATH FORWARD ── */
  .path-forward { background: white; }

  .path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .path-card {
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: default;
  }

  .path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  .path-card.featured {
    background: var(--teal);
    border-color: transparent;
    color: white;
  }

  .path-card.featured .path-body { color: rgba(255,255,255,0.75); }
  .path-card.featured .path-title { color: white; }

  .path-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; color: var(--teal);
    margin-bottom: 0.75rem; line-height: 1;
  }

  .path-card.featured .path-number { color: rgba(255,255,255,0.4); }

  .path-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem; color: var(--ink);
    margin-bottom: 0.75rem;
  }

  .path-body {
    font-size: 0.875rem; color: var(--ink-soft);
    line-height: 1.7; font-weight: 300;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--cream); }

  .faq-list { max-width: 720px; }

  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .faq-question {
    width: 100%; background: none; border: none;
    text-align: left; padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; gap: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 500; color: var(--ink);
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--teal); }

  .faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
  }

  .faq-chevron svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-item.open .faq-question { color: var(--teal); }

  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem; color: var(--ink-soft);
    font-weight: 300; line-height: 1.75;
  }

  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

  /* ── CTA ── */
  .cta-section {
    background: var(--teal);
    text-align: center;
    padding: 6rem 5vw;
  }

  .cta-section .section-title { color: white; }
  .cta-section .section-lead { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; }

  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .btn-white {
    background: white; color: var(--teal);
    padding: 0.875rem 1.75rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
  }

  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

  .btn-ghost-white {
    background: transparent; color: white;
    padding: 0.875rem 1.75rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
  }

  .btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 3rem 5vw 2rem;
  }

  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem; color: white;
    margin-bottom: 0.4rem;
  }

  .footer-tagline {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
    font-weight: 300; max-width: 22ch; line-height: 1.5;
  }

  .footer-nav {
    display: flex; gap: 3rem; flex-wrap: wrap;
  }

  .footer-nav-group { display: flex; flex-direction: column; gap: 0.6rem; }

  .footer-nav-title {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 0.25rem;
  }

  .footer-nav-group a {
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
  }

  .footer-nav-group a:hover { color: var(--teal-light); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 1rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem; color: rgba(255,255,255,0.28);
    max-width: 55ch; line-height: 1.6; font-weight: 300;
  }

  .footer-copyright {
    font-size: 0.75rem; color: rgba(255,255,255,0.28);
    white-space: nowrap;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
    .hero-visual { display: none; }
    .understand-grid { grid-template-columns: 1fr; }
    .myth-item { grid-template-columns: 1fr; }
    .myth-side { border-right: 1px solid rgba(255,255,255,0.08); border-radius: 16px 16px 0 0; }
    .reality-side { border-radius: 0 0 16px 16px; }
    .science-layout { grid-template-columns: 1fr; }
    .science-aside { position: static; }
    .path-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-copyright { white-space: normal; }
  }

  /* ── KEY TAGS TO KNOW ── */
  .key-tags-section {
    background: white;
    padding: 6rem 5vw;
  }

  .tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 0;
  }

  .tag-card {
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    border: 1px solid transparent;
    position: relative; overflow: hidden;
    transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
    cursor: default;
  }

  .tag-card:hover { transform: translateY(-6px); }

  .tag-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    border-radius: 20px 20px 0 0;
  }

  /* card 1 – teal */
  .tag-card:nth-child(1) {
    background: linear-gradient(140deg,#e8f5f3 0%,#f6fcfb 100%);
    border-color: rgba(42,124,111,.18);
    box-shadow: 0 2px 12px rgba(42,124,111,.10), 0 8px 24px rgba(42,124,111,.07);
  }
  .tag-card:nth-child(1):hover { box-shadow: 0 6px 24px rgba(42,124,111,.18), 0 16px 40px rgba(42,124,111,.12); }
  .tag-card:nth-child(1)::before { background: linear-gradient(90deg,#2a7c6f,#3a9e8e); }

  /* card 2 – amber */
  .tag-card:nth-child(2) {
    background: linear-gradient(140deg,#fdf0e3 0%,#fef8f4 100%);
    border-color: rgba(217,123,42,.18);
    box-shadow: 0 2px 12px rgba(217,123,42,.09), 0 8px 24px rgba(217,123,42,.06);
  }
  .tag-card:nth-child(2):hover { box-shadow: 0 6px 24px rgba(217,123,42,.16), 0 16px 40px rgba(217,123,42,.10); }
  .tag-card:nth-child(2)::before { background: linear-gradient(90deg,#d97b2a,#e8a05c); }

  /* card 3 – sage */
  .tag-card:nth-child(3) {
    background: linear-gradient(140deg,#eef4ef 0%,#f6faf6 100%);
    border-color: rgba(107,143,113,.18);
    box-shadow: 0 2px 12px rgba(107,143,113,.09), 0 8px 24px rgba(107,143,113,.06);
  }
  .tag-card:nth-child(3):hover { box-shadow: 0 6px 24px rgba(107,143,113,.16), 0 16px 40px rgba(107,143,113,.10); }
  .tag-card:nth-child(3)::before { background: linear-gradient(90deg,#6b8f71,#8fb895); }

  /* card 4 – blue */
  .tag-card:nth-child(4) {
    background: linear-gradient(140deg,#e8eff8 0%,#f4f8fc 100%);
    border-color: rgba(50,100,160,.15);
    box-shadow: 0 2px 12px rgba(50,100,160,.09), 0 8px 24px rgba(50,100,160,.06);
  }
  .tag-card:nth-child(4):hover { box-shadow: 0 6px 24px rgba(50,100,160,.16), 0 16px 40px rgba(50,100,160,.10); }
  .tag-card:nth-child(4)::before { background: linear-gradient(90deg,#3264a0,#5b8ec9); }

  /* card 5 – violet */
  .tag-card:nth-child(5) {
    background: linear-gradient(140deg,#f2edf8 0%,#faf6fc 100%);
    border-color: rgba(130,80,170,.15);
    box-shadow: 0 2px 12px rgba(130,80,170,.09), 0 8px 24px rgba(130,80,170,.06);
  }
  .tag-card:nth-child(5):hover { box-shadow: 0 6px 24px rgba(130,80,170,.15), 0 16px 40px rgba(130,80,170,.09); }
  .tag-card:nth-child(5)::before { background: linear-gradient(90deg,#8250aa,#aa7acc); }

  /* card 6 – deep teal */
  .tag-card:nth-child(6) {
    background: linear-gradient(140deg,#e4f5f2 0%,#edfaf8 100%);
    border-color: rgba(22,140,120,.18);
    box-shadow: 0 2px 12px rgba(22,140,120,.09), 0 8px 24px rgba(22,140,120,.07);
  }
  .tag-card:nth-child(6):hover { box-shadow: 0 6px 24px rgba(22,140,120,.17), 0 16px 40px rgba(22,140,120,.11); }
  .tag-card:nth-child(6)::before { background: linear-gradient(90deg,#168c78,#28c4a6); }

  .tag-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
  }

  .tag-icon-wrap svg { width: 22px; height: 22px; }

  .tag-kicker {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-muted); margin-bottom: 0.35rem;
  }

  .tag-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem; color: var(--ink);
    margin-bottom: 0.6rem; line-height: 1.25;
  }

  .tag-body {
    font-size: 0.855rem; color: var(--ink-soft);
    line-height: 1.65; font-weight: 300;
  }

  @media (max-width: 900px) {
    .tags-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .tags-grid { grid-template-columns: 1fr; }
  }

