:root {
  --cream: #f7f5fc;
  --cream-dark: #efecf7;
  --ink: #221e45;
  --muted: #6a6490;
  --brand-navy: #151338;
  --brand-violet: #6e61a8;
  --brand-lavender: #e7e1f7;
  --white: #fff;
  --line: #dcd6ee;
  --shadow: 0 22px 55px rgba(22, 19, 58, 0.1);
  --radius: 16px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: white; font-family: var(--font-body); font-size: 16px; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--brand-navy); font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; }
h1 { margin-bottom: 1.5rem; font-size: clamp(2.75rem, 5vw, 4rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3.5vw, 2.5rem); }
h3 { margin-bottom: 0.7rem; font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--muted); }
.shell { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }
.narrow { max-width: 920px; }
.centred { margin-inline: auto; text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; padding: 14px 0; transition: 0.3s ease; }
.site-header.is-scrolled { padding: 8px 0; background: rgba(247, 244, 238, 0.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-shell { display: flex; width: min(1240px, calc(100% - 32px)); min-height: 64px; margin: auto; padding: 7px 8px 7px 18px; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.88); border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 100px; box-shadow: 0 12px 35px rgba(17, 3, 90, 0.07); backdrop-filter: blur(18px); }
.brand img { width: 105px; height: 52px; object-fit: contain; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu > a { position: relative; color: #292437; font-size: 0.92rem; font-weight: 600; text-decoration: none; }
.nav-menu > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--brand-violet); content: ""; transform: scaleX(0); transition: transform 0.2s; }
.nav-menu > a:hover::after, .nav-menu > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: var(--brand-navy); border: 0; border-radius: 50%; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; transition: 0.2s; }

.button { display: inline-flex; min-height: 52px; padding: 0 22px; gap: 18px; align-items: center; justify-content: center; color: white; background: var(--brand-navy); border: 1px solid var(--brand-navy); border-radius: 100px; box-shadow: 0 12px 28px rgba(17, 3, 90, 0.18); font-weight: 700; text-decoration: none; transition: transform 0.2s, background 0.2s, box-shadow 0.2s; cursor: pointer; }
.button:hover { color: white; background: #24118f; border-color: #24118f; box-shadow: 0 16px 34px rgba(17, 3, 90, 0.24); transform: translateY(-2px); }
.button-small { min-height: 46px; padding-inline: 19px; font-size: 0.88rem; }
.button-secondary { color: var(--brand-navy); background: transparent; border-color: var(--line); }
.button-light { color: var(--brand-navy); background: white; border-color: white; box-shadow: 0 12px 28px rgba(255, 255, 255, 0.16); }
.button-light:hover { color: var(--brand-navy); background: #f2efff; border-color: #f2efff; }
.nav-menu > a.button { color: white; }
.nav-menu > a.button:hover { color: white; }
.button-row { display: flex; margin-top: 30px; gap: 12px; flex-wrap: wrap; }
.text-link { color: var(--brand-navy); font-weight: 700; text-decoration: none; }
.eyebrow { margin-bottom: 15px; color: var(--brand-violet); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow.light { color: #b9b3ff; }
.hero-text { max-width: 690px; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section { padding: 110px 0; }
.section-heading { max-width: 720px; }
.section-heading.centred { margin-bottom: 52px; }
.section-heading > p:last-child { font-size: 1.08rem; }
.split-heading { display: flex; max-width: none; margin-bottom: 50px; gap: 50px; align-items: end; justify-content: space-between; }
.split-heading > div { max-width: 720px; }
.split-heading > p { max-width: 410px; margin-bottom: 8px; }
.layout-split { display: grid; gap: clamp(40px, 6vw, 80px); align-items: start; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); }
.layout-split > * { min-width: 0; }
.auth-layout { grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr); }
.content-stack > * + * { margin-top: 24px; }
.text-measure { max-width: 660px; }
.lead-text { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.7; }
.surface-card { padding: clamp(28px, 4vw, 52px); background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.surface-card h2 { font-size: clamp(2rem, 3vw, 2.7rem); }
.auth-section { padding: max(145px, 16vh) 0 90px; }
.auth-title { max-width: 12ch; font-size: clamp(2.8rem, 4.6vw, 4.7rem); }
.checklist-spaced { margin-top: 36px; }
.form-card { width: min(100%, 620px); justify-self: end; }

.hero { position: relative; padding: 165px 0 90px; overflow: hidden; }
.hero::before { position: absolute; top: -30%; right: -12%; width: 680px; height: 680px; background: radial-gradient(circle, rgba(99, 91, 255, 0.14), transparent 68%); content: ""; }
.hero-grid, .page-hero-grid { display: grid; gap: clamp(34px, 5vw, 60px); align-items: center; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }
.hero-grid > *, .page-hero-grid > * { min-width: 0; }
.hero-copy h1 { max-width: 690px; font-size: clamp(3.3rem, 5.55vw, 5.75rem); }
.trust-row { display: flex; margin-top: 52px; gap: 20px; align-items: center; flex-wrap: wrap; color: #686372; font-size: 0.77rem; }
.trust-row span { letter-spacing: 0.12em; text-transform: uppercase; }
.trust-row strong { color: var(--brand-navy); font-family: var(--font-display); }
.hero-dashboard { width: min(100%, 650px); justify-self: end; }

.platform-dashboard { display: grid; width: 100%; min-height: 430px; overflow: hidden; color: #292c35; background: #f8f9ff; border: 1px solid rgba(17, 3, 90, 0.1); border-radius: 24px; box-shadow: 0 24px 70px rgba(17, 3, 90, 0.13); grid-template-columns: 25% minmax(0, 1fr); font-size: clamp(0.48rem, 0.62vw, 0.72rem); }
.platform-sidebar { padding: 28px 16px 22px; color: white; background: linear-gradient(180deg, #1a0a68, #10004a 80%); border-radius: 20px 0 0 20px; }
.platform-logo { padding: 14px 15px; color: #0a1760; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 14px; font-family: Georgia, serif; font-size: 0.95em; font-weight: 700; line-height: 1.05; }
.sidebar-welcome { margin: 26px 4px 20px; }
.sidebar-welcome span { display: block; color: #d7d3ff; font-size: 0.55em; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.sidebar-welcome strong { display: block; margin-top: 8px; color: #fff; font-size: 1.05em; }
.sidebar-menu { display: grid; gap: 9px; }
.sidebar-menu span { display: flex; min-height: 34px; padding: 0 10px; gap: 11px; align-items: center; color: #d8d3fb; border-radius: 10px; font-size: 0.74em; white-space: nowrap; }
.sidebar-menu .is-active { color: white; background: #092c76; }
.sidebar-menu i { width: 11px; height: 11px; border: 1px solid currentColor; border-radius: 3px; opacity: 0.9; }
.platform-main { padding: 20px 22px 24px; background: #fff; }
.platform-heading { display: flex; margin-bottom: 22px; align-items: start; justify-content: space-between; }
.platform-heading h3, .dashboard-title { margin-bottom: 10px; color: #171923; font-size: 1.08em; font-weight: 700; letter-spacing: -0.01em; }
.platform-heading p { margin-bottom: 0; color: #808797; font-size: 0.86em; }
.settings-dot { display: grid; width: 35px; height: 35px; color: white; background: #b8b8bc; border-radius: 7px 0 0 7px; place-items: center; }
.settings-dot::before { content: ""; width: 13px; height: 13px; background: white; border-radius: 50%; box-shadow: 0 -8px 0 -5px white, 0 8px 0 -5px white, 8px 0 0 -5px white, -8px 0 0 -5px white; }
.platform-content { display: grid; gap: 22px; grid-template-columns: minmax(170px, 33%) minmax(0, 1fr); }
.filter-panel, .risk-panel { background: #fff; border: 1px solid #e4e5ea; border-radius: 18px; box-shadow: 0 8px 22px rgba(24, 28, 45, 0.08); }
.filter-panel { padding: 18px; }
.filter-panel h4, .risk-levels h4, .dashboard-subtitle { margin: 0 0 16px; color: #1f2430; font-size: 0.72em; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.filter-panel label { display: block; margin-bottom: 13px; color: #635bff; font-size: 0.72em; }
.filter-panel label span { display: flex; min-height: 34px; margin-top: 6px; padding: 0 14px; align-items: center; justify-content: space-between; color: #2d3038; border: 1px solid #a9adb7; border-radius: 999px; font-size: 1.15em; }
.filter-panel label span::after { color: #c4c7d0; content: "⌄"; }
.filter-panel button, .dashboard-filter-action { display: grid; width: 100%; min-height: 34px; margin: 4px 0 22px; color: white; background: linear-gradient(90deg, #5d7ee8, #c33ac0); border: 0; border-radius: 999px; place-items: center; font-weight: 800; }
.risk-levels { display: grid; gap: 10px; }
.risk-levels span, .donut-legend span { display: flex; gap: 9px; align-items: center; color: #2e3440; font-size: 0.72em; }
.risk-levels i, .donut-legend i { width: 11px; height: 11px; border-radius: 3px; flex: 0 0 11px; }
.level-negligible { background: #2ecc71; }
.level-low { background: #d8d94f; }
.level-medium { background: #f5a73a; }
.level-high { background: #e96b4f; }
.level-catastrophic { background: #df2a2a; }
.level-pending { background: #bdbdbd; }
.risk-panel { display: flex; min-width: 0; padding: 26px; align-items: center; justify-content: center; flex-direction: column; }
.donut-chart { position: relative; display: grid; width: min(76%, 290px); aspect-ratio: 1; margin: 3px auto 22px; background: conic-gradient(#2ecc71 0 25%, #d8d94f 25% 45%, #f5a73a 45% 60%, #e96b4f 60% 70%, #df2a2a 70% 75%, #bdbdbd 75% 100%); border-radius: 50%; place-items: center; }
.donut-chart::before { position: absolute; inset: 25%; background: white; border-radius: 50%; content: ""; }
.donut-hole { position: relative; z-index: 1; text-align: center; }
.donut-hole span { display: block; color: #333743; font-size: 0.86em; font-weight: 800; }
.donut-hole strong { display: block; margin-top: 6px; color: #353944; font-size: 1.8em; line-height: 1; }
.donut-legend { display: flex; max-width: 100%; gap: 12px; justify-content: center; flex-wrap: wrap; }

.problem-section { background: var(--cream-dark); }
.card-grid, .feature-grid { display: grid; gap: 18px; }
.four-up, .feature-grid { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.simple-card, .feature-card { padding: 30px; background: white; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(17, 3, 90, 0.04); }
.simple-card { min-height: 235px; }
.simple-card p, .feature-card p { margin-bottom: 0; }
.card-number { display: block; margin-bottom: 45px; color: var(--brand-violet); font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; }
.feature-card { min-height: 315px; transition: transform 0.25s, box-shadow 0.25s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 35px; color: white; background: var(--brand-navy); border-radius: 13px; place-items: center; font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; }
.feature-card a { display: block; margin-top: 25px; color: var(--brand-violet); font-size: 0.83rem; font-weight: 700; text-decoration: none; }
.platform-preview, .dark-section { color: white; background: var(--brand-navy); }
.platform-preview-grid { display: grid; gap: 70px; align-items: center; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.platform-preview-grid > * { min-width: 0; }
.platform-preview h2, .platform-preview h3, .dark-section h2, .dark-section h3, .mission-section h2 { color: white; }
.platform-preview p, .dark-section p, .mission-section p { color: #cbd8f4; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 27px; color: #686372; }
.check-list li::before { position: absolute; top: 3px; left: 0; display: grid; width: 17px; height: 17px; color: white; background: var(--brand-violet); border-radius: 50%; content: "✓"; place-items: center; font-size: 0.62rem; }
.light-list li { color: #d8d3ff; }
.steps { max-width: 940px; margin: 0 auto; padding: 0; list-style: none; }
.steps li { display: grid; padding: 27px 0; gap: 25px; border-bottom: 1px solid var(--line); grid-template-columns: 54px 1fr; }
.steps li > span { display: grid; width: 45px; height: 45px; color: white; background: var(--brand-navy); border-radius: 50%; place-items: center; font-family: var(--font-display); font-weight: 700; }
.steps h3 { margin-bottom: 4px; font-size: 1.35rem; }
.steps p { margin-bottom: 0; }
.case-preview { overflow: hidden; background: white; }
.case-scroll { display: grid; gap: 18px; overflow-x: auto; grid-auto-columns: minmax(300px, 1fr); grid-auto-flow: column; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.case-card { min-height: 340px; padding: 30px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); scroll-snap-align: start; }
.case-card span, .study-top span { color: var(--brand-violet); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.case-card h3 { margin-top: 45px; font-size: 1.65rem; }
.case-card strong { display: block; margin-top: 35px; color: var(--brand-navy); font-size: 0.78rem; line-height: 1.8; }
.posts-preview { background: var(--cream-dark); }
.posts-page { padding-top: 0; }
.posts-hero { background: var(--cream-dark); }
.news-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.news-grid-large { grid-template-columns: repeat(2, 1fr); }
.news-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(17, 3, 90, 0.04); }
.news-card > img, .news-image-fallback { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--brand-navy); }
.news-image-fallback { display: grid; place-items: center; }
.news-image-fallback span { color: white; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; letter-spacing: 0; }
.news-card > div:last-child { display: flex; min-height: 270px; padding: 28px; flex-direction: column; }
.news-card span { color: var(--brand-violet); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.news-card h2, .news-card h3 { margin-top: 24px; font-size: 1.8rem; }
.news-card p { margin-bottom: 24px; }
.news-card a { margin-top: auto; color: var(--brand-violet); font-size: 0.83rem; font-weight: 800; text-decoration: none; }
.news-card-large > div:last-child { min-height: 320px; }
.mission-section { padding: 0; background: var(--brand-navy); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mission-grid article { min-height: 420px; padding: 80px 60px; }
.mission-grid article + article { border-left: 1px solid rgba(255, 255, 255, 0.15); }
.final-cta { background: var(--cream-dark); }
.cta-card { display: flex; min-height: 310px; padding: 60px; align-items: center; justify-content: space-between; color: white; background: var(--brand-navy); border-radius: 32px; }
.cta-card h2 { max-width: 760px; margin-bottom: 0; color: white; }

.page-hero { padding: 190px 0 110px; overflow: hidden; }
.page-hero h1 { font-size: clamp(3rem, 5.5vw, 5.6rem); }
.compact-hero { padding-bottom: 90px; }
.compact-hero h1 { max-width: 950px; margin-inline: auto; }
.compact-hero .hero-text { margin-inline: auto; }
.compact-hero .button { margin-top: 20px; }
.stack-list article { display: grid; padding: 26px 0; gap: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); grid-template-columns: 50px 1fr; }
.stack-list span, .dark-card > span { color: #b9b3ff; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; }
.stack-list p { margin-bottom: 0; }
.stack-list-on-light article { border-bottom-color: var(--line); }
.stack-list-on-light span { color: var(--brand-violet); }
.two-column { display: grid; gap: 80px; align-items: center; grid-template-columns: 1fr 1fr; }
.video-embed { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #080224; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); box-shadow: var(--shadow); }
.video-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.solution-details { display: grid; gap: 24px; }
.solution-detail { display: grid; padding: 65px; gap: 80px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 30px; grid-template-columns: 1fr 1fr; }
.solution-detail.reverse > div { order: 2; }
.solution-detail .feature-icon { margin-bottom: 25px; }
.solution-detail .check-list { padding: 30px; background: var(--cream); border-radius: 20px; }
.partnership-section { background: var(--cream-dark); }
.stat-panel { display: grid; gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); grid-template-columns: repeat(3, 1fr); }
.stat-panel div { padding: 30px 18px; background: white; text-align: center; }
.stat-panel strong { display: block; color: var(--brand-navy); font-family: var(--font-display); font-size: 2.6rem; }
.stat-panel span { color: var(--muted); font-size: 0.75rem; }
.stat-panel-four { grid-template-columns: repeat(4, 1fr); }
.stat-panel-dark { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.18); }
.stat-panel-dark div { background: rgba(255, 255, 255, 0.07); }
.stat-panel-dark strong { color: white; }
.stat-panel-dark span { color: #d8d3ff; font-weight: 700; }
.case-study-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.study-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.study-card > div { padding: 32px; }
.study-card .study-top { min-height: 220px; background: var(--brand-navy); }
.study-top h2 { margin-top: 35px; color: white; font-size: 2.4rem; }
.study-card h3 { margin-top: 20px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.study-card ul { padding-left: 18px; color: var(--muted); }
.about-hero { background: var(--cream-dark); }
.mission-card { padding: 55px; color: white; background: var(--brand-navy); border-radius: 30px; box-shadow: var(--shadow); }
.mission-card span { color: #9fd1ff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.mission-card h2 { margin-top: 45px; color: white; }
.mission-card p { color: #cbd8f4; }
.rich-copy p { font-size: 1.1rem; }
.dark-card { padding: 35px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); }
.dark-card h3 { margin-top: 45px; }
.team-section .section-heading { max-width: 860px; margin-inline: auto; }
.team-grid { display: grid; gap: 28px; align-items: stretch; justify-content: center; grid-template-columns: repeat(2, minmax(0, 560px)); perspective: 1800px; }
.team-card { position: relative; min-height: clamp(560px, 58vw, 680px); background: transparent; border: 0; perspective: 1800px; }
.team-card-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1); }
.team-card:hover .team-card-inner, .team-card.is-flipped .team-card-inner { transform: rotateY(180deg); }
.team-card-face { position: absolute; inset: 0; display: flex; overflow: hidden; min-width: 0; background: white; border: 1px solid rgba(22, 19, 58, 0.12); border-radius: 8px; box-shadow: 0 26px 70px rgba(17, 3, 90, 0.12); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.team-card-front { align-items: end; color: white; background: var(--brand-navy); transform: rotateY(0deg) translateZ(0); }
.team-card-front::after { position: absolute; inset: 42% 0 0; background: linear-gradient(180deg, rgba(8, 2, 36, 0), rgba(8, 2, 36, 0.78)); content: ""; pointer-events: none; }
.team-card-back { padding: clamp(30px, 4vw, 48px); align-items: end; color: white; background: var(--brand-navy); transform: rotateY(180deg) translateZ(0); }
.team-card-back::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(185, 168, 236, 0.14), transparent 48%); content: ""; pointer-events: none; }
.team-photo, .team-monogram { position: absolute; inset: 0; width: 100%; height: 100%; }
.team-photo { display: block; object-fit: cover; object-position: center 18%; }
.team-card.is-founder-nayantara .team-photo { object-position: center 42%; transform: scale(1.12); }
.team-card.is-founder-jean .team-photo { object-position: center center; }
.team-monogram { display: grid; color: white; background: var(--brand-navy); place-items: center; font-family: var(--font-display); font-size: clamp(5rem, 12vw, 8rem); font-weight: 800; }
.team-photo-overlay, .team-card-copy { position: relative; z-index: 1; min-width: 0; }
.team-photo-overlay { width: 100%; padding: clamp(26px, 4vw, 42px); padding-right: 140px; }
.team-card span { display: block; color: #d8d3ff; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.team-card h3 { margin: 10px 0 0; color: white; font-size: clamp(2.1rem, 4vw, 3.25rem); letter-spacing: 0; }
.team-card p { max-width: 58ch; margin: 18px 0 0; color: #d9e0f1; font-size: clamp(0.98rem, 1.2vw, 1.08rem); line-height: 1.72; }
.team-card-toggle { position: absolute; z-index: 2; right: clamp(20px, 3vw, 32px); bottom: clamp(22px, 3vw, 34px); display: inline-flex; min-height: 44px; padding: 0 16px; gap: 10px; align-items: center; justify-content: center; color: var(--brand-navy); background: white; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 999px; box-shadow: 0 12px 26px rgba(8, 2, 36, 0.2); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.team-card-toggle span { display: inline; color: var(--brand-navy); font-size: inherit; letter-spacing: 0.08em; }
.team-card-toggle-back { top: clamp(20px, 3vw, 32px); bottom: auto; }
.team-card-toggle:focus-visible, .team-social:focus-visible { outline: 3px solid #d8d3ff; outline-offset: 3px; }
.team-social { display: inline-flex; margin-top: 24px; color: #d8d3ff; font-size: 0.78rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.team-social:hover { color: white; }
.contact-hero { padding-bottom: 120px; }
.contact-grid { display: grid; gap: 80px; align-items: start; grid-template-columns: 0.85fr 1.15fr; }
.email-link { display: flex; margin-top: 40px; gap: 15px; align-items: center; text-decoration: none; }
.email-link > span { display: grid; width: 45px; height: 45px; color: white; background: var(--brand-violet); border-radius: 50%; place-items: center; font-weight: 700; }
.email-link small, .email-link strong { display: block; }
.email-link small { color: var(--muted); }
.contact-card { padding: 45px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 2.4rem; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 6px; color: var(--brand-navy); font-size: 0.78rem; font-weight: 700; }
.form-field label span, .form-field small { color: #b94a3c; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: #fbfcfb; border: 1px solid #ddd9ec; border-radius: 10px; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand-violet); box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1); }
.form-field textarea { resize: vertical; }
.success-message { padding: 35px 0; text-align: center; }
.success-message > span { display: grid; width: 60px; height: 60px; margin: 0 auto 25px; color: white; background: var(--brand-violet); border-radius: 50%; place-items: center; font-size: 1.5rem; }
.demo-access-prompt { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.demo-access-prompt h2 { margin-bottom: 10px; font-size: 1.8rem; }
.demo-access-prompt > p:not(.eyebrow) { margin-bottom: 22px; }
.form-error { padding: 12px 14px; color: #8f3027; background: #fff3f1; border: 1px solid #efc0ba; border-radius: 10px; }
.demo-placeholder { min-height: 72vh; }
.demo-placeholder h1 { max-width: 760px; }
.demo-welcome-copy { margin: 30px 0; padding: 24px; background: white; border-left: 4px solid var(--brand-violet); border-radius: 0 12px 12px 0; }
.demo-welcome-copy p:last-child { margin-bottom: 0; }
.linkedin-widget-panel { overflow: hidden; max-width: 1040px; min-height: 520px; margin-inline: auto; padding: 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(17, 3, 90, 0.04); }
.linkedin-widget-panel-preview { max-width: none; min-height: 420px; }
.linkedin-widget-panel noscript p { margin-bottom: 0; text-align: center; }
.empty-state { max-width: 760px; margin-inline: auto; padding: 42px; background: white; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.empty-state h2 { max-width: 620px; margin-inline: auto; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.empty-state p { max-width: 620px; margin-inline: auto; }

.site-footer { padding: 80px 0 30px; color: #c8c3ea; background: #080224; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr 0.8fr 1fr 1fr 1.1fr 1.2fr; }
.footer-logo { width: 105px; margin-bottom: 25px; filter: brightness(0) invert(1); }
.footer-grid p { max-width: 320px; color: #b7b2dc; }
.footer-grid strong, .footer-grid a, .footer-grid span, .footer-link-button { display: block; margin-bottom: 11px; font-size: 0.82rem; }
.footer-grid strong { margin-bottom: 20px; color: white; font-family: var(--font-display); }
.footer-grid a { text-decoration: none; }
.footer-link-button { padding: 0; color: inherit; background: transparent; border: 0; text-align: left; text-decoration: underline; cursor: pointer; }
.footer-bottom { display: flex; margin-top: 60px; padding-top: 22px; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.73rem; }
.consent-banner { position: fixed; z-index: 160; right: 18px; bottom: 18px; left: 18px; display: grid; max-width: 1040px; margin-inline: auto; padding: 22px; gap: 20px; align-items: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 70px rgba(8, 2, 36, 0.2); grid-template-columns: minmax(0, 1fr) auto; }
.consent-banner[hidden], .consent-modal[hidden] { display: none; }
.consent-banner strong { display: block; color: var(--brand-navy); font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.consent-banner p { max-width: 720px; margin: 6px 0 0; font-size: 0.92rem; }
.consent-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.consent-actions .button { min-height: 44px; padding-inline: 16px; font-size: 0.82rem; }
.consent-modal { position: fixed; z-index: 170; inset: 0; display: grid; padding: 20px; background: rgba(8, 2, 36, 0.62); place-items: center; }
.consent-dialog { position: relative; width: min(100%, 640px); max-height: min(760px, calc(100vh - 40px)); overflow: auto; padding: clamp(26px, 4vw, 42px); background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 30px 90px rgba(8, 2, 36, 0.28); }
.consent-dialog h2 { padding-right: 42px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.consent-close { position: absolute; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; color: var(--brand-navy); background: var(--cream); border: 1px solid var(--line); border-radius: 50%; place-items: center; font-size: 1.35rem; cursor: pointer; }
.consent-option { display: flex; margin-top: 14px; padding: 18px; gap: 18px; align-items: center; justify-content: space-between; color: var(--ink); background: #fbfaff; border: 1px solid var(--line); border-radius: 12px; }
.consent-option strong { color: var(--brand-navy); }
.consent-option p { margin: 5px 0 0; font-size: 0.9rem; }
.consent-option span { color: var(--brand-violet); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.consent-option input { width: 22px; height: 22px; flex: 0 0 auto; accent-color: var(--brand-violet); }
.consent-dialog .consent-actions { margin-top: 24px; justify-content: flex-end; }
.compliance-hero { background: var(--cream); }
.compliance-document { padding: clamp(28px, 4vw, 46px); background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.compliance-updated { margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.compliance-document article + article { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.compliance-document h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.compliance-document p:last-child { margin-bottom: 0; }
.back-to-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: grid; width: 46px; height: 46px; color: white; background: var(--brand-violet); border: 0; border-radius: 50%; box-shadow: var(--shadow); opacity: 0; place-items: center; pointer-events: none; transform: translateY(10px); transition: 0.2s; cursor: pointer; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.js [data-reveal] { opacity: 1; transform: none; transition: opacity 0.65s ease, transform 0.65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-float-cards] .filter-panel { animation: float 5s ease-in-out infinite; }
.js [data-float-cards] .risk-panel { animation: float 5s ease-in-out infinite -1s; }
@keyframes float { 50% { transform: translateY(-3px); } }

@media (max-width: 1050px) {
  .nav-menu { gap: 18px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-dashboard { width: min(100%, 760px); justify-self: start; }
  .four-up, .feature-grid { grid-template-columns: 1fr 1fr; }
  .stat-panel-four { grid-template-columns: 1fr 1fr; }
  .platform-preview-grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .platform-preview-grid .platform-dashboard { max-width: 760px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .news-grid, .news-grid-large { grid-template-columns: 1fr 1fr; }
}

@media (hover: none) {
  .team-card:hover .team-card-inner { transform: none; }
  .team-card.is-flipped .team-card-inner { transform: rotateY(180deg); }
}

@media (max-width: 760px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
  .section { padding: 75px 0; }
  .site-header { padding: 8px 0; }
  .nav-shell { min-height: 58px; padding-left: 14px; }
  .brand img { width: 84px; height: 42px; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 76px; right: 16px; left: 16px; display: flex; padding: 25px; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); opacity: 0; flex-direction: column; pointer-events: none; transform: translateY(-10px); transition: 0.2s; }
  .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-menu > a { padding: 5px 0; font-size: 1rem; }
  .nav-menu .button { margin-top: 5px; }
  .hero, .page-hero, .auth-section { padding: 125px 0 70px; }
  .hero-copy h1 { font-size: 3.25rem; }
  .layout-split { grid-template-columns: 1fr; }
  .form-card { justify-self: stretch; }
  .auth-title { max-width: 12ch; font-size: 3.1rem; }
  .trust-row { margin-top: 38px; }
  .platform-dashboard { min-width: 0; border-radius: 18px; font-size: 0.62rem; }
  .platform-dashboard { grid-template-columns: 1fr; }
  .platform-sidebar { display: none; }
  .platform-main { padding: 16px; }
  .platform-content { grid-template-columns: 1fr; }
  .settings-dot { display: none; }
  .donut-chart { width: min(78%, 230px); }
  .hero-dashboard, .platform-preview-grid > div:last-child { height: auto; overflow: visible; }
  .split-heading { display: block; }
  .split-heading > p, .split-heading > .text-link { display: block; margin-top: 20px; }
  .four-up, .feature-grid, .three-up, .mission-grid, .case-study-grid, .solution-detail { grid-template-columns: 1fr; }
  .news-grid, .news-grid-large { grid-template-columns: 1fr; }
  .feature-card, .simple-card { min-height: auto; }
  .news-card > div:last-child, .news-card-large > div:last-child { min-height: auto; }
  .mission-grid article { min-height: auto; padding: 55px 20px; }
  .mission-grid article + article { border-top: 1px solid rgba(255, 255, 255, 0.15); border-left: 0; }
  .cta-card { display: block; padding: 38px 25px; }
  .cta-card .button { margin-top: 28px; }
  .solution-detail { padding: 35px 24px; gap: 20px; }
  .solution-detail.reverse > div { order: initial; }
  .stat-panel, .stat-panel-four, .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 575px; }
  .team-photo-overlay { padding-right: 118px; }
  .team-card-back { padding: 28px 22px; }
  .team-card p { font-size: 0.96rem; line-height: 1.62; }
  .study-card .study-top { min-height: auto; }
  .surface-card, .contact-card { padding: 30px 20px; }
  .empty-state { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 10px; flex-direction: column; }
  .consent-banner { grid-template-columns: 1fr; }
  .consent-actions { align-items: stretch; flex-direction: column; }
  .consent-actions .button { width: 100%; }
  .consent-option { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .team-card:hover .team-card-inner, .team-card.is-flipped .team-card-inner { transform: none; }
  .team-card.is-flipped .team-card-front { opacity: 0; visibility: hidden; }
  .team-card.is-flipped .team-card-back { z-index: 2; transform: none; }
}
