  .resource-hero {
    background: var(--bg);
    padding: 76px 0 96px;
  }

  .resource-page-header {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .resource-page-header .eyebrow {
    align-items: center;
  }

  .resource-page-header h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-transform: uppercase;
  }

  .resource-page-header .lead {
    max-width: 720px;
    margin: 0 auto 14px;
  }

  .resource-help {
    color: var(--ink-muted);
    font-weight: 600;
  }

  .resource-list {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
  }

  .resource-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 32px;
    background: white;
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 22px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }

  .resource-card {
    background: white;
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(13, 13, 13, 0.05);
    overflow: hidden;
    scroll-margin-top: 96px;
  }

  .resource-card.is-open {
    border-color: rgba(26, 92, 243, 0.38);
    box-shadow: 0 22px 64px rgba(26, 92, 243, 0.12);
  }

  .resource-card-summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    width: 100%;
    padding: 26px 30px;
    background: transparent;
    border: 0;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
  }

  .resource-card-meta,
  .resource-card-title,
  .resource-card-resource {
    grid-column: 1;
  }

  .resource-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .resource-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 999px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .resource-status[hidden] {
    display: none;
  }

  .resource-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.65rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.02;
  }

  .resource-card-resource {
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .resource-card-icon {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(13, 13, 13, 0.16);
    border-radius: 999px;
  }

  .resource-card-icon::before,
  .resource-card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 3px;
    background: var(--ink);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
  }

  .resource-card-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .resource-card.is-open .resource-card-icon {
    border-color: var(--blue);
  }

  .resource-card.is-open .resource-card-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .resource-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 24px;
    padding: 0 30px 30px;
  }

  .resource-card-body[hidden] {
    display: none;
  }

  .resource-card-content {
    min-width: 0;
  }

  .resource-tool-card {
    margin-bottom: 18px;
    padding: 20px;
    background: rgba(26, 92, 243, 0.06);
    border: 1px solid rgba(26, 92, 243, 0.16);
    border-radius: 18px;
  }

  .resource-tool-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: 'Archivo', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .resource-tool-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.08;
  }

  .resource-tool-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  .resource-includes {
    display: grid;
    gap: 0;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: white;
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 18px;
  }

  .resource-includes span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.35;
  }

  .resource-includes span:first-child {
    padding-top: 0;
  }

  .resource-includes span:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .resource-includes span::before {
    content: '';
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(26, 92, 243, 0.12);
  }

  .resource-copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: var(--bg);
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    cursor: pointer;
  }

  .resource-panel {
    position: relative;
    align-self: start;
    padding: 28px;
    background: var(--blue);
    color: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26, 92, 243, 0.18);
  }

  .resource-panel::before {
    content: '';
    position: absolute;
    top: -74px;
    right: -76px;
    width: 190px;
    height: 190px;
    background: var(--blue-dark);
    border-radius: 50%;
    opacity: 0.45;
  }

  .resource-panel > * {
    position: relative;
    z-index: 1;
  }

  .resource-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Archivo', sans-serif;
  }

  .resource-dot {
    width: 11px;
    height: 11px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.34);
    animation: featured-dot-pulse 2.4s ease-in-out infinite;
  }

  .resource-panel-header strong {
    font-size: 1.16rem;
    line-height: 1.1;
  }

  .resource-panel p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 22px;
    line-height: 1.5;
  }

  .resource-form {
    display: grid;
    gap: 12px;
  }

  .resource-form input[type="text"],
  .resource-form input[type="email"] {
    width: 100%;
    min-width: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: white;
    border-radius: 100px;
    font-size: 1rem;
    font-family: inherit;
  }

  .resource-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
  }

  .resource-form input.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.22);
  }

  .resource-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 4px 0 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .resource-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--red);
  }

  .resource-form button {
    width: 100%;
    padding: 16px 26px;
    background: white;
    color: var(--blue);
    border: 2px solid white;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
  }

  .resource-message {
    margin-bottom: 0;
  }

  @media (max-width: 900px) {
    .resource-hero {
      padding: 56px 0 72px;
    }

    .resource-page-header {
      margin-bottom: 32px;
      text-align: left;
    }

    .resource-page-header .eyebrow {
      align-items: flex-start;
    }

    .resource-card-body {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 620px) {
    .resource-hero {
      padding: 42px 0 58px;
    }

    .resource-page-header .eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
    }

    .resource-page-header h1 {
      font-size: 2.52rem;
      letter-spacing: 0;
    }

    .resource-page-header .lead {
      font-size: 1rem;
      line-height: 1.5;
    }

    .resource-card {
      border-radius: 20px;
    }

    .resource-card-summary {
      padding: 20px;
    }

    .resource-card-title {
      font-size: 1.48rem;
    }

    .resource-card-resource {
      font-size: 0.98rem;
      padding-right: 46px;
    }

    .resource-card-icon {
      width: 38px;
      height: 38px;
    }

    .resource-card-body {
      padding: 0 20px 20px;
    }

    .resource-tool-card {
      padding: 16px;
    }

    .resource-tool-card span {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
    }

    .resource-tool-card strong {
      font-size: 1.1rem;
    }

    .resource-tool-card p,
    .resource-includes span,
    .resource-panel p {
      font-size: 0.96rem;
    }

    .resource-panel {
      padding: 24px 20px;
      border-radius: 20px;
    }
  }

  @media (max-width: 380px) {
    .resource-page-header h1 {
      font-size: 2.24rem;
    }

    .resource-page-header .eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
    }
  }
