:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #22C55E;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-soft: rgba(76, 29, 149, 0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }
a:hover { color: var(--color-neutral-dark); }

/* === Typography === */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 600; margin: 0 0 1rem; max-width: 20ch; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; margin: 0 0 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--color-neutral-dark); opacity: 0.85; max-width: 48ch; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 4rem; }
.section--narrow .container { max-width: 720px; }
.section--tinted { background: #F3EDFF; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__header p { color: var(--color-neutral-dark); opacity: 0.75; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 245, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-soft); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; }
.nav-toggle { background: transparent; border: none; color: var(--color-neutral-dark); padding: 0.5rem; cursor: pointer; display: inline-flex; }
.primary-nav { display: none; flex-direction: column; gap: 0.25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--border-soft); }
.primary-nav.is-open { display: flex; }
.primary-nav a { color: var(--color-neutral-dark); text-decoration: none; padding: 0.6rem 0; font-weight: 500; border-bottom: 1px solid var(--border-soft); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; flex-direction: row; gap: 1.75rem; padding: 0; background: transparent; border: none; }
  .primary-nav a { padding: 0; border: none; }
}

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: 10px; font-weight: 600; text-decoration: none; font-size: 0.98rem; border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #16a34a; color: #fff; }

/* === Hero split === */
.hero { padding-block: 3rem; }
.hero-split__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-split__text { order: 1; }
.hero-split__image { order: 2; }
.hero-split__image img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; box-shadow: 0 25px 50px -30px rgba(76, 29, 149, 0.4); width: 100%; }
.hero-split__text .btn { margin-top: 1.5rem; }
.hero-split--single .hero-split__grid { grid-template-columns: 1fr; text-align: left; }

@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
  .hero-split__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-split__text { order: 1; }
  .hero-split__image { order: 2; }
}

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

.card { background: var(--color-neutral-light); border: 1px solid var(--border-soft); border-radius: 14px; padding: 1.75rem; display: block; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; background: rgba(124, 58, 237, 0.12); color: var(--color-primary); margin-bottom: 1rem; }
.card p { margin-bottom: 0; opacity: 0.85; }
a.card-link { text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.card-link:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(76, 29, 149, 0.35); }
a.card-link h3 { color: var(--color-primary); }

/* === Section split (image + text) === */
.section--split__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.section--split__image img { border-radius: 14px; aspect-ratio: 5 / 4; object-fit: cover; }
@media (min-width: 768px) { .section--split__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

/* === Testimonial === */
.section--quote { padding-block: 4rem; }
.section--quote blockquote { max-width: 720px; margin: 0 auto; text-align: center; }
.section--quote blockquote p { font-size: 1.35rem; line-height: 1.6; font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); margin-bottom: 1.25rem; }
.section--quote blockquote cite { font-style: normal; font-size: 0.95rem; opacity: 0.7; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding-block: 3.5rem; }
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin-bottom: 0; max-width: 52ch; }
.cta-band__inner { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center; }
.cta-band .btn-accent { justify-self: start; }
@media (min-width: 768px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 2.5rem; } .cta-band .btn-accent { justify-self: end; } }

/* === Contact card === */
.contact-card { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2.25rem; border: 1px solid var(--border-soft); border-radius: 16px; background: #fff; }
.contact-card__details { font-style: normal; line-height: 1.9; }
@media (min-width: 768px) { .contact-card { grid-template-columns: 1.3fr 1fr; padding: 3rem; } }

/* === Contact form === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3.5rem; } }
.contact-form { display: grid; gap: 1rem; background: #fff; border: 1px solid var(--border-soft); border-radius: 16px; padding: 2rem; }
.contact-form label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.contact-form input, .contact-form textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--border-soft); border-radius: 8px; background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; flex-direction: row; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; font-weight: 400; }
.form-consent input { margin-top: 0.2rem; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin-inline: auto; padding: 2.5rem 1.25rem 4rem; }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; max-width: none; }
.article-detail .article-sub { font-size: 1.2rem; opacity: 0.75; margin-bottom: 2rem; }
.article-detail .article-hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-block: 2rem; border-radius: 10px; }
.article-detail p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.25rem; }
.article-detail__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); }
.back-link { text-decoration: none; font-weight: 500; }
.back-link:hover { text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3.5rem 1.5rem; margin-top: 3rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer a { color: var(--color-neutral-light); text-decoration: none; opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: #fff; }
.logo--footer img { height: 60px; }
.footer-tagline { opacity: 0.75; margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; opacity: 0.9; }
.footer-legal { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.site-footer__copy { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; opacity: 0.75; }
.site-footer__copy p { margin: 0; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 3rem; } }












:root { --brand-accent: hsl(8 72% 44%); --brand-ink: hsl(79 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

:root { --brand-accent: hsl(8 72% 44%); --brand-ink: hsl(79 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

:root { --brand-accent: hsl(8 72% 44%); --brand-ink: hsl(79 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.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; } }

:root { --brand-accent: hsl(8 72% 44%); --brand-ink: hsl(79 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; } }
