:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #06B6D4;
  --color-neutral-dark: #1E1B4B;
  --color-neutral-light: #FAF5FF;
  --color-border: rgba(30, 27, 75, 0.12);
  --color-muted: rgba(30, 27, 75, 0.68);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(30, 27, 75, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(30, 27, 75, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(30, 27, 75, 0.28);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.97rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #5B21B6);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(124, 58, 237, 0.6);
}
.btn-primary:hover { box-shadow: 0 16px 36px -12px rgba(124, 58, 237, 0.7); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(6, 182, 212, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: rgba(124, 58, 237, 0.06); border-color: var(--color-primary); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 6px; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.75rem; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--color-border);
  border-radius: 12px; color: var(--color-neutral-dark); cursor: pointer;
}
.primary-nav {
  display: none; flex-direction: column; gap: 0.25rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(250, 245, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav.open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.6rem 0;
  position: relative;
}
.primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
.primary-nav .nav-cta {
  margin-top: 0.5rem;
  background: var(--color-primary); color: #fff;
  border-radius: 999px; text-align: center;
  padding: 0.65rem 1.2rem;
}
.primary-nav .nav-cta:hover { color: #fff; background: #5B21B6; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; flex-direction: row; align-items: center;
    gap: 1.5rem; position: static; background: transparent;
    padding: 0; border: none; backdrop-filter: none;
  }
  .primary-nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0.35rem;
    height: 2px; background: var(--color-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
  .primary-nav .nav-cta { margin-top: 0; padding: 0.55rem 1.1rem; }
  .logo img { height: 96px; }
}

/* === Hero (centered) === */
.hero {
  position: relative;
  padding-block: 4rem 3rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(ellipse at center top, rgba(6, 182, 212, 0.14), transparent 60%),
              linear-gradient(180deg, rgba(167, 139, 250, 0.18), transparent);
  z-index: -1;
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub {
  max-width: 52ch; margin: 0 auto 2rem;
  color: var(--color-muted); font-size: 1.15rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-bottom: 3rem;
}
.hero-image {
  max-width: 960px; margin-inline: auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-alt {
  background: linear-gradient(180deg, #fff, #F3EEFF);
  border-block: 1px solid var(--color-border);
}
.section-head {
  max-width: 720px; margin: 0 auto 2.5rem; text-align: center;
}
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Grids & Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(124, 58, 237, 0.35); }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }
.card h3 { margin: 0 0 0.65rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--color-primary);
  margin-bottom: 1.1rem;
}
a.card-link { color: inherit; text-decoration: none; }
a.card-link:hover { text-decoration: none; }

/* === Split === */
.split {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* === Quote === */
.quote {
  margin: 0; padding: 2rem;
  border-left: 3px solid var(--color-accent);
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem; line-height: 1.5; margin: 0 0 1rem;
  color: var(--color-neutral-dark); font-weight: 500;
}
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  padding-block: 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(6, 182, 212, 0.25), transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.86); max-width: 60ch; margin-inline: auto; margin-bottom: 1.5rem; }

/* === Contact === */
.contact-band {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 800px) { .contact-band { grid-template-columns: 2fr 1fr; align-items: center; } }
.contact-details { font-style: normal; color: var(--color-muted); line-height: 1.7; }
.contact-details strong { color: var(--color-neutral-dark); }

.contact-form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.95rem; }
.field input, .field textarea {
  font: inherit; color: inherit;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.9rem; color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }
.contact-form .btn { justify-self: start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: rgba(255, 255, 255, 0.82);
  padding-block: 3.5rem 1.5rem;
  margin-top: 4rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 2.25rem; grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-grid nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-grid h4 { color: #fff; margin-bottom: 1rem; }
.footer-grid address { font-style: normal; line-height: 1.75; }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.tagline { color: rgba(255, 255, 255, 0.7); max-width: 32ch; margin-top: 1rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; font-size: 0.9rem; }
.copyright {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.6);
}

/* === Reveal animation === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}











:root { --brand-accent: hsl(231 72% 44%); --brand-ink: hsl(129 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
