:root {
  --bg-1: #3a3a40;
  --bg-2: #32323a;
  --card: #ffffff;
  --ink: #f4f2f0;
  --ink-soft: #d7d5d9;
  --ink-dark: #2b2a30;
  --rose: #C45670;
  --rose-deep: #A03050;
  --silver: #c9cdd6;
  --silver-line: rgba(201, 205, 214, 0.35);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --maxw: 880px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--ink);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
}

h1, h2, h3, .brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 40px);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(20px, 5vw, 40px) 0 clamp(10px, 3vw, 20px);
}

.header img {
  width: min(220px, 60vw);
  height: auto;
  max-width: 100%;
}

.header .tagline {
  color: var(--silver);
  font-size: 0.95em;
  max-width: 46ch;
}

.card {
  background: var(--card);
  color: var(--ink-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 34px);
  margin-bottom: clamp(16px, 3vw, 24px);
  min-width: 0;
}

.card h2 {
  color: var(--rose-deep);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-top: 0;
}

.highlight-banner {
  border: 1.5px solid var(--rose);
  background: #fdf4f6;
  color: var(--ink-dark);
  border-radius: var(--radius);
  padding: clamp(14px, 3vw, 22px);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.highlight-banner p { color: var(--ink-dark); }

.highlight-banner .eyebrow {
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nda-box {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid var(--silver-line);
  border-radius: 12px;
  padding: clamp(12px, 3vw, 20px);
  background: #faf9f8;
  font-size: 0.92em;
  line-height: 1.7;
}

.nda-box h3 { margin-top: 0; }
.nda-box p { margin: 0 0 1em; }

label { display: block; font-weight: 600; margin: 18px 0 6px; }

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--silver-line);
  font-family: inherit;
  font-size: 1em;
  min-height: 24px;
}

input[type="text"]:focus, input[type="email"]:focus, button:focus, a.btn:focus, .track input:focus {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}

.checkline input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  accent-color: var(--rose-deep);
  margin-top: 2px;
}

.checkline label { margin: 0; font-weight: 500; }

.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(12px, 2.5vw, 18px);
}

.track {
  border: 1.5px solid var(--silver-line);
  border-radius: 14px;
  padding: clamp(14px, 3vw, 20px);
  min-width: 0;
  position: relative;
  cursor: pointer;
}

.track.featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,86,112,0.15);
}

.track .ribbon {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.track h3 { margin: 0 0 8px; color: var(--ink-dark); font-size: 1.1em; padding-right: 40px; }
.track ul { margin: 10px 0 0; padding-left: 1.2em; }
.track ul li { margin-bottom: 6px; }

.track-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  min-width: 24px;
  accent-color: var(--rose-deep);
}

button, a.btn {
  display: inline-block;
  background: var(--rose-deep);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
}

button.secondary, a.btn.secondary {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-deep);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.stepper {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: clamp(14px, 3vw, 22px);
  flex-wrap: wrap;
}

.stepper span {
  font-size: 0.75em;
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--silver-line);
}

.stepper span.active {
  color: #fff;
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.hidden { display: none !important; }

.agenda-list { list-style: none; padding: 0; margin: 0; }
.agenda-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--silver-line);
}
.agenda-list li:last-child { border-bottom: none; }

.pill {
  display: inline-block;
  background: rgba(196,86,112,0.12);
  color: var(--rose-deep);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9em;
  margin-bottom: 12px;
}

.stub-note {
  background: #faf6f7;
  border: 1px dashed var(--silver-line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9em;
  color: #55535a;
}

.footer {
  text-align: center;
  color: var(--silver);
  font-size: 0.85em;
  padding: clamp(20px, 4vw, 36px) 0 10px;
}

.footer a { color: var(--rose); }

@media print {
  body { background: #fff; color: #000; }
  .no-print { display: none !important; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

@media (max-width: 560px) {
  .btn-row { flex-direction: column; }
  .btn-row button, .btn-row a.btn { width: 100%; }
}
