/*
 * DeedChain base styles
 * Emphasis on contrast, structure, and authoritative layout.
 */

:root {
  --navy: #0b1f33;
  --deep-navy: #081727;
  --slate: #1f2f46;
  --light-slate: #e2e8f3;
  --muted: #55657d;
  --accent: #ff6b35;
  --accent-amber: #f6a623;
  --teal: #0e7c86;
  --offwhite: #f7f9fc;
  --paper: #f3ede4;
  --sand: #dbc6a6;
  --ink: #101925;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background-color: #ffffff;
}

h1,
h2,
h3,
.logo-word {
  font-family: Cambria, Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: var(--deep-navy);
  color: #fff;
  padding: 1rem 0;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 700;
}

.logo-word {
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-size: 0.85rem;
  color: #c3d3ff;
  margin-top: 0.15rem;
}

.nav {
  display: flex;
}

.nav-link {
  margin-left: 1rem;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

/* Hero */
.hero-section {
  padding: 4rem 0;
  background: radial-gradient(circle at 20% 20%, #12365a, #0b1f33 55%);
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-copy .lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 640px;
  color: #e6eefc;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 1rem;
}

.hero-card {
  background: linear-gradient(145deg, #122b47, #0b1f33);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  color: #e6eefc;
}

.button.full-width {
  width: 100%;
  text-align: center;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 700;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.button.primary {
  background-color: var(--accent);
  color: #0b1f33;
}

.button.primary:hover {
  background-color: #e55c2d;
}

.button.secondary {
  background-color: #0b1f33;
  color: #fff;
  border: 2px solid #0b1f33;
}

.button.secondary:hover {
  background-color: #12365a;
  border-color: #12365a;
}

.button.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 0.6rem 0;
  color: #0b2a3d;
}

.hero-section .eyebrow {
  color: #ffd8a0;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pill-dark {
  background: rgba(12, 35, 64, 0.1);
  color: var(--navy);
  border: 1px solid var(--light-slate);
}

.pill-amber {
  background: rgba(246, 166, 35, 0.15);
  color: var(--navy);
  border: 1px solid #f2b04c;
}

/* Section headings */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-heading h2 {
  margin: 0;
}

.heading-accent {
  display: inline-block;
  height: 4px;
  width: 56px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  border-radius: 999px;
}

.section-lead {
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Feature & card grids */
.features-grid,
.states-grid,
.guides-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.feature-card,
.state-card,
.guide-card {
  background-color: #f5f7fa;
  border: 1px solid #d7deea;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.06);
}

.feature-card h3,
.state-card h3,
.guide-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-card p,
.state-card p,
.guide-card p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  color: #1f2f46;
}

/* States hub */
.states-hub-header {
  padding-top: 2.2rem;
}

.states-hub-header h1 {
  margin: 0;
}

.states-hub-lead {
  margin-top: 0.65rem;
  max-width: 760px;
  color: var(--muted);
}

.states-hub-tools {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: end;
}

.states-search {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.states-search-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.states-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c8d5e8;
  border-radius: 0;
  padding: 0.65rem 0.85rem;
  font: inherit;
  color: var(--navy);
  background: #ffffff;
}

.states-search input:focus {
  outline: 2px solid #8ec1ff;
  outline-offset: 1px;
  border-color: #80b9ff;
}

.states-hub-action {
  height: 46px;
}

.states-hub-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.states-hub-metric {
  background: #f5f8fd;
  border: 1px solid #d9e4f2;
  border-radius: 0;
  padding: 0.95rem 1rem;
}

.states-hub-metric-value {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.states-hub-metric-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.states-hub-grid {
  margin-top: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.state-hub-card {
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.state-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 31, 51, 0.11);
  border-color: #a9c2e5;
}

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

.state-hub-abbr {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #155792;
  font-weight: 700;
}

.state-hub-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c7d8ef;
  background: #ecf4ff;
  color: #155792;
  padding: 0.18rem 0.48rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.state-hub-link {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.states-search-empty {
  margin-top: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* Credibility block */
.credibility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--deep-navy);
  color: #fff;
  padding: 1.2rem;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  margin: 0.25rem 0 0 0;
  color: #cdd8f0;
}

.cred-copy h3 {
  margin-top: 0;
}

/* Insight grid with expert corner */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.insight-card {
  background: #ffffff;
  border: 1px solid #d7deea;
  border-radius: 0;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(11, 31, 51, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 31, 51, 0.12);
}

.experts-corner {
  background: linear-gradient(160deg, #0b1f33, #12365a);
  color: #fff;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  grid-column: 4;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experts-corner h3 {
  margin: 0;
}

.experts-corner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.experts-corner a {
  color: #f6d7c3;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: var(--deep-navy);
  color: #fff;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-col h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-col li {
  margin: 0.35rem 0;
}

.footer-col a {
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #ccd5e0;
}

/* Article styling */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.editorial-meta {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  max-width: 800px;
  padding: 0.8rem 1rem;
  border: 1px solid #dbe5f2;
  border-radius: 0;
  background: #f8fbff;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: #30445f;
  font-size: 0.92rem;
}

.editorial-meta p {
  margin: 0;
}

.article h1 {
  margin-top: 0;
  font-size: 2rem;
}

.article h2 {
  margin-top: 1.75rem;
  font-size: 1.5rem;
}

.article p {
  margin-bottom: 1rem;
}

.article ul,
.article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.article li {
  margin-bottom: 0.5rem;
}

/* Ad placeholder */
.ad-placeholder {
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  border: 2px dashed #8a9bb5;
  border-radius: 0;
  background-color: #eef2f7;
  color: #2f3d55;
  font-size: 0.9rem;
  font-weight: 600;
}

.ad-slot {
  width: 100%;
  min-height: 250px;
  margin: 1.75rem 0;
  border-radius: 0;
  border: 1px solid #d8e3f1;
  background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
}

.ad-slot.ad-slot-mid {
  min-height: 280px;
}

/* Highlight box for key takeaways on article pages */
.highlight-box {
  border-left: 4px solid var(--accent);
  background-color: #fff5e6;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0;
}
.highlight-box h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.highlight-box ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Post hero image styling */
.post-hero {
  margin: 1.5rem 0;
  text-align: center;
}
.post-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Article hero image */
.article-hero {
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%);
  border: 1px solid #e1e8f0;
  border-radius: 0;
  padding: 1rem;
  text-align: center;
}

.article-hero img {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.article-hero figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Author and related blocks */
.author-panel {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border: 1px solid #e1e8f0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: #f5f7fa;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
}
.author-copy h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.author-copy p {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
}
.author-copy .author-cred {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.related-links {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #e1e8f0;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.related-links h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.related-links ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--navy);
}

.source-links {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #e1e8f0;
  border-radius: 0;
  background-color: #f8fbff;
}

.source-links h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.source-links ul {
  margin: 0;
  padding-left: 1.1rem;
}

.source-links li {
  margin-bottom: 0.8rem;
}

.source-links li p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.source-links a {
  color: #0c4f85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tool-workbench {
  margin: 2rem 0;
  border-top: 2px solid #d7e3f2;
  border-bottom: 2px solid #d7e3f2;
  background: linear-gradient(135deg, #f8fbff 0%, #edf3fb 100%);
}

.tool-workbench-header {
  padding: 1.35rem 0 0.75rem;
}

.tool-workbench-header h2 {
  margin-top: 0;
}

.tool-checker-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
  padding: 0 0 1.5rem;
}

.tool-checklist {
  display: grid;
  gap: 0.55rem;
}

.tool-checklist label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem 0;
  border-top: 1px solid #d7e3f2;
  color: #25364f;
  line-height: 1.45;
}

.tool-checklist input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--teal);
}

.tool-score-panel {
  position: sticky;
  top: 1rem;
  border-left: 1px solid #c8d6e8;
  padding: 1rem 0 1rem 1.25rem;
}

.tool-score-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-score-value {
  margin: 0.25rem 0;
  color: var(--navy);
  font-size: 2.25rem;
  font-weight: 800;
}

.tool-score-band {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #c8d6e8;
}

.tool-score-band.low {
  color: #0e604a;
  background: #e7f6ef;
}

.tool-score-band.medium {
  color: #8c5100;
  background: #fff2d7;
}

.tool-score-band.high {
  color: #8b1d1d;
  background: #f9e2e2;
}

.tool-score-track {
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  background: #dce6f2;
}

.tool-score-track span {
  display: block;
  width: 0;
  height: 100%;
  transition: width 0.18s ease;
  background: #8b1d1d;
}

.tool-score-track span.medium {
  background: #c77f1f;
}

.tool-score-track span.low {
  background: #16745b;
}

.tool-score-panel h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.tool-score-panel ul {
  padding-left: 1.15rem;
  color: #2f4360;
}

.next-step-panel {
  margin: 0 auto 2.5rem;
  max-width: 800px;
  border-top: 2px solid #dde7f3;
  border-bottom: 2px solid #dde7f3;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 1.35rem 0;
  background: linear-gradient(135deg, rgba(247, 251, 255, 0.92) 0%, rgba(233, 240, 251, 0.76) 100%);
}

.next-step-panel h2 {
  margin: 0;
  font-size: 1.25rem;
}

.next-step-panel > p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
}

.next-step-grid {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.next-step-card {
  display: block;
  padding: 0.9rem 0 0.95rem;
  border-top: 1px solid #d7e3f2;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.next-step-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.next-step-card p {
  margin: 0;
  color: #2f4360;
  font-size: 0.92rem;
}

/* CTA panel */
.cta-panel {
  margin: 3rem auto;
  padding: 2rem 0;
  border-top: 2px solid #e1e8f0;
  border-bottom: 2px solid #e1e8f0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--offwhite) 0%, #e9f0fb 100%);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-section-home {
  padding-bottom: 0;
}

.hero-inner-home {
  align-items: stretch;
  gap: 0;
}

.hero-copy-home {
  padding: 1rem 1.5rem 3rem 0;
}

.hero-copy-home h1 {
  max-width: 9.5ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
}

.hero-runway {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.5rem 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.runway-kicker,
.panel-label {
  margin: 0 0 0.5rem;
  color: #ffd8a0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-runway h2 {
  margin: 0;
  font-size: 2rem;
  color: #ffffff;
}

.hero-checklist {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.25rem;
  color: #d7e3f8;
}

.hero-checklist li {
  margin-bottom: 0.65rem;
}

.hero-runway-links {
  display: grid;
  gap: 0.65rem;
}

.hero-runway-links a {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.signal-band {
  margin-top: 2.25rem;
  background: rgba(4, 12, 22, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-item {
  padding: 1.15rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-item:first-child {
  border-left: 0;
}

.signal-value {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}

.signal-label {
  margin: 0.25rem 0 0;
  color: #d5e1f5;
  font-size: 0.92rem;
}

.full-bleed-band {
  padding: 3.5rem 0;
}

.full-bleed-band-paper {
  background: linear-gradient(180deg, #f7f3ed 0%, #efe6d7 100%);
}

.full-bleed-band-ink {
  background: linear-gradient(160deg, #081727 0%, #10263d 58%, #17324e 100%);
  color: #ffffff;
}

.full-bleed-band-contrast {
  background: #f7f9fc;
}

.band-header {
  margin-bottom: 1.5rem;
}

.band-header-light .eyebrow,
.band-header-light .section-lead,
.band-header-light h2 {
  color: inherit;
}

.band-header-light .heading-accent {
  background: linear-gradient(90deg, #ffb36a, #7fe0e8);
}

.runway-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
}

.runway-panel {
  padding: 0;
  background: transparent;
  border: 0;
  min-height: 100%;
}

.runway-panel-dark {
  color: var(--navy);
  background: transparent;
  border-right: 1px solid rgba(8, 23, 39, 0.12);
  padding-right: 1.5rem;
}

.runway-panel h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
}

.runway-panel-dark h3,
.runway-panel-dark p {
  color: var(--navy);
}

.runway-panel-dark .panel-label {
  color: #9b4d11;
}

.runway-panel p {
  margin-top: 0;
}

.panel-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.runway-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.runway-link-card {
  display: block;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid #c2cfdf;
}

.runway-link-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.runway-link-card h3,
.archive-card h3,
.editorial-link h3,
.spotlight-card h3,
.board-aside h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.editorial-link {
  display: block;
  min-height: 100%;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(255, 179, 106, 0.55);
  background: transparent;
}

.editorial-link p {
  color: #dbe8fb;
}

.editorial-label {
  margin: 0 0 0.45rem;
  color: #ffcc8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
}

.board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 1.25rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.spotlight-card,
.archive-card {
  display: block;
  padding: 1rem 0 1.1rem;
  background: transparent;
  border-top: 1px solid #d7deea;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.board-aside {
  padding: 0 0 0 1.25rem;
  background: transparent;
  border-left: 1px solid #d7deea;
  color: var(--navy);
}

.aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.aside-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.9rem;
}

.aside-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.aside-list a {
  color: var(--navy);
  font-weight: 700;
}

.aside-list p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.cta-panel-strong {
  background: linear-gradient(120deg, #f6efe6 0%, #dfe8f7 100%);
  border-width: 2px 0;
  border-color: #d7deea;
}

.archive-hero {
  padding: 3.25rem 0 2rem;
  background: linear-gradient(180deg, #0c1d31 0%, #17314b 100%);
  color: #ffffff;
}

.archive-lead {
  max-width: 760px;
  color: #d9e5f7;
  font-size: 1.08rem;
}

.archive-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.archive-band {
  padding: 3rem 0;
}

.archive-band-dark {
  background: #101925;
  color: #ffffff;
}

.archive-band-paper {
  background: #f7f9fc;
}

.archive-band-warm {
  background: linear-gradient(180deg, #f4ede3 0%, #eadcc8 100%);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

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

.archive-card-featured {
  background: transparent;
  border-top: 1px solid rgba(255, 179, 106, 0.55);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.archive-card-featured p {
  color: #dbe8fb;
}

.archive-card-warm {
  background: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 2.2rem;
  }
  .hero-copy .lead {
    font-size: 1rem;
  }
  .nav {
    display: none;
  }
  .credibility {
    grid-template-columns: 1fr;
  }
  .hero-copy-home {
    padding-right: 0;
  }
  .hero-runway {
    padding: 1.25rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .runway-panel-dark {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 23, 39, 0.12);
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .board-aside {
    border-left: 0;
    border-top: 1px solid #d7deea;
    padding-left: 0;
    padding-top: 1rem;
  }
  .tool-checker-grid {
    grid-template-columns: 1fr;
  }
  .tool-score-panel {
    position: static;
    border-left: 0;
    border-top: 1px solid #c8d6e8;
    padding: 1rem 0 0;
  }
  .signal-grid,
  .runway-grid,
  .board-layout,
  .editorial-grid,
  .archive-grid,
  .archive-grid-featured,
  .spotlight-grid,
  .runway-links-grid {
    grid-template-columns: 1fr;
  }
  .signal-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .signal-item:first-child {
    border-top: 0;
  }
  .states-hub-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .states-hub-action {
    justify-self: start;
  }
  .states-hub-metrics {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    width: 100%;
  }
  .insight-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .experts-corner {
    grid-column: auto;
    grid-row: auto;
  }
}
