/* ─── TOOLS HUB PAGE ──────────────────────────────── */

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tools-page-header {
  background: var(--navy);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.tools-page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-page-header h1 em { font-style: italic; color: var(--gold-light); }

.tools-page-header p {
  font-size: 1.0625rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── TOOLS HUB GRID ──────────────────────────────── */

.tools-hub-section {
  background: var(--off-white);
  padding: 5rem 2rem 6rem;
}

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

.tool-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.tool-hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.tool-hub-card--soon {
  opacity: 0.65;
}

.tool-hub-card--soon:hover {
  transform: none;
  border-color: var(--border);
}

.tool-hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tool-hub-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.tool-hub-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.tool-hub-badge--soon {
  background: var(--off-white);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.tool-hub-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.tool-hub-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.tool-hub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.tool-hub-features li {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.tool-hub-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 2px;
  font-weight: 700;
}

.tool-hub-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.75rem 1.375rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.tool-hub-cta--primary {
  background: var(--gold);
  color: var(--navy);
}

.tool-hub-cta--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.tool-hub-cta--disabled {
  background: var(--off-white);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
  pointer-events: none;
}

/* ─── SEO CONTENT SECTION ─────────────────────────── */

.tools-seo-section {
  background: var(--white);
  padding: 5rem 2rem 6rem;
}

.tools-seo-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.tools-seo-inner h2 {
  font-family: var(--serif);
  font-size: 1.625rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tools-seo-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.tools-seo-callout {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.tools-seo-callout-label {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin-bottom: 0.75rem !important;
}

.tools-seo-callout p:last-of-type {
  margin-bottom: 0;
}

/* ─── NAV ACTIVE ──────────────────────────────────── */

.nav-links a.active {
  color: var(--navy);
  font-weight: 500;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 900px) {
  .tools-hub-grid  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .tool-hub-card:hover { transform: none; }
  .tools-seo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .tools-page-header { padding: 6rem 1.25rem 3rem; }
  .tools-hub-section { padding: 3rem 1.25rem 4rem; }
  .tools-seo-section { padding: 3rem 1.25rem 4rem; }
}
