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

:root {
  --teal-50: #E1F5EE; --teal-100: #9FE1CB; --teal-200: #5DCAA5;
  --teal-600: #0F6E56; --teal-800: #085041; --teal-900: #04342C;
  --coral-50: #FAECE7; --coral-600: #993C1D;
  --bg: #ffffff; --bg-secondary: #f5f5f3;
  --text: #1a1a18; --text-secondary: #6b6b67;
  --border: rgba(0,0,0,0.12);
  --radius-md: 8px; --radius-lg: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #f0ede8;
  color: var(--text);
  min-height: 100vh;
  padding: 3rem 1rem;
}

.page {
  max-width: 680px;
  margin: 0 auto;
}

/* HERO */
.hero {
  background: var(--teal-900);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(29,158,117,0.15);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal-200); margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 500; line-height: 1.1; color: #fff; margin-bottom: 0.5rem;
}
.hero h1 em { font-style: italic; color: var(--teal-100); }
.hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 540px; margin-top: 1rem;
}
.tracks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 2rem;
}
.track-pill {
  background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 40px; padding: 8px 14px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.85);
}
.track-pill strong {
  display: block; font-weight: 500; color: var(--teal-100);
  font-size: 11px; margin-bottom: 2px; letter-spacing: 1px; text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 1rem;
}

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 2rem; }
.why-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem 1.25rem;
}
.why-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 16px;
}
.why-icon.teal { background: var(--teal-50); color: var(--teal-600); }
.why-icon.coral { background: var(--coral-50); color: var(--coral-600); }
.why-card h3 { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.why-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* PROFILE CARDS */
.who-section { margin-bottom: 2rem; }
.profile-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 1rem; }
.profile-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem; text-align: center;
}
.profile-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.profile-card h3 { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.profile-card p { font-size: 11.5px; color: var(--text-secondary); line-height: 1.5; }

/* QUOTE */
.quote-block {
  border-left: 3px solid var(--teal-200); padding: 1.1rem 1.25rem; margin-bottom: 2rem;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; font-style: italic; font-weight: 400; color: var(--text); line-height: 1.5;
}
.quote-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.75rem; flex-wrap: wrap; gap: 8px;
}
.quote-footer span { font-size: 12px; color: var(--text-secondary); }
.quote-footer a {
  font-size: 12px; font-weight: 500; color: var(--teal-600);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.quote-footer a:hover { text-decoration: underline; }

/* FORM */
.form-section {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 2rem 1.75rem; margin-bottom: 2rem;
}
.form-header { margin-bottom: 1.75rem; }
.form-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--text); line-height: 1.2; margin-bottom: 0.4rem;
}
.form-header p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-full { margin-bottom: 12px; }

label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 5px; letter-spacing: 0.3px;
}

input[type=text], input[type=email], select, textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 9px 12px; border: 0.5px solid var(--border); border-radius: var(--radius-md);
  background: #fff; color: var(--text); outline: none; transition: border-color 0.15s;
  appearance: none; -webkit-appearance: none;
}
input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus {
  border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(15,110,86,0.1);
}
textarea { height: 90px; resize: none; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b67' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px;
}

.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0.5rem; }
.topic-check {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border: 0.5px solid var(--border); border-radius: var(--radius-md);
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
  font-size: 12.5px; color: var(--text);
}
.topic-check:has(input:checked) { border-color: var(--teal-600); background: var(--teal-50); }
.topic-check input { accent-color: var(--teal-600); margin: 0; flex-shrink: 0; }

.divider { border: none; border-top: 0.5px solid var(--border); margin: 1.75rem 0; }

.consent-row {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 1rem;
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}
.consent-row input { margin-top: 2px; accent-color: var(--teal-600); flex-shrink: 0; }
.consent-row a { color: var(--teal-600); }

.submit-btn {
  width: 100%; padding: 13px; background: var(--teal-900); color: #fff;
  border: none; border-radius: var(--radius-md); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer; letter-spacing: 0.3px; margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.15s;
}
.submit-btn:hover { opacity: 0.88; }

/* RESPONSIVE */
@media (max-width: 520px) {
  .hero { padding: 2rem 1.5rem; }
  .hero h1 { font-size: 32px; }
  .tracks { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .profile-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .form-section { padding: 1.5rem 1.25rem; }
}
