:root {
  --color-bg-primary: #0a0e12;
  --color-bg-secondary: #10151b;
  --color-bg-tertiary: #161d24;
  --color-surface: #1b232c;
  --color-surface-hover: #212b35;
  --color-border: #26313c;
  --color-border-strong: #34414d;
  --color-text-primary: #e9edf1;
  --color-text-secondary: #a3b0bb;
  --color-text-muted: #6e7b87;
  --color-accent-green: #3cf28b;
  --color-accent-green-dim: #24b568;
  --color-accent-cyan: #29d3ee;
  --color-accent-magenta: #ff5fae;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,.55), 0 8px 20px -6px rgba(0,0,0,.4);
  --shadow-glow-green: 0 0 0 1px rgba(60,242,139,.35), 0 10px 30px -10px rgba(60,242,139,.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 42px 42px;
}


.main-navigation-container {
  background: rgba(16, 21, 27, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(0,0,0,0);
  transition: box-shadow .35s ease;
}
.main-navigation-container.nav-scrolled-shadow {
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.7), 0 4px 10px rgba(0,0,0,.4);
}
.site-logo-link { transition: opacity .3s ease, transform .3s ease; }
.site-logo-link:hover { opacity: .85; transform: translateY(-1px); }

.nav-link-item {
  position: relative;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: .35rem 0;
  transition: color .3s ease;
}
.nav-link-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent-green);
  transition: width .3s ease;
}
.nav-link-item:hover, .nav-link-item.is-active { color: var(--color-text-primary); }
.nav-link-item:hover::after, .nav-link-item.is-active::after { width: 100%; }

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--color-accent-green);
  color: #08130d;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-green);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.cta-button-primary:hover {
  background: #59ffa5;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(60,242,139,.5), 0 16px 34px -10px rgba(60,242,139,.55);
}
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: .95rem;
  padding: .78rem 1.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  transition: border-color .3s ease, transform .3s ease, background .3s ease, color .3s ease;
  min-height: 44px;
}
.cta-button-secondary:hover {
  border-color: var(--color-accent-cyan);
  color: var(--color-accent-cyan);
  transform: translateY(-2px);
  background: rgba(41,211,238,.06);
}

.mobile-menu-toggle-button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  background: var(--color-surface);
  font-size: 1.1rem;
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
}
.mobile-menu-toggle-button:hover { background: var(--color-surface-hover); border-color: var(--color-border-strong); }
.mobile-menu-toggle-button:active { transform: scale(.94); }


.mobile-menu-overlay-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,7,9,.7);
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 60;
}
.mobile-menu-overlay-backdrop.is-visible { opacity: 1; visibility: visible; }
.mobile-menu-slide-panel {
  position: fixed; top: 0; right: 0;
  height: 100vh; width: min(85vw, 380px);
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.9,.34,1);
  z-index: 70;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,.5);
}
.mobile-menu-slide-panel.is-open { transform: translateX(0); }
.mobile-menu-close-button {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  transition: background .3s ease, transform .3s ease;
}
.mobile-menu-close-button:hover { background: var(--color-surface-hover); transform: rotate(90deg); }
.mobile-nav-link-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: .9rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color .3s ease, padding-left .3s ease;
}
.mobile-nav-link-item:hover { color: var(--color-accent-green); padding-left: .4rem; }


.homepage-hero-section, .inner-page-hero-section {
  background: radial-gradient(ellipse at top right, rgba(60,242,139,.10), transparent 55%), radial-gradient(ellipse at bottom left, rgba(41,211,238,.08), transparent 50%), var(--color-bg-primary);
}
.hero-scanline-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  z-index: 1;
}
.hero-eyebrow-label {
  font-family: 'Montserrat', monospace;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.section-eyebrow-label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent-cyan);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-family: monospace;
}
.hero-display-heading {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text-primary);
}
.hero-subheading-text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-top: 1.5rem;
  max-width: 46ch;
  line-height: 1.7;
}
.inner-page-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}
.terminal-status-line {
  font-family: monospace;
  font-size: .9rem;
  color: var(--color-accent-green-dim);
  border: 1px solid var(--color-border);
  background: rgba(60,242,139,.05);
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
}
.terminal-cursor-blink {
  display: inline-block;
  width: .55em; height: 1em;
  background: var(--color-accent-green);
  margin-left: .3em;
  vertical-align: -2px;
  animation: cursorBlink 1s steps(1) infinite;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-badge {
  position: absolute;
  bottom: -18px; left: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: .7rem 1.1rem;
  display: flex; gap: .6rem; align-items: baseline;
  box-shadow: var(--shadow-md);
}


.section-clip-angle-top {
  background: var(--color-bg-secondary);
  clip-path: polygon(0 4.5vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -4vw;
  padding-top: 4vw;
  position: relative;
  z-index: 1;
}
.section-clip-angle-bottom {
  background: var(--color-bg-tertiary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5vw), 0 100%);
  margin-bottom: -4vw;
  position: relative;
  z-index: 1;
}
.homepage-hero-section { position: relative; z-index: 2; }
.homepage-facilitator-section, .homepage-final-cta-section { background: var(--color-bg-primary); }


.section-heading-large {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}
.section-heading-medium {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}
.body-text-relaxed {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}
.problem-list-items { display: flex; flex-direction: column; gap: .8rem; }
.problem-list-items li { color: var(--color-text-secondary); display: flex; gap: .6rem; align-items: flex-start; }
.problem-list-items i { color: var(--color-accent-green); margin-top: .3rem; }

.text-link-with-underline {
  position: relative;
  color: var(--color-accent-cyan);
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}
.text-link-with-underline:hover { border-color: var(--color-accent-cyan); color: #6fe6fb; }


.service-card-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.service-card-wrapper:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-green-dim);
  background: var(--color-surface-hover);
}
.service-card-wrapper--note { border-style: dashed; }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(60,242,139,.1);
  color: var(--color-accent-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: background .3s ease, transform .3s ease;
}
.service-card-wrapper:hover .service-card-icon { transform: scale(1.08) rotate(-4deg); }
.service-card-heading { font-size: 1.15rem; font-weight: 700; margin-bottom: .7rem; color: var(--color-text-primary); }
.service-card-text { color: var(--color-text-secondary); font-size: .96rem; line-height: 1.65; }

.section-image-shadow { box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }

.format-timeline-wrapper { display: flex; flex-direction: column; gap: 1.4rem; }
.format-timeline-item {
  display: flex; gap: 1.6rem; align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.7rem;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.format-timeline-item:hover { transform: translateX(6px); border-color: var(--color-accent-cyan); background: var(--color-surface-hover); }
.format-timeline-number { font-family: monospace; font-size: 1.6rem; font-weight: 700; color: var(--color-accent-green); min-width: 3ch; }
.format-timeline-heading { font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; }
.format-timeline-text { color: var(--color-text-secondary); font-size: .95rem; }

.audience-card-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.audience-card-wrapper:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.audience-card-heading { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; }
.audience-card-list { display: flex; flex-direction: column; gap: .9rem; color: var(--color-text-secondary); font-size: .97rem; padding-left: .2rem; }
.audience-card-list li { list-style: none; position: relative; padding-left: 1.1rem; }
.audience-card-list li::before { content: "–"; position: absolute; left: 0; color: var(--color-accent-cyan); }


.offering-number-label { font-family: monospace; font-size: 2.2rem; font-weight: 800; color: var(--color-accent-green); opacity: .5; }
.offering-detail-block { padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.offering-detail-block:last-child { border-bottom: none; }

.programme-session-card {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.programme-session-card:hover { transform: translateY(-4px); border-color: var(--color-accent-green-dim); box-shadow: var(--shadow-md); }
.programme-session-number { font-family: monospace; font-weight: 700; color: var(--color-accent-cyan); min-width: 110px; font-size: .95rem; }
.programme-session-heading { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.programme-session-text { color: var(--color-text-secondary); font-size: .96rem; line-height: 1.7; }


.contact-split-wrapper {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}
.contact-map-panel { position: relative; min-height: 420px; background: var(--color-bg-tertiary); }
.contact-side-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.contact-map-frame { position: absolute; inset: 24px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border-strong); box-shadow: var(--shadow-md); }
.contact-form-panel { padding: 2.6rem 2.4rem; }
.contact-form-field-group { display: flex; flex-direction: column; gap: .4rem; }
.contact-form-label { font-size: .88rem; font-weight: 600; color: var(--color-text-secondary); }
.contact-form-input {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--color-text-primary);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  min-height: 44px;
  width: 100%;
}
.contact-form-input:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(60,242,139,.15);
  background: var(--color-surface-hover);
}
.contact-form-checkbox-group { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--color-text-secondary); }
.contact-form-checkbox-group input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--color-accent-green); }

.urgent-inquiry-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-left: 3px solid var(--color-accent-cyan);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.urgent-inquiry-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: var(--radius-sm);
  background: rgba(41,211,238,.1);
  color: var(--color-accent-cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}


.thanks-fullscreen-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0e3d24, #0a2417 55%, #08130d);
  color: #fff;
  position: relative;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.thanks-display-heading { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 1.3rem; }
.thanks-body-text { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 2.2rem; line-height: 1.7; }
.thanks-outline-button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff; color: #fff; font-weight: 700;
  padding: .9rem 2rem; border-radius: var(--radius-sm);
  transition: background .3s ease, color .3s ease, transform .3s ease;
  min-height: 44px;
}
.thanks-outline-button:hover { background: #fff; color: #0a2417; transform: translateY(-2px); }


.legal-page-content { padding-top: 0; min-height: 60vh; }
.legal-updated-date { color: var(--color-text-muted); font-size: .9rem; margin-bottom: 2.5rem; font-family: monospace; }
.legal-content-block { display: flex; flex-direction: column; gap: 2.2rem; }
.legal-group-heading { font-size: 1.25rem; font-weight: 700; color: var(--color-text-primary); margin-bottom: .9rem; }
.legal-bullet-group { display: flex; flex-direction: column; gap: .7rem; padding-left: 1.1rem; }
.legal-bullet-group li { color: var(--color-text-secondary); list-style: disc; line-height: 1.7; }
.legal-plain-paragraph { color: var(--color-text-secondary); line-height: 1.75; }
.legal-numbered-clauses { gap: 1.8rem; }
.legal-clause-item { display: flex; gap: 1rem; }
.legal-clause-number { font-family: monospace; font-weight: 700; color: var(--color-accent-green); font-size: 1.1rem; min-width: 2ch; }
.legal-clause-heading { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.legal-cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.legal-cookie-table th, .legal-cookie-table td { border: 1px solid var(--color-border); padding: .8rem 1rem; text-align: left; font-size: .92rem; color: var(--color-text-secondary); }
.legal-cookie-table th { background: var(--color-surface); color: var(--color-text-primary); font-weight: 700; }


.site-footer-container {
  background: #060809;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}
.footer-description-text { font-size: .92rem; line-height: 1.7; color: var(--color-text-muted); max-width: 32ch; }
.footer-column-heading { color: var(--color-text-primary); font-size: .95rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-links-list { display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; }
.footer-links-list a { transition: color .3s ease, padding-left .3s ease; display: inline-block; }
.footer-links-list a:hover { color: var(--color-accent-green); padding-left: 3px; }
.footer-legal-links li { color: var(--color-text-muted); }
.footer-bottom-bar {
  border-top: 1px solid var(--color-border);
  margin-top: 3.5rem; padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .82rem; color: var(--color-text-muted);
}
.footer-disclaimer-text { color: var(--color-text-muted); }


.cookie-consent-backdrop-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,6,8,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.cookie-consent-backdrop-overlay.is-visible { opacity: 1; visibility: visible; }
.cookie-consent-modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  padding: 2.2rem 2.2rem 1.8rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(.98);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  max-height: 88vh; overflow-y: auto;
}
.cookie-consent-backdrop-overlay.is-visible .cookie-consent-modal-box { transform: translateY(0) scale(1); opacity: 1; }
.cookie-consent-heading { font-size: 1.3rem; font-weight: 800; margin-bottom: .8rem; color: var(--color-text-primary); }
.cookie-consent-description { color: var(--color-text-secondary); font-size: .92rem; line-height: 1.65; margin-bottom: 1.4rem; }
.cookie-category-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: .9rem 0; border-top: 1px solid var(--color-border);
}
.cookie-category-row:first-of-type { border-top: none; }
.cookie-category-title { font-weight: 700; font-size: .93rem; color: var(--color-text-primary); margin-bottom: .2rem; }
.cookie-category-desc { font-size: .84rem; color: var(--color-text-muted); }
.cookie-toggle-switch { position: relative; width: 46px; height: 26px; min-width: 46px; }
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0; background: var(--color-border-strong);
  border-radius: 999px; cursor: pointer; transition: background .3s ease;
}
.cookie-toggle-slider::before {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px; background: #fff; border-radius: 50%;
  transition: transform .3s ease;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--color-accent-green); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle-switch input:disabled + .cookie-toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-consent-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.cookie-consent-actions button { flex: 1; min-width: 140px; }

@media (max-width: 640px) {
  .hero-image-badge { left: 12px; bottom: -14px; padding: .55rem .8rem; }
  .contact-form-panel { padding: 2rem 1.4rem; }
}