@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #171512;
  --ink-soft: #565149;
  --muted: #8A8578;
  --paper: #FBF9F4;
  --paper-2: #F2EEE4;
  --paper-3: #EAE5D7;
  --line: #E5E0D4;
  --accent: #6D28D9;
  --accent-soft: #F1EAFB;
  --accent-ink: #4C1D95;
  --accent-grad: linear-gradient(90deg, #7C3AED, #4C1D95);
  --good: #1D9E75;
  --good-soft: #E1F5EE;
  --warn: #EF9F27;
  --warn-soft: #FAEEDA;
  --bad: #E24B4A;
  --bad-soft: #FCEBEB;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; }
a { color: var(--accent-ink); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; letter-spacing: -0.02em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }

.logoWordmark { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap; }
.logoWordmark .accentPart { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.siteNav { height: 80px; display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 6vw; }
.siteBrand { display: inline-block; text-decoration: none; color: var(--ink); }
.siteBrandDot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: block; }
.siteNavLinks { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.siteNavLinks a { color: var(--ink-soft); text-decoration: none; }
.siteNavLinks a:hover { color: var(--ink); }

.navToggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; border: 0; background: none; cursor: pointer; padding: 0; flex: none; }
.navToggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navToggle.open span:nth-child(2) { opacity: 0; }
.navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- footer ---------- */
.siteFooter { border-top: 0.5px solid var(--line); margin-top: 70px; background: var(--paper-2); }
.siteFooterInner { max-width: 1240px; margin: 0 auto; padding: 50px 6vw 30px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.siteFooterBrand .siteBrand { margin-bottom: 12px; }
.siteFooterBrand p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; max-width: 320px; margin: 0; }
.siteFooterCol h4 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 6px 0 14px; font-weight: 600; }
.footerContactNote { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; max-width: 260px; }
.footerContactNote a { display: inline !important; color: var(--accent-ink); font-weight: 600; margin-bottom: 0; }
.siteFooterCol a { display: block; font-size: 14px; color: var(--ink-soft); text-decoration: none; margin-bottom: 10px; }
.siteFooterCol a:hover { color: var(--ink); }
.siteFooterBottom { border-top: 0.5px solid var(--line); }
.siteFooterBottomInner { max-width: 1240px; margin: 0 auto; padding: 22px 6vw; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 18px; }
.siteFooterBottomInner span { font-size: 12px; color: var(--muted); }
.footerPartnerLogos { display: flex; align-items: center; gap: 20px; }
.footerPartnerLogos img { height: 26px; width: auto; display: block; }
.footerInitiative { margin-top: 26px; }
.footerInitiativeLabel { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.footerPartnerLogosBig { gap: 26px; align-items: center; }
.footerPartnerLogosBig img { height: 36px; }
.footerPartnerLogosBig .logoDunqn { height: 54px; }

/* ---------- generic content pages ---------- */
.page { min-height: 100vh; }
.contentHero { max-width: 900px; margin: 8vh auto 0; padding: 0 6vw; }
.eyebrow { font-size: 11px; letter-spacing: .16em; font-weight: 700; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; }
.contentHero h1 { font-size: clamp(36px, 6vw, 58px); line-height: 1.05; margin: 0 0 18px; }
.contentHero p.lead { font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 680px; }
.contentBody { max-width: 900px; margin: 40px auto 0; padding: 0 6vw; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.contentBody h2 { color: var(--ink); font-size: 24px; margin-top: 46px; }
.contentBody a { text-decoration: underline; }
.contentBody .blogCard, .contentBody .blogCard * { text-decoration: none; }
.articleBody a, .docsArticle a { text-decoration: none; }
.articleMeta { font-size: 12px; color: var(--muted); margin: 10px 0 0; }
.docsArticle .articleMeta { margin: 6px 0 22px; }
.contentGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }

.card { background: white; border: 0.5px solid var(--line); border-radius: 14px; padding: 26px; }
.cardRow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0; }

.partnerCard { background: white; border: 0.5px solid var(--line); border-radius: 16px; padding: 28px; text-align: center; }
.partnerCard img.avatar { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; }
.partnerCard .tag { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-ink); background: var(--accent-soft); display: inline-block; padding: 4px 10px; border-radius: 999px; font-weight: 700; margin-bottom: 12px; }
.partnerCard h3 { margin: 0 0 4px; font-size: 19px; }
.partnerCard span.role { display: block; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.partnerCard p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.statBlock { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0; }
.statBlock .card strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 30px; }
.statBlock .card span { font-size: 12px; color: var(--muted); }

.priceGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.priceGridFour { grid-template-columns: repeat(4, 1fr); }

.partnerSplit { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 46px; padding-top: 40px; border-top: 0.5px solid var(--line); position: relative; }
.partnerSplit::after { content: ""; position: absolute; top: 40px; bottom: 0; left: 50%; width: 0.5px; background: var(--line); }
.partnerSplit .tag { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-ink); background: var(--accent-soft); display: inline-block; padding: 4px 10px; border-radius: 999px; font-weight: 700; margin-bottom: 12px; }
.partnerSplit h3 { margin: 0 0 10px; font-size: 19px; }
.partnerSplit p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .partnerSplit { grid-template-columns: 1fr; gap: 32px; }
  .partnerSplit::after { display: none; }
}
.priceCard { text-align: center; }
.priceCard h3 { margin: 0; }
.priceAmount { font-size: 26px; font-family: "Space Grotesk", sans-serif; color: var(--ink); margin: 10px 0; }
.priceCard p:not(.priceAmount) { font-size: 13px; margin: 0; }

/* ---------- coming soon / 404 ---------- */
.comingSoon { text-align: center; padding: 14vh 6vw 10vh; }
.comingSoon .eyebrow { text-align: center; }
.comingSoon h1 { font-size: clamp(32px, 7vw, 56px); }
.comingSoon p { color: var(--ink-soft); font-size: 16px; max-width: 480px; margin: 14px auto 30px; }
.comingSoon .btnRow { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; border-radius: 10px; padding: 12px 22px; font-weight: 600; font-size: 14px; font-family: "Space Grotesk", sans-serif; }
.btnPrimary { background: var(--accent); color: white; }
.btnGhost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.faqItem { border-bottom: 0.5px solid var(--line); padding: 20px 0; }
.faqItem summary { font-weight: 600; cursor: pointer; font-size: 16px; color: var(--ink); }
.faqItem p { margin: 10px 0 0; color: var(--ink-soft); }

.contactRow { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-top: 0.5px solid var(--line); }
.contactRow:first-child { border-top: 0; }
.contactIcon { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; flex: none; font-size: 18px; }
.contactRow h3 { margin: 0 0 3px; font-size: 15px; }
.contactRow p { margin: 0; font-size: 13px; color: var(--muted); }
.contactRow a { font-weight: 600; }

/* ---------- CTA band ---------- */
.ctaBand { background: var(--accent-grad); color: white; border-radius: 20px; padding: 44px 6vw; text-align: center; max-width: 1180px; margin: 60px auto 0; }
.ctaBand h3 { color: white; font-size: clamp(22px, 3.5vw, 30px); margin: 0 0 10px; }
.ctaBand p { color: rgba(255,255,255,0.82); font-size: 14px; margin: 0 0 22px; }
.ctaBand .btn { background: white; color: var(--accent-ink); }
.ctaBandInline { margin: 46px 0 0; }

/* ---------- blog / kennisbank ---------- */
.blogGrid { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.blogCard { background: white; border: 0.5px solid var(--line); border-radius: 14px; padding: 24px 26px; text-decoration: none; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.blogCard .tag { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-ink); font-weight: 700; }
.blogCard h3 { font-size: 17px; margin: 8px 0 6px; }
.blogCard p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.blogCardMeta { font-size: 11px; color: var(--muted); margin-top: 10px; }
.blogCard .arrow { font-size: 20px; color: var(--muted); flex: none; }
.blogCard.hidden { display: none; }

.topicFilter { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 6px; }
.topicChip { border: 0.5px solid var(--line); background: white; border-radius: 999px; padding: 7px 15px; font-size: 13px; color: var(--ink-soft); cursor: pointer; }
.topicChip.active { background: var(--accent); border-color: var(--accent); color: white; }

.docsLayout { display: grid; grid-template-columns: 250px 1fr; gap: 50px; max-width: 1100px; margin: 40px auto 0; padding: 0 6vw; align-items: start; }
.docsSidebar { position: sticky; top: 100px; border: 0.5px solid var(--line); border-radius: 14px; background: white; padding: 18px; }
.docsSidebar .label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.docsSidebar a { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 7px; font-size: 12.5px; line-height: 1.3; color: var(--ink-soft); text-decoration: none; margin-bottom: 2px; }
.docsSidebar a:hover, .docsSidebar a.active { background: var(--accent-soft); color: var(--accent-ink); }
.docsSidebar .fileTag { flex: none; white-space: nowrap; font-size: 9px; font-weight: 700; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; background: var(--paper-2); color: var(--muted); }
.docsArticle { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.docsArticle h1 { font-size: 34px; color: var(--ink); margin-top: 0; }
.docsArticle h2 { font-size: 20px; color: var(--ink); margin: 54px 0 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.docsArticle h3 { font-size: 15.5px; color: var(--ink); margin: 30px 0 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.docsArticle p { margin: 0 0 18px; }
.docsArticle code { background: var(--paper-2); padding: 2px 6px; border-radius: 5px; font-size: 14px; color: var(--accent-ink); }
.scanPointBadge { font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; white-space: nowrap; }

/* ---------- floating laptop hero visual ---------- */
.laptopScene { position: relative; max-width: 740px; margin: 50px auto 0; }
.laptopFrame { animation: floatSlow 6s ease-in-out infinite; }
.laptopScreenFrame { background: #171512; border-radius: 16px 16px 6px 6px; padding: 14px 14px 10px; box-shadow: 0 30px 60px rgba(23,21,18,0.18); }
.laptopScreenInner { background: white; overflow: hidden; padding: 26px 24px 30px; border-radius: 0 0 7px 7px; }
.laptopBase { height: 13px; margin: 0 -22px; background: linear-gradient(180deg, #2c2822, #171512); border-radius: 0 0 10px 10px; position: relative; }
.laptopBase::after { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 64px; height: 5px; background: #0d0c0a; border-radius: 0 0 6px 6px; }

.laptopBrowserBar { display: flex; align-items: center; gap: 6px; background: var(--paper-2); border-radius: 7px 7px 0 0; padding: 10px 14px; }
.laptopDot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); flex: none; }
.laptopAddress { margin-left: 10px; font-size: 11px; color: var(--muted); background: white; border-radius: 999px; padding: 4px 12px; flex: 1; }
.laptopScoreRow { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 24px; }
.laptopScoreRow strong { font-family: "Space Grotesk", sans-serif; font-size: 42px; color: var(--accent-ink); }
.laptopScoreRow span { font-size: 13px; color: var(--muted); }
.laptopProgressBar { height: 6px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.laptopProgressBar span { display: block; height: 100%; border-radius: 999px; background: var(--accent-grad); }

.floatBadge { position: absolute; z-index: 3; background: white; border: 0.5px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: 0 10px 28px rgba(23,21,18,0.12); animation: floatMed 5s ease-in-out infinite; white-space: nowrap; }
.floatBadge.b1 { top: -16px; left: -20px; animation-delay: .3s; }
.floatBadge.b2 { top: 0%; right: 4%; animation-delay: 1.1s; }
.floatBadge.b3 { bottom: 8%; left: 0%; animation-delay: .7s; }
.floatBadge.b4 { bottom: -16px; right: -20px; animation-delay: 1.6s; }

@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatMed { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) {
  .laptopFrame, .floatBadge { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .siteFooterInner { grid-template-columns: 1fr 1fr; }
  .cardRow, .contentGrid, .blogGrid { grid-template-columns: 1fr; }
  .statBlock, .priceGrid { grid-template-columns: 1fr; }
  .priceGridFour { grid-template-columns: 1fr 1fr; }
  .docsLayout { grid-template-columns: 1fr; }
  .docsSidebar { position: static; }
  .floatBadge { display: none; }
}
@media (max-width: 480px) {
  .priceGridFour { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .navToggle { display: flex; }
  .siteNavLinks { position: fixed; top: 80px; left: 0; right: 0; z-index: 40; background: var(--paper); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 0 6vw; max-height: 0; overflow: hidden; transition: max-height .25s ease; box-shadow: 0 12px 24px rgba(23,21,18,0.06); }
  .siteNavLinks.open { max-height: 360px; padding: 10px 6vw 18px; }
  .siteNavLinks a { padding: 13px 0; border-bottom: 0.5px solid var(--line); }
  .siteNavLinks a:last-child { border-bottom: 0; }
}

.personBlock { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; margin: 40px 0; }
.personBlock img.personPhoto { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 3/4; }
.personBlock .personName { font-weight: 600; margin-top: 12px; font-size: 14px; }
.personBlock .personRole { font-size: 12px; color: var(--muted); }
.personBlock h2 { margin-top: 0; }
.quoteCallout { background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 22px 0; font-style: italic; color: var(--accent-ink); font-size: 15px; }
@media (max-width: 700px) {
  .personBlock { grid-template-columns: 1fr; }
  .personBlock img.personPhoto { max-width: 220px; aspect-ratio: 1/1; }
}
