/* ==========================================
   Cadence — Studio OS
   Boutique fitness owner-first design
   ========================================== */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B5B4E;
  --accent: #C8694A;
  --accent-light: #E8A889;
  --sage: #6B8F71;
  --sage-light: #A8C4AB;
  --charcoal: #2D2520;
  --border: #D9CFC4;
  --positive: #4A7C59;
  --warning: #C8694A;
  --radius: 4px;
  --radius-lg: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  min-height: 85vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,105,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,143,113,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.08;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-metric-row--2 {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hero-metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.hero-metric-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-metric-delta {
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
  padding: 2px 7px;
  border-radius: 20px;
  display: inline-block;
}

.hero-metric-delta.positive {
  background: rgba(74,124,89,0.12);
  color: var(--positive);
}

.hero-metric-delta.warning {
  background: rgba(200,105,74,0.12);
  color: var(--warning);
}

.hero-metric-delta.neutral {
  background: var(--bg-alt);
  color: var(--fg-muted);
}

/* Chart */
.hero-chart-placeholder {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.chart-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: var(--border);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s;
}

.chart-bar--current {
  background: var(--accent);
}

/* ---- Problem ---- */
.problem {
  background: var(--charcoal);
  padding: 96px 48px;
}

.problem-inner {
  max-width: 760px;
  margin: 0 auto;
}

.problem-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.problem-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #FAF7F2;
  margin-bottom: 24px;
  font-style: italic;
}

.problem-body {
  font-size: 17px;
  color: rgba(250,247,242,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.problem-stack {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(250,247,242,0.7);
}

.stack-icon {
  color: var(--accent-light);
  opacity: 0.8;
}

.stack-plus {
  color: rgba(250,247,242,0.3);
  font-size: 20px;
  font-weight: 300;
}

.problem-cta {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--accent-light);
  font-style: italic;
}

/* ---- Dashboard Feature ---- */
.dashboard-feature {
  padding: 96px 48px;
  background: var(--bg);
}

.dashboard-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.dashboard-headline {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--fg);
  margin-bottom: 20px;
}

.dashboard-body {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.dashboard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
}

.dashboard-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.dashboard-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dash-card--main {
  grid-column: 1 / -1;
  padding: 24px;
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-card-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.dash-card-badge {
  font-size: 12px;
  font-weight: 600;
  background: rgba(74,124,89,0.12);
  color: var(--positive);
  padding: 2px 8px;
  border-radius: 20px;
}

.dash-big-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.dash-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.dash-progress {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.dash-progress-fill {
  height: 100%;
  background: var(--positive);
  border-radius: 3px;
}

.dash-card-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.dash-card-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.dash-card-val--alert {
  color: var(--warning);
}

.dash-card-sub {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---- Modules ---- */
.modules {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.modules-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.modules-headline {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--fg);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.module-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.module-icon {
  color: var(--accent);
  margin-bottom: 16px;
  width: 28px;
}

.module-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.module-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Payroll Feature ---- */
.payroll-feature {
  padding: 96px 48px;
  background: var(--bg);
}

.payroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.pay-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #FAF7F2;
}

.pay-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.5);
  margin-bottom: 20px;
}

.pay-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}

.pay-name {
  font-weight: 500;
  color: rgba(250,247,242,0.9);
}

.pay-class {
  color: rgba(250,247,242,0.4);
  font-size: 12px;
}

.pay-rate {
  color: rgba(250,247,242,0.6);
  font-size: 12px;
}

.pay-heads {
  color: rgba(250,247,242,0.4);
  font-size: 12px;
  text-align: right;
}

.pay-total {
  text-align: right;
  font-weight: 600;
  color: var(--sage-light);
}

.pay-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0 12px;
}

.pay-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 12px;
}

.pay-note {
  font-size: 11px;
  color: rgba(250,247,242,0.35);
  font-style: italic;
}

.payroll-headline {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
}

.payroll-body {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.payroll-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rule {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 16px;
}

.rule-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 4px;
}

.rule-desc {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 112px 48px;
  background: var(--accent);
  text-align: center;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  color: #FAF7F2;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 48px;
}

.manifesto-body p {
  font-size: 16px;
  color: rgba(250,247,242,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-body p:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #FAF7F2;
  font-weight: 600;
  margin-bottom: 0;
}

/* ---- Footer ---- */
.footer {
  padding: 56px 48px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ---- Waitlist Form ---- */
.waitlist-form {
  margin-top: 36px;
}

.waitlist-form__inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  flex-wrap: wrap;
}

.waitlist-input {
  flex: 1 1 220px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input:focus {
  border-color: var(--accent);
}

.waitlist-btn {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.waitlist-btn:hover { background: #b35838; }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.waitlist-btn--dp {
  background: var(--charcoal);
}

.waitlist-btn--dp:hover { background: #1a1210; }

.waitlist-success {
  font-size: 16px;
  color: var(--positive);
  font-weight: 500;
  padding: 14px 0;
}

.waitlist-sub {
  margin-top: 12px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ---- Multi-modality ---- */
.multimodality {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.multimodality-inner {
  max-width: 900px;
  margin: 0 auto;
}

.multimodality-headline {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 680px;
}

.multimodality-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.modality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.modality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.modality-card--more {
  background: var(--bg-alt);
  color: var(--fg-muted);
  border-style: dashed;
}

.modality-icon {
  font-size: 22px;
  line-height: 1;
}

.modality-label {
  font-size: 14px;
  font-weight: 500;
}

.multimodality-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 600px;
}

/* ---- Instructors / 1099 ---- */
.instructors-feature {
  padding: 96px 48px;
  background: var(--bg);
}

.instructors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.instructors-headline {
  font-size: clamp(24px, 2.8vw, 38px);
  color: var(--fg);
  margin-bottom: 20px;
}

.instructors-body {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.instructors-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inst-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}

.inst-feature-icon {
  color: var(--positive);
  flex-shrink: 0;
  margin-top: 2px;
}

.tax-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #FAF7F2;
}

.tax-card-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.45);
  margin-bottom: 20px;
}

.tax-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}

.tax-name { font-weight: 500; color: rgba(250,247,242,0.9); }
.tax-classes { font-size: 12px; color: rgba(250,247,242,0.4); }
.tax-total { font-weight: 600; color: var(--sage-light); }

.tax-badge {
  font-size: 10px;
  font-weight: 600;
  background: rgba(74,124,89,0.25);
  color: var(--sage-light);
  padding: 3px 8px;
  border-radius: 20px;
  text-align: center;
}

.tax-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0 12px;
}

.tax-export-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  cursor: pointer;
  text-align: right;
  padding-top: 4px;
}

/* ---- Integrations ---- */
.integrations {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.integrations-inner {
  max-width: 900px;
  margin: 0 auto;
}

.integrations-headline {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
}

.integrations-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.integration-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.int-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.int-card-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.int-card-logo--qb {
  background: #2CA01C;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.int-card-logo--gusto {
  background: #F45D48;
  color: #fff;
}

.int-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.int-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.int-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Design Partner ---- */
.design-partner {
  padding: 96px 48px;
  background: var(--charcoal);
}

.design-partner-inner {
  max-width: 760px;
  margin: 0 auto;
}

.dp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,105,74,0.25);
  color: var(--accent-light);
  border: 1px solid rgba(200,105,74,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.dp-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #FAF7F2;
  margin-bottom: 24px;
}

.dp-body {
  font-size: 17px;
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.dp-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.dp-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: rgba(250,247,242,0.8);
  line-height: 1.6;
}

.dp-perk-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dp-cta .waitlist-input {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  color: #FAF7F2;
}

.dp-cta .waitlist-input::placeholder { color: rgba(250,247,242,0.4); }
.dp-cta .waitlist-input:focus { border-color: var(--accent-light); }

.dp-slots {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.04em;
}

/* ---- Footer (updated) ---- */
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
}

.footer-note-block {
  margin-bottom: 40px;
}

.footer-note-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-note-text {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  font-style: italic;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 40px; }
  .hero-metric-row { grid-template-columns: repeat(2, 1fr); }
  .problem { padding: 64px 24px; }
  .problem-stack { gap: 10px; }
  .dashboard-inner, .payroll-inner, .instructors-inner { grid-template-columns: 1fr; gap: 40px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .payroll-rules { grid-template-columns: 1fr; }
  .dashboard-visual { grid-template-columns: 1fr 1fr; }
  .modules, .dashboard-feature, .payroll-feature, .instructors-feature { padding: 64px 24px; }
  .manifesto { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .multimodality, .integrations, .design-partner { padding: 64px 24px; }
  .modality-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-cards { grid-template-columns: 1fr; }
}

/* ---- Showcases ---- */
.showcases {
  padding: 96px 48px;
  background: var(--bg);
}

.showcases-inner {
  max-width: 900px;
  margin: 0 auto;
}

.showcases-headline {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 16px;
  max-width: 680px;
}

.showcases-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.showcases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.showcase-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}

.showcase-icon {
  color: var(--accent);
  margin-bottom: 14px;
  width: 24px;
}

.showcase-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.showcase-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Booking Tool ---- */
.booking-tool {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.booking-tool-inner {
  max-width: 900px;
  margin: 0 auto;
}

.booking-tool-headline {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 680px;
}

.booking-tool-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.booking-tool-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.bt-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.bt-logo-item--cadence {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #FAF7F2;
}

.bt-logo-icon {
  color: var(--fg-muted);
}

.bt-logo-icon--accent {
  color: var(--accent-light);
}

.bt-logo-plus {
  color: var(--fg-muted);
  font-size: 18px;
  font-weight: 300;
}

.bt-logo-plus--equals {
  font-weight: 600;
  font-size: 22px;
  color: var(--accent);
}

@media (max-width: 600px) {
  .hero-metric-row { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .pay-row { grid-template-columns: 1fr 1fr; gap: 4px; }
  .pay-rate, .pay-heads { display: none; }
  .waitlist-form__inner { flex-direction: column; }
  .waitlist-btn { width: 100%; text-align: center; }
  .modality-grid { grid-template-columns: 1fr 1fr; }
  .tax-row { grid-template-columns: 2fr 1fr 1fr; }
  .tax-classes { display: none; }
  .showcases-grid { grid-template-columns: 1fr; }
  .showcases { padding: 64px 24px; }
  .booking-tool { padding: 64px 24px; }
  .booking-tool-logos { gap: 10px; }
  .bt-logo-plus { display: none; }
}