/* ============================================================
   SIXNAR CAPMAR — MAIN STYLESHEET
   Color Palette:
   --color-bg:        #0F0F14  (near-black, slightly blue-tinted)
   --color-surface:   #16161E
   --color-card:      #1E1E2A
   --color-border:    #2A2A3A
   --color-primary:   #6C63FF  (violet)
   --color-secondary: #A78BFA  (soft lavender)
   --color-accent:    #38BDF8  (sky blue)
   --color-gold:      #F59E0B  (amber)
   --color-text:      #E8E8F0
   --color-muted:     #8888A0
   --color-light-bg:  #F5F5FA
   --color-light-card:#FFFFFF
   ============================================================ */


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

:root {
  --color-bg: #0F0F14;
  --color-surface: #16161E;
  --color-card: #1E1E2A;
  --color-border: #2A2A3A;
  --color-primary: #6C63FF;
  --color-primary-dark: #5A52E0;
  --color-secondary: #A78BFA;
  --color-accent: #38BDF8;
  --color-gold: #F59E0B;
  --color-text: #E8E8F0;
  --color-muted: #8888A0;
  --color-light-bg: #F5F5FA;
  --color-light-card: #FFFFFF;
  --color-light-border: #E2E2EE;
  --color-light-text: #1A1A2E;
  --color-light-muted: #6060808;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.14);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.28), 0 4px 12px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.36), 0 8px 20px rgba(0,0,0,0.22);
  --shadow-glow: 0 0 24px rgba(108,99,255,0.28), 0 4px 16px rgba(108,99,255,0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --font-body: 'Inter', system-ui, sans-serif;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition-base); }

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p { color: var(--color-muted); line-height: 1.75; }


.Container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.Container--narrow {
  max-width: 820px;
}


.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.Btn:hover { transform: translateY(-2px); }
.Btn:active { transform: translateY(0); }

.Btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md), 0 0 16px rgba(108,99,255,0.2);
}
.Btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.Btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255,255,255,0.2);
}
.Btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.Btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.Btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.Btn--sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.Btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }
.Btn--xl { padding: 1rem 2.5rem; font-size: 1.05rem; }


.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color var(--transition-slow),
              backdrop-filter var(--transition-slow),
              border-color var(--transition-slow),
              box-shadow var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.SiteHeader--transparent {
  background: transparent;
  backdrop-filter: none;
}

.SiteHeader--solid,
.SiteHeader.is-scrolled {
  background: rgba(15,15,20,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.SiteHeader-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.SiteHeader-logoText {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 auto;
}

.SiteHeader-navLink {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background-color var(--transition-base);
  text-decoration: none;
}

.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}

.SiteHeader-cta { flex-shrink: 0; }

.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base);
  flex-shrink: 0;
}

.SiteHeader-hamburger:hover { background: rgba(255,255,255,0.08); }

.SiteHeader-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.MobileMenu.is-open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}

.MobileMenu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-base);
}
.MobileMenu-close:hover { background: rgba(255,255,255,0.16); }

.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
}

.MobileMenu.is-open .MobileMenu-nav {
  opacity: 1;
  transform: translateY(0);
}

.MobileMenu-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-base), padding-left var(--transition-base);
}
.MobileMenu-link:hover { color: var(--color-primary); padding-left: 0.5rem; }

.MobileMenu-cta {
  margin-top: var(--space-lg);
  align-self: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease 0.4s, transform 0.35s ease 0.4s;
}
.MobileMenu.is-open .MobileMenu-cta {
  opacity: 1;
  transform: translateY(0);
}

.MobileMenu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.MobileMenu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}


.Section {
  padding: var(--space-2xl) 0;
}

.Section--light {
  background-color: var(--color-light-bg);
}

.Section--light h1,
.Section--light h2,
.Section--light h3,
.Section--light h4 {
  color: var(--color-light-text);
}

.Section--light p,
.Section--light .BentoCell-body {
  color: #50507A;
}

.Section--dark {
  background-color: var(--color-bg);
}

.Section--gradient {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-bg) 60%, #1a1040 100%);
}


.SectionHeader {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.SectionHeader-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.Section--light .SectionHeader-label {
  background: rgba(108,99,255,0.1);
  color: var(--color-primary-dark);
}

.SectionHeader-heading {
  margin-bottom: 0.75rem;
}

.SectionHeader-sub {
  max-width: 600px;
  margin: 0 auto;
}


.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-xl);
}

.PageHero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.PageHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.PageHero-bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,15,20,0.92) 0%,
    rgba(15,15,20,0.75) 50%,
    rgba(108,99,255,0.15) 100%
  );
}

.PageHero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.PageHero-headingWrap {
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.PageHero-heading--clip {
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background-image: url('../images/hero-graduates-future.jpg');
  background-size: cover;
  background-position: center 30%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: brightness(1.4) contrast(1.1);
}

.PageHero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232,232,240,0.85);
  max-width: 580px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.PageHero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.PageHero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(232,232,240,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.MarqueeStrip {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary));
  background-size: 300% 100%;
  animation: gradientShift 6s linear infinite;
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.MarqueeStrip--reverse {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-secondary), var(--color-accent));
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.MarqueeStrip-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marqueeScroll 28s linear infinite;
}

.MarqueeStrip-track--reverse {
  animation: marqueeScrollReverse 28s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.MarqueeStrip-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.MarqueeStrip-dot {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.5rem !important;
  align-self: center;
}


.BentoGrid {
  display: grid;
  gap: 16px;
  container-type: inline-size;
  container-name: bento;
}

.BentoGrid--intro {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.BentoGrid--gallery {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.BentoCell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.BentoCell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.BentoCell--2x1 { grid-column: span 2; }
.BentoCell--1x2 { grid-row: span 2; }
.BentoCell--2x2 { grid-column: span 2; grid-row: span 2; }

.BentoCell--dark {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.BentoCell--accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.BentoCell--glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-sm);
}

.BentoCell--highlight {
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(108,99,255,0.1));
  border: 1px solid rgba(56,189,248,0.2);
}

.BentoCell--stat {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.BentoCell--quote {
  background: var(--color-card);
  border: 1px solid var(--color-border);
}

.BentoCell--cta {
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(167,139,250,0.15));
  border: 1px solid rgba(108,99,255,0.3);
  grid-column: span 2;
}

.BentoCell--image {
  min-height: 280px;
}

.BentoCell--featured {
  min-height: 400px;
}

.BentoCell-inner {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.BentoCell-inner--centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.BentoCell-inner--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.BentoCell-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
  display: block;
}

.BentoCell-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.BentoCell-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.BentoCell-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.BentoCell--accent .BentoCell-subheading,
.BentoCell--accent .BentoCell-body,
.BentoCell--stat .BentoCell-statLabel {
  color: rgba(255,255,255,0.9);
}

.BentoCell-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.BentoCell-icon--lg { font-size: 2.8rem; }

.BentoCell--accent .BentoCell-icon { color: rgba(255,255,255,0.9); }
.BentoCell--glass .BentoCell-icon { color: var(--color-accent); }
.BentoCell--highlight .BentoCell-icon { color: var(--color-accent); }

.BentoCell-statLabel {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: 0.5rem;
}

.BentoCell-quoteIcon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.BentoCell-quoteText {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
}

.BentoCell-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.BentoCell:hover .BentoCell-img { transform: scale(1.04); }

.BentoCell-imageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.BentoCell-imageOverlay--bottom {
  background: linear-gradient(to top, rgba(15,15,20,0.85) 0%, transparent 55%);
}

.BentoCell-imageTag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(108,99,255,0.7);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.BentoCell-imageHeading {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}


.Section--light .BentoCell--glass {
  background: rgba(108,99,255,0.05);
  border-color: rgba(108,99,255,0.15);
}

.Section--light .BentoCell--dark {
  background: #fff;
  border-color: var(--color-light-border);
  box-shadow: var(--shadow-md);
}

.Section--light .BentoCell--dark .BentoCell-heading { color: var(--color-light-text); }
.Section--light .BentoCell--dark .BentoCell-body { color: #50507A; }
.Section--light .BentoCell--dark .BentoCell-label { color: var(--color-primary); }

.Section--light .BentoCell--glass .BentoCell-subheading,
.Section--light .BentoCell--highlight .BentoCell-subheading { color: var(--color-light-text); }
.Section--light .BentoCell--glass .BentoCell-body,
.Section--light .BentoCell--highlight .BentoCell-body { color: #50507A; }


.ProcessGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.ProcessStep {
  padding: var(--space-lg) var(--space-md);
  position: relative;
  text-align: center;
}

.ProcessStep:not(.ProcessStep--last)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  opacity: 0.4;
}

.ProcessStep-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(108,99,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.ProcessStep-connector {
  display: none;
}

.ProcessStep-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ProcessStep:hover .ProcessStep-icon {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.ProcessStep-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.ProcessStep-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
}


.WorkflowDiagram {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}

.WorkflowNode {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.WorkflowNode:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.WorkflowNode--start {
  border-top: 3px solid var(--color-primary);
}

.WorkflowNode--end {
  border-top: 3px solid var(--color-accent);
}

.WorkflowNode-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm), 0 0 12px rgba(108,99,255,0.2);
}

.WorkflowNode-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-bottom: 0.4rem;
}

.WorkflowNode-content p {
  font-size: 0.82rem;
  color: #50507A;
  line-height: 1.55;
}

.WorkflowArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-xs);
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2.5rem;
  opacity: 0.6;
}

.WorkflowImage {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.WorkflowImage-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.WorkflowImage:hover .WorkflowImage-img { transform: scale(1.03); }


.ComparisonTable-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ComparisonTable {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ComparisonTable thead tr {
  background: rgba(108,99,255,0.1);
  border-bottom: 1px solid var(--color-border);
}

.ComparisonTable th {
  padding: 1.2rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.ComparisonTable th.ComparisonTable-feature {
  text-align: left;
  color: var(--color-muted);
  font-weight: 500;
}

.ComparisonTable-tier--recommended {
  background: rgba(108,99,255,0.08);
  position: relative;
}

.ComparisonTable-badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(108,99,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.ComparisonTable tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-base);
}

.ComparisonTable tbody tr:last-child { border-bottom: none; }
.ComparisonTable tbody tr:hover { background: rgba(255,255,255,0.02); }

.ComparisonTable td {
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  text-align: center;
}

.ComparisonTable td.ComparisonTable-feature {
  text-align: left;
  color: var(--color-text);
  font-weight: 500;
}

.ComparisonTable-check {
  color: #4ADE80;
  font-size: 1rem;
}

.ComparisonTable-minus {
  color: var(--color-border);
  font-size: 0.9rem;
}

.ComparisonTable-cta-row td { padding: 1.2rem 1.5rem; }


.InnerHero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.InnerHero-bg {
  position: absolute;
  inset: 0;
}

.InnerHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.InnerHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,20,0.9) 0%, rgba(15,15,20,0.7) 100%);
}

.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.InnerHero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.InnerHero-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.InnerHero-sub {
  font-size: 1.05rem;
  color: rgba(232,232,240,0.8);
  line-height: 1.7;
}


.HistoryLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.HistoryLayout-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-light-text);
  margin-bottom: var(--space-md);
}

.HistoryLayout-content p {
  color: #50507A;
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.HistoryLayout-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.ValueCard {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.ValueCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(108,99,255,0.3);
}

.ValueCard-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.ValueCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.ValueCard-body {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
}


.TimelineSection { max-width: 700px; margin: 0 auto; }

.TimelineSection-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-light-text);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.Timeline { position: relative; }

.Timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.Timeline-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.Timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  flex-shrink: 0;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.Timeline-content {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.Timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.3rem;
}

.Timeline-content h4 {
  color: var(--color-light-text);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.Timeline-content p {
  font-size: 0.88rem;
  color: #50507A;
  line-height: 1.65;
}


.WorkshopGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.WorkshopCard {
  background: #fff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  container-type: inline-size;
  container-name: workshopcard;
}

.WorkshopCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,99,255,0.2);
}

.WorkshopCard-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.WorkshopCard-content { flex: 1; }

.WorkshopCard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-bottom: 0.5rem;
}

.WorkshopCard-desc {
  font-size: 0.88rem;
  color: #50507A;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.WorkshopCard-points {
  list-style: none;
  margin-bottom: var(--space-sm);
}

.WorkshopCard-points li {
  font-size: 0.82rem;
  color: #50507A;
  padding: 0.2rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.WorkshopCard-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
}


.WorkshopFormat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.WorkshopFormat-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.WorkshopFormat-text p {
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.WorkshopFormat-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.GradLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.GradLayout-text p {
  color: #50507A;
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.GradLayout-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.MiniCard {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition-base);
}

.MiniCard:hover { transform: translateY(-3px); }

.MiniCard i { font-size: 1.4rem; }

.MiniCard p {
  font-size: 0.85rem;
  line-height: 1.55;
}

.MiniCard--accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  grid-column: span 2;
}
.MiniCard--accent i, .MiniCard--accent p { color: rgba(255,255,255,0.9); }

.MiniCard--dark {
  background: var(--color-light-text);
}
.MiniCard--dark i { color: var(--color-secondary); }
.MiniCard--dark p { color: rgba(255,255,255,0.8); }

.MiniCard--glass {
  background: rgba(108,99,255,0.07);
  border: 1px solid rgba(108,99,255,0.15);
}
.MiniCard--glass i { color: var(--color-primary); }
.MiniCard--glass p { color: #50507A; }


.AudienceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.AudienceCard {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.AudienceCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.AudienceCard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.AudienceCard:hover .AudienceCard-img { transform: scale(1.05); }

.AudienceCard-iconBox {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
}

.AudienceCard-body {
  padding: var(--space-md);
}

.AudienceCard-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.AudienceCard-body p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
}


.OutputGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.OutputItem {
  background: #fff;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.OutputItem:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.OutputItem-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(108,99,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.OutputItem h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-bottom: 0.4rem;
}

.OutputItem p {
  font-size: 0.82rem;
  color: #50507A;
  line-height: 1.6;
}


.ContactPage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  padding-top: var(--nav-height);
}

.ContactPage-formSide {
  background: var(--color-light-bg);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ContactForm-wrap {
  width: 100%;
  max-width: 520px;
}

.ContactForm-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-light-text);
  margin-bottom: 0.5rem;
  margin-top: var(--space-sm);
}

.ContactForm-sub {
  color: #50507A;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.ContactForm-field {
  margin-bottom: var(--space-md);
}

.ContactForm-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-light-text);
  margin-bottom: 0.4rem;
}

.ContactForm-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-light-text);
  background: #fff;
  border: 2px solid var(--color-light-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.ContactForm-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.ContactForm-textarea { resize: vertical; min-height: 140px; }

.ContactForm-helper {
  display: block;
  font-size: 0.78rem;
  color: #8888A0;
  margin-top: 0.3rem;
}

.ContactForm-field--checkbox { display: flex; flex-direction: column; gap: 0.3rem; }

.ContactForm-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: #50507A;
  line-height: 1.55;
}

.ContactForm-checkLabel input[type="checkbox"] { display: none; }

.ContactForm-checkCustom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-light-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color var(--transition-base), background-color var(--transition-base);
  position: relative;
}

.ContactForm-checkLabel input:checked + .ContactForm-checkCustom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ContactForm-checkLabel input:checked + .ContactForm-checkCustom::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.ContactForm-link { color: var(--color-primary); text-decoration: underline; }

.ContactForm-submit { width: 100%; justify-content: center; margin-top: var(--space-sm); }

.ContactPage-infoSide {
  background: var(--color-bg);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ContactInfo-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.ContactInfo-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.ContactInfo-icon {
  width: 40px;
  height: 40px;
  background: rgba(108,99,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.ContactInfo-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.ContactInfo-item p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.ContactInfo-item a { color: var(--color-secondary); }
.ContactInfo-item a:hover { color: var(--color-primary); }


.ThanksPage {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.ThanksPage-inner {
  text-align: center;
  max-width: 480px;
}

.ThanksPage-animation { margin-bottom: var(--space-lg); }

.ThanksCheckmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.ThanksCheckmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.8s ease forwards;
}

.ThanksCheckmark-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease 0.7s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.ThanksPage-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.2s forwards;
}

.ThanksPage-sub {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.4s forwards;
}

.ThanksPage-inner .Btn {
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.6s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.LegalPage {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl);
  background: var(--color-light-bg);
  min-height: 100vh;
}

.LegalPage-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-light-border);
}

.LegalPage-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-light-text);
  margin-bottom: 0.5rem;
}

.LegalPage-updated {
  font-size: 0.88rem;
  color: #8888A0;
}

.LegalPage-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-light-border);
}

.LegalPage-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}

.LegalPage-body p {
  color: #50507A;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.LegalPage-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.LegalPage-body ul li {
  color: #50507A;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

.LegalPage-body a { color: var(--color-primary); text-decoration: underline; }

.LegalPage-section { margin-bottom: var(--space-lg); }

.LegalDL dt {
  font-weight: 700;
  color: var(--color-light-text);
  font-size: 0.95rem;
  margin-top: var(--space-sm);
}

.LegalDL dd {
  color: #50507A;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-left: 0;
  padding-left: var(--space-sm);
  border-left: 2px solid rgba(108,99,255,0.2);
  margin-bottom: var(--space-xs);
}

.LegalTable {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.LegalTable th {
  background: rgba(108,99,255,0.08);
  color: var(--color-light-text);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-light-border);
}

.LegalTable td {
  padding: 0.75rem 1rem;
  color: #50507A;
  border-bottom: 1px solid var(--color-light-border);
  vertical-align: top;
}

.LegalTable tbody tr:last-child td { border-bottom: none; }
.LegalTable tbody tr:hover { background: rgba(108,99,255,0.03); }

.LegalTable--cookies th, .LegalTable--cookies td { font-size: 0.82rem; }

code {
  font-family: monospace;
  background: rgba(108,99,255,0.1);
  color: var(--color-primary);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}


.SiteFooter { background: var(--color-surface); }

.SiteFooter-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: var(--space-2xl) 0;
  text-align: center;
}

.SiteFooter-ctaHeading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.SiteFooter-ctaDesc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.SiteFooter-cta .Btn--primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.SiteFooter-cta .Btn--primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-xl);
}

.SiteFooter-main {
  padding: var(--space-xl) 0 var(--space-md);
}

.SiteFooter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.SiteFooter-logoLink {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
  text-decoration: none;
}

.SiteFooter-logoLink span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}

.SiteFooter-brandDesc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.SiteFooter-colTitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.SiteFooter-links li { margin-bottom: 0.5rem; }

.SiteFooter-links a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition-base);
}
.SiteFooter-links a:hover { color: var(--color-text); }

.SiteFooter-address p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.SiteFooter-address i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.SiteFooter-address a { color: var(--color-muted); }
.SiteFooter-address a:hover { color: var(--color-secondary); }

.SiteFooter-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.SiteFooter-bottom p {
  font-size: 0.82rem;
  color: var(--color-muted);
}


.CookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  width: 100%;
  max-width: 360px;
  background: rgba(22,22,30,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl), 0 0 32px rgba(108,99,255,0.12);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.CookieConsent.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.CookieConsent-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.CookieConsent-icon {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.CookieConsent-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.CookieConsent-text {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.CookieConsent-expandBtn {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-base);
  font-family: var(--font-body);
}

.CookieConsent-expandBtn:hover { color: var(--color-primary); }

.CookieConsent-expandBtn i {
  transition: transform var(--transition-base);
}

.CookieConsent-expandBtn.is-open i { transform: rotate(180deg); }

.CookieConsent-categories {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: var(--space-sm);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.CookieConsent-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  cursor: pointer;
}

.CookieConsent-category input { accent-color: var(--color-primary); }

.CookieConsent-required {
  font-size: 0.72rem;
  color: var(--color-muted);
  opacity: 0.6;
}

.CookieConsent-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.CookieConsent-actions .Btn { flex: 1; justify-content: center; }


@media (max-width: 1100px) {
  .BentoGrid--intro {
    grid-template-columns: repeat(2, 1fr);
  }

  .BentoGrid--gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .BentoCell--2x2 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .ProcessGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .ProcessStep:not(.ProcessStep--last)::after {
    display: none;
  }

  .ValuesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .OutputGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .SiteFooter-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .SiteHeader-nav,
  .SiteHeader-cta {
    display: none;
  }

  .SiteHeader-hamburger {
    display: flex;
  }

  .HistoryLayout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .HistoryLayout-img {
    height: 280px;
  }

  .WorkshopFormat {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .WorkshopFormat-img {
    height: 260px;
  }

  .GradLayout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .GradLayout-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .MiniCard--accent {
    grid-column: span 3;
  }

  .AudienceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .WorkflowDiagram {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .WorkflowArrow {
    transform: rotate(90deg);
    margin: 0;
    align-self: center;
  }

  .WorkflowNode {
    min-width: unset;
    width: 100%;
  }

  .ContactPage {
    grid-template-columns: 1fr;
  }

  .ContactPage-formSide,
  .ContactPage-infoSide {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .BentoGrid--intro,
  .BentoGrid--gallery {
    grid-template-columns: 1fr;
  }

  .BentoCell--2x1,
  .BentoCell--1x2,
  .BentoCell--2x2,
  .BentoCell--cta {
    grid-column: span 1;
    grid-row: span 1;
  }

  .BentoCell--image,
  .BentoCell--featured {
    min-height: 220px;
  }

  .ProcessGrid {
    grid-template-columns: 1fr;
  }

  .WorkshopGrid {
    grid-template-columns: 1fr;
  }

  .WorkshopCard {
    flex-direction: column;
  }

  .ValuesGrid {
    grid-template-columns: 1fr;
  }

  .AudienceGrid {
    grid-template-columns: 1fr;
  }

  .OutputGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .SiteFooter-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .SiteFooter-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ComparisonTable th,
  .ComparisonTable td {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }

  .PageHero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: var(--space-lg);
  }

  .PageHero-heading--clip {
    font-size: clamp(3rem, 15vw, 6rem);
  }

  .InnerHero {
    min-height: 320px;
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .GradLayout-bento {
    grid-template-columns: 1fr 1fr;
  }

  .MiniCard--accent {
    grid-column: span 2;
  }

  .CookieConsent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .Timeline::before {
    left: 16px;
  }
}

@media (max-width: 480px) {
  .OutputGrid {
    grid-template-columns: 1fr;
  }

  .GradLayout-bento {
    grid-template-columns: 1fr;
  }

  .MiniCard--accent {
    grid-column: span 1;
  }

  .PageHero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .PageHero-actions .Btn {
    width: 100%;
    justify-content: center;
  }

  .ContactPage-formSide,
  .ContactPage-infoSide {
    padding: var(--space-lg) var(--space-sm);
  }

  .ContactForm-wrap {
    max-width: 100%;
  }

  .LegalTable {
    font-size: 0.78rem;
  }

  .LegalTable th,
  .LegalTable td {
    padding: 0.5rem 0.6rem;
  }
}


@container bento (max-width: 600px) {
  .BentoCell--2x1,
  .BentoCell--2x2,
  .BentoCell--cta {
    grid-column: span 1;
  }

  .BentoCell-inner--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@container workshopcard (max-width: 320px) {
  .WorkshopCard {
    flex-direction: column;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }


::selection {
  background: rgba(108,99,255,0.3);
  color: var(--color-text);
}