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

:root {
  --ink: #07182b;
  --ink-2: #0c2744;
  --blue: #155eef;
  --blue-soft: #eaf1ff;
  --ice: #f4f7fb;
  --paper: #fff;
  --line: #dbe4ee;
  --muted: #526479;
  --amber: #f7a928;
  --coral: #f46b45;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(7, 24, 43, .1);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; --page-progress: 0; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
body.menu-open { overflow: hidden; }
.scroll-progress { position: fixed; z-index: 2000; top: 0; right: 0; left: 0; height: 3px; background: rgba(21,94,239,.08); pointer-events: none; }
.scroll-progress i { display: block; width: calc(var(--page-progress) * 100%); height: 100%; background: linear-gradient(90deg, var(--blue), #8eb3ff, var(--amber)); box-shadow: 0 0 18px rgba(21,94,239,.7); }
.cursor-aura { position: fixed; z-index: 1999; top: -150px; left: -150px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(65,125,255,.12), rgba(65,125,255,0) 68%); pointer-events: none; transform: translate3d(-500px,-500px,0); transition: width .25s, height .25s; mix-blend-mode: multiply; }
.global-depth-field { position: fixed; z-index: 0; inset: 0; width: 100vw; height: 100vh; pointer-events: none; }
main, .site-footer { position: relative; z-index: 1; }
.chapter-rail { position: fixed; z-index: 900; right: 28px; bottom: 32px; display: flex; align-items: flex-end; gap: 14px; color: var(--muted); }
.chapter-count { padding-bottom: 1px; font-family: Manrope; font-size: 10px; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.chapter-pips { display: grid; gap: 7px; }
.chapter-pips button { position: relative; display: flex; width: 18px; height: 8px; align-items: center; justify-content: flex-end; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.chapter-pips i { display: block; width: 8px; height: 1px; background: currentColor; opacity: .35; transition: width .35s, opacity .35s, background .35s; }
.chapter-pips em { position: absolute; right: 25px; color: var(--ink); font-size: 10px; font-style: normal; font-weight: 600; letter-spacing: .08em; opacity: 0; pointer-events: none; text-transform: uppercase; transform: translateX(8px); transition: opacity .25s, transform .25s; white-space: nowrap; }
.chapter-pips button:hover em, .chapter-pips button.active em { opacity: 1; transform: none; }
.chapter-pips button.active i { width: 18px; background: var(--blue); opacity: 1; }
.home .chapter-rail { color: #c8d4e2; }
.home .chapter-pips em { color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.soft { background: var(--ice); }
.dark { color: #fff; background: var(--ink); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; background: currentColor; content: ""; }
.dark .eyebrow { color: #82aaff; }
h1, h2, h3, h4 { margin: 0; font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(52px, 7vw, 92px); }
h2 { font-size: clamp(38px, 5vw, 64px); }
h3 { font-size: 24px; letter-spacing: -.03em; }
h4 { font-size: 18px; letter-spacing: -.02em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.dark .lead { color: #a9b9ca; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-head > div:first-child { max-width: 760px; }
.section-head .lead { max-width: 430px; }
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn::after { content: "\2197"; font-size: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21, 94, 239, .24); }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.dark .btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; }

/* Navigation */
.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 8px 30px rgba(7,24,43,.08); backdrop-filter: blur(18px); }
.home .site-header:not(.scrolled) { color: #fff; }
.home .site-header:not(.scrolled) .menu-toggle { border-color: rgba(255,255,255,.28); background: rgba(7,24,43,.35); color: #fff; }
.nav { display: flex; height: 86px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .06em; line-height: 1; }
.brand-logo { width: 36px; height: 36px; border-radius: 11px; box-shadow: 0 8px 20px rgba(13,45,86,.16); }
.brand > span > span { color: var(--blue); }
.brand small { display: block; margin-top: 5px; color: currentColor; font-family: "DM Sans", sans-serif; font-size: 7px; font-weight: 600; letter-spacing: .19em; opacity: .58; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; }
.nav-links a:not(.btn) { position: relative; padding: 8px 0; }
.nav-links a:not(.btn)::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { min-height: 44px; padding: 0 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; padding: 6px 0; border: 0; background: transparent; color: inherit; cursor: pointer; font-size: 12px; font-weight: 600; }
.theme-toggle i { display: block; width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 50%; position: relative; }
.theme-toggle i::after { position: absolute; top: 2px; right: 2px; width: 9px; height: 9px; border-radius: 50%; background: currentColor; content: ""; }

/* Night mode — deliberate, high-contrast and persisted across the site. */
.night-mode { --ink: #eaf1fa; --ink-2: #10233a; --blue: #80aaff; --blue-soft: #122845; --ice: #0b1b2d; --paper: #071525; --line: #223a55; --muted: #a7bbcf; --shadow: 0 24px 60px rgba(0,0,0,.28); background: var(--paper); color: var(--ink); }
.night-mode .site-header.scrolled { background: rgba(7,21,37,.92); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.night-mode .home .site-header:not(.scrolled) { color: #fff; }
.night-mode .menu-toggle { border-color: #29435e; background: #0c2136; color: #fff; }
.night-mode .soft, .night-mode .page-hero { background: #0b1b2d; }
.night-mode .trust-strip, .night-mode .platform-marquee, .night-mode .operating-section { border-color: var(--line); background: #091a2d; }
.night-mode .platform-track { border-color: var(--line); background: linear-gradient(115deg, #0d2137, #0a1929); }
.night-mode .platform-intro, .night-mode .platform-track figure, .night-mode .platform-words { border-color: var(--line); }
.night-mode .platform-track figure:hover { background: #122b48; }
.night-mode .wordmarks { color: #9cb4cc; }
.night-mode .card, .night-mode .quote { border-color: var(--line); background: #0d2137; color: var(--ink); }
.night-mode .card p, .night-mode .article-body p, .night-mode .office-card p, .night-mode .job-meta, .night-mode .detail-row p, .night-mode .process-step p { color: var(--muted); }
.night-mode .office-card, .night-mode .form-card { background: #0d2137; }
.night-mode .field input, .night-mode .field textarea, .night-mode .field select { border-color: #2a4562; background: #081a2c; color: var(--ink); }
.night-mode .tag { border-color: #29445f; background: #0d2137; color: #bacbdd; }
.night-mode .systems-visual { background: #0d223a; }
.night-mode .system-chip { border-color: #2d4966; background: rgba(11,31,52,.94); color: var(--ink); }
.night-mode .system-chip small, .night-mode .platform-disclaimer { color: #9fb4c8; }
.night-mode .check-list li::before, .night-mode .icon-box { background: #17375c; color: #a9c6ff; }
.night-mode .detail-row, .night-mode .job, .night-mode .faq-list, .night-mode .faq-list details, .night-mode .process-step { border-color: var(--line); }
.night-mode .chapter-pips em { color: #fff; }
.night-mode .cursor-aura { mix-blend-mode: screen; opacity: .58; }
.night-mode .global-depth-field { opacity: .9; }
.night-mode .site-footer { background: #030c16; }


/* Hero */
.hero { position: relative; min-height: 780px; overflow: hidden; padding: 190px 0 90px; color: #fff; background: var(--ink); isolation: isolate; --hero-scroll: 0; }
.hero::before { position: absolute; z-index: 1; inset: -15%; background: radial-gradient(circle at 77% 47%, rgba(75,138,255,.23), transparent 34%); content: ""; opacity: calc(1 - var(--hero-scroll)); transform: scale(calc(1 + var(--hero-scroll) * .3)); }
.hero::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(7,24,43,.98) 0%, rgba(7,24,43,.88) 38%, rgba(7,24,43,.15) 72%); content: ""; }
.hero-art { position: absolute; z-index: 0; inset: -7%; width: 114%; height: 114%; max-width: none; object-fit: cover; object-position: center; opacity: .9; transform: translate3d(calc(var(--hero-scroll) * -4%), calc(var(--hero-scroll) * 8%), 0) scale(calc(1 + var(--hero-scroll) * .15)); transition: transform .08s linear; }
.hero .container { position: relative; z-index: 2; }
.hero-copy { transform: translate3d(0, calc(var(--hero-scroll) * -90px), 0) scale(calc(1 - var(--hero-scroll) * .08)); transform-origin: left center; opacity: calc(1 - var(--hero-scroll) * 1.35); transition: transform .08s linear, opacity .08s linear; }
.scene-canvas { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; opacity: calc(.95 - var(--hero-scroll) * .45); transform: scale(calc(1 + var(--hero-scroll) * .16)) rotate(calc(var(--hero-scroll) * 5deg)); transition: transform .08s linear, opacity .08s linear; }
.scene-geometry { position: absolute; z-index: 2; top: 50%; left: 73%; width: min(48vw, 680px); aspect-ratio: 1; pointer-events: none; perspective: 1100px; transform: translate3d(-50%, -50%, 0) rotateX(calc(64deg - var(--hero-scroll) * 26deg)) rotateZ(calc(-16deg + var(--hero-scroll) * 42deg)) scale(calc(1.05 - var(--hero-scroll) * .25)); transform-style: preserve-3d; transition: transform .08s linear; }
.scene-geometry i { position: absolute; inset: 10%; display: block; border: 1px solid rgba(126,176,255,.3); border-radius: 50%; box-shadow: inset 0 0 54px rgba(41,108,255,.07), 0 0 50px rgba(39,102,255,.08); transform-style: preserve-3d; }
.scene-geometry i:nth-child(1) { transform: translateZ(70px) rotateZ(20deg); }
.scene-geometry i:nth-child(2) { inset: 22%; border-color: rgba(247,169,40,.35); transform: translateZ(150px) rotateZ(-44deg); }
.scene-geometry i:nth-child(3) { inset: 0; opacity: .55; transform: translateZ(-80px) rotateZ(75deg); }
.scene-geometry b { position: absolute; top: 50%; left: 50%; width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, #9cc0ff, var(--blue) 55%, #072255); box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset, 0 0 42px rgba(37,111,255,.7); transform: translate3d(-50%,-50%,210px) rotateZ(25deg); }
.scene-cue { position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 30px; display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.scene-cue i { display: block; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; }
.scene-cue i::after { display: block; width: 4px; height: 4px; margin: 7px; border-radius: 50%; background: var(--amber); content: ""; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 740px; }
.hero h1 span { color: #8cb0ff; }
.hero .lead { max-width: 660px; margin: 28px 0 36px; color: #c0cddd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-ghost { border-color: rgba(255,255,255,.48); color: #fff; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 68px; color: #dce6ef; font-size: 13px; }
.hero-proof span { display: flex; align-items: center; gap: 10px; }
.hero-proof span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); content: ""; box-shadow: 0 0 0 6px rgba(247,169,40,.12); }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 30px; }
.trust-label { max-width: 190px; color: var(--muted); font-size: 13px; }
.wordmarks { display: flex; flex: 1; align-items: center; justify-content: space-around; gap: 28px; color: #7b8c9f; font-family: Manrope; font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.platform-marquee { position: relative; overflow: hidden; padding: 28px max(20px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: #fff; }
.platform-track { display: grid; grid-template-columns: 1.25fr repeat(5, minmax(90px, 1fr)) 1.5fr; align-items: stretch; min-width: 1100px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(115deg, #fff, #f7faff); }
.platform-intro, .platform-track figure, .platform-words { min-height: 118px; margin: 0; padding: 22px; border-right: 1px solid var(--line); }
.platform-intro { display: grid; align-content: center; font-family: Manrope; font-size: 13px; font-weight: 700; line-height: 1.35; letter-spacing: -.02em; }
.platform-intro em { color: var(--blue); font-style: normal; }
.platform-track figure { display: grid; align-content: center; justify-items: center; gap: 8px; transition: background .3s, transform .3s; }
.platform-track figure:hover { background: #edf4ff; transform: translateY(-5px); }
.platform-track figure img { width: min(76px, 100%); height: 38px; object-fit: contain; }
.platform-track figcaption { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.platform-words { display: grid; align-content: center; gap: 7px; border: 0; color: var(--ink); font-family: Manrope; font-size: 12px; font-weight: 700; line-height: 1.25; }
.platform-words span::before { margin-right: 8px; color: var(--amber); content: '•'; }
.platform-disclaimer { max-width: 800px; margin: 12px 0 0; color: #8a98a8; font-size: 10px; line-height: 1.45; }

/* Cards */
.card { position: relative; overflow: hidden; min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); transition: transform .3s, box-shadow .3s, border-color .3s; }
.card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
.card-number { margin-bottom: 48px; color: var(--blue); font-family: Manrope; font-size: 13px; font-weight: 700; }
.card p { margin-top: 16px; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--blue); font-weight: 600; }
.card-link::after { content: "\2192"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(5px); }
.icon-box { display: grid; width: 48px; height: 48px; margin-bottom: 32px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); place-items: center; font-size: 21px; font-weight: 700; }

.metric-band { overflow: hidden; border-radius: 32px; background: var(--ink); color: #fff; }
.metric { min-height: 210px; padding: 46px; border-right: 1px solid rgba(255,255,255,.12); }
.metric:last-child { border: 0; }
.metric strong { display: block; margin-bottom: 12px; color: #fff; font-family: Manrope; font-size: clamp(42px, 5vw, 64px); line-height: 1; letter-spacing: -.06em; }
.metric:nth-child(2) strong, .metric:nth-child(4) strong { color: #8cb0ff; }
.metric span { color: #9eafc2; }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.feature-copy .lead { margin: 24px 0 30px; }
.check-list { display: grid; gap: 15px; margin: 0 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-list li::before { display: grid; flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); content: "\2713"; font-size: 13px; font-weight: 700; place-items: center; }
.systems-visual { position: relative; min-height: 560px; padding: 32px; border-radius: 32px; background: #e9eff7; }
.systems-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 150px; height: 150px; border-radius: 40px; background: var(--blue); box-shadow: 0 24px 45px rgba(21,94,239,.35); color: #fff; transform: translate(-50%,-50%) rotate(4deg); place-items: center; }
.systems-core span { font-family: Manrope; font-size: 24px; font-weight: 700; transform: rotate(-4deg); }
.orbit { position: absolute; inset: 70px; border: 1px solid #aebfd4; border-radius: 50%; }
.system-chip { position: absolute; z-index: 3; min-width: 130px; padding: 16px 18px; border: 1px solid #d9e2ec; border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 12px 28px rgba(7,24,43,.08); font-size: 13px; font-weight: 600; }
.system-chip small { display: block; color: var(--muted); font-weight: 400; }
.system-chip:nth-of-type(3) { top: 45px; left: 50%; transform: translateX(-50%); }
.system-chip:nth-of-type(4) { top: 47%; right: 25px; }
.system-chip:nth-of-type(5) { bottom: 50px; left: 50%; transform: translateX(-50%); }
.system-chip:nth-of-type(6) { top: 47%; left: 25px; }

.quote { padding: 52px; border-radius: 28px; background: #fff; }
.quote-stars { margin-bottom: 24px; color: var(--amber); letter-spacing: 4px; }
.quote blockquote { margin: 0; font-family: Manrope; font-size: 24px; line-height: 1.45; letter-spacing: -.03em; }
.quote cite { display: block; margin-top: 30px; color: var(--muted); font-style: normal; }

.process { counter-reset: steps; }
.process-step { position: relative; padding: 36px 0 36px 100px; border-top: 1px solid var(--line); counter-increment: steps; }
.process-step::before { position: absolute; top: 28px; left: 0; color: var(--blue); content: "0" counter(steps); font-family: Manrope; font-size: 18px; font-weight: 700; }
.process-step p { max-width: 650px; margin-top: 10px; color: var(--muted); }

.cta { position: relative; overflow: hidden; padding: 80px; border-radius: 36px; color: #fff; background: var(--blue); }
.cta::before { position: absolute; top: -190px; right: -120px; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.04), 0 0 0 150px rgba(255,255,255,.035); content: ""; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { max-width: 760px; }
.cta p { max-width: 640px; margin: 22px 0 32px; color: #dce7ff; font-size: 19px; }

/* Editorial content scenes */
.manifesto-section { color: #fff; background: #061527; }
.manifesto { position: relative; min-height: 440px; padding: 34px 0; }
.manifesto::before { position: absolute; top: -40%; right: 3%; width: min(60vw, 740px); aspect-ratio: 1; border: 1px solid rgba(130,174,255,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(66,126,255,.045), 0 0 0 140px rgba(66,126,255,.025); content: ""; transform: translate3d(0, var(--section-shift, 0), 0) rotate(var(--section-tilt, 0deg)); }
.manifesto-line { position: relative; max-width: 1090px; margin: 14px 0 0; font-family: Manrope; font-size: clamp(37px, 5.3vw, 82px); font-weight: 600; line-height: 1.02; letter-spacing: -.065em; }
.manifesto-line.accent { max-width: 940px; color: #89b1ff; }
.manifesto-foot { position: relative; display: flex; justify-content: space-between; gap: 24px; margin-top: 76px; color: #95a9c0; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.operating-section { background: #fff; }
.operating-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 54px; }
.operating-line { position: absolute; top: 67px; right: 4%; left: 4%; height: 1px; background: linear-gradient(90deg, var(--blue), #9dc1ff, var(--amber)); transform: scaleX(calc(1 - var(--section-opacity, 1) + .25)); transform-origin: left; }
.operating-map article { position: relative; padding-top: 38px; }
.operating-map article::before { position: absolute; top: 0; width: 14px; height: 14px; border: 3px solid var(--blue); border-radius: 50%; background: #fff; content: ""; }
.operating-map article:nth-child(3)::before { border-color: var(--amber); }
.operating-map span { color: var(--blue); font-family: Manrope; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.operating-map h3 { margin-top: 13px; }
.operating-map p { margin-top: 14px; color: var(--muted); font-size: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; font-family: Manrope; font-size: clamp(19px, 2.2vw, 27px); font-weight: 600; letter-spacing: -.04em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 4px; color: var(--blue); content: '+'; font-family: DM Sans; font-size: 28px; font-weight: 400; transform: translateY(-50%); transition: transform .25s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { max-width: 820px; padding: 0 0 27px; color: var(--muted); font-size: 16px; }

/* Inner pages */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 180px 0 92px; background: var(--ice); --hero-scroll: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .scene-canvas { opacity: .54; mix-blend-mode: multiply; }
.page-hero .scene-cue { color: var(--muted); }
.page-hero .scene-geometry { left: 76%; opacity: .55; }
.page-hero .scene-geometry i { border-color: rgba(21,94,239,.23); }
.page-hero h1 { max-width: 970px; font-size: clamp(48px, 7vw, 82px); }
.page-hero .lead { max-width: 760px; margin-top: 28px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 35px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--blue); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.tag { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 13px; }
.detail-row { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 42px 0; border-top: 1px solid var(--line); }
.detail-row > span { color: var(--blue); font-family: Manrope; font-weight: 700; }
.detail-row p { max-width: 700px; color: var(--muted); }
.industry-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; }
.industry-card .industry-code { color: var(--blue); font-family: Manrope; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.industry-card ul { margin: 22px 0 0; padding-left: 18px; color: var(--muted); }
.case-card { min-height: 420px; padding: 0; }
.case-top { display: flex; min-height: 190px; align-items: flex-end; padding: 28px; background: var(--ink-2); color: #fff; }
.case-top.orange { background: #f2a527; color: var(--ink); }
.case-top.blue { background: var(--blue); }
.case-body { padding: 30px; }
.case-result { display: flex; gap: 28px; margin-top: 24px; }
.case-result strong { display: block; font-family: Manrope; font-size: 28px; letter-spacing: -.04em; }
.case-result small { color: var(--muted); }
.team-visual { min-height: 520px; overflow: hidden; border-radius: 32px; background: var(--ink); position: relative; }
.team-visual::before { position: absolute; inset: 10% 12%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(21,94,239,.12), 0 0 0 140px rgba(255,255,255,.035); content: ""; }
.team-visual-copy { position: absolute; right: 48px; bottom: 48px; left: 48px; color: #fff; }
.team-visual-copy strong { display: block; font-family: Manrope; font-size: 64px; letter-spacing: -.06em; }
.office-card { padding: 36px; border-radius: 24px; background: var(--ice); }
.office-card p { margin-top: 18px; color: var(--muted); }
.job { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 32px 0; border-top: 1px solid var(--line); }
.job-meta { margin-top: 8px; color: var(--muted); font-size: 14px; }
.article-card { padding: 0; }
.article-art { min-height: 210px; padding: 28px; color: #fff; background: var(--ink); }
.article-card:nth-child(2) .article-art { background: var(--blue); }
.article-card:nth-child(3) .article-art { color: var(--ink); background: var(--amber); }
.article-art span { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.article-body { padding: 30px; }
.article-body p { margin-top: 16px; }
.article-body time { display: block; margin-top: 26px; color: #8291a2; font-size: 13px; }

/* Forms */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-details { display: grid; gap: 28px; margin-top: 40px; }
.contact-item { padding-top: 22px; border-top: 1px solid var(--line); }
.contact-item span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 13px; }
.form-card { padding: 44px; border-radius: 28px; background: var(--ice); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #fff; color: var(--ink); transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.1); }
.form-note { margin-top: 14px; color: var(--muted); font-size: 12px; }
.form-success { display: none; padding: 20px; border-radius: 14px; background: #e7f7ee; color: #17663a; }

/* Footer */
.site-footer { padding: 80px 0 28px; color: #fff; background: #051321; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 70px; }
.footer-intro p { max-width: 360px; margin-top: 22px; color: #8fa2b5; }
.footer-col h4 { margin-bottom: 22px; color: #dce6ef; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 11px 0; color: #91a4b8; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #6f8498; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.immersive-section { position: relative; overflow: clip; transform-style: preserve-3d; }
.immersive-section > .container { position: relative; z-index: 1; }
.immersive-section::after { position: absolute; z-index: 0; top: 48px; right: max(24px, calc((100vw - var(--max)) / 2)); color: var(--blue); content: 'SCENE / ' attr(data-scene); font-family: Manrope; font-size: 9px; font-weight: 700; letter-spacing: .16em; opacity: .55; }
.immersive-section > .container { transform: perspective(1450px) translate3d(0, var(--section-shift, 0), 0) rotateX(var(--section-tilt, 0deg)) scale(var(--section-scale, 1)); opacity: var(--section-opacity, 1); transform-origin: center center; transition: transform .08s linear, opacity .08s linear; }
.immersive-section:nth-of-type(2n) > .container { transform: perspective(1450px) translate3d(0, var(--section-shift, 0), 0) rotateY(calc(var(--section-tilt, 0deg) * -.7)) scale(var(--section-scale, 1)); }
.depth-plane { position: absolute; z-index: 0; top: 5%; right: -15%; width: min(58vw, 760px); height: 120%; border: 1px solid rgba(21,94,239,.09); border-radius: 46%; background: radial-gradient(ellipse at center, rgba(77,135,255,.055), transparent 63%); transform: translate3d(0, var(--section-shift, 0), 0) rotate(var(--section-tilt, 0deg)); transition: transform .08s linear; }
.soft .depth-plane { border-color: rgba(21,94,239,.13); }
.dark .depth-plane { border-color: rgba(143,181,255,.14); background: radial-gradient(ellipse at center, rgba(55,117,255,.12), transparent 63%); }
.tilt-card { position: relative; transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transform-style: preserve-3d; transition: transform .22s ease, box-shadow .3s, border-color .3s; will-change: transform; }
.card.tilt-card:hover { transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px); }
.tilt-card::after { position: absolute; inset: 0; z-index: 4; border-radius: inherit; background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,.25), transparent 35%); content: ""; opacity: .55; pointer-events: none; }
.systems-visual.tilt-card .systems-core, .systems-visual.tilt-card .system-chip { transform-style: preserve-3d; }
.systems-visual.tilt-card .systems-core { transform: translate(-50%,-50%) rotate(4deg) translateZ(35px); }
.systems-visual.tilt-card .system-chip { transform: translateZ(22px); }
.systems-visual.tilt-card .system-chip:nth-of-type(3), .systems-visual.tilt-card .system-chip:nth-of-type(5) { transform: translateX(-50%) translateZ(22px); }

@media (max-width: 960px) {
  .section { padding: 84px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px 34px; background: #fff; font-family: Manrope; font-size: 32px; transform: translateY(-105%); transition: transform .35s; }
  .night-mode .nav-links { background: #071525; color: #f6faff; }
  .nav-links .theme-toggle { font-size: 15px; }
  .nav-links.open { transform: none; }
  .nav-links .btn { min-height: 54px; font-size: 16px; }
  .menu-toggle { z-index: 2; display: grid; place-items: center; }
  .feature-split, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .scene-geometry { left: 82%; width: 700px; opacity: .8; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 24px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-intro { grid-column: 1/-1; }
  .operating-map { grid-template-columns: repeat(2, 1fr); }
  .operating-line { display: none; }
  .platform-marquee { overflow-x: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 720px; padding-top: 150px; }
  .hero::after { background: linear-gradient(90deg, rgba(7,24,43,.98), rgba(7,24,43,.84)); }
  .hero-art { object-position: 64% center; opacity: .55; }
  .scene-geometry { top: 48%; left: 92%; width: 540px; opacity: .48; }
  .page-hero .scene-geometry { left: 98%; }
  .scene-cue { display: none; }
  .hero-proof { gap: 16px 24px; }
  .hero-proof span { flex: 0 0 calc(50% - 12px); }
  .brand { gap: 8px; font-size: 15px; }
  .brand-logo { width: 32px; height: 32px; border-radius: 10px; }
  .brand small { margin-top: 4px; font-size: 6px; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 38px; }
  .trust-inner { align-items: flex-start; flex-direction: column; padding: 28px 0; }
  .wordmarks { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .platform-marquee { padding: 20px 14px; }
  .platform-track { grid-template-columns: 150px repeat(5, 110px) 175px; min-width: 875px; }
  .platform-intro, .platform-track figure, .platform-words { min-height: 100px; padding: 15px; }
  .metric { min-height: auto; padding: 34px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .manifesto { min-height: 380px; }
  .manifesto-foot { align-items: flex-start; flex-direction: column; margin-top: 50px; }
  .operating-map { grid-template-columns: 1fr; padding-top: 0; }
  .operating-map article { padding: 25px 0 25px 42px; border-bottom: 1px solid var(--line); }
  .operating-map article::before { top: 30px; left: 0; }
  .immersive-section::after { top: 24px; right: 14px; }
  .systems-visual { min-height: 470px; padding: 12px; }
  .orbit { inset: 72px 38px; }
  .system-chip { min-width: 108px; padding: 12px; }
  .system-chip:nth-of-type(4) { right: 8px; }
  .system-chip:nth-of-type(6) { left: 8px; }
  .quote, .form-card { padding: 28px; }
  .cta { padding: 48px 28px; }
  .detail-row { grid-template-columns: 1fr; gap: 10px; }
  .job { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-intro { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .chapter-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .scene-canvas, .scene-geometry, .cursor-aura { display: none; }
  .global-depth-field { display: none; }
  .hero-copy, .hero-art { transform: none; opacity: 1; }
  .immersive-section > .container { transform: none !important; opacity: 1 !important; }
  .chapter-rail { display: none; }
}

/* ── SlideInfo 2026 visual system: editorial, architectural, unmistakable ── */
:root {
  --ink: #07192f;
  --ink-2: #112d50;
  --blue: #2f7cff;
  --blue-soft: #deebff;
  --ice: #edf4ff;
  --paper: #f8fbff;
  --line: #cfdcec;
  --muted: #5c718b;
  --amber: #f6a928;
  --radius: 0px;
  --shadow: 0 28px 70px rgba(17,17,15,.14);
  --max: 1280px;
}
body { font-family: "Space Grotesk", sans-serif; letter-spacing: -.015em; }
body::before { position: fixed; z-index: -1; inset: 0; background-image: linear-gradient(rgba(7,25,47,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(7,25,47,.03) 1px, transparent 1px); background-size: 52px 52px; content: ""; pointer-events: none; }
.container { width: min(calc(100% - 64px), var(--max)); }
.section { padding: 146px 0; }
.section-sm { padding: 92px 0; }
h1, h2, h3, h4, .brand, .metric strong, .manifesto-line { font-family: "Space Grotesk", sans-serif; }
h1 { font-size: clamp(62px, 8vw, 118px); line-height: .91; letter-spacing: -.085em; }
h2 { font-size: clamp(44px, 5.8vw, 80px); line-height: .96; letter-spacing: -.072em; }
h3 { font-size: 25px; letter-spacing: -.055em; }
.lead { max-width: 48ch; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.48; }
.eyebrow, .card-number, .chapter-count, .scene-cue, .platform-disclaimer, .metric span { font-family: "DM Mono", monospace; font-weight: 500; letter-spacing: .08em; }
.eyebrow { color: var(--ink); font-size: 10px; }
.eyebrow::before { width: 34px; height: 1px; }
.dark .eyebrow { color: var(--blue); }
.scroll-progress { height: 2px; background: transparent; }
.scroll-progress i { background: var(--blue); box-shadow: none; }
.cursor-aura { width: 340px; height: 340px; background: radial-gradient(circle, rgba(47,124,255,.16), transparent 65%); }

/* Header */
.site-header { border-bottom: 1px solid transparent; }
.site-header.scrolled { border-color: var(--line); background: rgba(248,251,255,.86); box-shadow: none; backdrop-filter: blur(20px); }
.nav { height: 76px; }
.brand { font-size: 15px; letter-spacing: .1em; }
.brand-logo { width: 34px; height: 34px; border-radius: 0; box-shadow: none; }
.brand > span > span { color: inherit; }
.brand small { font-family: "DM Mono", monospace; font-size: 6px; letter-spacing: .13em; opacity: .58; }
.nav-links { gap: 22px; font-size: 12px; letter-spacing: .01em; }
.nav-links a:not(.btn)::after { height: 1px; background: var(--blue); }
.theme-toggle { font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .05em; }
.theme-toggle i { border-radius: 0; width: 15px; height: 15px; }
.theme-toggle i::after { top: 3px; right: 3px; width: 6px; height: 6px; border-radius: 0; }
.btn { min-height: 50px; border-radius: 0; background: var(--ink); color: #fff; font-size: 13px; letter-spacing: .015em; }
.btn::after { color: var(--blue); }
.btn:hover { box-shadow: 7px 7px 0 var(--blue); transform: translate(-3px,-3px); }
.btn-light { background: var(--blue); color: var(--ink); }
.btn-ghost { border-color: currentColor; }

/* Hero */
.hero { min-height: 850px; background: #06172b; }
.hero::before { background: radial-gradient(circle at 76% 46%, rgba(47,124,255,.3), transparent 31%); }
.hero::after { background: linear-gradient(90deg, rgba(6,23,43,.99) 0%, rgba(6,23,43,.93) 34%, rgba(6,23,43,.4) 70%, rgba(6,23,43,.16) 100%); }
.hero-art { filter: saturate(.8) contrast(1.1) brightness(.78); opacity: .82; }
.hero h1 span { color: var(--blue); }
.hero .lead { color: #c5c5b8; }
.hero .btn-ghost { border-color: #9b9b8e; color: #fff; }
.hero-proof { color: #c8c8bc; font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .02em; }
.hero-proof span::before { border-radius: 0; width: 6px; height: 6px; background: var(--blue); box-shadow: none; }
.scene-geometry i { border-color: rgba(92,155,255,.48); box-shadow: inset 0 0 54px rgba(47,124,255,.1), 0 0 50px rgba(47,124,255,.08); }
.scene-geometry i:nth-child(2) { border-color: rgba(255,107,53,.5); }
.scene-geometry b { border-radius: 0; background: var(--blue); box-shadow: 0 0 0 1px rgba(255,255,255,.55) inset, 0 0 48px rgba(47,124,255,.52); }
.hero .scene-canvas { opacity: calc(1 - var(--hero-scroll) * .28); mix-blend-mode: screen; }
.page-hero .scene-canvas { opacity: .74; }
.hero .scene-geometry { opacity: .45; }
.hero:hover .scene-geometry { opacity: .75; }
.scene-cue { font-size: 9px; }
.scene-cue i { border-radius: 0; }
.scene-cue i::after { border-radius: 0; background: var(--blue); }

/* Content system */
.trust-strip, .platform-marquee { background: var(--paper); border-color: var(--line); }
.trust-inner { min-height: 92px; }
.trust-label { font-family: "DM Mono", monospace; font-size: 10px; line-height: 1.55; }
.wordmarks { color: var(--ink); font-size: 13px; letter-spacing: -.04em; }
.platform-track { border-radius: 0; border-color: var(--ink); background: var(--paper); }
.platform-intro, .platform-track figure, .platform-words { border-color: var(--line); }
.platform-track figure:hover { background: var(--blue-soft); transform: none; }
.platform-intro { font-family: "DM Mono", monospace; font-size: 10px; }
.platform-track figcaption { font-family: "DM Mono", monospace; font-size: 8px; }
.platform-words { font-size: 11px; }
.platform-words span::before { color: var(--amber); }
.soft { background: var(--ice); }
.section-head { margin-bottom: 74px; }
.card { min-height: 330px; border: 0; border-top: 2px solid var(--ink); border-radius: 0; background: transparent; padding: 30px 0; }
.card::before { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--line); content: ""; }
.card:hover { border-color: var(--blue); box-shadow: none; transform: none; }
.card-number { margin-bottom: 70px; color: var(--amber); font-size: 10px; }
.card p { max-width: 30ch; font-size: 15px; }
.card-link { color: var(--ink); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.card-link::after { color: var(--amber); }
.icon-box { width: auto; height: auto; margin-bottom: 64px; border-radius: 0; background: transparent; color: var(--amber); font-family: "DM Mono", monospace; font-size: 13px; justify-content: start; }
.metric-band { border-radius: 0; background: var(--ink); }
.metric { padding: 50px 36px; }
.metric strong { color: var(--blue); }
.metric:nth-child(2) strong, .metric:nth-child(4) strong { color: #fff; }
.metric span { color: #a8a89e; font-size: 9px; }
.systems-visual { border-radius: 0; background: #dce9fa; }
.systems-core { border-radius: 0; background: var(--ink); box-shadow: 12px 12px 0 var(--blue); }
.orbit { border-color: #8c8f84; }
.system-chip { border-radius: 0; border-color: #9ab3d0; background: #f8fbff; box-shadow: none; }
.quote { border-radius: 0; border-top: 2px solid var(--ink); background: transparent; padding: 34px 0; }
.quote-stars { color: var(--amber); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .06em; }
.quote blockquote { font-size: clamp(23px, 2.2vw, 31px); letter-spacing: -.05em; }
.cta { border-radius: 0; background: var(--blue); color: var(--ink); }
.cta::before { border-color: rgba(17,17,15,.3); box-shadow: 0 0 0 75px rgba(17,17,15,.04), 0 0 0 150px rgba(17,17,15,.03); }
.cta .eyebrow, .cta p { color: var(--ink); }
.cta .btn-light { background: var(--ink); color: #fff; }
.cta .btn-light::after { color: var(--blue); }
.manifesto-section { background: var(--ink); }
.manifesto-line.accent { color: #8bb7ff; }
.manifesto::before { border-color: rgba(92,155,255,.35); box-shadow: 0 0 0 70px rgba(47,124,255,.05), 0 0 0 140px rgba(47,124,255,.025); }
.manifesto-foot { font-family: "DM Mono", monospace; font-size: 9px; }
.operating-map article::before { border-radius: 0; border-color: var(--ink); background: var(--blue); }
.operating-map article:nth-child(3)::before { border-color: var(--amber); background: var(--amber); }
.operating-line { background: linear-gradient(90deg, var(--ink), var(--blue), var(--amber)); }
.faq-list summary::after { color: var(--amber); }

/* Inner pages and night mode */
.page-hero { background: var(--ice); }
.page-hero .scene-geometry i { border-color: rgba(17,17,15,.2); }
.tag { border-radius: 0; border-color: var(--ink); background: transparent; color: var(--ink); font-family: "DM Mono", monospace; font-size: 9px; }
.case-top, .article-art, .team-visual { background: var(--ink); }
.case-top.orange, .article-card:nth-child(3) .article-art { background: var(--blue); }
.case-top.blue, .article-card:nth-child(2) .article-art { background: var(--amber); }
.office-card, .form-card { border-radius: 0; background: var(--ice); }
.field input, .field textarea, .field select { border-radius: 0; border-color: var(--ink); background: transparent; }
.site-footer { background: var(--ink); }
.night-mode { --ink: #edf5ff; --ink-2: #d9e8fa; --blue: #73a9ff; --blue-soft: #173663; --ice: #0b1d34; --paper: #061526; --line: #294967; --muted: #a7bdd3; --amber: #f6a928; --shadow: 0 28px 70px rgba(0,0,0,.4); }
.night-mode body::before { background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); }
.night-mode .site-header.scrolled { border-color: var(--line); background: rgba(6,21,38,.86); }
.night-mode .soft, .night-mode .page-hero, .night-mode .operating-section { background: var(--ice); }
.night-mode .trust-strip, .night-mode .platform-marquee { background: #10100f; }
.night-mode .platform-track { border-color: #edf5ff; background: #061526; }
.night-mode .platform-track figure:hover { background: #173663; }
.night-mode .card, .night-mode .quote { background: transparent; border-color: var(--ink); }
.night-mode .systems-visual { background: #102c4c; }
.night-mode .system-chip { border-color: #4b7298; background: #0d2845; }
.night-mode .office-card, .night-mode .form-card { background: #0d2845; }
.night-mode .field input, .night-mode .field textarea, .night-mode .field select { border-color: #6b91b6; background: #061526; }
.night-mode .tag { border-color: var(--ink); color: var(--ink); }
.night-mode .check-list li::before, .night-mode .icon-box { background: transparent; color: var(--blue); }
.night-mode .chapter-pips em { color: var(--ink); }

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 88px 0; }
  h1 { font-size: clamp(54px, 16vw, 76px); }
  h2 { font-size: clamp(40px, 12vw, 56px); }
  .hero { min-height: 760px; }
  .card { min-height: auto; padding: 26px 0 34px; }
  .card-number, .icon-box { margin-bottom: 38px; }
  .nav-links { background: var(--paper); }
  .night-mode .nav-links { background: var(--paper); }
}

/* Odoo-first visual refinement */
:root { --ink:#10223f; --ink-2:#18345d; --blue:#5468d8; --blue-soft:#eef0ff; --ice:#f6f8fe; --paper:#fff; --line:#dbe2f0; --muted:#60708a; --amber:#f1ae62; --radius:28px; --shadow:0 22px 55px rgba(38,57,111,.10); }
body { font-family:"Space Grotesk",sans-serif; background:var(--paper); }
.site-header.scrolled { background:rgba(255,255,255,.88); border-bottom:1px solid var(--line); }
.btn { background:linear-gradient(135deg,#5d68d8,#4657c8); box-shadow:0 12px 25px rgba(70,87,200,.22); }
.btn-light { background:#fff; box-shadow:none; }.btn-ghost { background:rgba(255,255,255,.55); }
.card,.quote,.office-card,.form-card { border-radius:var(--radius); border-color:var(--line); box-shadow:0 10px 32px rgba(26,47,98,.045); }
.card:hover { border-color:#aeb9f2; box-shadow:0 22px 42px rgba(48,67,139,.11); }
.soft,.page-hero { background:linear-gradient(145deg,var(--ice),#fbfcff); }.page-hero { border-bottom:1px solid var(--line); }
.systems-visual { background:linear-gradient(145deg,#e7ebff,#f5f7ff); }.systems-core { background:linear-gradient(135deg,#6975e8,#4b5bc9); }
.cta { background:linear-gradient(135deg,#4a59c9,#7480e9); box-shadow:0 24px 54px rgba(64,79,183,.23); }.trust-strip { background:#fff; }.wordmarks span:first-child { color:#5b63c8; }
.theme-toggle { padding:8px 11px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.6); }
.night-mode { --ink:#edf1ff; --ink-2:#dce5ff; --blue:#aeb7ff; --blue-soft:#202b61; --ice:#111936; --paper:#0b1128; --line:#2d3b69; --muted:#aebbd7; --amber:#f0bc82; }
.night-mode .site-header.scrolled { background:rgba(11,17,40,.9); }.night-mode .soft,.night-mode .page-hero,.night-mode .operating-section { background:linear-gradient(145deg,#101936,#0d1530); }
.night-mode .card,.night-mode .quote,.night-mode .office-card,.night-mode .form-card { background:rgba(18,28,61,.78); border-color:var(--line); box-shadow:none; }
.night-mode .systems-visual { background:linear-gradient(145deg,#1a2760,#101b42); }.night-mode .system-chip { background:rgba(14,24,57,.94); border-color:#3a4d8c; }.night-mode .theme-toggle { background:#151e45; border-color:#3a4d8c; }.night-mode .trust-strip { background:#0d1530; }

/* Slide AI public chat */
.slide-ai{position:fixed;z-index:1900;right:26px;bottom:24px;font-family:"Space Grotesk",sans-serif}.slide-ai-launch{display:flex;align-items:center;gap:9px;padding:13px 17px;border:0;border-radius:999px;background:linear-gradient(135deg,#5d68d8,#4657c8);box-shadow:0 15px 34px rgba(46,58,162,.3);color:#fff;font:600 14px inherit;cursor:pointer}.slide-ai-launch span{font-size:18px}.slide-ai-panel{position:absolute;right:0;bottom:62px;width:min(370px,calc(100vw - 32px));overflow:hidden;border:1px solid var(--line);border-radius:22px;background:var(--paper);box-shadow:0 24px 64px rgba(14,26,70,.25)}.slide-ai-panel header{display:flex;align-items:center;justify-content:space-between;padding:16px 17px;background:linear-gradient(135deg,#4b5bc9,#7581e8);color:#fff}.slide-ai-panel header small{display:block;opacity:.74;font-size:11px}.slide-ai-panel header button{border:0;background:transparent;color:#fff;font-size:26px;line-height:1;cursor:pointer}.slide-ai-log{display:grid;gap:10px;max-height:270px;min-height:185px;overflow:auto;padding:16px}.ai-message,.visitor-message{max-width:90%;margin:0;padding:10px 12px;border-radius:12px;font-size:13px;line-height:1.45}.ai-message{justify-self:start;background:var(--blue-soft);color:var(--ink)}.visitor-message{justify-self:end;background:var(--blue);color:#fff}.slide-ai-prompts{display:flex;flex-wrap:wrap;gap:6px;padding:0 16px 13px}.slide-ai-prompts button{border:1px solid var(--line);border-radius:999px;background:transparent;padding:6px 9px;color:var(--ink);font:11px inherit;cursor:pointer}.slide-ai-panel form{display:flex;gap:7px;padding:12px;border-top:1px solid var(--line)}.slide-ai-panel input{min-width:0;flex:1;border:1px solid var(--line);border-radius:9px;padding:9px;background:transparent;color:var(--ink)}.slide-ai-panel form button{border:0;border-radius:9px;background:var(--blue);padding:0 12px;color:#fff;font-weight:600;cursor:pointer}.slide-ai-handoff{justify-self:start;margin:0 0 13px 16px;color:var(--blue);font-size:12px;font-weight:700;text-decoration:underline}.night-mode .slide-ai-panel{background:#101936;border-color:var(--line)}.night-mode .slide-ai-prompts button,.night-mode .slide-ai-panel input{border-color:var(--line);color:var(--ink)}@media(max-width:640px){.slide-ai{right:16px;bottom:16px}}
