/* ai2HR — marketing site
   Dark slate + coral accent. Mobile-first. Premium, sharp. */

:root {
  --bg: #0f1419;
  --bg-elevated: #1a222c;
  --bg-card: #1e2834;
  --bg-muted: #252f3d;
  --border: #2e3a4a;
  --border-strong: #3d4d63;
  --text: #e8eef4;
  --text-muted: #9aabbc;
  --text-dim: #6b7c8f;
  --accent: #ff6b4a;
  --accent-hover: #ff8566;
  --accent-dim: rgba(255, 107, 74, 0.15);
  --accent-glow: rgba(255, 107, 74, 0.35);
  --success: #3ecf8e;
  --warning: #f0b429;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1120px;
  --nav-h: 68px;
  --cta-bar-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  padding-bottom: var(--cta-bar-h);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ——— NAV ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--text); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-muted);
}

.nav-cta {
  display: none;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem !important;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--text);
  background: var(--bg-muted);
}
.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem !important;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-ghost {
  background: var(--bg-muted);
  color: var(--text);
}
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ——— HERO ——— */
.hero {
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-meta-item {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.hero-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

/* ——— SECTIONS ——— */
.section {
  padding: 4rem 0;
}
.section-alt { background: var(--bg-elevated); }
.section-header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ——— CARDS / GRID ——— */
.grid-2 {
  display: grid;
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 800px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.card .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card .card-link::after { content: "→"; }

.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.scenario-card .scenario-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.scenario-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.scenario-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin: 0;
}

.pain-list {
  display: grid;
  gap: 0.75rem;
}
.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.pain-item .pain-x {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.12);
  color: var(--accent);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}
.pain-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.pain-item strong { color: var(--text); }

/* ——— PRICING ——— */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}
.price-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.price-card .price-type {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.price-card .price {
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.price-card .price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-card .price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.price-card ul {
  flex: 1;
  margin-bottom: 1.5rem;
}
.price-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ——— PAGE HERO (inner) ——— */
.page-hero {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  max-width: 20ch;
}
.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 38rem;
}

/* ——— PROCESS STEPS ——— */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  counter-increment: step;
  position: relative;
  padding-top: 0.5rem;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* ——— CTA BAND ——— */
.cta-band {
  background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  margin: 0;
}
.cta-band h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ——— FORM ——— */
.form-wrap {
  max-width: 520px;
}
.form-group {
  margin-bottom: 1.15rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group .hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%239aabbc'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.calendly-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.calendly-placeholder h3 {
  margin-bottom: 0.5rem;
}
.calendly-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ——— ABOUT / CONTENT ——— */
.prose {
  max-width: 40rem;
}
.prose p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}
.prose h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.prose ul {
  margin: 0 0 1.25rem;
}
.prose li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.prose li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ——— STICKY MOBILE CTA ——— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(26, 34, 44, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--cta-bar-h);
}
.sticky-cta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
}
.sticky-cta p strong {
  display: block;
  color: var(--text);
  font-size: 0.875rem;
}
.sticky-cta .btn {
  flex-shrink: 0;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ——— FOOTER ——— */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 22rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 48rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-copy a { color: var(--text-muted); }

/* ——— UTILS ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ——— EXAMPLES PAGE ——— */
.example-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}
.example-block h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.75rem;
}
.example-block h3 {
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}
.example-why {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.example-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.example-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}
.example-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.example-fit {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.example-fit a { color: var(--accent); }

/* ——— DIY PATH ——— */
.diy-path-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .diy-path-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.diy-path-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.diy-path-card h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.diy-path-card > p { color: var(--text-muted); margin: 0; }
.diy-path-hire {
  border-color: rgba(255, 107, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 107, 74, 0.12);
}
.diy-path-list {
  list-style: none;
  margin: 0.25rem 0 0.75rem;
  padding: 0;
  flex: 1;
}
.diy-path-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.diy-path-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.diy-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}


.diy-group {
  margin-top: 2rem;
}
.diy-group:first-of-type {
  margin-top: 0.5rem;
}
.diy-group-title {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.diy-tool-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .diy-tool-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .diy-tool-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.diy-tool-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.diy-roadmap {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .diy-roadmap { grid-template-columns: 1fr 1fr; }
}
.diy-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.diy-tool-card h3 {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.diy-tool-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}
.diy-tool-live {
  border-color: rgba(62, 207, 142, 0.4);
}
.diy-tool-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(62, 207, 142, 0.15);
  color: var(--success);
}
.diy-tool-soon {
  background: var(--bg-muted);
  color: var(--text-dim);
}

.diy-trust-band {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  max-width: 48rem;
}
.diy-trust-band h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.diy-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.diy-trust-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}
.diy-trust-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-dim);
}
.diy-trust-list li:last-child { margin-bottom: 0; }

.diy-home-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .diy-home-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.diy-home-band h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0.5rem;
}
.diy-home-band p:last-child {
  color: var(--text-muted);
  margin: 0;
  max-width: 36rem;
}
.diy-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* DIY form */
.diy-form-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .diy-form-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}
.diy-form-heading {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.diy-form-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.form-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.diy-form-aside { position: sticky; top: calc(var(--nav-h) + 1rem); }

/* Result toolbar + printable doc */
.diy-result-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 720px) {
  .diy-result-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.diy-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.diy-print-doc {
  background: #fff;
  color: #1a1a1a;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.diy-print-header h1 {
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0.25rem 0 0.75rem;
}
.diy-print-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
  margin: 0;
}
.diy-print-meta {
  font-size: 0.9rem;
  color: #444;
  margin: 0.2rem 0;
  line-height: 1.45;
}
.diy-print-generated { color: #666; font-size: 0.85rem; }
.diy-print-disclaimer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin: 1.15rem 0;
}
.diy-print-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7c2d12;
}
.diy-print-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.diy-print-notes {
  margin-bottom: 1.25rem;
}
.diy-print-notes h2 {
  font-size: 1rem;
  color: #111;
  margin: 0 0 0.35rem;
}
.diy-print-notes p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  white-space: pre-wrap;
}
.diy-print-block {
  margin-bottom: 1.35rem;
}
.diy-print-block h2 {
  font-size: 1.05rem;
  color: #111;
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
}
.diy-print-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 0.55rem;
  font-style: italic;
}
.diy-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.diy-check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 0.45rem;
  line-height: 1.45;
}
.diy-check-list .box {
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.15rem;
  border: 1.5px solid #555;
  border-radius: 2px;
  background: #fff;
}
.diy-print-footer {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}
.diy-print-brand {
  font-size: 0.75rem;
  color: #888;
  margin: 0.75rem 0 0;
  text-align: center;
}
.diy-print-doc a { color: #c2410c; }

/* Print: hide chrome, clean document */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    padding-bottom: 0 !important;
    font-size: 11pt;
  }
  .site-header,
  .site-footer,
  .sticky-cta,
  .no-print,
  .mobile-nav {
    display: none !important;
  }
  main { display: block; }
  .diy-print-section.section {
    padding: 0 !important;
  }
  .diy-print-doc {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .diy-print-disclaimer {
    break-inside: avoid;
  }
  .diy-print-block {
    break-inside: avoid;
  }
  a[href]::after { content: none !important; }
}

/* —— USA forms library additions —— */
.diy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.diy-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.diy-chip.is-active,
.diy-chip:hover {
  border-color: #c2410c;
  color: #c2410c;
  background: #fff7ed;
}
.diy-tool-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}
.diy-tool-grid-dense {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .diy-tool-grid-dense { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .diy-tool-grid-dense { grid-template-columns: 1fr 1fr 1fr; }
}
.diy-pricing-strip {
  display: grid;
  gap: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
@media (min-width: 800px) {
  .diy-pricing-strip {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
  }
}
.diy-pricing-strip h3 { margin: 0.25rem 0; font-size: 1.05rem; }
.diy-pricing-strip p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.diy-wizard-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
@media (min-width: 720px) {
  .diy-wizard-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.diy-wizard-band h2 { margin: 0.25rem 0 0.5rem; }
.diy-wizard-band p { margin: 0; color: var(--text-muted); max-width: 36rem; }
.diy-progress {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.diy-progress li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.diy-progress li span {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.diy-progress li.is-active { color: var(--text); font-weight: 600; }
.diy-progress li.is-active span,
.diy-progress li.is-done span {
  background: #c2410c;
  border-color: #c2410c;
  color: #fff;
}
.diy-unlock-panel { margin-top: 1.25rem; }
.diy-unlock-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .diy-unlock-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.diy-unlock-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.diy-unlock-featured {
  border-color: #fdba74;
  box-shadow: 0 0 0 1px #ffedd5;
}
.diy-unlock-card h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.diy-unlock-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0 0 0.75rem; }
.diy-unlock-price {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 0.85rem !important;
}
.diy-compare-table-wrap { overflow-x: auto; }
.diy-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.diy-compare-table th,
.diy-compare-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.diy-compare-table thead th {
  background: var(--bg-elevated);
  font-weight: 700;
}
.diy-print-state-line {
  background: #fff7ed;
  border-left: 3px solid #c2410c;
  padding: 0.45rem 0.65rem;
  margin: 0.65rem 0 !important;
}

/* ——— DIY AI writing helper ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.diy-ai-polish {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg-elevated, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
}
.diy-ai-polish-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}
.diy-ai-polish-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
  margin-right: 0.15rem;
}
.diy-ai-mode {
  display: inline-flex;
  border: 1px solid var(--border-strong, #cbd5e1);
  border-radius: 6px;
  overflow: hidden;
}
.diy-ai-mode-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  cursor: pointer;
}
.diy-ai-mode-btn + .diy-ai-mode-btn {
  border-left: 1px solid var(--border-strong, #cbd5e1);
}
.diy-ai-mode-btn.is-active {
  background: var(--accent-dim, #ffedd5);
  color: var(--text, #0f172a);
}
.diy-ai-mode-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.diy-ai-tone-select {
  width: auto !important;
  min-width: 6.5rem;
  padding: 0.35rem 1.75rem 0.35rem 0.55rem !important;
  font-size: 0.8rem !important;
  min-height: 0 !important;
}
.diy-ai-run {
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
  min-height: 0 !important;
}
.diy-ai-disclaimer {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--text-dim, #94a3b8);
  line-height: 1.35;
}
.diy-ai-status {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted, #64748b);
}
.diy-ai-status-ok { color: #15803d; }
.diy-ai-status-warn { color: #b45309; }
.diy-ai-tips {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  color: #92400e;
  line-height: 1.4;
}
.diy-ai-tips li { margin-bottom: 0.2rem; }
