/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

<style>

/* ─────────────────────────────────────────
RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #1A3540;
  min-height: 100vh;
}
.f-two-col {
  align-items: center;
}
p {
  margin: 0;
}

/* ─────────────────────────────────────────
CSS VARIABLES
───────────────────────────────────────── */
:root {
  --teal:         #1E4854;
  --teal-dark:    #1A3540;
  --green:        #07A279;
  --green-dark:   #07A279;
  --orange:       #DF7543;
  --mint-bg:      #EFF6F2;
  --mint-border:  #C8DED4;
  --mint-light:   #DFF2E9;
  --body-text:    #1E4854;
  --border:       #E8E9E9;
  --muted:        #A0B0B8;
  --muted-bg:     #F7F8F8;
}

/* ─────────────────────────────────────────
PAGE WRAPPER
───────────────────────────────────────── */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ─────────────────────────────────────────
TOP NAV
───────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 26px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 56px;
}

.wordmark {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wordmark sup {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.6;
  vertical-align: super;
}

.nav-cta {
  display: inline-block;
  padding: 9px 18px;
  background-color: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.nav-cta:hover { background-color: var(--green-dark); }

/* ─────────────────────────────────────────
SERIES HERO
───────────────────────────────────────── */
.series-hero {
  margin-bottom: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.series-h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.series-h1 em {
  font-style: italic;
  color: var(--green);
}

.series-h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #757575;
  margin-bottom: 22px;
}

.series-deck {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.series-note {
  font-size: 13px;
  color: #757575;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 13px 24px;
  background-color: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.btn-primary:hover { background-color: var(--green-dark); }

.btn-ghost {
  display: inline-block;
  padding: 13px 24px;
  background: transparent;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #C0D5C8;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ─────────────────────────────────────────
SECTION HEADERS
───────────────────────────────────────── */
.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.sec-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.sec-sub {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────
SESSION CARDS
───────────────────────────────────────── */
.sessions-section {
  margin-bottom: 72px;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.sess-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.sess-card.active { background: #FFFDF9; }

.sess-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #AABCC5;
  margin-bottom: 10px;
}

.sess-card.active .sess-num { color: var(--green); }

.sess-date {
  font-size: 12px;
  font-weight: 600;
  color: #757575;
  margin-bottom: 10px;
}

.sess-card.active .sess-date { color: var(--teal); }

.sess-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #757575;
  line-height: 1.3;
  margin-bottom: 8px;
}

.sess-card.active .sess-title { color: var(--teal-dark); }

.sess-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.sess-card.active .sess-sub { color: var(--body-text); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.b-live  { background: var(--mint-light); color: var(--green); }
.b-soon  { background: #F0F3F5; color: #96B5A8; }
.b-od    { background: #E0EFFC; color: #007BC2; }

.sess-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.sess-link:hover { text-decoration: underline; }
.sess-link.od { color: #007BC2; }
.sess-muted { font-size: 13px; color: var(--muted); }

/* ─────────────────────────────────────────
TWO TRACKS CONCEPT
───────────────────────────────────────── */
.tracks-section {
  margin-bottom: 56px;
}

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.track-card {
  padding: 32px 28px;
  background: #fff;
}

.track-card.workshop { background: var(--mint-bg); }

.track-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.track-card.workshop .track-type { color: var(--teal); }

.track-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tb-open { background: var(--mint-light); color: var(--green); }
.tb-cust { background: var(--teal); color: #fff; }

.track-h {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.track-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
PHASES — FULL PROGRAM SCHEDULE
───────────────────────────────────────── */
.schedule-section {
  margin-bottom: 40px;
}

.phases {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.phase + .phase {
  border-top: 0.5px solid var(--border);
}

/* Webinar side — always white */
.phase-webinar {
  padding: 32px 28px;
  border-right: 0.5px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

/* Workshop side — mint when active, light gray when inactive */
.phase-workshop {
  padding: 32px 28px;
  background: var(--mint-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.phase.inactive .phase-workshop {
  background: var(--muted-bg);
}

/* Track labels */
.ph-track-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.phase-webinar  .ph-track-label { color: var(--green); }
.phase-workshop .ph-track-label { color: var(--teal); }
.phase.inactive .phase-workshop .ph-track-label { color: var(--muted); }

/* Date + title */
.ph-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.phase.inactive .phase-webinar .ph-date { color: #757575; }

.ph-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--teal-dark);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 0 24px;
}

.phase.inactive .phase-webinar .ph-title { color: #757575; }

/* Bottom CTA area */
.ph-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
  width: fit-content;
}

.pb-live { background: var(--mint-light); color: var(--green); }
.pb-soon { background: #F0F3F5; color: #96B5A8; }
.pb-od   { background: #E0EFFC; color: #007BC2; }

/* Equal-weight outlined buttons — both sides */
.ph-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid;
  background: transparent;
  transition: background-color 0.15s, border-color 0.15s;
}

.ph-btn.webinar  { color: var(--green); border-color: var(--green); }
.ph-btn.webinar:hover { background: var(--mint-light); }
.ph-btn.od       { color: #007BC2; border-color: #007BC2; }
.ph-btn.od:hover { background: #E0EFFC; }
.ph-btn.workshop { color: var(--teal); border-color: #B8D4C4; background: #fff; }
.ph-btn.workshop:hover { border-color: var(--teal); }
.ph-btn.muted    { color: var(--muted); border-color: #D8E4E0; pointer-events: none; background: #fff; }

/* Workshop content */
.wk-cust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal);
  color: #fff;
  margin-bottom: 16px;
  width: fit-content;
}

.phase.inactive .wk-cust-badge { background: #C8D4D8; }

.wk-sessions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding-bottom: 24px;
}

.wk-sess {
  font-size: 13px;
  color: var(--body-text);
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.wk-sess strong {
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
  min-width: 44px;
}

.phase.inactive .wk-sess        { color: var(--muted); }
.phase.inactive .wk-sess strong { color: var(--muted); }

.wk-tbd {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  flex: 1;
  padding-bottom: 24px;
}

.wk-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk-leader {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 14px;
  border-top: 0.5px solid var(--mint-border);
  margin-bottom: 12px;
}

.phase.inactive .wk-leader { border-top-color: #E4E8E8; }

.wk-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.phase.inactive .wk-avatar { background: #C8D4D8; }

.wk-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}

.wk-role {
  font-size: 11px;
  color: #6A8A78;
}

.phase.inactive .wk-name,
.phase.inactive .wk-role { color: var(--muted); }

/* ─────────────────────────────────────────
CUSTOMER FOMO STRIP
───────────────────────────────────────── */
.fomo {
  background: var(--mint-bg);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 56px;
}

.fomo-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.fomo p {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 10px;
}

.fomo-btn {
  display: inline-block;
  padding: 11px 20px;
  background-color: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s;
}

.fomo-btn:hover { background-color: var(--green-dark); }

/* ─────────────────────────────────────────
FOOTER
───────────────────────────────────────── */
.page-footer {
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-wordmark {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.footer-wordmark sup {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.6;
}

.footer-link {
  font-size: 12px;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
RESPONSIVE — TABLET
───────────────────────────────────────── */
@media (max-width: 768px) {
  .page { padding: 0 20px 60px; }

  .series-h1 { font-size: 38px; }

  .session-grid,
  .tracks-grid,
  .phase { grid-template-columns: 1fr; }

  .phase-webinar { border-right: none; border-bottom: 0.5px solid var(--border); }

  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
}

/* ─────────────────────────────────────────
RESPONSIVE — MOBILE
───────────────────────────────────────── */
@media (max-width: 480px) {
  .series-h1 { font-size: 30px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
}

</style>