/* Shared styles for FAQ, legal, resources, stories, roadmap, compare */

.site-page {
  --sp-pad-x: clamp(var(--space-6), 5vw, var(--space-10));
}

.site-page .container {
  padding-inline: var(--sp-pad-x);
}

.site-page-hero {
  padding-inline: 0;
}

.site-page-hero .container {
  padding-block-end: var(--space-2);
}

.site-page-hero h1,
.page-hero h1 {
  font-size: var(--heading-1);
  padding-inline: var(--space-1);
}

.site-page-hero .lead {
  max-width: 640px;
  padding-inline: var(--space-1);
}

.site-page-body {
  padding: var(--space-10) 0 var(--space-16);
}

/* FAQ accordion */
.faq-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.faq-section-title {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(15, 118, 110, 0.35);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-size: var(--text-lg);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__body {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: 0;
}

/* Legal prose */
.legal-doc {
  max-width: 720px;
}

.legal-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.legal-section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.legal-section p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Resource cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-5);
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.resource-card:hover {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.resource-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.resource-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
}

.resource-card h3 {
  font-size: var(--text-base);
  font-weight: 800;
}

.resource-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.resource-extra {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .resource-extra {
    grid-template-columns: 1fr 1fr;
  }
}

.resource-box {
  padding: var(--space-6);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.resource-box h3 {
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.resource-box pre,
.resource-vocab {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  white-space: pre-wrap;
  margin: 0;
  font-family: inherit;
}

.resource-vocab dt {
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-2);
}

.resource-vocab dd {
  margin: 0 0 var(--space-1);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Success stories */
.stories-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.stories-stat {
  padding: var(--space-4) var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 120px;
}

.stories-stat strong {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--primary);
}

.stories-stat span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}

.stories-timeline {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .stories-timeline {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  }
}

.story-journey {
  padding: var(--space-4);
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.06), rgba(212, 168, 83, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.story-journey-scores {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.story-journey-before,
.story-journey-after {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.story-journey-before small,
.story-journey-after small {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-journey-before strong,
.story-journey-after strong {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary);
}

.story-journey-after strong {
  color: var(--gold-600, #b8860b);
}

.story-journey-arrow {
  font-size: var(--text-lg);
  color: var(--text-muted);
}

.story-journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-journey-meta li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
}

.story-score-track {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3px;
  height: 8px;
  margin-bottom: var(--space-3);
  border-radius: 999px;
  overflow: hidden;
  background: var(--border);
}

.story-score-track__before {
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  opacity: 0.55;
}

.story-score-track__after {
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
}

.story-card__cta {
  margin-top: var(--space-4);
  width: 100%;
  justify-content: center;
}

.story-card--featured {
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: var(--shadow-md);
}

.story-card {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.story-card:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.story-card__link {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.story-card__link:hover {
  color: inherit;
}

.story-card__excerpt {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.story-card__read-more {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
}

.story-card__video-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 700;
}

.story-card--has-video {
  border-color: rgba(15, 118, 110, 0.2);
}

.story-journey-photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-4);
}

.story-journey-photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.story-journey-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.story-journey-photo figcaption {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
}

.story-journey-photo--after figcaption {
  color: var(--gold-600, #b8860b);
}

.story-journey-arrow--photos {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-muted);
}

.story-detail-hero .container {
  max-width: 820px;
}

.story-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.story-detail-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.story-detail-breadcrumb a:hover {
  color: var(--primary);
}

.story-detail-hero__head h1 {
  margin: var(--space-3) 0 var(--space-2);
}

.story-detail-hero__role {
  margin: 0 0 var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

.story-detail-hero__stars .story-card__star .icon {
  width: 16px;
  height: 16px;
}

.story-detail-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 960px) {
  .story-detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

.story-detail-main {
  display: grid;
  gap: var(--space-8);
}

.story-detail-section h2 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.story-detail-quote {
  margin: 0;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 168, 83, 0.25);
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.08), rgba(15, 118, 110, 0.05));
}

.story-detail-quote p {
  margin: var(--space-3) 0 0;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  font-weight: 600;
  color: var(--text-secondary);
}

.story-detail-body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.story-detail-body p {
  margin: 0 0 var(--space-4);
}

.story-detail-box {
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.story-detail-box--challenge {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.15);
}

.story-detail-box--solution {
  background: rgba(15, 118, 110, 0.05);
  border-color: rgba(15, 118, 110, 0.15);
}

.story-detail-box p {
  margin: 0;
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.story-video--detail {
  margin-bottom: var(--space-2);
}

.story-video--card {
  aspect-ratio: 16/9;
  border-radius: 0;
  border: 0;
}

.story-video-caption {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.story-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.story-detail-aside {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.story-detail-aside h2 {
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.story-detail-related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.story-detail-related a {
  display: grid;
  gap: var(--space-1);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.story-detail-related a:hover {
  border-color: rgba(15, 118, 110, 0.25);
  background: rgba(15, 118, 110, 0.04);
}

.story-detail-related strong {
  font-size: var(--text-sm);
}

.story-detail-related span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}

.story-card__stars {
  display: flex;
  gap: 2px;
  color: var(--border);
}

.story-card__star.is-filled {
  color: var(--gold-500);
}

.story-card__star .icon {
  width: 14px;
  height: 14px;
}

.story-card blockquote {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.story-card__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
}

.story-card__author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.story-video {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.story-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0a0a0a;
  object-fit: contain;
}

/* Roadmap */
.roadmap-progress {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
}

.roadmap-progress__bar {
  flex: 1;
  height: 8px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.roadmap-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--gold-500));
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

.roadmap-progress__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.roadmap-phase {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.roadmap-phase--active {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: var(--shadow-sm);
}

.roadmap-phase__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.roadmap-phase__head h2 {
  font-size: var(--text-lg);
  font-weight: 800;
}

.roadmap-phase__head p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  width: 100%;
}

.roadmap-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-badge--done { background: var(--primary-light); color: var(--primary); }
.roadmap-badge--active { background: rgba(212, 168, 83, 0.2); color: var(--gold-700, #92400e); }
.roadmap-badge--planned { background: var(--bg-alt); color: var(--text-muted); }

.roadmap-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.roadmap-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 0;
}

.roadmap-check .icon {
  width: 12px;
  height: 12px;
}

.roadmap-check--done {
  background: var(--primary);
  color: #fff;
}

.roadmap-check--planned {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  color: var(--text-muted);
}

/* Course compare table */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.compare-table th,
.compare-table td {
  padding: var(--space-4) var(--space-5);
  text-align: start;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--bg-alt);
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: rgba(15, 118, 110, 0.03);
}

.compare-row--featured td {
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.06), rgba(212, 168, 83, 0.05));
}

.compare-row--featured .compare-course-name {
  font-weight: 800;
}

.compare-badge {
  display: inline-block;
  margin-inline-start: var(--space-2);
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #92600a;
  background: var(--gold-100);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: var(--radius-sm);
  vertical-align: middle;
}

.compare-course-name {
  font-weight: 800;
  color: var(--text);
}

.compare-course-name a {
  color: inherit;
  text-decoration: none;
}

.compare-course-name a:hover {
  color: var(--primary);
}

.compare-price {
  font-weight: 800;
  color: var(--primary);
}

.compare-free {
  color: var(--gold-600);
}

.compare-cta-row td {
  background: var(--bg-alt);
}

.site-page-cta {
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--surface) 100%);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
}

.site-page-cta h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.site-page-cta p {
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  font-size: var(--text-sm);
}

.site-page-cta .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.schedule-section {
  margin-bottom: var(--space-10);
}

.schedule-section h2 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.schedule-group {
  margin-bottom: var(--space-6);
}

.schedule-group h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.site-empty {
  text-align: center;
  padding: var(--space-10);
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .compare-table th,
  .compare-table td {
    padding: var(--space-3);
    font-size: var(--text-xs);
  }
}

/* Content library */
.library-section {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.library-section:last-child {
  border-bottom: 0;
}

.library-section__head {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}

.library-section__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.library-section__head h2 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xl);
}

.library-section__head p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.library-links {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .library-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.library-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.library-link:hover {
  border-color: rgba(15, 118, 110, 0.25);
  transform: translateY(-1px);
}

.library-link__title {
  font-size: var(--text-sm);
  font-weight: 700;
}

.library-link__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

/* Video embed partial */
.video-embed__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.video-embed__title {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 700;
}

.video-embed__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex: 1 1 100%;
}

.video-embed__duration {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

.video-embed__frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
}

.video-embed__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-videos {
  margin: var(--space-12) 0;
}

.resource-videos__head h2 {
  margin: 0 0 var(--space-2);
}

.resource-videos__head p {
  margin: 0 0 var(--space-6);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.resource-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}

.resource-video-card {
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.resource-video-card__type {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
}

/* Landing pages */
.landing-bullets {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.landing-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.landing-hero__actions {
  margin-top: var(--space-6);
}

.landing-partner {
  padding: var(--space-8) 0 var(--space-2);
}

.landing-partner__card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(212, 168, 83, 0.08));
}

.landing-partner__card h2 {
  margin: var(--space-3) 0 var(--space-4);
  font-size: var(--text-xl);
}

.landing-partner__card p {
  margin: 0 0 var(--space-5);
  color: var(--text-secondary);
  max-width: 62ch;
}

/* Tools hub */
.tools-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.tools-hub-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.tools-hub-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tools-hub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}

.tools-hub-card h2 {
  margin: 0;
  font-size: var(--text-lg);
}

.tools-hub-card p {
  margin: 0;
  flex: 1;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.tools-hub-card__cta {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
}

.blog-inline-cta {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: var(--primary-light);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--radius-lg);
}

.blog-inline-cta a {
  font-weight: 700;
  color: var(--primary);
}
