/* PlatePrep Interactive Workflow — Brand-matched to plateprep.com */

:root {
  /* PlatePrep.com palette */
  --navy: #012241;
  --navy-dark: #012241;
  --navy-mid: #01375F;
  --sky: #04AEEF;
  --sky-soft: #87CEEBCC;
  --bg-light: #F8F9FA;
  --bg-light-2: #E8EEF3;
  --tag-bg: #F0F4F8;
  --pale-panel: #F8FAFF;
  --cream: #FFFFFF;
  --cream-deep: #F8F9FA;
  --offwhite: #FFFFFF;
  --charcoal: #012241;
  --text-dim: #666666;
  --text-faint: #888888;
  --text-muted: #999999;
  --border: #E8E8E8;
  --border-soft: rgba(1, 34, 65, 0.05);
  --white: #FFFFFF;

  /* Legacy aliases — kept so we don't have to rename every selector */
  --gold: #04AEEF;
  --gold-deep: #01375F;
  --gold-light: #87CEEBCC;

  --serif: 'Outfit', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Poppins', 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 4px 24px rgba(1, 34, 65, 0.08);
  --shadow-deep: 0 20px 60px rgba(1, 34, 65, 0.18);
  --shadow-glow: 0 0 0 4px rgba(4, 174, 239, 0.18);
}

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

html, body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 400;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

/* ─────────────────────────────────────────────────────
   HEADER — white bg, navy text, navy CTA (matches plateprep.com)
   ───────────────────────────────────────────────────── */

.site-header {
  background: var(--white);
  color: var(--navy);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(1, 34, 65, 0.06);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-size: 16px;
}

.brand-tag {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  font-style: normal;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
  transition: color 0.2s;
}

.phone-link:hover {
  color: var(--sky);
}

.cta-btn {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(1, 34, 65, 0.15);
}

.cta-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(1, 34, 65, 0.25);
}

/* ─────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────── */

.hero {
  padding: 80px 48px 40px;
  background: transparent;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.4em;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--sky);
}

h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 24px;
  margin-bottom: 24px;
}

.line-navy {
  display: block;
  color: var(--navy);
}

.line-gold {
  display: block;
  color: var(--navy-mid);
}

.sub {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dim);
  font-style: normal;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}

.hint {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--sky);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* ─────────────────────────────────────────────────────
   WORKFLOW DIAGRAM
   ───────────────────────────────────────────────────── */

.workflow {
  padding: 40px 48px 100px;
  background: transparent;
}

.workflow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step: Upload */
.step-upload {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 24px 48px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 280px;
  box-shadow: var(--shadow-soft);
}

.step-upload:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.upload-accent {
  width: 32px;
  height: 3px;
  background: var(--sky);
  margin: 0 auto 12px;
}

.upload-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--sky);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.upload-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.upload-formats {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* Arrows */
.arrow-down {
  width: 2px;
  background: var(--sky);
  position: relative;
}

.arrow-down::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--sky);
}

.arrow-1, .arrow-2 {
  height: 36px;
  margin: 0;
}

/* Step: Engine (Menu Analyzer) */
.step-engine {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 22px 56px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 320px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--sky);
}

.step-engine:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(4, 174, 239, 0.25);
}

.engine-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--white);
}

.engine-sub {
  font-size: 13px;
  margin-top: 4px;
  color: var(--sky);
  opacity: 0.95;
}

/* Outputs label */
.outputs-label {
  margin-top: 32px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-style: normal;
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
}

/* Outputs grid */
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1000px;
}

.outputs-grid .output-box:nth-child(5) {
  grid-column: 1 / 2;
  grid-row: 2;
  margin-left: 12.5%;
}
.outputs-grid .output-box:nth-child(6) {
  grid-column: 2 / 3;
  grid-row: 2;
  margin-left: 12.5%;
}
.outputs-grid .output-box:nth-child(7) {
  grid-column: 3 / 4;
  grid-row: 2;
  margin-left: 12.5%;
}

.output-box {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  box-shadow: var(--shadow-soft);
}

.output-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--sky);
  background: var(--pale-panel);
}

.output-box:focus-visible {
  outline: none;
  box-shadow: var(--shadow-deep), 0 0 0 3px var(--sky);
}

.output-box.is-active {
  background: var(--pale-panel);
  border-color: var(--sky);
  box-shadow: var(--shadow-deep);
}

.output-accent {
  width: 24px;
  height: 3px;
  background: var(--sky);
  margin-bottom: 12px;
}

.output-label {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.output-hint {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Punchline */
.punchline {
  margin-top: 64px;
  text-align: center;
}

.punchline-1, .punchline-2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.punchline-1 {
  color: var(--navy);
}

.punchline-2 {
  color: var(--navy-mid);
  margin-top: 8px;
}

.punchline-3 {
  font-family: var(--sans);
  font-style: normal;
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* ─────────────────────────────────────────────────────
   FOUNDER'S 50 CTA — navy gradient like plateprep.com footer
   ───────────────────────────────────────────────────── */

.founders {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.founders::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(4, 174, 239, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.founders-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.founders-eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--sky);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.founders h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.founders-price {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.price-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(64px, 10vw, 96px);
  color: var(--sky);
  letter-spacing: -0.03em;
}

.price-mo {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.founders-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.founders-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-primary {
  background: var(--white);
  color: var(--navy);
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cta-primary:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(4, 174, 239, 0.5);
}

.cta-secondary {
  border: 2px solid var(--sky);
  color: var(--sky);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.cta-secondary:hover {
  background: var(--sky);
  color: var(--white);
}

.founders-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─────────────────────────────────────────────────────
   PREVIEW PANEL (slides in from right)
   ───────────────────────────────────────────────────── */

.preview-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(720px, 60vw);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(1, 34, 65, 0.25);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-panel.is-open {
  transform: translateX(0);
}

.preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}

.preview-close:hover {
  background: var(--sky);
  color: var(--white);
  transform: rotate(90deg);
}

.preview-meta {
  padding: 32px 32px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.preview-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--sky);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.preview-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.preview-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.preview-image-wrap {
  flex: 1;
  padding: 24px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(1, 34, 65, 0.18);
  border: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.preview-image.is-loaded {
  opacity: 1;
}

.preview-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 34, 65, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 150;
}

.preview-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ─────────────────────────────────────────────────────
   MOBILE
   ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .site-header {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand-tag { display: none; }
  .header-cta { gap: 10px; }
  .hero { padding: 48px 20px 32px; }
  .workflow { padding: 32px 20px 64px; }
  .outputs-grid { grid-template-columns: repeat(2, 1fr); }
  .outputs-grid .output-box:nth-child(5),
  .outputs-grid .output-box:nth-child(6),
  .outputs-grid .output-box:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
  }
  .preview-panel { width: 100%; transform: translateY(100%); }
  .preview-panel.is-open { transform: translateY(0); }
  .founders { padding: 56px 20px; }
  .founders-cta-row { flex-direction: column; align-items: stretch; }
  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 20px;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 48px; }
  .step-upload, .step-engine {
    min-width: auto;
    width: 100%;
    padding: 20px 24px;
  }
  .upload-title, .engine-title { font-size: 22px; }
  .punchline-1, .punchline-2 { font-size: 28px; }
}

/* ─────────────────────────────────────────────────────
   HEADER NAV
   ───────────────────────────────────────────────────── */

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.header-nav a:hover {
  color: var(--sky);
}

@media (max-width: 1100px) {
  .header-nav { display: none; }
}

/* ─────────────────────────────────────────────────────
   SECTION TITLE
   ───────────────────────────────────────────────────── */

.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 24px 0 16px;
}

.section-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-dim);
  font-style: normal;
  margin-bottom: 48px;
  line-height: 1.6;
}

.gold-dark {
  color: var(--sky);
}

/* ─────────────────────────────────────────────────────
   DEMOS SECTION
   ───────────────────────────────────────────────────── */

.demos {
  background: var(--white);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demos-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  text-align: left;
}

.demo-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.demo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.demo-box:hover::before,
.demo-box.is-active::before {
  transform: scaleX(1);
}

.demo-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--sky);
}

.demo-box.is-active {
  border-color: var(--sky);
  box-shadow: var(--shadow-deep);
}

.demo-num {
  background: var(--navy);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.demo-content {
  flex: 1;
  min-width: 0;
}

.demo-label {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.demo-hint {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 10px;
}

.demo-url {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  color: var(--sky);
  letter-spacing: 0.02em;
  word-break: break-all;
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.demo-url:hover {
  color: var(--navy-mid);
  text-decoration: underline;
}

.demos-cta {
  margin-top: 48px;
}

.cta-secondary-light {
  display: inline-block;
  color: var(--sky);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border: 2px solid var(--sky);
  border-radius: 8px;
  transition: all 0.2s;
}

.cta-secondary-light:hover {
  background: var(--sky);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────
   WORKFLOW HEADER
   ───────────────────────────────────────────────────── */

.workflow-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ─────────────────────────────────────────────────────
   ROI SECTION
   ───────────────────────────────────────────────────── */

.roi {
  background: var(--bg-light);
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.roi-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.big-number {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin: 32px 0 16px;
}

.big-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--navy);
  font-weight: 700;
}

.big-sub-italic {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-dim);
  margin-top: 4px;
  margin-bottom: 56px;
}

.roi-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 48px;
}

.roi-card {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.roi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--sky);
}

.roi-card-accent {
  width: 32px;
  height: 4px;
  background: var(--sky);
  margin-bottom: 16px;
}

.roi-card-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 48px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.roi-card-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.roi-card-sub {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

.math-strip {
  background: var(--navy);
  color: var(--white);
  padding: 22px 32px;
  border-radius: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 980px;
  margin: 0 auto 48px;
  letter-spacing: -0.01em;
}

.roi-close {
  margin-top: 16px;
}

.roi-close-1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  letter-spacing: -0.015em;
}

.roi-close-2 {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — new sections
   ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .demos { padding: 64px 20px; }
  .demos-grid { grid-template-columns: 1fr; }
  .roi { padding: 64px 20px; }
  .roi-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .math-strip { padding: 18px 20px; font-size: 14px; }
}

@media (max-width: 600px) {
  .roi-cards { grid-template-columns: 1fr; }
}

/* Demo box with multiple URLs */
.demo-box--multi .demo-url {
  display: block;
  margin-top: 6px;
  padding: 4px 0;
  border-bottom: 1px dashed transparent;
}

.demo-box--multi .demo-url:hover {
  border-bottom-color: var(--sky);
}

/* ─────────────────────────────────────────────────────
   AUTO-PILOT SECTION
   ───────────────────────────────────────────────────── */

.autopilot {
  background: var(--white);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.autopilot-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.autopilot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
  text-align: left;
}

.ap-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ap-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.ap-step:hover::before {
  transform: scaleX(1);
}

.ap-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--sky);
}

.ap-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 40px;
  color: var(--sky);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ap-step-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ap-step-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.autopilot-moat {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 40px 36px;
  border-radius: 16px;
  text-align: left;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 34, 65, 0.18);
}

.autopilot-moat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sky);
}

.moat-label {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--sky);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.moat-headline {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.moat-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 880px;
}

/* ─────────────────────────────────────────────────────
   3-TIER PRICING GRID
   ───────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 40px;
  text-align: left;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 36px 28px;
  color: var(--navy);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(4, 174, 239, 0.32);
}

.pricing-card--featured {
  background: linear-gradient(180deg, var(--white) 0%, #F0F8FE 100%);
  border: 2px solid var(--sky);
  box-shadow: 0 20px 50px rgba(4, 174, 239, 0.32);
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  color: var(--navy);
}

.pricing-currency {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin-right: 2px;
}

.pricing-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-mo {
  font-size: 16px;
  color: var(--text-dim);
  margin-left: 6px;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-style: normal;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 22px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(-45deg);
}

.pricing-cta {
  display: block;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
}

.pricing-cta:hover {
  background: var(--sky);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(4, 174, 239, 0.45);
}

.pricing-cta--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.pricing-cta--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* Founders section background tweak so the pricing cards pop */
.founders {
  padding: 96px 48px;
}

.founders h2 {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .autopilot,
  .founders {
    padding: 64px 20px;
  }
  .autopilot-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
  .autopilot-moat {
    padding: 28px 22px;
  }
}

/* ─────────────────────────────────────────────────────
   DYNAMIC PRICING SPOTLIGHT inside Auto-Pilot section
   ───────────────────────────────────────────────────── */

.autopilot-spotlight {
  margin-top: 64px;
  margin-bottom: 32px;
  background: linear-gradient(180deg, var(--white) 0%, #F6FBFE 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.autopilot-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
}

.spotlight-eyebrow {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.spotlight-headline {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}

.spotlight-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.spotlight-image-wrap {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(1, 34, 65, 0.18);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  cursor: zoom-in;
}

.spotlight-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(4, 174, 239, 0.32);
}

.spotlight-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.spotlight-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(1, 34, 65, 0.85);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotlight-image-wrap:hover .spotlight-zoom {
  opacity: 1;
}

.spotlight-callouts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.sc--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(1, 34, 65, 0.22);
}

.sc-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}

.sc--featured .sc-num {
  color: var(--sky);
}

.sc-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.sc--featured .sc-label {
  color: var(--white);
}

.sc-sub {
  font-size: 12px;
  color: var(--text-dim);
}

.sc--featured .sc-sub {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .autopilot-spotlight {
    padding: 32px 20px;
    margin-top: 40px;
  }
  .spotlight-callouts {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc--featured {
    transform: none;
  }
}

/* ===== Live onboarding tile + nav link ===== */
.nav-live {
  position: relative;
  color: #04AEEF !important;
  font-weight: 600;
}
.nav-live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #04AEEF;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(4, 174, 239, 0.7);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(4, 174, 239, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(4, 174, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(4, 174, 239, 0); }
}

.demo-box--live {
  background: linear-gradient(135deg, #012241 0%, #04AEEF 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 28px rgba(4, 174, 239, 0.28);
  min-height: 220px;
}
.demo-box--live:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(4, 174, 239, 0.42);
}
.demo-box--live .demo-num {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
}
.demo-box--live .demo-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-box--live .demo-hint {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.demo-box--live .demo-url {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.live-pill {
  background: #fff;
  color: #012241;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  position: relative;
}
.live-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: live-pulse 2s infinite;
}

/* ===== SUSTAINABILITY SECTION ===== */
.sustainability {
  padding: 96px 0 64px;
  background: linear-gradient(180deg, #F2F4F7 0%, #E8F4FB 100%);
  position: relative;
}
.sustainability::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #04AEEF, transparent);
}

.sustainability-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-eco {
  position: relative;
  color: #047857 !important;
  font-weight: 600;
}
.nav-eco::before {
  content: "🌱";
  margin-right: 4px;
  font-size: 12px;
}

.eyebrow-eco {
  color: #047857;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.line-sky {
  color: #04AEEF;
}

.sustainability-sub {
  max-width: 820px;
  margin: 12px auto 56px;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  color: #4B5563;
}

/* Top stats row */
.sustain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.sustain-stat {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E5E7EB;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sustain-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 34, 65, 0.10);
}
.sustain-stat--feature {
  background: linear-gradient(135deg, #04AEEF 0%, #0288D1 100%);
  color: #fff;
  border: none;
  box-shadow: 0 12px 32px rgba(4, 174, 239, 0.30);
}
.sustain-num {
  font-family: inherit;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #012241;
  margin-bottom: 8px;
}
.sustain-stat--feature .sustain-num {
  color: #fff;
}
.sustain-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04AEEF;
  margin-bottom: 10px;
}
.sustain-stat--feature .sustain-label {
  color: rgba(255, 255, 255, 0.92);
}
.sustain-detail {
  font-size: 13.5px;
  line-height: 1.5;
  color: #4B5563;
}
.sustain-stat--feature .sustain-detail {
  color: rgba(255, 255, 255, 0.92);
}

/* The 4 feature cards */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.sustain-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sustain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(1, 34, 65, 0.10);
}
.sustain-card--featured {
  background: linear-gradient(135deg, #012241 0%, #023a6e 100%);
  color: #fff;
  border: none;
  box-shadow: 0 14px 38px rgba(1, 34, 65, 0.35);
  position: relative;
  overflow: hidden;
}
.sustain-card--featured::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(4, 174, 239, 0.30) 0%, transparent 70%);
  pointer-events: none;
}
.sustain-card-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #04AEEF;
  margin-bottom: 12px;
}
.eyebrow-on-navy {
  color: #67D2F0 !important;
}
.sustain-card-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #012241;
  margin: 0 0 14px;
}
.sustain-card-title--white {
  color: #fff;
}
.sustain-card-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: #374151;
  margin-bottom: 16px;
}
.sustain-card-body--white {
  color: rgba(255, 255, 255, 0.92);
}
.sustain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sustain-list li {
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #1A1A1A;
  position: relative;
}
.sustain-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: #04AEEF;
  font-weight: 900;
  font-size: 14px;
}
.sustain-list--white li {
  color: rgba(255, 255, 255, 0.94);
}
.sustain-list--white li::before {
  color: #67D2F0;
}

/* The quote */
.sustain-quote {
  background: #fff;
  border-left: 4px solid #04AEEF;
  border-radius: 12px;
  padding: 32px 36px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 6px 22px rgba(1, 34, 65, 0.08);
}
.quote-text {
  font-size: 18px;
  line-height: 1.55;
  color: #012241;
  font-style: italic;
  margin: 0 0 12px;
  font-weight: 500;
}
.quote-attr {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .sustainability { padding: 56px 0 40px; }
  .sustain-stats, .sustain-grid {
    grid-template-columns: 1fr;
  }
  .sustain-num { font-size: 40px; }
}
