/* Swift Skills — design system
   Indigo #4F46E5, Coral #FB7756, Ink #14152B, Inter typeface
*/

:root {
  --indigo: #4F46E5;
  --indigo-dark: #3730A3;
  --indigo-light: #EEF0FF;
  --coral: #FB7756;
  --coral-dark: #E45E3B;
  --ink: #14152B;
  --ink-soft: #4B4C63;
  --paper: #FFFFFF;
  --paper-soft: #F7F7FB;
  --line: #E6E6F0;
  --success: #1E9E6B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(20, 21, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 21, 43, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 21, 43, 0.14);

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--indigo-dark); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }

.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--indigo);
  transform: scaleX(0);
  transition: transform 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--indigo);
  font-weight: 700;
}
.nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-login:hover { border-color: var(--indigo); color: var(--indigo); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .site-header { position: sticky; }
  .nav { position: relative; }
}

/* Hero */
.hero {
  padding: 76px 0 96px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pill {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--indigo-light);
  color: var(--indigo-dark);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.06;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
}

.hero .lede { margin-bottom: 32px; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .cta-row .btn { min-width: 260px; padding-left: 40px; padding-right: 40px; }
@media (max-width: 560px) { .hero .cta-row .btn { min-width: 0; width: 100%; } }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--indigo) 0%, #6D63F0 55%, var(--coral) 130%);
  min-height: 420px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.hero-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 20px;
  width: 100%;
}
.hero-stat-card .stat { text-align: left; }
.hero-stat-card .stat strong { display: block; font-size: 22px; }
.hero-stat-card .stat span { font-size: 13px; color: var(--ink-soft); }
.hero-stat-card .divider { width: 1px; background: var(--line); }

/* Mission band */
.mission {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.mission .eyebrow { color: var(--coral); }
.mission h2 {
  font-size: 34px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.3;
}
@media (max-width: 560px) { .mission h2 { font-size: 26px; } }

/* Features */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: 34px; }
@media (max-width: 560px) { .section-head h2 { font-size: 26px; } }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.feature-card:nth-child(2) .icon-badge { background: var(--coral); }
.feature-card:nth-child(3) .icon-badge { background: var(--ink); }

.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; }

/* Subject detail cards */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .subject-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .subject-grid { grid-template-columns: 1fr; } }

.subject-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.subject-card:hover { border-color: var(--indigo); box-shadow: var(--shadow-sm); }
.subject-card.open { border-color: var(--indigo); box-shadow: var(--shadow-md); background: var(--indigo-light); }

.subject-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.subject-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--indigo-light);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.subject-card.open .subject-icon { background: var(--indigo); color: #fff; }
.subject-card-head h3 { font-size: 16px; flex: 1; }
.subject-toggle {
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.subject-card.open .subject-toggle { transform: rotate(45deg); }

.subject-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.22s ease, opacity 0.18s ease, margin-top 0.22s ease;
  margin-top: 0;
}
.subject-card.open .subject-detail {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
}
.subject-detail-inner { overflow: hidden; }
.subject-detail p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 6px; }
.subject-detail p:last-child { margin-bottom: 0; }
.subject-detail .grade-range { font-weight: 700; color: var(--ink); }

.subject-card-other {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-soft);
  border-style: dashed;
  text-decoration: none;
}
.subject-card-other:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.subject-card-other .subject-icon { background: var(--coral); color: #fff; }
.subject-card-other .subject-toggle { color: var(--coral); }
.subject-card-other p { font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

/* Who we are */
.who-we-are { background: var(--paper-soft); }
.who-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
}
.who-grid h2 { font-size: 36px; margin: 12px 0 24px; }

.stat-rows { display: flex; flex-direction: column; gap: 28px; }
.stat-row { display: flex; gap: 18px; }
.stat-row .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--coral);
  margin-top: 8px;
  flex-shrink: 0;
}
.stat-row h4 { font-size: 17px; margin-bottom: 4px; }
.stat-row p { color: var(--ink-soft); font-size: 15px; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--coral); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 15px; color: var(--ink); margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--indigo-light);
  color: var(--indigo-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 13px; color: var(--ink-soft); }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  margin: 0 24px;
}
.final-cta-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.final-cta h2 { font-size: 32px; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; font-size: 16px; }
.final-cta .cta-row { justify-content: center; }
.final-cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.final-cta .btn-secondary:hover { border-color: #fff; color: #fff; }

/* Newsletter band */
.newsletter-band {
  background: var(--ink);
  padding: 56px 0;
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; }
.newsletter-embed-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 8px;
}

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Page header (interior pages) */
.page-header {
  padding: 64px 0 48px;
  text-align: center;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: 42px; margin-bottom: 14px; }
@media (max-width: 560px) { .page-header h1 { font-size: 30px; } }
.page-header p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 17px; }

/* Team cards (About) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--indigo-light);
}
.team-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--indigo);
}
.team-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.team-body h3 { font-size: 19px; }
.team-body .pronouns { font-size: 13px; color: var(--ink-soft); margin-top: -6px; }
.team-body p.bio { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.team-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.team-actions a {
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.team-actions a:hover { border-color: var(--indigo); background: var(--indigo-light); }

/* Values row (About) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 8px; }
.value-item .icon-badge { margin: 0 auto 18px; }
.value-item h3 { font-size: 17px; margin-bottom: 8px; }
.value-item p { color: var(--ink-soft); font-size: 14.5px; }

/* Pricing */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.plan-card.featured { border-color: var(--indigo); box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan-card h3 { font-size: 18px; }
.plan-price { font-size: 30px; font-weight: 800; }
.plan-price sup { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.plan-price .strike { font-size: 15px; color: var(--ink-soft); text-decoration: line-through; font-weight: 500; margin-left: 6px; }
.plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-soft); flex: 1; }
.plan-list li { padding-left: 22px; position: relative; }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.15;
}
.plan-list li::after {
  content: "✓";
  position: absolute;
  left: 2px; top: 2px;
  font-size: 11px;
  color: var(--success);
  font-weight: 800;
}

/* Quote builder */
.quote-builder {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}
@media (max-width: 860px) { .quote-builder { grid-template-columns: 1fr; padding: 28px; } }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.field select, .field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.field select:focus, .field input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-light); }

.quote-summary {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: fit-content;
}
.quote-summary h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.quote-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); }
.quote-line strong { color: var(--ink); font-weight: 600; }
.quote-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; border-top: 1px solid var(--line); }
.quote-total span { font-size: 15px; font-weight: 700; }
.quote-total strong { font-size: 28px; color: var(--indigo); }
.quote-ticket { font-size: 12px; color: var(--ink-soft); background: var(--paper-soft); padding: 8px 12px; border-radius: var(--radius-sm); }

.faq-grid { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px 24px; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--indigo); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

/* Referrals */
.give-get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .give-get-grid { grid-template-columns: 1fr; } }

.give-get-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}
.give-get-card.give { background: linear-gradient(135deg, var(--indigo), var(--indigo-dark)); }
.give-get-card.get { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.give-get-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.give-get-card .amount { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.give-get-card p { color: rgba(255,255,255,0.9); font-size: 15px; }

.account-prompt {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.account-prompt .icon-badge { margin: 0 auto 16px; }
.account-prompt h3 { font-size: 20px; margin-bottom: 10px; }
.account-prompt p { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }
.account-prompt .btn { min-width: 220px; }
.account-prompt .fine-print { font-size: 13px; color: var(--ink-soft); margin-top: 16px; margin-bottom: 0; }

.tally-embed-wrap {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  max-width: 640px;
  margin: 0 auto;
}

.competitor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 40px;
}
.competitor-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.proof-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
}
.proof-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.proof-step .step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.proof-step p { color: var(--ink-soft); font-size: 15px; padding-top: 4px; }
.proof-step strong { color: var(--ink); }

.section-band { background: var(--paper-soft); }


/* Legal / prose pages */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 20px; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); font-size: 15px; margin-bottom: 14px; }
.prose strong { color: var(--ink); }

/* Contact modal */
body.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 21, 43, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal-dialog {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(20, 21, 43, 0.28);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--indigo-light); color: var(--indigo); border-color: var(--indigo-light); }
.modal-header { margin-bottom: 18px; padding-right: 24px; }
.modal-header h2 { font-size: 22px; }
.modal-fine-print { text-align: center; color: var(--ink-soft); font-size: 13px; margin-top: 14px; }
