:root {
  --primary: #65095E;
  --primary-dark: #3f063b;
  --primary-soft: #f4e8f3;
  --ink: #171321;
  --muted: #686271;
  --line: #e8e0e7;
  --bg: #ffffff;
  --bg-soft: #fbf7fa;
  --dark: #160314;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(101, 9, 94, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,224,231,0.7);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; }
.brand-logo { height: 52px; width: auto; border-radius: 10px; }
.footer-logo { height: 58px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; color: #302837; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--primary); color: white !important; box-shadow: 0 10px 28px rgba(101, 9, 94, .22); }
.nav-toggle { display: none; border: 0; background: var(--primary-soft); color: var(--primary); padding: 10px 14px; border-radius: 999px; font-weight: 800; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at top right, #f6e2f4 0, transparent 38%), linear-gradient(135deg, #fff 0%, #fbf7fa 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(101,9,94,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(101,9,94,.06) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; min-height: 680px; }
.eyebrow { margin: 0 0 14px; color: var(--primary); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: #f0b8ea; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); line-height: .96; letter-spacing: -0.07em; margin-bottom: 24px; max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.05em; margin-bottom: 18px; }
h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 10px; }
.lead { font-size: 20px; color: var(--muted); max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 999px; font-weight: 800; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 18px 42px rgba(101,9,94,.24); }
.btn-secondary { background: white; color: var(--primary); border: 1px solid var(--line); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 600px; }
.trust-row div { padding: 18px; background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 20px; }
.trust-row strong { display: block; color: var(--primary); font-size: 26px; letter-spacing: -0.04em; }
.trust-row span { color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.75); }
.hero-visual-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(10, 8, 16, 0.72);
  color: white;
  backdrop-filter: blur(14px);
}
.hero-visual-note strong,
.hero-visual-note span { display: block; }
.hero-visual-note span { color: rgba(255,255,255,.78); font-size: 14px; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.two-col > p { font-size: 20px; color: var(--muted); }
.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-head.compact { margin-bottom: 30px; }
.visual-strip { background: linear-gradient(180deg, #fff 0%, #fbf7fa 100%); }
.visual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.visual-card { margin: 0; padding: 12px; border-radius: 26px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(23,19,33,.05); }
.visual-card img { width: 100%; border-radius: 18px; }
.cards { display: grid; gap: 22px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(23,19,33,.05); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: var(--primary-soft); color: var(--primary); font-weight: 900; margin-bottom: 28px; }
.card p, .reference-card p, .industry-list p, .team-card p, .company-grid p { color: var(--muted); margin-bottom: 0; }
.tinted { background: var(--bg-soft); }
.split-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.sticky-copy { position: sticky; top: 120px; align-self: start; }
.industry-list { display: grid; gap: 18px; }
.industry-list article { padding: 30px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.industry-list span { display: inline-flex; margin-bottom: 16px; color: var(--primary); font-weight: 900; font-size: 13px; }
.reference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reference-card { min-height: 190px; padding: 24px; border-radius: var(--radius); background: linear-gradient(180deg, #fff 0%, #fbf7fa 100%); border: 1px solid var(--line); }
.reference-card strong { display: block; font-size: 18px; line-height: 1.2; margin-bottom: 16px; }
.dark { background: var(--dark); color: white; }
.dark p { color: rgba(255,255,255,.72); }
.solutions-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.solution-steps { display: grid; gap: 16px; }
.solution-steps div { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 22px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.solution-steps span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: white; color: var(--primary); font-weight: 900; }
.solution-steps p { margin: 0; color: white; font-weight: 700; }
.company-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 64px; align-items: start; }
.team-card { padding: 32px; border-radius: var(--radius); background: var(--primary-soft); border: 1px solid #ead4e8; }
.team-card ul { padding-left: 20px; margin-bottom: 0; color: #3f3446; }
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.cta-box { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: center; }
.cta-box p { color: rgba(255,255,255,.78); }
.contact-card { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.contact-card strong, .contact-card span, .contact-card a { display: block; }
.contact-card strong { font-size: 22px; }
.contact-card span { color: rgba(255,255,255,.72); margin-bottom: 16px; }
.contact-card a { color: white; font-weight: 800; margin-top: 8px; }
.site-footer { padding: 52px 0; background: #0e0b11; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
.footer-brand { margin-bottom: 16px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: white; }
.site-footer a { display: block; margin-top: 10px; }
.legal-page { padding: 120px 0; }
.legal-card { max-width: 860px; padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: white; }
.legal-card h1 { font-size: clamp(36px, 5vw, 58px); }
.legal-card h2 { font-size: 26px; margin-top: 34px; }
.legal-card p, .legal-card li { color: var(--muted); }
.jobs { display: grid; gap: 18px; margin-top: 32px; }
.job { padding: 24px; border-radius: 20px; background: var(--bg-soft); border: 1px solid var(--line); }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 84px; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .two-col, .split-content, .solutions-grid, .company-grid, .cta-box, .visual-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .cards.four, .reference-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-copy { position: static; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 68px 0; }
  .trust-row, .cards.four, .reference-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .brand-logo { height: 42px; }
  .footer-logo { height: 48px; }
  .legal-card { padding: 26px; }
}
