@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3ede2;
  --bg-soft: #fcf8f1;
  --surface: rgba(255, 251, 246, 0.9);
  --surface-strong: #fffdf9;
  --surface-tint: rgba(19, 74, 69, 0.08);
  --surface-accent: rgba(151, 102, 68, 0.09);
  --border: rgba(39, 34, 29, 0.11);
  --border-strong: rgba(39, 34, 29, 0.22);
  --text: #191411;
  --text-soft: #4a433d;
  --text-muted: #7a7068;
  --accent: #134a45;
  --accent-strong: #0d3430;
  --accent-warm: #976644;
  --success: #e1f3ee;
  --shadow: 0 28px 70px rgba(37, 28, 20, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1160px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(19, 74, 69, 0.13), transparent 34%),
    radial-gradient(circle at top right, rgba(151, 102, 68, 0.12), transparent 26%),
    linear-gradient(180deg, #f9f5ee 0%, #f3ede2 54%, #ece2d5 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 18% 14%, rgba(255,255,255,0.52), transparent 21%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,0.24), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(19, 74, 69, 0.06), transparent 36%);
  pointer-events: none;
  opacity: 0.48;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  right: -14vw;
  top: 18vh;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(19, 74, 69, 0.08), rgba(19, 74, 69, 0));
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 245, 237, 0.74);
  border-bottom: 1px solid rgba(39, 34, 29, 0.08);
  box-shadow: 0 12px 30px rgba(37, 28, 20, 0.05);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .container {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.header-cta {
  padding: 0.82rem 1.16rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 74, 69, 0.28);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(13, 52, 48, 0.18);
  color: #f7f2ea;
}

main {
  padding-bottom: 5rem;
}

.hero,
.page-hero {
  padding: 5.6rem 0 2.4rem;
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -2.5rem auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 102, 94, 0.08), rgba(27, 102, 94, 0));
  pointer-events: none;
}

.page-hero .container {
  max-width: 1060px;
  position: relative;
  padding: 2rem 2.2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(39, 34, 29, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(249, 243, 235, 0.74)),
    radial-gradient(circle at top right, rgba(19, 74, 69, 0.12), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero .container::before {
  content: "";
  position: absolute;
  inset: auto 2.2rem 0.95rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 74, 69, 0.18), rgba(19, 74, 69, 0));
}

.audit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.audit-hero-copy {
  display: grid;
  gap: 0.9rem;
}

.page-hero-card {
  padding: 1.45rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(39, 34, 29, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 40px rgba(37, 28, 20, 0.06);
  backdrop-filter: blur(10px);
}

.page-hero-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero-card .list {
  margin-top: 0.5rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(39, 34, 29, 0.09);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-grid,
.two-column,
.cta-banner,
.form-grid,
.footer-grid,
.process-grid,
.dashboard-grid,
.dashboard-shelf,
.mini-grid,
.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-offer-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.offer-card {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(249,243,235,0.74));
  border: 1px solid rgba(52, 46, 39, 0.1);
  box-shadow: 0 16px 34px rgba(70, 49, 26, 0.06);
}

.offer-card strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.offer-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  align-items: start;
  padding-top: 1.25rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(167, 103, 66, 0.2), rgba(167, 103, 66, 0));
  filter: blur(8px);
  pointer-events: none;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(52, 46, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual-main {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 235, 0.94)),
    radial-gradient(circle at top right, rgba(27, 102, 94, 0.12), transparent 36%);
}

.hero-visual-stat,
.hero-visual-accent {
  width: min(88%, 320px);
  padding: 1.15rem 1.2rem;
}

.hero-visual-stat {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,246,239,0.9));
}

.hero-visual-stat strong {
  display: block;
  margin: 0.2rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.1;
}

.hero-visual-accent {
  margin-left: 1rem;
  background: linear-gradient(135deg, rgba(27, 102, 94, 0.08), rgba(255, 255, 255, 0.92));
}

.hero-visual-accent p {
  margin: 0.35rem 0 0.85rem;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 0.45rem;
  align-items: center;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}

.hero h1,
.page-hero h1,
.cta-banner h2,
.dashboard-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5vw, 4.95rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.section-copy,
.card p,
.step p,
.footer-note,
.copy-muted,
.list li,
.metric-copy,
form p,
label,
input,
textarea,
select,
.flow-item p,
.timeline-step p,
.dashboard-list li {
  color: var(--text-soft);
}

.lead {
  max-width: 47rem;
  font-size: clamp(1.04rem, 2vw, 1.16rem);
}

.hero-actions,
.inline-actions,
.micro-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.92rem 1.24rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
button:hover {
  transform: translateY(-1px);
}

.btn-primary,
button {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7f4ee;
  box-shadow: 0 14px 32px rgba(17, 76, 70, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
  border-color: var(--border);
}

.hero-note,
.form-kicker {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.trust-strip,
.metrics-row,
.notice,
.callout,
.intent-list {
  display: grid;
  gap: 1rem;
}

.trust-strip,
.metrics-row,
.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.card,
.step,
.notice,
.callout,
.form-panel,
.info-panel,
.metric-card,
.flow-item,
.priority-card,
.soft-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.panel:hover,
.card:hover,
.step:hover,
.process-card:hover,
.soft-card:hover,
.packet-block:hover,
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(46, 35, 23, 0.09);
  border-color: rgba(27, 102, 94, 0.18);
}

.panel,
.notice,
.form-panel,
.info-panel,
.priority-card,
.soft-card {
  padding: 1.6rem;
}

.soft-card,
.priority-card {
  position: relative;
  overflow: hidden;
}

.soft-card::after,
.priority-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 102, 94, 0.08), rgba(27, 102, 94, 0));
  pointer-events: none;
}

.soft-card > *,
.priority-card > * {
  position: relative;
  z-index: 1;
}

.hero-panel {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 253, 249, 0.96)),
    radial-gradient(circle at top right, rgba(27, 102, 94, 0.1), transparent 40%);
}

.hero-panel h2,
.section h2,
.page-section h2,
.dashboard-section h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section,
.page-section,
.dashboard-section {
  padding: 2rem 0;
}

.section-band {
  position: relative;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0.5rem 0;
  background: rgba(255, 251, 245, 0.46);
  border-top: 1px solid rgba(52, 46, 39, 0.05);
  border-bottom: 1px solid rgba(52, 46, 39, 0.05);
  pointer-events: none;
}

.section-band .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.6rem;
  position: relative;
}

.section-head::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(167, 103, 66, 0.7));
}

.grid-4,
.grid-3,
.step-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3,
.step-grid,
.footer-grid,
.process-grid,
.dashboard-shelf {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step,
.metric-card,
.flow-item {
  padding: 1.3rem;
}

.card h3,
.step h3,
.metric-card h3,
.flow-item h3,
.priority-card h3,
.soft-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.step-number,
.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(27, 102, 94, 0.1);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.status-pill.warm {
  background: rgba(167, 103, 66, 0.1);
  color: var(--accent-warm);
}

.list {
  padding-left: 1.15rem;
  margin: 0.75rem 0 0;
}

.list li + li {
  margin-top: 0.55rem;
}

.section-shell {
  display: grid;
  gap: 1.25rem;
}

.process-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(248, 244, 237, 0.82));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.process-card strong {
  font-size: 1.02rem;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), rgba(167, 103, 66, 0.7));
  opacity: 0.8;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-step {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(52, 46, 39, 0.1);
}

.timeline-step strong,
.detail-list strong,
.success-meta strong,
.dashboard-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field-label {
  font-size: 0.98rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.timeline-step p,
.timeline-step span,
.detail-list span,
.success-meta span,
.mini-metric strong,
.dashboard-kpi strong {
  color: var(--text);
}

.cta-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(167, 103, 66, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(27, 102, 94, 0.12), rgba(255, 255, 255, 0.9)),
    linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(247, 242, 234, 0.94));
}

.form-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  gap: 1.25rem;
}

.form-panel {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,242,233,0.9)),
    radial-gradient(circle at top right, rgba(19, 74, 69, 0.08), rgba(19, 74, 69, 0));
}

.info-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,242,234,0.78)),
    radial-gradient(circle at bottom right, rgba(151, 102, 68, 0.08), rgba(151, 102, 68, 0));
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), rgba(151, 102, 68, 0.72));
}

.form-panel-head {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}

.form-section-title {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-form-grid {
  align-items: stretch;
}

.audit-form-panel {
  padding-top: 2.1rem;
}

.audit-side-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 38, 35, 0.98), rgba(20, 57, 53, 0.94)),
    radial-gradient(circle at top right, rgba(151, 102, 68, 0.18), rgba(151, 102, 68, 0));
  border-color: rgba(19, 74, 69, 0.3);
  color: #f3ede4;
}

.audit-side-panel::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(151, 102, 68, 0.18), rgba(151, 102, 68, 0));
  pointer-events: none;
}

.audit-side-panel > * {
  position: relative;
  z-index: 1;
}

.audit-side-panel .badge {
  background: rgba(255, 255, 255, 0.08);
  color: #dce7e2;
}

.audit-side-panel h2,
.audit-side-panel p,
.audit-side-panel li,
.audit-side-panel .small,
.audit-side-panel .timeline-step p {
  color: rgba(243, 237, 228, 0.88);
}

.audit-side-panel .timeline-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.audit-side-panel .timeline-step strong,
.audit-side-panel .status-pill {
  color: #dce7e2;
}

.audit-side-panel .status-pill.warm {
  background: rgba(151, 102, 68, 0.18);
  color: #f0c7aa;
}

.audit-side-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.48rem;
  font-size: 0.95rem;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.field-note,
.optional-note,
.small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(39, 34, 29, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  border-radius: 16px;
  padding: 1rem 1rem;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(27, 102, 94, 0.48);
  box-shadow: 0 0 0 4px rgba(27, 102, 94, 0.12);
  background: #fffdf9;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-help {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.optional-block {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(39, 34, 29, 0.11);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(248, 242, 233, 0.72));
}

.optional-block summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.optional-block summary::-webkit-details-marker {
  display: none;
}

.optional-block[open] summary {
  margin-bottom: 0.9rem;
}

.private-page .page-hero {
  padding-bottom: 1.6rem;
}

.private-shell,
.private-copy,
.form-section {
  display: grid;
  gap: 1rem;
}

.private-copy .mini-grid {
  margin-top: 0.4rem;
}

.form-section {
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(52, 46, 39, 0.08);
}

.form-section:first-of-type {
  border-top: 0;
  padding-top: 0.25rem;
}

.kickoff-hero .private-shell {
  max-width: 980px;
}

.kickoff-summary-ribbon,
.kickoff-layout,
.kickoff-panel-head,
.question-card,
.choice-grid,
.kickoff-step-list {
  display: grid;
  gap: 1rem;
}

.kickoff-summary-ribbon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.kickoff-summary-item {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(52, 46, 39, 0.09);
  box-shadow: 0 14px 36px rgba(46, 35, 23, 0.05);
}

.kickoff-summary-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
}

.kickoff-summary-item p {
  margin: 0;
}

.kickoff-layout {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: start;
}

.kickoff-rail {
  position: sticky;
  top: 6rem;
  gap: 1.15rem;
}

.kickoff-step-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.kickoff-step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(52, 46, 39, 0.08);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.kickoff-step-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.98rem;
}

.kickoff-step-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.kickoff-step-item.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.82));
  border-color: rgba(27, 102, 94, 0.22);
  transform: translateY(-1px);
}

.kickoff-step-item.is-complete {
  border-color: rgba(27, 102, 94, 0.16);
}

.kickoff-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(27, 102, 94, 0.1);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.kickoff-step-item.is-active .kickoff-step-number,
.kickoff-step-item.is-complete .kickoff-step-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7f4ee;
}

.kickoff-rail-card h3,
.question-card h3 {
  margin: 0;
}

.kickoff-panel {
  padding: 1.45rem;
}

.kickoff-panel-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 0.35rem;
}

.kickoff-panel-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.kickoff-progress-copy {
  display: grid;
  gap: 0.22rem;
  justify-items: end;
  text-align: right;
}

.kickoff-progress-copy strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.05;
}

.question-frame {
  display: grid;
  gap: 1rem;
}

.question-stage {
  min-height: 360px;
}

.question-card {
  gap: 1.1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 243, 235, 0.86)),
    radial-gradient(circle at top right, rgba(27, 102, 94, 0.08), rgba(27, 102, 94, 0));
  border: 1px solid rgba(52, 46, 39, 0.08);
  box-shadow: 0 18px 40px rgba(46, 35, 23, 0.06);
}

.question-field {
  display: grid;
  gap: 0.45rem;
}

.choice-field {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-body {
  display: grid;
  gap: 0.32rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(52, 46, 39, 0.12);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.choice-card-body strong {
  color: var(--text);
  font-size: 0.98rem;
}

.choice-card-body span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.choice-card input:checked + .choice-card-body {
  border-color: rgba(27, 102, 94, 0.34);
  background: linear-gradient(180deg, rgba(228, 243, 239, 0.95), rgba(255, 255, 255, 0.92));
  box-shadow: 0 12px 28px rgba(17, 76, 70, 0.08);
  transform: translateY(-1px);
}

.choice-card input:focus-visible + .choice-card-body {
  outline: 2px solid rgba(27, 102, 94, 0.45);
  outline-offset: 2px;
}

.review-stack {
  display: grid;
  gap: 0.9rem;
}

.review-item {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(52, 46, 39, 0.1);
}

.review-item strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.review-item p {
  margin: 0;
  color: var(--text-soft);
}

.question-card .field-label,
.question-card legend.field-label {
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1rem;
  font-weight: 800;
}

.question-card .optional-note {
  font-size: 0.92rem;
  line-height: 1.45;
}

.wizard-progress,
.wizard-progress-head,
.wizard-nav {
  display: grid;
  gap: 0.85rem;
}

.wizard-progress {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(52, 46, 39, 0.08);
}

.wizard-progress-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.wizard-progress-head strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.05;
}

.wizard-progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(52, 46, 39, 0.08);
}

.wizard-progress-fill {
  display: block;
  width: 33.34%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transition: width 180ms ease;
}

.wizard-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.wizard-nav button:last-child {
  grid-column: 2;
}

.sticky-panel {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.preview-shell,
.preview-stack,
.email-preview-grid,
.email-canvas,
.packet-grid,
.stat-grid,
.support-list,
.mock-flow,
.mock-hero,
.deliverable-grid,
.deliverable-card,
.report-layout,
.report-section,
.signal-list,
.note-stack,
.thread-stack,
.thread-message,
.summary-ribbon {
  display: grid;
  gap: 1rem;
}

.preview-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: start;
}

.preview-stack {
  align-content: start;
}

.email-preview-grid {
  grid-template-columns: 1fr;
}

.email-canvas {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,243,235,0.88));
  border: 1px solid rgba(52, 46, 39, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.email-meta {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(52, 46, 39, 0.08);
}

.email-meta span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.email-body {
  display: grid;
  gap: 0.95rem;
}

.email-body p,
.email-body li,
.email-body span {
  color: var(--text-soft);
}

.email-body ul {
  margin: 0;
  padding-left: 1.15rem;
}

.email-body h3 {
  margin: 0;
  font-size: 1rem;
}

.packet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.packet-block {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(52, 46, 39, 0.1);
}

.scenario-note {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(27, 102, 94, 0.08);
  border: 1px solid rgba(27, 102, 94, 0.12);
  color: var(--text-soft);
}

.packet-block h3,
.packet-block h4 {
  margin: 0;
}

.packet-block ul {
  margin: 0;
  padding-left: 1.15rem;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-tile {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(52, 46, 39, 0.08);
}

.stat-tile strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.support-list {
  padding-left: 1.1rem;
  margin: 0;
}

.support-list li + li {
  margin-top: 0.45rem;
}

.mock-flow {
  gap: 1.5rem;
}

.mock-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.summary-ribbon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-ribbon .soft-card,
.deliverable-card,
.report-section,
.thread-message {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(52, 46, 39, 0.1);
  box-shadow: 0 16px 40px rgba(70, 49, 26, 0.08);
}

.deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-card {
  align-content: start;
}

.deliverable-card h3,
.report-section h3,
.thread-message h3,
.thread-message h4 {
  margin: 0;
}

.deliverable-card p,
.report-section p,
.thread-message p {
  margin: 0;
}

.report-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.signal-list {
  margin: 0;
  padding-left: 1.1rem;
}

.signal-list li + li {
  margin-top: 0.45rem;
}

.thread-stack,
.note-stack {
  gap: 1.1rem;
}

.thread-message.client {
  background: linear-gradient(180deg, rgba(248, 241, 232, 0.96), rgba(245, 236, 226, 0.88));
}

.thread-message.operator {
  background: linear-gradient(180deg, rgba(239, 246, 244, 0.96), rgba(232, 242, 239, 0.88));
}

.thread-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(52, 46, 39, 0.08);
}

.note-stack .small {
  margin: 0;
}

.optional-block summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.optional-block[open] summary {
  margin-bottom: 1rem;
}

.result-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(27, 102, 94, 0.2);
  background: rgba(225, 243, 238, 0.85);
  color: var(--text);
}

.success-card,
.error-card {
  display: grid;
  gap: 1rem;
}

.success-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.success-list li + li {
  margin-top: 0.45rem;
}

.success-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 102, 94, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.success-copy {
  margin: 0;
  color: var(--text-soft);
}

.success-meta,
.detail-list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.success-meta div,
.detail-list div,
.dashboard-kpi,
.mini-metric {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(52, 46, 39, 0.08);
}

.success-details {
  border-top: 1px solid rgba(52, 46, 39, 0.1);
  padding-top: 0.9rem;
}

.success-details summary {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-summary {
  align-content: start;
}

.booking-options {
  display: grid;
  gap: 1rem;
}

.booking-choice {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(52, 46, 39, 0.1);
}

.calendly-shell {
  min-height: 760px;
  padding: 1rem;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.dashboard-hero {
  padding: 5rem 0 2rem;
}

.dashboard-grid {
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.dashboard-stack {
  display: grid;
  gap: 1.25rem;
}

.dashboard-list {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
}

.dashboard-list li + li {
  margin-top: 0.5rem;
}

.dashboard-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.85rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(52, 46, 39, 0.1);
}

.dashboard-table th {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-table td {
  color: var(--text-soft);
}

.site-footer {
  padding: 2.25rem 0 3rem;
  border-top: 1px solid rgba(52, 46, 39, 0.08);
}

.footer-grid {
  margin-top: 1.5rem;
}

.footer-column h4 {
  margin: 0 0 0.55rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

hr {
  border: 0;
  border-top: 1px solid rgba(52, 46, 39, 0.08);
  margin: 2.5rem 0;
}

.footer-note {
  max-width: 28rem;
}

.footer-legal {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--text-soft);
}

.site-footer a:hover {
  color: var(--text);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
  color: var(--accent);
}

.result-box p {
  margin: 0.35rem 0;
}

@media (max-width: 980px) {
  .audit-hero-grid,
  .hero-grid,
  .two-column,
  .form-grid,
  .kickoff-layout,
  .kickoff-summary-ribbon,
  .cta-banner,
  .grid-4,
  .grid-3,
  .step-grid,
  .footer-grid,
  .trust-strip,
  .metrics-row,
  .process-grid,
  .dashboard-grid,
  .dashboard-shelf,
  .mini-grid,
  .preview-shell,
  .packet-grid,
  .stat-grid,
  .mock-hero,
  .summary-ribbon,
  .deliverable-grid,
  .report-layout,
  .hero-visual,
  .success-meta,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .hero-offer-band {
    grid-template-columns: 1fr;
  }

  .site-header .container,
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .hero,
  .page-hero,
  .dashboard-hero {
    padding-top: 4rem;
  }

  .hero-visual-stat,
  .hero-visual-accent {
    width: 100%;
    margin-left: 0;
  }

  .page-hero .container {
    padding: 1.55rem 1.5rem;
  }

  .kickoff-rail {
    position: static;
  }

  .kickoff-panel-head {
    grid-template-columns: 1fr;
  }

  .kickoff-progress-copy {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .page-hero .container {
    padding: 1.3rem 1.15rem;
  }

  .hero h1,
  .page-hero h1,
  .cta-banner h2,
  .dashboard-hero h1 {
    font-size: clamp(2.15rem, 13vw, 3.1rem);
  }

  .hero-actions,
  .inline-actions,
  .nav,
  .micro-actions {
    gap: 0.75rem;
  }

  .btn,
  button,
  .header-cta {
    width: 100%;
  }

  .question-card {
    padding: 1.1rem;
  }
}
