:root {
  --color-primary: #18181B;
  --color-secondary: #27272A;
  --color-accent: #F8FAFC;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9, 9, 11, 0.08);
  --color-muted: #52525B;
  --color-brand-accent: #6366F1;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(9, 9, 11, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(9, 9, 11, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -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: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


.container { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }


.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 250, 250, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid transparent; transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.site-header.scrolled { background: rgba(250, 250, 250, 0.92); box-shadow: 0 6px 24px -14px rgba(9,9,11,0.2); border-bottom-color: var(--color-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1.25rem; max-width: 1200px; margin-inline: auto; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }

.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-weight: 500; color: var(--color-secondary); padding: 0.25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-neutral-dark); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 0.55rem 1.1rem; border-radius: 999px; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--color-secondary); color: var(--color-neutral-light); }

.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--color-border); background: transparent; border-radius: 10px; cursor: pointer; }
.nav-toggle__bar { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .primary-nav { display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + 8px); flex-direction: column; align-items: stretch; gap: 0.25rem; padding: 1rem; background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 0.75rem 0.5rem; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-cta { text-align: center; }
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .logo img { height: 96px; }
}


.hero { position: relative; padding-block: 4.5rem 3rem; text-align: center; overflow: hidden; background: linear-gradient(180deg, #FFFFFF 0%, var(--color-neutral-light) 100%); }
.hero__glow { position: absolute; inset: -20% 10% auto 10%; height: 480px; background: radial-gradient(closest-side, rgba(99,102,241,0.16), rgba(99,102,241,0)); pointer-events: none; filter: blur(10px); }
.hero .container { position: relative; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-muted); margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 700; max-width: 22ch; margin-inline: auto; margin-bottom: 1.25rem; }
.hero__sub { max-width: 52ch; margin-inline: auto; font-size: 1.125rem; color: var(--color-muted); margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.hero__figure { margin: 3rem 0 0; }
.hero__figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; object-fit: cover; }

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


.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.4rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; line-height: 1; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s; }
.btn--primary { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-secondary)); color: var(--color-neutral-light); box-shadow: 0 8px 24px -10px rgba(9,9,11,0.5); }
.btn--primary:hover { color: var(--color-neutral-light); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(9,9,11,0.55); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { background: rgba(9,9,11,0.04); transform: translateY(-2px); }
.btn--link { background: transparent; padding: 0.5rem 0.25rem; color: var(--color-secondary); }
.btn--link:hover { color: var(--color-neutral-dark); }
.btn--sm { padding: 0.55rem 0.95rem; font-size: 0.88rem; }
.btn:focus-visible { outline: 2px solid var(--color-neutral-dark); outline-offset: 3px; }


.section { padding-block: 3.5rem; }
.section--narrow .container { max-width: 760px; }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__head h2, .section h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.section__sub { color: var(--color-muted); font-size: 1.1rem; max-width: 60ch; margin-inline: auto; }
.section--narrow { text-align: center; }
.section--narrow .prose { text-align: left; color: var(--color-secondary); font-size: 1.05rem; line-height: 1.75; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }


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

.card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(9,9,11,0.14); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(24,24,27,0.08), rgba(24,24,27,0.02)); color: var(--color-neutral-dark); margin-bottom: 1rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }


.section--quote { padding-block: 4rem; }
.quote { max-width: 780px; margin-inline: auto; text-align: center; font-family: var(--font-heading); }
.quote p { font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.5; font-weight: 500; color: var(--color-neutral-dark); margin-bottom: 1.25rem; }
.quote cite { font-style: normal; font-family: var(--font-body); font-size: 0.95rem; color: var(--color-muted); }


.cta-band { margin: 3rem 1rem; padding: 3rem 1.5rem; background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-secondary)); color: var(--color-neutral-light); border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band .container { max-width: 720px; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,250,250,0.78); }
.cta-band .btn--primary { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.cta-band .btn--primary:hover { color: var(--color-neutral-dark); background: #FFFFFF; }
@media (min-width: 768px) { .cta-band { margin: 4rem auto; padding: 4rem 2rem; max-width: 1140px; } }


.faq details { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: 0.75rem; background: #FFFFFF; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.3rem; color: var(--color-muted); transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 0.75rem 0 0; color: var(--color-muted); }


.contact-form { display: flex; flex-direction: column; gap: 1rem; background: #FFFFFF; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: var(--color-secondary); }
.form-row input, .form-row textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-neutral-light); color: var(--color-neutral-dark); transition: border-color .2s, box-shadow .2s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-neutral-dark); box-shadow: 0 0 0 3px rgba(9,9,11,0.08); }
.contact-form button { align-self: flex-start; }


.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.75); padding-top: 3.5rem; margin-top: 3rem; }
.site-footer h4 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 0.9rem; }
.site-footer a { color: rgba(250,250,250,0.75); }
.site-footer a:hover { color: var(--color-neutral-light); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.logo--footer img { height: 64px; filter: invert(1) brightness(1.4); }
.footer-tagline { color: rgba(250,250,250,0.65); margin-top: 0.75rem; max-width: 30ch; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; }
.legal-links li { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(250,250,250,0.1); padding: 1.25rem 1.25rem; text-align: center; font-size: 0.85rem; color: rgba(250,250,250,0.55); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }




.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-shift:4;--site-accent:hsl(102 44% 38%);--site-warm:hsl(222 36% 92%);}
.logo{min-width:0;max-width:calc(100% - 64px);overflow:hidden;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;}
.logo img{max-width:min(252px,100%);height:auto;object-fit:contain;}
.site-header,.legal-header{overflow-x:clip;}
.nav-list,.primary-nav ul,.site-nav ul,[data-nav]{min-width:0;}
.contact-form input,.contact-form textarea,button,a{overflow-wrap:anywhere;}
@media (max-width:720px){body{overflow-x:hidden;}.logo img{max-width:min(218px,70vw);}.hero,.site-header,.site-footer,main,section{max-width:100%;}}

.reveal, .reveal.visible, [data-reveal], .fade-in, .animate-in {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
main, section, article, .card, .hero, .intro, .cta-band {
  visibility: visible;
}
.site-nav.open, .site-nav.is-open, .primary-nav.open, .primary-nav.is-open, [data-nav].open, [data-nav].is-open {
  display: flex !important;
}
