/* Panacea Innovations — static site
   Brand family shared with MMEasy: deep/bright teal + Playfair Display. */

:root {
  --teal-deep: #2D7A6F;
  --teal: #1FA38F;
  --mint: #E8F5F2;
  --ink: #0F1A18;
  --muted: #5A6B68;
  --line: #DDE8E5;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #FFFFFF;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 760px; }

h1, h2, h3 {
  font-family: var(--serif);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal-deep);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark em {
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.site-nav a:hover { color: var(--teal-deep); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 88px 0 96px;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -1.5px;
}

.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.6vw, 21px);
  opacity: 0.92;
  max-width: 640px;
  margin: 20px auto 0;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

.btn-light {
  background: #FFFFFF;
  color: var(--teal-deep);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover { border-color: #FFFFFF; }

.btn-primary {
  background: var(--teal);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover { background: var(--teal-deep); }

/* ===== Sections ===== */
.section { padding: 72px 0; }

.section-tint { background: var(--mint); }

.section h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--teal-deep);
  margin-bottom: 24px;
}

.section p + p { margin-top: 14px; }

/* ===== Product card ===== */
.product-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(15, 26, 24, 0.06);
  flex-wrap: wrap;
}

.product-brand {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-radius: 16px;
  color: #FFFFFF;
  text-align: center;
  padding: 34px 30px;
  min-width: 180px;
  flex: 0 0 auto;
}

.product-mm {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
}

.product-easy {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  margin-top: 4px;
}

.product-card + .product-card { margin-top: 22px; }

.product-brand--clotclock {
  background: linear-gradient(135deg, #6E1A27 0%, #8C2332 100%);
}

.product-clockface {
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px auto 0;
  color: #FFFFFF;
  opacity: 0.9;
}

.preview-badge {
  display: inline-block;
  vertical-align: 3px;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #8C2332;
  border: 1.5px solid #8C2332;
  border-radius: 999px;
  padding: 2px 10px;
}

.product-body { flex: 1 1 320px; }

.product-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-points {
  margin: 16px 0 22px 20px;
}

.product-points li { margin-bottom: 6px; }

.product-disclaimer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.more-soon {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* ===== Principles ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.principle {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
}

.principle h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--teal-deep);
}

.principle p { font-size: 15.5px; }

/* ===== Contact ===== */
#contact .btn { margin-top: 10px; }

.contact-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .fineprint {
  margin-top: 8px;
  font-size: 12.5px;
  opacity: 0.85;
}

/* ===== Small screens ===== */
@media (max-width: 560px) {
  .hero { padding: 64px 0 72px; }
  .section { padding: 52px 0; }
  .product-card { padding: 22px; }
  .product-brand { width: 100%; }
}
