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

:root {
  --bg:          #fdfcff;
  --bg-alt:      #f3f0ff;
  --bg-card:     #ffffff;
  --ink:         #1e1b2e;
  --ink-soft:    #4a4560;
  --ink-muted:   #7a7394;
  --accent:      #9b8afb;
  --accent-dark: #7c6ae8;
  --accent-deep: #6e59d9;
  --accent-soft: #ede9fe;
  --accent-glow: #e8e2ff;
  --border:      #e4dff5;
  --border-dark: #cfc8eb;
  --serif:       "Fraunces", Georgia, serif;
  --sans:        "Source Sans 3", system-ui, sans-serif;
  --max:         1080px;
  --radius:      12px;
  --shadow:      0 1px 3px rgba(28, 27, 24, 0.06), 0 4px 16px rgba(28, 27, 24, 0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-dark); }

strong { color: var(--ink); font-weight: 600; }

/* ── header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent-deep); }

.logo-photo {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-soft);
  box-shadow: 0 0 0 1px var(--border);
}

.header nav {
  display: flex;
  gap: 1.5rem;
}

.header nav a {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.header nav a:hover,
.header nav a.active { color: var(--accent); }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header nav { flex-wrap: wrap; gap: 0.75rem 1.25rem; }
}

/* ── layout ── */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.section {
  padding-top: 3.5rem;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-alt {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + 1.5rem);
  padding-right: calc(50vw - 50% + 1.5rem);
  background: var(--bg-alt);
  padding-bottom: 3.5rem;
}

/* ── services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 89, 217, 0.1);
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  min-height: 2.6em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1 1 auto;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-top: auto;
}

.service-link:hover {
  color: var(--accent-dark);
}

@media (min-width: 541px) {
  .service-card {
    min-height: 18rem;
  }
}

@media (max-width: 540px) {
  .service-card h3 {
    min-height: 0;
  }
}

.service-chips a {
  color: var(--accent-deep);
}

.service-chips a:hover {
  color: var(--accent-dark);
}

.service-chips {
  margin-bottom: 1.5rem;
}

.muted { color: var(--ink-muted); font-size: 0.95rem; }

/* ── hero ── */
.hero {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -4rem;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: radial-gradient(circle, rgba(155, 138, 251, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 280px);
  gap: 2rem 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-profile {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
}

.hero-content {
  min-width: 0;
  animation: fadeUp 0.6s ease-out;
}

.hero-profile {
  animation: fadeUp 0.6s ease-out 0.1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-card {
  display: block;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 8px 32px rgba(110, 89, 217, 0.12), var(--shadow);
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(110, 89, 217, 0.18);
  color: inherit;
}

.profile-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.profile-photo {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent), 0 8px 24px rgba(155, 138, 251, 0.35);
  transition: box-shadow 0.25s;
}

.profile-card:hover .profile-photo {
  box-shadow: 0 0 0 3px var(--accent-dark), 0 12px 28px rgba(155, 138, 251, 0.45);
}

.profile-status {
  position: absolute;
  bottom: 0.35rem;
  right: -0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  background: #10b981;
  color: #fff;
  border-radius: 999px;
  border: 2px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.profile-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.profile-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.profile-badge:hover {
  transform: translateY(-1px);
}

.profile-badge-partner {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent-deep);
}

.profile-badge-partner:hover {
  box-shadow: 0 4px 12px rgba(110, 89, 217, 0.15);
  color: var(--accent-deep);
}

.profile-badge-veteran {
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  border: 1px solid #f5c842;
  color: #854d0e;
}

.profile-badge-veteran:hover {
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
  color: #713f12;
}

.profile-title {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.profile-rating {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.profile-reply {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.profile-rating .stars {
  color: #f5b301;
  letter-spacing: 0.04em;
}

.profile-rating strong {
  color: var(--accent-deep);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.profile-stats li {
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

.profile-stats .stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.profile-cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.profile-cta:hover {
  color: var(--accent-dark);
}

.profile-card:hover .profile-cta {
  color: var(--accent-dark);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.headline {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.headline.headline-wide {
  max-width: 52rem;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.32;
}

.headline em {
  font-style: normal;
  color: var(--ink-muted);
}

.headline strong {
  font-weight: 700;
  color: var(--accent-deep);
}

.lead,
.lead-extra {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 52rem;
  line-height: 1.7;
}

.lead {
  margin-bottom: 0.75rem;
}

.lead-extra {
  margin-bottom: 1.25rem;
}

.targets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin-bottom: 1.25rem;
}

.targets-row li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-dark);
  border-radius: 6px;
  color: var(--ink-muted);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.partner-badge:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(155, 138, 251, 0.2);
  color: inherit;
}

.partner-badge .stars {
  color: #f5b301;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.partner-badge .rating {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.partner-badge .rating strong {
  color: var(--accent-deep);
}

.shield-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin-bottom: 1.25rem;
}

.shield-row li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-deep);
  transition: background 0.15s, transform 0.15s;
}

.shield-row li:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.story-card {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.story-step {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.story-step:last-child { border-bottom: none; }

.story-step.highlight {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}

.story-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.story-step.highlight .story-label { color: var(--accent); }

.story-step p {
  color: var(--ink);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
}

.hero-actions .btn.secondary {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--accent);
}

.hero-actions .btn.secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(155, 138, 251, 0.35);
}
.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 106, 232, 0.4);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-dark);
}
.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .card-grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--border-dark);
  transform: translateY(-2px);
}

.card-icon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.95rem; }

.examples-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.examples li {
  font-size: 0.88rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font-weight: 500;
}

.links.compact { margin-top: 0; }

.links.compact .link-card {
  grid-template-columns: 1fr auto;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-box .btn { font-size: 1rem; }

.card-foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem !important;
  font-weight: 600;
  color: var(--accent) !important;
}

/* ── use cases ── */
.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .use-cases { grid-template-columns: 1fr; }
}

.use-case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.use-case h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.use-case p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.callout h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.callout ul {
  list-style: none;
}

.callout li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.callout li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1.2;
}

.stat-text {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* ── links ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.link-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: inherit;
}

@media (max-width: 500px) {
  .link-card { grid-template-columns: 1fr auto; }
  .link-tag { grid-column: 1 / -1; }
}

.link-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.link-title {
  font-weight: 600;
  color: var(--ink);
}

.link-arrow {
  color: var(--accent);
  font-size: 1.1rem;
}

.note {
  border-left: 3px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: normal;
}

/* ── contact ── */
.section-contact {
  padding-bottom: 2rem;
}

.contact-panel {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-soft) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 12px 40px rgba(110, 89, 217, 0.1);
}

.contact-intro-block {
  margin-bottom: 2rem;
}

.contact-intro-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-intro-block .section-lead {
  margin-bottom: 0;
  max-width: 38rem;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.service-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .service-picks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .service-picks { grid-template-columns: 1fr; }
}

.service-pick {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.service-pick:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 89, 217, 0.12);
  color: inherit;
}

.pick-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 3px;
  margin-bottom: 0.35rem;
}

.pick-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.pick-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.contact-cta-card {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.btn-large {
  display: block;
  width: 100%;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.contact-channels a {
  font-weight: 600;
  color: var(--accent-deep);
}

.contact-channels a:hover {
  color: var(--accent-dark);
}

.contact-channels .sep {
  color: var(--border-dark);
}

.contact-side h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.contact-steps {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.65rem 0;
}

.contact-steps li + li {
  border-top: 1px solid var(--border);
}

.step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}

.contact-steps strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.contact-steps p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.contact-example blockquote {
  margin: 0;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-trust {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.contact-trust .stars {
  color: #f5b301;
  letter-spacing: 0.04em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-intro { margin-bottom: 1rem; }

.checklist {
  list-style: none;
  margin-bottom: 1rem;
}

.checklist li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.5rem 0;
}

.contact-details a {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-cta-card .btn {
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-top: 0.5rem;
}

.example-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.email-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.email-preview p + p { margin-top: 0.65rem; }

/* ── footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.footer p + p {
  margin-top: 0.5rem;
}

.footer-social .sep {
  color: var(--border-dark);
  margin: 0 0.25rem;
}

.footer-social a {
  font-weight: 500;
  color: var(--ink-muted);
}

.footer-social a:hover {
  color: var(--accent-deep);
}

/* ── article / guide pages ── */
.article-main {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.article {
  max-width: 46rem;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.article-tldr {
  margin-bottom: 2.5rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.article-tldr-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  margin-bottom: 0.65rem;
}

.article-tldr ol {
  margin: 0 0 0 1.15rem;
  padding: 0;
}

.article-tldr li {
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: background 0.15s, color 0.15s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-deep);
  line-height: 1;
}

.faq-item[open] summary {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: var(--bg-alt);
}

.faq-answer {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 0.65rem;
}

.article-affiliate {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.article-affiliate p {
  margin: 0;
  line-height: 1.6;
}

.article-faq dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.1rem;
  margin-bottom: 0.35rem;
}

.article-faq dt:first-child {
  margin-top: 0;
}

.article-faq dd {
  margin: 0 0 0.5rem 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.article-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-footer > p:first-child {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.data-table caption {
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
}

.article-back {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-weight: 600;
}

.article-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.article-sub {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.85em;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.article-section {
  margin-bottom: 2.5rem;
}

.article-section h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.article-section h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
}

.article-section p {
  margin-bottom: 0.85rem;
  line-height: 1.65;
}

.article-steps {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.article-steps li {
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.article-steps li::marker {
  color: var(--accent-deep);
  font-weight: 600;
}

.article-formula {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.85rem;
  background: var(--accent-soft);
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
  color: var(--accent-deep);
}

.article-notes {
  list-style: disc;
  margin: 0 0 1rem 1.25rem;
}

.article-notes li {
  margin-bottom: 0.4rem;
}

.article-caveat {
  padding: 0.85rem 1rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.article-callout {
  padding: 0.85rem 1rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink);
  margin-top: 0.5rem;
}

.article-prompt {
  margin: 0.75rem 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.article-prompt p {
  margin: 0;
  line-height: 1.6;
}

.article-muted {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

.article-figure {
  margin: 1.25rem -1.25rem 1.5rem;
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.article-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table .row-highlight td {
  background: var(--accent-soft);
  font-weight: 600;
}

.data-table .row-good td:first-child {
  border-left: 3px solid #10b981;
}

.data-table .row-warn td:first-child {
  border-left: 3px solid #f59e0b;
}

.data-table .row-bad td:first-child {
  border-left: 3px solid #ef4444;
}

.data-table tfoot td {
  background: var(--bg-alt);
  font-weight: 600;
  border-top: 2px solid var(--border);
}

.table-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}
