:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #5d6b82;
  --line: #dbe3ef;
  --primary: #2457d6;
  --primary-dark: #173d9b;
  --primary-soft: #eef4ff;
  --accent: #16a36f;
  --accent-soft: #eafaf3;
  --warning: #f59e0b;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(16, 24, 40, .12);
  --shadow-soft: 0 12px 34px rgba(16, 24, 40, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(36, 87, 214, .10), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(22, 163, 111, .10), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 12px; z-index: 99; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), #7c5cff 58%, var(--accent));
  color: #fff; font-weight: 900;
  box-shadow: 0 12px 24px rgba(36, 87, 214, .22);
}
.nav-menu { display: flex; align-items: center; gap: 22px; }
.nav-menu a { color: var(--muted); font-weight: 650; }
.nav-menu a:hover { color: var(--primary); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 8px 10px; }

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  min-height: 46px;
  padding: 11px 18px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #684df4); color: #fff; box-shadow: 0 14px 30px rgba(36, 87, 214, .26); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), #5639da); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-soft); border-color: rgba(36, 87, 214, .25); }
.btn-muted { background: var(--primary-soft); color: var(--primary); }

.hero {
  padding: 96px 0 78px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.96) 100%),
    radial-gradient(circle at 20% 20%, rgba(36,87,214,.16), transparent 24rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 320px;
  background: linear-gradient(90deg, rgba(36,87,214,.07), rgba(22,163,111,.08));
  transform: rotate(-2deg);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 56px; }
.eyebrow {
  color: var(--primary);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(36, 87, 214, .08);
  border: 1px solid rgba(36, 87, 214, .12);
  border-radius: 999px;
  display: inline-flex;
  padding: 6px 10px;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.01em; margin: 0 0 14px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
.lead { color: var(--muted); font-size: 1.2rem; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-image {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, .18);
  border: 1px solid rgba(255,255,255,.8);
  outline: 1px solid rgba(36, 87, 214, .12);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 620px;
}
.hero-stat {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(219, 227, 239, .9);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
}
.hero-stat strong { display: block; font-size: 1.2rem; }
.hero-stat span { color: var(--muted); font-size: .88rem; }
.home-hero { padding-bottom: 92px; }
.hero-copy { max-width: 650px; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-pills span {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219, 227, 239, .95);
  border-radius: 999px;
  color: #344054;
  font-size: .9rem;
  font-weight: 750;
  padding: 7px 12px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .05);
}
.hero-visual { position: relative; }
.hero-card-shell {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    linear-gradient(135deg, rgba(36,87,214,.14), rgba(22,163,111,.12));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 90px rgba(16, 24, 40, .16);
}
.hero-card-shell .hero-image {
  box-shadow: none;
  border-radius: 20px;
}
.floating-note {
  position: absolute;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219, 227, 239, .92);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .13);
}
.floating-note strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
}
.mini-label {
  color: var(--muted);
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.floating-note-top { right: -16px; top: 34px; }
.floating-note-bottom { left: -18px; bottom: 30px; }

.decision-strip {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}
.decision-grid {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(219, 227, 239, .96);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
.decision-grid a {
  padding: 24px;
  transition: background .18s ease, transform .18s ease;
}
.decision-grid a + a { border-left: 1px solid var(--line); }
.decision-grid a:hover { background: #f8fbff; transform: translateY(-1px); }
.decision-grid strong { display: block; font-size: 1.08rem; margin-bottom: 6px; }
.decision-grid p { color: var(--muted); margin: 0; }
.decision-icon {
  background: var(--primary-soft);
  border-radius: 999px;
  color: var(--primary);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 5px 9px;
}

.section { padding: 72px 0; }
.section-alt { background: rgba(255,255,255,.72); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head p { color: var(--muted); margin: 0; }
.section-head-row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: none;
}
.section-head-row p { max-width: 430px; }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(36,87,214,.25); }
.card:hover::before { opacity: 1; }
.premium-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.premium-card .text-link { margin-top: auto; }
.icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--primary), #684df4);
  margin-bottom: 16px; font-weight: 900;
  box-shadow: 0 12px 26px rgba(36, 87, 214, .22);
}
.muted { color: var(--muted); }
.badge { display: inline-block; border-radius: 999px; padding: 5px 10px; font-size: .78rem; font-weight: 800; background: #eaf0ff; color: var(--primary); }
.clean-list {
  color: #344054;
  margin: 14px 0 22px;
  padding-left: 18px;
}
.clean-list li { margin-bottom: 7px; }
.text-link {
  color: var(--primary);
  display: inline-flex;
  font-weight: 850;
}
.text-link::after {
  content: ">";
  margin-left: 7px;
  transition: transform .18s ease;
}
.text-link:hover::after { transform: translateX(3px); }
.split-panel {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: .9fr 1.1fr;
}
.benefit-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
  padding: 20px;
}
.benefit-tile strong { display: block; margin-bottom: 6px; }
.benefit-tile p { color: var(--muted); margin: 0; }
.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.process-card span {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), #684df4);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}
.process-card p { color: var(--muted); margin: 0; }
.article-card { min-height: 100%; }
.ad-slot { border: 1px dashed #b7c3d6; border-radius: var(--radius); padding: 18px; color: var(--muted); background: #fafcff; }
.wide-ad { margin-top: 28px; text-align: center; }
.hero-lite {
  background:
    radial-gradient(circle at 12% 12%, rgba(36,87,214,.14), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
  padding-bottom: 48px;
}
.compact-section { padding-top: 42px; }
.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .9rem;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 22px;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a::after {
  color: var(--muted);
  content: "/";
  margin-left: 8px;
}
.disclosure {
  color: #667085;
  font-size: .86rem;
  margin-top: 12px;
}
.monetization-note {
  background: #fff8e6;
  border: 1px solid #f7d58a;
  border-radius: 14px;
  color: #7a4b00;
  font-weight: 750;
  margin-top: 22px;
  padding: 14px 16px;
}
.prompt-controls {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 260px;
  margin-bottom: 34px;
}
.library-head { margin-top: 42px; }
.prompt-card-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.difficulty {
  background: var(--accent-soft);
  border-radius: 999px;
  color: #0d6b4a;
  font-size: .75rem;
  font-weight: 850;
  padding: 5px 9px;
}
.prompt-text {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #344054;
  font-size: .94rem;
  margin: 14px 0;
  max-height: 170px;
  overflow: auto;
  padding: 14px;
}
.comparison-table {
  border-collapse: collapse;
  margin: 18px 0 28px;
  width: 100%;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
.comparison-table th {
  background: #f5f8ff;
}
.tool-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.tool-card h3 { margin-bottom: 10px; }
.tool-card .btn { margin-top: 8px; }

.platform-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
}
.wizard-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
}
.wizard-progress {
  background: #e8eef8;
  border-radius: 999px;
  height: 10px;
  margin-bottom: 28px;
  overflow: hidden;
}
.wizard-progress span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: block;
  height: 100%;
  transition: width .22s ease;
  width: 25%;
}
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
}
.slider-grid {
  display: grid;
  gap: 18px;
}
.slider-grid label {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.slider-grid strong {
  color: var(--primary);
  float: right;
}
input[type="range"] {
  accent-color: var(--primary);
  padding: 0;
}
.platform-results {
  scroll-margin-top: 96px;
}
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.consulting-report {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}
.report-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: 18px;
}
.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 20px 0 28px;
}
.chart-panel {
  align-items: center;
  background: linear-gradient(135deg, #f8fbff, #fff);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  gap: 24px;
  grid-template-columns: 180px 1fr;
  margin-bottom: 28px;
  padding: 24px;
}
.score-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, #fff 58%, transparent 59%),
    conic-gradient(var(--accent) calc(var(--score) * 1%), #e6edf7 0);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.score-ring strong {
  font-size: 2.7rem;
  line-height: 1;
}
.score-ring span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}
.stack-line {
  background: var(--primary-soft);
  border: 1px solid rgba(36,87,214,.16);
  border-radius: 14px;
  color: var(--primary-dark);
  font-weight: 850;
  padding: 14px 16px;
}
.comparison-bars {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 28px;
  padding: 20px;
}
.comparison-bars > div {
  margin-bottom: 16px;
}
.comparison-bars span {
  color: var(--muted);
  float: right;
}
.comparison-bars div div {
  background: #e6edf7;
  border-radius: 999px;
  clear: both;
  height: 12px;
  overflow: hidden;
}
.comparison-bars i {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: block;
  height: 100%;
}
.roadmap-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 28px;
}
.roadmap-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.roadmap-card span {
  color: var(--primary);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.roadmap-card h4 {
  margin: 8px 0;
}
.report-lead-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr auto;
}

@media print {
  .site-header,
  .site-footer,
  .report-actions,
  .mini-signup,
  .sidebar,
  .ad-slot {
    display: none !important;
  }
  body { background: #fff; }
  .consulting-report {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

.tool-shell { padding: 52px 0 80px; }
.tool-panel {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px; align-items: start;
}
.form-card, .result-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
label { display: block; font-weight: 750; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px;
  font: inherit; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(36, 87, 214, .58);
  box-shadow: 0 0 0 4px rgba(36, 87, 214, .12);
  outline: none;
}
textarea { min-height: 140px; resize: vertical; }
.field { margin-bottom: 18px; }
.form-message {
  background: var(--accent-soft);
  border: 1px solid rgba(22, 163, 111, .24);
  border-radius: 12px;
  color: #0d6b4a;
  font-weight: 750;
  margin: 14px 0 0;
  padding: 12px 14px;
}
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.metric { background: linear-gradient(180deg, #fff, #f7f9fc); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.metric strong { display: block; font-size: 1.55rem; }
.recommendation { border-left: 4px solid var(--primary); padding-left: 14px; margin-top: 16px; }
.steps li { margin-bottom: 8px; }

.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; align-items: start; }
.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.article h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.article h2 { font-size: 1.7rem; margin-top: 28px; }
.article p, .article li { color: #344054; }
.sidebar { position: sticky; top: 96px; }

.newsletter {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.18), transparent 18rem),
    linear-gradient(135deg, #11203d, #2457d6 58%, #16a36f);
  color: #fff; border-radius: 20px; padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end;
}
.newsletter p { color: rgba(255,255,255,.78); }
.newsletter input { border-color: rgba(255,255,255,.22); }
.cta-band {
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.16), transparent 18rem),
    linear-gradient(135deg, #101828, #2457d6 58%, #16a36f);
  border-radius: 24px;
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr minmax(280px, 430px);
  padding: 34px;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.newsletter-form {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}
.newsletter-form input {
  border-color: rgba(255,255,255,.26);
  min-height: 46px;
}
.page-signup-wrap {
  margin-top: 34px;
}
.mini-signup {
  align-items: center;
  background:
    radial-gradient(circle at 12% 16%, rgba(36,87,214,.16), transparent 18rem),
    linear-gradient(135deg, #fff, #f6fbff);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr minmax(260px, 420px);
  padding: 28px;
}
.mini-signup h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-top: 10px;
}
.mini-signup p {
  color: var(--muted);
  margin: 0;
}
.mini-signup-controls {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}
.mini-signup-controls input {
  min-height: 46px;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.aweber-form-slot {
  min-width: 0;
  width: 100%;
}
.mini-signup.aweber-signup {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
}
.newsletter-form.aweber-signup {
  display: block;
}
.aweber-custom-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.96));
  border: 1px solid rgba(219, 227, 239, .95);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .12);
  margin: 0;
  padding: 22px;
  width: min(100%, 420px);
}
.cta-band .aweber-custom-form {
  margin-left: auto;
}
.aweber-custom-form label {
  color: #344054;
  font-size: .86rem;
  font-weight: 850;
  margin-bottom: 7px;
}
.aweber-custom-form input[type="text"],
.aweber-custom-form input[type="email"] {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}
.aweber-custom-form input + label {
  margin-top: 14px;
}
.aweber-custom-form .btn {
  margin-top: 16px;
  width: 100%;
}
.aweber-hidden-fields {
  display: none;
}
.privacy-note {
  color: var(--muted);
  font-size: .82rem;
  margin: 10px 0 0;
  text-align: center;
}

.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin-bottom: 12px; box-shadow: 0 8px 24px rgba(16,24,40,.04); }
.faq summary { cursor: pointer; font-weight: 800; }
.site-footer { background: linear-gradient(180deg, #101828, #0b1220); color: #d0d5dd; padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
.site-footer a { color: #f2f4f7; display: block; margin: 7px 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 20px; color: #98a2b3; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none; position: absolute; left: 16px; right: 16px; top: 72px;
    flex-direction: column; align-items: stretch; background: #fff; padding: 16px;
    border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .tool-panel, .blog-layout, .newsletter, .footer-grid, .split-panel, .cta-band { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
  .platform-shell, .dashboard-grid, .roadmap-grid, .report-lead-form { grid-template-columns: 1fr; }
  .chart-panel { grid-template-columns: 1fr; }
  .score-ring { max-width: 180px; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid a + a { border-left: 0; border-top: 1px solid var(--line); }
  .section-head-row { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .prompt-controls { grid-template-columns: 1fr; }
  .floating-note-top { right: 8px; }
  .floating-note-bottom { left: 8px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2, .result-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .section { padding: 52px 0; }
  .newsletter { padding: 22px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-pills span { font-size: .84rem; }
  .floating-note {
    margin-top: 12px;
    position: static;
  }
  .newsletter-form { grid-template-columns: 1fr; }
  .mini-signup { grid-template-columns: 1fr; padding: 22px; }
  .mini-signup-controls { grid-template-columns: 1fr; }
  .mini-signup.aweber-signup { grid-template-columns: 1fr; }
  .aweber-custom-form {
    padding: 18px;
    width: 100%;
  }
  .cta-band .aweber-custom-form { margin-left: 0; }
  .wizard-card, .consulting-report { padding: 22px; }
  .report-actions { justify-content: stretch; }
  .report-actions .btn { width: 100%; }
  .cta-band { padding: 24px; }
  .nav-cta { width: 100%; }
}

/* Homepage visual refresh */
.home-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(60, 120, 255, .38), transparent 24rem),
    radial-gradient(circle at 76% 12%, rgba(22, 163, 111, .32), transparent 22rem),
    linear-gradient(135deg, #08111f 0%, #111c35 48%, #12273d 100%);
  color: #fff;
  min-height: calc(100vh - 72px);
  padding: 86px 0 116px;
}
.home-hero::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(22,163,111,.12)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 84px);
  bottom: -36%;
  opacity: .8;
}
.home-hero .eyebrow {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  color: #a7f3d0;
}
.home-hero h1 {
  max-width: 760px;
  text-wrap: balance;
}
.home-hero .lead {
  color: rgba(255,255,255,.76);
}
.home-hero .btn-secondary {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.home-hero .hero-pills span,
.home-hero .hero-stat {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  box-shadow: none;
}
.home-hero .hero-stat span { color: rgba(255,255,255,.62); }

.workspace-preview {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
  overflow: hidden;
  padding: 14px;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
}
.preview-topbar {
  align-items: center;
  color: rgba(255,255,255,.72);
  display: flex;
  gap: 8px;
  padding: 6px 8px 14px;
}
.preview-topbar span {
  background: rgba(255,255,255,.28);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}
.preview-topbar strong {
  font-size: .82rem;
  margin-left: 8px;
}
.preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr .9fr;
  margin-bottom: 14px;
}
.preview-main,
.preview-stack div {
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 18px;
  color: var(--ink);
  padding: 18px;
}
.preview-main h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.preview-main p {
  color: var(--muted);
  margin: 0 0 16px;
}
.preview-progress {
  background: #e9eef7;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.preview-progress span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: block;
  height: 100%;
}
.preview-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.preview-row b { color: var(--accent); }
.preview-stack {
  display: grid;
  gap: 12px;
}
.preview-stack span {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.preview-stack strong {
  display: block;
  margin-top: 5px;
}
.preview-image {
  border-radius: 18px;
  max-height: 210px;
  object-fit: cover;
  object-position: top;
  opacity: .92;
}

.decision-strip { margin-top: -64px; }
.decision-grid {
  border: 0;
  box-shadow: 0 26px 70px rgba(16,24,40,.18);
}
.decision-grid a {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
  padding: 30px;
}
.decision-grid strong { font-size: 1.16rem; }

.premium-card {
  background:
    linear-gradient(180deg, #fff, #f8fbff);
  padding: 30px;
}
.premium-card:nth-child(1) .icon { background: linear-gradient(135deg, #2457d6, #7c5cff); }
.premium-card:nth-child(2) .icon { background: linear-gradient(135deg, #0f9f6e, #14b8a6); }
.premium-card:nth-child(3) .icon { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.split-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 42px;
}
.benefit-tile {
  border-radius: 18px;
  padding: 24px;
}
.process-card {
  border-radius: 22px;
  padding: 30px;
}
.article-card {
  background:
    linear-gradient(180deg, #fff, #f9fbff);
}

@media (max-width: 900px) {
  .home-hero { min-height: auto; padding-bottom: 104px; }
  .workspace-preview { transform: none; }
  .preview-grid { grid-template-columns: 1fr; }
  .split-panel { padding: 28px; }
}
@media (max-width: 620px) {
  .home-hero { padding-top: 48px; }
  .decision-strip { margin-top: -44px; }
  .decision-grid a { padding: 22px; }
  .preview-image { max-height: 150px; }
}
