/* Showcase demo shell — imports site palette via CSS custom properties */
:root {
  --bg: #f4ede1;
  --bg-deep: #e9dcc8;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf3;
  --brand: #0f766e;
  --brand-deep: #0b5c56;
  --brand-soft: #d9efea;
  --accent: #b75e3d;
  --accent-soft: #f3dfd6;
  --ink: #1d211d;
  --muted: #5c645f;
  --line: rgba(29, 33, 29, 0.11);
  --shadow: 0 24px 54px rgba(67, 54, 36, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Full-page demo shell */
.showcase-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

/* Centered pitch section */
.showcase-pitch {
  max-width: 680px;
  width: 100%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.showcase-pitch .eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 14px;
  border-radius: 999px;
}

.showcase-pitch h1,
.showcase-pitch h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.showcase-pitch p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
}

/* Primary CTA button — matches main site .btn.primary */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  cursor: pointer;
  border: none;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
}

.btn.primary:hover {
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 33, 29, 0.1);
  color: var(--ink);
}

/* Back link */
.showcase-back {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 160ms ease;
  margin-top: 8px;
}

.showcase-back:hover {
  color: var(--brand);
}

.showcase-back::before {
  content: '←';
}

/* Showcase header bar */
.showcase-header {
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.showcase-header .brand {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 560px) {
  .showcase-pitch {
    padding: 36px 24px;
  }

  .showcase-pitch h1,
  .showcase-pitch h2 {
    font-size: 1.6rem;
  }
}
