:root {
  --navy-950: #031330;
  --navy-900: #071a3d;
  --navy-800: #0a2859;
  --blue-700: #0b57d0;
  --blue-600: #1469e4;
  --blue-500: #2176ff;
  --blue-100: #e9f1ff;
  --green-600: #009f83;
  --green-500: #0db89a;
  --green-100: #def8f3;
  --gold-500: #f0b429;
  --gold-100: #fff1bf;
  --violet-100: #eee9ff;
  --violet-600: #6f4bd8;
  --ink: #07162f;
  --muted: #53627a;
  --line: #dce4ef;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --shadow-sm: 0 10px 30px rgba(3, 25, 66, .08);
  --shadow-lg: 0 34px 90px rgba(3, 25, 66, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --edge-gradient: linear-gradient(115deg, #8db8ff 0%, #61d4bd 48%, #f4cf64 100%);
  --edge-gradient-strong: linear-gradient(115deg, var(--blue-700) 0%, var(--green-500) 48%, var(--gold-500) 100%);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--navy-950); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 78px; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-color: transparent; box-shadow: 0 8px 30px rgba(3,25,66,.06); backdrop-filter: blur(18px); }
.site-header.is-scrolled::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--edge-gradient); opacity: .7; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; letter-spacing: -.045em; }
.brand > span > span { color: var(--blue-600); }
.brand-mark { width: 38px; height: 38px; overflow: visible; }
.brand-mark path { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3.3; }
.brand-mark__back { stroke: var(--green-500); }
.brand-mark__front, .brand-mark__fold { stroke: var(--navy-900); }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.button) { position: relative; color: #33435c; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--blue-600); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px; background: var(--soft); }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 10px; padding: 0 21px; border: 1px solid transparent; border-radius: 12px; font-weight: 750; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(33,118,255,.35); outline-offset: 3px; }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--large { min-height: 56px; padding-inline: 25px; border-radius: 15px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 12px 28px rgba(20,105,228,.25); }
.button--primary:hover { box-shadow: 0 16px 34px rgba(20,105,228,.34); }
.button--ghost { color: var(--navy-900); border-color: var(--line); background: rgba(255,255,255,.75); }
.button--light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.button--full { width: 100%; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; min-height: 100vh; padding: 148px 0 46px; overflow: hidden; background: radial-gradient(circle at 10% 12%, rgba(13,184,154,.09), transparent 26rem), radial-gradient(circle at 92% 24%, rgba(33,118,255,.12), transparent 30rem), linear-gradient(180deg, #fbfdff 0%, #f7faff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(7,26,61,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(7,26,61,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 76%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(50px, 7vw, 96px); }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 3px; border-radius: 99px; background: var(--edge-gradient-strong); }
.hero h1 { max-width: 670px; margin: 0; font-size: clamp(48px, 5.5vw, 78px); line-height: .98; letter-spacing: -.065em; }
.hero h1 em { color: var(--blue-600); font-style: normal; background: linear-gradient(110deg, var(--blue-600), var(--green-600)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 1.65vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.google-note { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: #526179; font-size: 13px; }
.google-note svg { flex: 0 0 auto; width: 19px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb--one { width: 190px; height: 190px; top: 80px; right: -70px; border: 1px solid rgba(33,118,255,.13); }
.hero-orb--two { width: 130px; height: 130px; left: -80px; bottom: 160px; background: rgba(13,184,154,.05); }

.hero-product { position: relative; z-index: 1; min-width: 0; padding: 35px 12px 50px 8px; }
.product-window { position: relative; width: 100%; overflow: hidden; border: 1px solid transparent; border-radius: 25px; background: linear-gradient(rgba(255,255,255,.93),rgba(255,255,255,.93)) padding-box, var(--edge-gradient) border-box; box-shadow: var(--shadow-lg); transform: perspective(1300px) rotateY(-3deg) rotateX(1deg); transform-origin: center; }
.product-topbar { display: flex; height: 54px; align-items: center; justify-content: space-between; padding: 0 18px; color: #fff; background: var(--navy-900); }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; }
.mini-brand span { width: 16px; height: 19px; border: 2px solid #35d2b5; border-radius: 3px; }
.avatar { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.13); font-size: 9px; font-weight: 800; }
.product-body { display: grid; grid-template-columns: 48px 1fr; min-height: 422px; }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 26px; border-right: 1px solid #e6ecf4; background: #f8faff; }
.product-sidebar span { width: 17px; height: 17px; border: 2px solid #a4b2c5; border-radius: 5px; }
.product-sidebar span.is-active { border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 5px var(--blue-100); }
.product-content { min-width: 0; padding: 32px 30px; }
.product-kicker { margin: 0 0 7px; color: var(--blue-600); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.product-content h2 { margin: 0; font-size: clamp(22px, 2.1vw, 31px); letter-spacing: -.04em; }
.demo-switch { display: inline-flex; gap: 3px; margin: 22px 0 14px; padding: 4px; border-radius: 10px; background: #edf2f8; }
.demo-switch button { padding: 6px 12px; color: #65748a; border: 0; border-radius: 7px; background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.demo-switch button.is-active { color: var(--blue-700); background: #fff; box-shadow: 0 3px 9px rgba(3,25,66,.08); }
.space-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; min-height: 102px; padding: 17px; border: 1px solid #cdd9e8; border-radius: 16px; background: #fff; box-shadow: 0 8px 18px rgba(3,25,66,.05); transition: border-color .2s ease, transform .2s ease; }
.space-card.is-company { border-color: #9ec1fa; transform: translateY(-2px); }
.space-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--green-600); border-radius: 14px; background: var(--green-100); font-size: 25px; }
.is-company .space-icon { color: var(--blue-700); background: var(--blue-100); }
.space-label { display: block; width: max-content; margin-bottom: 3px; padding: 3px 7px; color: #067864; border-radius: 20px; background: var(--green-100); font-size: 8px; font-weight: 900; }
.is-company .space-label { color: var(--blue-700); background: var(--blue-100); }
.space-card strong, .space-card small { display: block; }
.space-card strong { font-size: 14px; }
.space-card small { color: #6a778a; font-size: 10px; }
.status { display: flex; align-items: center; gap: 5px; color: #067864; font-size: 9px; font-weight: 800; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }
.document-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: 14px; padding: 14px 15px; border: 1px solid #e5ebf3; border-radius: 13px; background: #fbfcfe; }
.document-type { padding: 4px 6px; color: var(--blue-700); border-radius: 6px; background: var(--blue-100); font-size: 7px; font-weight: 900; }
.document-row strong, .document-row small { display: block; }
.document-row strong { font-size: 11px; }
.document-row small { color: #748196; font-size: 8px; }
.document-dots { color: #8693a6; font-size: 10px; letter-spacing: 1px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(213,223,236,.8); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.floating-card--access { left: -36px; bottom: 8px; }
.floating-card--cloud { top: 5px; right: -20px; animation-delay: -2.3s; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card small { color: #6b788c; font-size: 9px; }
.floating-icon { display: grid; width: 31px; height: 31px; place-items: center; color: var(--green-600); border-radius: 9px; background: var(--green-100); font-size: 15px; font-weight: 900; }
.floating-card--cloud .floating-icon { color: var(--blue-700); background: var(--blue-100); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.fact-strip { position: relative; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 50px; overflow: hidden; border: 1px solid transparent; border-radius: 20px; background: linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.72)) padding-box, var(--edge-gradient) border-box; box-shadow: 0 18px 60px rgba(3,25,66,.06); backdrop-filter: blur(14px); }
.fact-strip > div { padding: 19px 24px; }
.fact-strip > div + div { border-left: 1px solid var(--line); }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip strong { color: var(--navy-900); font-size: 16px; }
.fact-strip span { color: #6d7b8e; font-size: 12px; }

.ai-section { position: relative; color: #fff; overflow: hidden; background: radial-gradient(circle at 92% 6%,rgba(33,118,255,.4),transparent 31rem),radial-gradient(circle at 4% 92%,rgba(13,184,154,.16),transparent 28rem),var(--navy-950); }
.ai-section .container { position: relative; z-index: 1; }
.ai-orb { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.ai-orb--one { width: 430px; height: 430px; top: -260px; right: -95px; }
.ai-orb--two { width: 260px; height: 260px; left: -165px; bottom: 80px; }
.ai-header { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 56px; }
.eyebrow--ai { color: #72e2cd; }
.ai-header h2 { max-width: 730px; margin: 0; font-size: clamp(40px,4.8vw,66px); line-height: 1.04; letter-spacing: -.06em; }
.ai-header > p { margin: 0; color: #b9c8da; font-size: 17px; line-height: 1.68; }
.ai-showcase { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; gap: 20px; }
.ai-chat-demo { display: flex; min-width: 0; min-height: 610px; flex-direction: column; overflow: hidden; color: var(--ink); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: #f7faff; box-shadow: 0 34px 80px rgba(0,0,0,.28); }
.ai-chat-demo__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 28px 30px; color: #fff; background: linear-gradient(125deg,#09285e,#1469e4); }
.ai-chat-demo__head small,.ai-chat-demo__head strong { display: block; }
.ai-chat-demo__head small { margin-bottom: 7px; color: #7ce2cf; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.ai-chat-demo__head strong { font-size: 22px; letter-spacing: -.03em; }
.ai-chat-demo__head > span { flex: 0 0 auto; padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.1); font-size: 9px; font-weight: 750; }
.ai-chat-demo__body { display: flex; flex: 1; flex-direction: column; gap: 14px; padding: 28px 30px; }
.ai-message { max-width: 88%; padding: 13px 15px; border: 1px solid #d9e4f2; border-radius: 5px 16px 16px; background: #fff; box-shadow: 0 8px 20px rgba(3,25,66,.06); font-size: 12px; line-height: 1.5; }
.ai-message--user { align-self: flex-end; color: #fff; border-color: transparent; border-radius: 16px 5px 16px 16px; background: var(--blue-700); }
.ai-message--assistant { display: flex; align-items: flex-start; gap: 10px; }
.ai-message--assistant strong,.ai-message--assistant small { display: block; }
.ai-message--assistant small { margin-top: 4px; color: #64758d; font-size: 9px; }
.ai-spark { display: grid; flex: 0 0 28px; height: 28px; place-items: center; color: var(--blue-700); border-radius: 50%; background: var(--blue-100); }
.ai-source-demo { margin-top: 2px; padding: 15px; border: 1px solid #cfddf0; border-radius: 14px; background: #fff; }
.ai-source-demo > div { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.ai-source-demo > div strong { font-size: 13px; }
.ai-source-demo > div span { flex: 0 0 auto; padding: 4px 7px; color: #087f6d; border: 1px solid #b9e7de; border-radius: 999px; background: #dff7f2; font-size: 8px; font-weight: 800; }
.ai-source-demo p { margin: 10px 0; color: #50627a; font-size: 10px; }
.ai-source-demo > small { color: var(--blue-700); font-size: 9px; font-weight: 800; }
.ai-chat-demo__input { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 0 22px 22px; padding: 9px 9px 9px 16px; color: #718096; border: 1px solid #bdd0e8; border-radius: 15px; background: #fff; font-size: 9px; }
.ai-chat-demo__input strong { padding: 10px 13px; color: #fff; border-radius: 9px; background: var(--blue-700); font-size: 9px; }
.ai-proof { padding: clamp(32px,4vw,48px); border: 1px solid rgba(101,223,200,.23); border-radius: 28px; background: linear-gradient(145deg,rgba(13,184,154,.1),rgba(255,255,255,.045)); }
.ai-proof__badge { display: inline-block; padding: 6px 10px; color: #8cead8; border: 1px solid rgba(101,223,200,.25); border-radius: 999px; background: rgba(101,223,200,.09); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.ai-proof h3 { max-width: 520px; margin: 26px 0 0; font-size: clamp(29px,3vw,40px); line-height: 1.12; letter-spacing: -.045em; }
.ai-proof > p { margin: 17px 0 0; color: #b8c8da; font-size: 14px; }
.ai-model { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 15px; margin-top: 27px; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(2,12,31,.45); }
.ai-model__mark { display: grid; width: 62px; height: 62px; place-items: center; color: #7ce2cf; border: 1px solid rgba(101,223,200,.28); border-radius: 15px; background: rgba(101,223,200,.1); font-size: 14px; font-weight: 950; }
.ai-model small,.ai-model strong,.ai-model span { display: block; }
.ai-model small { color: #7ce2cf; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.ai-model strong { margin-top: 2px; font-size: 16px; }
.ai-model span { margin-top: 2px; color: #98abc4; font-size: 10px; }
.ai-assurances { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.ai-assurances li { display: flex; align-items: flex-start; gap: 11px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.08); }
.ai-assurances li > span { display: grid; flex: 0 0 25px; height: 25px; place-items: center; color: #72e2cd; border-radius: 50%; background: rgba(101,223,200,.11); font-size: 10px; font-weight: 900; }
.ai-assurances strong,.ai-assurances small { display: block; }
.ai-assurances strong { font-size: 13px; }
.ai-assurances small { margin-top: 2px; color: #9fb1c9; font-size: 10px; line-height: 1.45; }
.ai-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 14px; margin-top: 20px; padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); }
.ai-pipeline article { min-width: 0; }
.ai-pipeline article > span { display: grid; width: 29px; height: 29px; place-items: center; margin-bottom: 10px; color: var(--navy-950); border-radius: 50%; background: #72e2cd; font-size: 9px; font-weight: 900; }
.ai-pipeline strong,.ai-pipeline small { display: block; }
.ai-pipeline strong { font-size: 13px; }
.ai-pipeline small { margin-top: 4px; color: #9eb0c8; font-size: 10px; line-height: 1.45; }
.ai-pipeline > i { color: #6d819d; font-style: normal; }
.ai-boundary { margin: 18px 0 0; padding: 16px 18px; color: #b9c9dc; border-left: 3px solid #72e2cd; border-radius: 0 12px 12px 0; background: rgba(101,223,200,.07); font-size: 12px; }
.ai-boundary strong { color: #fff; }

.import-section { overflow:hidden;background:radial-gradient(circle at 92% 8%,rgba(255,139,35,.12),transparent 28rem),linear-gradient(180deg,#fffaf5,#fff); }
.import-header { display:grid;grid-template-columns:1.15fr .85fr;align-items:end;gap:70px;margin-bottom:52px; }
.import-header h2 { margin:0;font-size:clamp(36px,4vw,58px);line-height:1.08;letter-spacing:-.055em; }
.import-header > p { margin:0;color:var(--muted);font-size:17px;line-height:1.65; }
.import-grid { display:grid;grid-template-columns:.88fr 1.12fr;align-items:center;gap:clamp(42px,7vw,90px); }
.import-copy__badge { display:inline-block;padding:6px 10px;color:#a64000;border:1px solid #f2b477;border-radius:999px;background:#fff0df;font-size:9px;font-weight:900;letter-spacing:.12em; }
.import-copy h3 { margin:25px 0 0;font-size:clamp(29px,3vw,40px);line-height:1.12;letter-spacing:-.045em; }
.import-copy > p { margin:17px 0 0;color:var(--muted);font-size:14px; }
.import-checks { display:grid;gap:17px;margin:30px 0 0;padding:0;list-style:none; }
.import-checks li { display:flex;align-items:flex-start;gap:12px; }
.import-checks li > span { display:grid;flex:0 0 25px;height:25px;place-items:center;margin-top:2px;color:#fff;border-radius:50%;background:#dc6b0a;font-size:11px;font-weight:900; }
.import-checks strong,.import-checks small { display:block; }
.import-checks strong { font-size:14px; }
.import-checks small { margin-top:3px;color:#67758a;font-size:12px;line-height:1.5; }
.import-console { overflow:hidden;padding:10px;border:1px solid #ead9c8;border-radius:29px;background:rgba(255,255,255,.8);box-shadow:0 34px 80px rgba(114,54,5,.14);transform:perspective(1400px) rotateY(-2deg); }
.import-console__hero { display:flex;min-height:128px;align-items:center;justify-content:space-between;gap:18px;padding:27px 30px;border-radius:20px 20px 5px 5px;color:#fff;background:radial-gradient(circle at 100% 0,rgba(255,158,53,.75),transparent 13rem),linear-gradient(125deg,#612300,#c95400); }
.import-console__hero small,.import-console__hero strong { display:block; }
.import-console__hero small { color:#ffd7b5;font-size:8px;font-weight:900;letter-spacing:.15em; }
.import-console__hero strong { margin-top:6px;font-size:27px;letter-spacing:-.04em; }
.import-console__hero > span { flex:0 0 auto;padding:7px 10px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(255,255,255,.15);font-size:9px;font-weight:850; }
.import-file { display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:25px 26px 18px;background:#fff; }
.import-file__icon { display:grid;width:48px;height:54px;place-items:center;color:#a64000;border:1px solid #f1c79f;border-radius:10px;background:#fff3e7;font-size:10px;font-weight:950; }
.import-file strong,.import-file small { display:block; }
.import-file strong { font-size:14px; }.import-file small { margin-top:2px;color:#718096;font-size:9px; }
.import-file b { padding:5px 8px;color:#9a4b00;border-radius:999px;background:#fff0d8;font-size:8px;letter-spacing:.07em; }
.import-progress { height:7px;margin:0 26px;border-radius:999px;background:#edf1f5;overflow:hidden; }
.import-progress span { display:block;height:100%;width:76%;border-radius:inherit;background:linear-gradient(90deg,#d65e00,#ff9a33); }
.import-stages { display:grid;gap:0;margin:17px 0 0;padding:0 26px 25px;background:#fff;list-style:none; }
.import-stages li { display:grid;grid-template-columns:30px 1fr;align-items:center;gap:12px;padding:12px 0;border-top:1px solid #edf0f4;color:#8591a2; }
.import-stages li > span { display:grid;width:27px;height:27px;place-items:center;border:1px solid #d8dee7;border-radius:50%;font-size:9px;font-weight:900; }
.import-stages strong,.import-stages small { display:block; }.import-stages strong { font-size:12px; }.import-stages small { margin-top:2px;font-size:9px; }
.import-stages .is-done { color:#087b66; }.import-stages .is-done > span { color:#fff;border-color:#0aa487;background:#0aa487; }
.import-stages .is-active { color:#9d4300; }.import-stages .is-active > span { color:#fff;border-color:#e66e0b;background:#e66e0b;box-shadow:0 0 0 5px #fff0e3; }
.import-formats { display:grid;grid-template-columns:repeat(6,1fr);gap:1px;margin-top:24px;overflow:hidden;border:1px solid #eadfd4;border-radius:18px;background:#eadfd4; }
.import-formats > div { min-width:0;padding:18px;background:#fff; }.import-formats strong,.import-formats small { display:block; }.import-formats strong { color:#a64000;font-size:11px; }.import-formats small { margin-top:3px;color:#6b7789;font-size:9px;line-height:1.4; }
.import-boundary { margin:18px 0 0;padding:16px 18px;color:#67452e;border-left:3px solid #df6b0a;border-radius:0 12px 12px 0;background:#fff1e5;font-size:12px; }
.import-boundary strong { color:#8d3700; }

.section { padding: clamp(80px, 9vw, 128px) 0; }
.section--soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .organization-copy h2, .security-header h2, .pricing-copy h2 { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -.055em; }
.section-heading > p:last-child, .organization-copy > p, .security-header > p, .pricing-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 18px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 330px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 9px 28px rgba(3,25,66,.045); }
.feature-card:not(.feature-card--dark):not(.feature-card--cloud) { border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient) border-box; }
.feature-card--wide { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; grid-column: 1 / -1; }
.feature-card--dark { color: #fff; border-color: transparent; background: radial-gradient(circle at 90% 0%, rgba(33,118,255,.38), transparent 17rem), var(--navy-900); }
.feature-card--cloud { background: linear-gradient(135deg, #f7fbff, #edf5ff); }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 38px; color: var(--blue-700); border-radius: 14px; background: var(--blue-100); }
.feature-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon--green { color: var(--green-600); background: var(--green-100); }
.feature-icon--violet { color: var(--violet-600); background: var(--violet-100); }
.feature-icon--glass { color: #fff; background: rgba(255,255,255,.13); }
.feature-icon--blue { color: var(--blue-700); background: #dceaff; }
.card-tag { margin: 0 0 10px; color: var(--blue-700); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.feature-card--dark .card-tag { color: #72dec9; }
.feature-card h3 { max-width: 560px; margin: 0; font-size: clamp(25px, 2.4vw, 34px); line-height: 1.14; letter-spacing: -.04em; }
.feature-card > p:last-child, .feature-copy > p:last-child { max-width: 580px; margin: 17px 0 0; color: var(--muted); }
.feature-card--dark > p:last-child { color: #aebbd0; }
.block-stack { position: relative; height: 250px; margin: 0 0 -75px 45px; }
.block-stack div { position: absolute; display: flex; align-items: center; gap: 11px; width: 90%; height: 74px; padding: 16px; border: 1px solid #dce5f0; border-radius: 14px; background: #fff; box-shadow: 0 14px 30px rgba(3,25,66,.1); transform: rotate(-2deg); }
.block-stack div:nth-child(2) { top: 72px; left: 22px; transform: rotate(2deg); }
.block-stack div:nth-child(3) { top: 146px; left: -2px; transform: rotate(-1deg); }
.block-stack span { display: grid; flex: 0 0 30px; height: 30px; place-items: center; color: var(--blue-700); border-radius: 8px; background: var(--blue-100); font-size: 11px; font-weight: 900; }
.block-stack i { width: 20%; height: 7px; border-radius: 10px; background: #dce4ee; }
.block-stack i:nth-last-child(1) { width: 32%; }
.cloud-visual { position: relative; display: grid; height: 250px; place-items: center; }
.cloud-visual svg { position: relative; z-index: 2; width: 114px; fill: #fff; stroke: var(--blue-600); stroke-width: 2; filter: drop-shadow(0 18px 24px rgba(20,105,228,.2)); }
.cloud-ring { position: absolute; border: 1px solid rgba(20,105,228,.18); border-radius: 50%; }
.cloud-ring--one { width: 180px; height: 180px; }
.cloud-ring--two { width: 260px; height: 260px; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; margin: 70px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; }
.step-number { display: grid; width: 54px; height: 54px; place-items: center; color: var(--blue-700); border: 1px solid #cbdcf8; border-radius: 50%; background: #fff; box-shadow: 0 8px 18px rgba(20,105,228,.08); font-size: 13px; font-weight: 900; }
.step-line { position: absolute; top: 27px; left: 68px; width: calc(100% - 54px); border-top: 1px dashed #aebfd4; }
.steps h3 { margin: 24px 0 8px; font-size: 20px; letter-spacing: -.025em; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.organization-section { overflow: hidden; }
.organization-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.check-list { display: grid; gap: 13px; margin: 32px 0 0; padding: 0; list-style: none; color: #394960; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list span { display: grid; flex: 0 0 23px; height: 23px; place-items: center; color: var(--green-600); border-radius: 50%; background: var(--green-100); font-size: 11px; font-weight: 900; }
.organization-visual { position: relative; min-height: 480px; border-radius: var(--radius-lg); background: radial-gradient(circle at center, rgba(33,118,255,.16), transparent 56%), linear-gradient(145deg, #f6faff, #eef5ff); }
.org-center, .org-node { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #cfdaea; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }
.org-center { top: 50%; left: 50%; width: 170px; height: 170px; border-radius: 50%; transform: translate(-50%,-50%); }
.org-building { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 9px; color: var(--blue-700); border-radius: 14px; background: var(--blue-100); font-size: 25px; }
.org-center strong { font-size: 14px; }.org-center small { color: var(--muted); font-size: 10px; }
.org-node { min-width: 122px; padding: 13px; border-radius: 16px; }
.org-node span { display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 6px; color: #fff; border-radius: 50%; background: var(--navy-900); font-size: 10px; font-weight: 900; }
.org-node strong { font-size: 10px; }.org-node--one { top: 35px; left: 26px; }.org-node--two { top: 52px; right: 20px; }.org-node--two span { background: var(--green-600); }.org-node--three { right: 50px; bottom: 34px; }.org-node--three span { background: var(--blue-600); }
.org-lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #aabed9; stroke-width: 1.2; stroke-dasharray: 5 5; }

.security-section { color: #fff; overflow: hidden; background: radial-gradient(circle at 87% -10%, rgba(33,118,255,.36), transparent 35rem), radial-gradient(circle at 0% 100%, rgba(13,184,154,.16), transparent 28rem), var(--navy-950); }
.security-header { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.eyebrow--light { color: #5edbc4; }
.security-header > p { color: #aebbd0; }
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 60px; }
.security-card { min-height: 240px; padding: 27px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.055); }
.security-card > span { color: #65dfc8; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.security-card h3 { margin: 48px 0 11px; font-size: 19px; }.security-card p { margin: 0; color: #aebbd0; font-size: 13px; }
.roadmap-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; margin-top: 18px; padding: 27px; border: 1px solid rgba(101,223,200,.28); border-radius: 20px; background: rgba(13,184,154,.08); }
.roadmap-note__icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; background: rgba(101,223,200,.13); }.roadmap-note__icon svg { width: 26px; fill: none; stroke: #65dfc8; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.status-chip { display: inline-block; padding: 4px 8px; color: #8cead8; border-radius: 20px; background: rgba(101,223,200,.12); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.roadmap-note h3 { margin: 7px 0 3px; font-size: 19px; }.roadmap-note p { margin: 0; color: #aebbd0; font-size: 13px; }

.roadmap-section { background: #fff; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.roadmap-card { position: relative; display: flex; min-height: 275px; flex-direction: column; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg,#fff,#f9fbfe); }
.roadmap-card > span { color: var(--blue-700); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.roadmap-card h3 { margin: 43px 0 9px; font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }.roadmap-card p { margin: 0; color: var(--muted); font-size: 13px; }.roadmap-card i { width: max-content; margin-top: auto; padding: 5px 9px; color: #68768a; border-radius: 20px; background: #edf1f6; font-size: 9px; font-style: normal; font-weight: 800; }
.roadmap-card--github { grid-column: 1 / -1; min-height: 250px; padding-right: min(38%,430px); color: #fff; border-color: transparent; background: radial-gradient(circle at 92% 15%,rgba(33,118,255,.65),transparent 20rem),radial-gradient(circle at 75% 120%,rgba(13,184,154,.18),transparent 18rem),var(--navy-900); }
.roadmap-card--github::after { content: "GH"; position: absolute; right: clamp(35px,9vw,120px); top: 50%; color: rgba(255,255,255,.08); font-size: clamp(95px,14vw,180px); font-weight: 950; line-height: 1; letter-spacing: -.1em; transform: translateY(-50%); }
.roadmap-card--github > span { color: #72dec9; }.roadmap-card--github h3 { margin-top: 30px; }.roadmap-card--github p { color: #c2cfe0; }.roadmap-card--github i { color: #8cead8; background: rgba(101,223,200,.12); }

.capability-section { background: linear-gradient(180deg,#fff,#f7faff); }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.capability-card { position: relative; display: flex; min-height: 430px; flex-direction: column; gap: 24px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(3,25,66,.045); }
.capability-card:not(.capability-card--github):not(.capability-card--import) { border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient) border-box; }
.capability-card::after { content: ""; position: absolute; width: 130px; height: 130px; top: -72px; right: -50px; border-radius: 50%; background: var(--blue-100); opacity: .7; }
.capability-card__number { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-700); border-radius: 12px; background: var(--blue-100); font-size: 11px; font-weight: 900; }
.capability-card h3 { margin: 0; font-size: 23px; line-height: 1.18; letter-spacing: -.035em; }
.capability-list { display: grid; gap: 11px; margin: 0; padding: 0; color: #46566d; list-style: none; font-size: 13px; }
.capability-list li { position: relative; padding-left: 23px; line-height: 1.45; }
.capability-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-600); font-weight: 900; }
.capability-list--tags { display: flex; flex-wrap: wrap; gap: 8px; }
.capability-list--tags li { padding: 8px 11px; color: var(--blue-700); border: 1px solid #cfe0fa; border-radius: 999px; background: #f2f7ff; font-weight: 750; }
.capability-list--tags li::before { display: none; }
.capability-note { margin: auto 0 0; padding: 14px; color: #526179; border-left: 3px solid var(--green-500); border-radius: 0 10px 10px 0; background: var(--green-100); font-size: 12px; line-height: 1.5; }
.capability-card--github { background: radial-gradient(circle at 100% 0,rgba(33,118,255,.15),transparent 15rem),linear-gradient(145deg,#fff,#f1f6ff); }
.capability-card--import { background:radial-gradient(circle at 100% 0,rgba(255,139,35,.18),transparent 15rem),linear-gradient(145deg,#fff,#fff8f1); }
.capability-card--import .capability-card__number { color:#a64000;background:#fff0df; }

.github-section { position: relative; color: #fff; overflow: hidden; background: radial-gradient(circle at 92% 8%,rgba(33,118,255,.35),transparent 34rem),radial-gradient(circle at 0 78%,rgba(13,184,154,.12),transparent 30rem),var(--navy-950); }
.github-section .container { position: relative; z-index: 1; }
.github-orb { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.github-orb--one { width: 420px; height: 420px; top: -230px; right: -90px; }
.github-orb--two { width: 270px; height: 270px; left: -170px; bottom: 15%; }
.github-header { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.github-header h2 { margin: 0; font-size: clamp(38px,4.5vw,64px); line-height: 1.04; letter-spacing: -.06em; }
.github-header > p { margin: 0; color: #b7c6da; font-size: 17px; line-height: 1.65; }
.eyebrow--github { color: #6ee5cf; }
.github-showcase { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(42px,7vw,90px); }
.github-mark { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 32px; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.08); }
.github-mark svg { width: 31px; fill: currentColor; }
.github-benefits .card-tag,.github-technical-copy .card-tag { color: #75e3cf; }
.github-benefits h3 { margin: 0; font-size: clamp(28px,3vw,40px); line-height: 1.12; letter-spacing: -.045em; }
.github-benefits > p:not(.card-tag) { margin: 18px 0 0; color: #b7c6da; font-size: 15px; }
.github-checks { display: grid; gap: 17px; margin: 30px 0 0; padding: 0; list-style: none; }
.github-checks li { display: flex; align-items: flex-start; gap: 12px; }
.github-checks li > span { display: grid; flex: 0 0 25px; height: 25px; place-items: center; margin-top: 2px; color: #72e2cd; border-radius: 50%; background: rgba(101,223,200,.12); font-size: 11px; font-weight: 900; }
.github-checks strong,.github-checks small { display: block; }
.github-checks strong { font-size: 14px; }
.github-checks small { margin-top: 3px; color: #9fb0c8; font-size: 12px; line-height: 1.5; }
.github-app { padding: 10px; color: var(--ink); border: 1px solid rgba(255,255,255,.17); border-radius: 29px; background: rgba(255,255,255,.09); box-shadow: 0 38px 90px rgba(0,0,0,.32); transform: perspective(1400px) rotateY(-2deg); }
.github-app__hero { display: flex; min-height: 150px; flex-direction: column; justify-content: center; padding: 27px 32px; border-radius: 20px 20px 5px 5px; color: #fff; background: radial-gradient(circle at 100% 0,rgba(19,142,204,.6),transparent 12rem),linear-gradient(125deg,#071a3d,#0b57d0); }
.github-app__hero span { color: #67e3cc; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.github-app__hero strong { margin-top: 8px; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.github-app__hero small { margin-top: 13px; color: #d3dff0; font-size: 10px; }
.github-app__repo { overflow: hidden; border-radius: 5px 5px 20px 20px; background: #fff; }
.github-app__repo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 24px 28px 18px; }
.github-app__repo-head > div > span,.github-app__repo-head strong,.github-app__repo-head small { display: block; }
.github-app__repo-head > div > span { color: var(--blue-700); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.github-app__repo-head strong { margin-top: 4px; font-size: 18px; letter-spacing: -.03em; }
.github-app__repo-head small { margin-top: 3px; color: #516079; font-size: 9px; }
.github-app__repo-head small i { padding: 3px 6px; color: #31415a; border-radius: 20px; background: #eff2f6; font-style: normal; font-weight: 800; }
.github-app__repo-head svg { flex: 0 0 25px; width: 25px; fill: var(--blue-600); }
.github-app code { padding: 2px 4px; border-radius: 4px; background: #f1f4f8; font-family: ui-monospace,SFMono-Regular,Consolas,monospace; }
.github-app__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 16px; padding: 11px 28px; color: #53627a; border-block: 1px solid var(--line); background: #fbfcfe; font-size: 9px; }
.git-status { display: inline-flex; width: max-content; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid transparent; border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .04em; }
.git-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.git-status--synced { color: #087443; border-color: #b7e4ca; background: #e8f7ef; }
.git-status--processing { color: #0b57d0; border-color: #b8d1ff; background: #eaf2ff; }
.git-status--pending { color: #8a5b00; border-color: #f1d38a; background: #fff4d8; }
.git-status--error { color: #b42318; border-color: #f4b8b3; background: #feecec; }
.git-status--paused { color: #53627a; border-color: #d6dee9; background: #f0f3f7; }
.github-app__actions { display: flex; justify-content: flex-end; gap: 8px; padding: 13px 28px; background: #f3f6fa; }
.github-app__actions span { padding: 7px 10px; color: var(--blue-700); border: 1px solid #9fc0fa; border-radius: 7px; background: #fff; font-size: 8px; font-weight: 850; }
.github-app__actions .is-danger { color: #b42318; border-color: #f0aaa4; }
.github-app__scope { padding: 19px 28px 24px; }
.github-app__scope > strong { display: block; margin-bottom: 10px; font-size: 12px; }
.github-app__scope > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 7px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; }
.github-app__scope span b,.github-app__scope span small { display: block; }
.github-app__scope span b { font-size: 9px; }.github-app__scope span small { color: #64738a; font-size: 7px; }
.github-app__scope > div > i { padding: 4px 7px; color: #087443; border-radius: 20px; background: #e8f7ef; font-size: 7px; font-style: normal; font-weight: 900; }
.github-config-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 64px; }
.github-detail-card { display: flex; min-height: 550px; flex-direction: column; padding: 29px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.055); }
.github-detail-card__number { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 31px; color: #77e4d0; border-radius: 12px; background: rgba(101,223,200,.1); font-size: 10px; font-weight: 900; }
.github-detail-card .card-tag { color: #72dec9; }
.github-detail-card h3 { margin: 0; font-size: 23px; line-height: 1.2; letter-spacing: -.035em; }
.github-detail-card dl,.github-detail-card ul { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; }
.github-detail-card dl div { padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.09); }
.github-detail-card dt { color: #fff; font-size: 12px; font-weight: 800; }
.github-detail-card dd { margin: 3px 0 0; color: #aebdd1; font-size: 12px; line-height: 1.5; }
.github-detail-card code { padding: 2px 5px; border-radius: 4px; background: rgba(255,255,255,.08); }
.github-detail-card ul { color: #b8c6d9; list-style: none; font-size: 12px; }
.github-detail-card li { position: relative; padding-left: 20px; }.github-detail-card li::before { content: "✓"; position: absolute; left: 0; color: #69dfca; font-weight: 900; }
.github-detail-note { margin: auto 0 0; padding: 13px 14px; color: #b9c8da; border-left: 3px solid #4ed2bb; border-radius: 0 9px 9px 0; background: rgba(101,223,200,.07); font-size: 11px; line-height: 1.55; }
.github-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; margin-top: 17px; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(255,255,255,.045); }
.github-flow > div { min-width: 0; }.github-flow span { display: grid; width: 31px; height: 31px; place-items: center; margin-bottom: 10px; color: var(--navy-950); border-radius: 50%; background: #6ee5cf; font-size: 10px; font-weight: 900; }.github-flow strong,.github-flow small { display: block; }.github-flow strong { font-size: 13px; }.github-flow small { margin-top: 4px; color: #9fb0c8; font-size: 10px; line-height: 1.4; }.github-flow > i { color: #6e809a; font-style: normal; }
.github-technical-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: stretch; gap: 18px; margin-top: 64px; }
.repository-tree { overflow: hidden; color: #d7e4f4; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: #020c1f; box-shadow: 0 24px 55px rgba(0,0,0,.22); }
.repository-tree__head { display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.04); }
.repository-tree__head span { width: 8px; height: 8px; border-radius: 50%; background: #ff6b6b; }.repository-tree__head span:nth-child(2) { background: #ffd166; }.repository-tree__head span:nth-child(3) { background: #4dd7b5; }.repository-tree__head strong { margin-left: 7px; color: #92a5bf; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.repository-tree pre { margin: 0; padding: 27px; overflow-x: auto; color: #c8d9ed; font: 12px/1.75 ui-monospace,SFMono-Regular,Consolas,monospace; }
.repository-tree p { margin: 0; padding: 17px 27px 23px; color: #8fa2bc; border-top: 1px solid rgba(255,255,255,.07); font-size: 11px; }
.github-technical-copy { padding: 34px; border: 1px solid rgba(101,223,200,.2); border-radius: 22px; background: linear-gradient(145deg,rgba(13,184,154,.08),rgba(255,255,255,.04)); }
.github-technical-copy h3 { margin: 0; font-size: 29px; line-height: 1.16; letter-spacing: -.04em; }
.github-technical-copy > p:not(.card-tag) { margin: 16px 0 0; color: #b9c8da; font-size: 13px; line-height: 1.65; }
.github-security-list { display: grid; gap: 10px; margin: 23px 0 0; padding: 0; color: #aebed2; list-style: none; font-size: 12px; }
.github-security-list li { padding: 10px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 9px; background: rgba(255,255,255,.035); }.github-security-list strong { color: #fff; }
.github-status-panel { display: grid; grid-template-columns: .32fr .68fr; align-items: center; gap: 35px; margin-top: 18px; padding: 28px 30px; color: var(--ink); border: 1px solid transparent; border-radius: 20px; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient) border-box; }
.github-status-panel h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.github-status-panel ul { display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; margin: 0; padding: 0; list-style: none; }
.github-status-panel li { min-width: 0; }.github-status-panel li small { display: block; margin-top: 6px; color: #6a788d; font-size: 9px; line-height: 1.35; }

.export-section { background: radial-gradient(circle at 92% 8%,rgba(33,118,255,.09),transparent 28rem),var(--soft); }
.export-header { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.export-header h2 { margin: 0; font-size: clamp(36px,4vw,58px); line-height: 1.08; letter-spacing: -.055em; }
.export-header > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.export-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.export-card { display: flex; min-height: 440px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(3,25,66,.05); }
.export-card:not(.export-card--featured) { border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient) border-box; }
.export-card--featured { color: #fff; border-color: transparent; background: radial-gradient(circle at 100% 0,rgba(46,140,255,.58),transparent 18rem),var(--navy-900); }
.export-card__icon { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 34px; color: var(--blue-700); border-radius: 16px; background: var(--blue-100); font-size: 12px; font-weight: 950; letter-spacing: -.02em; }
.export-card--featured .export-card__icon { color: #fff; background: rgba(255,255,255,.14); }
.export-card--featured .card-tag { color: #72dec9; }
.export-card h3 { margin: 0; font-size: 27px; line-height: 1.15; letter-spacing: -.04em; }
.export-card > p:not(.card-tag) { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.export-card--featured > p:not(.card-tag) { color: #c3d0e3; }
.export-card ul { display: grid; gap: 10px; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); color: #46566d; list-style: none; font-size: 12px; }
.export-card--featured ul { color: #d8e2f0; border-color: rgba(255,255,255,.13); }
.export-card li { position: relative; padding-left: 20px; }.export-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); font-weight: 900; }
.encryption-download { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 28px; margin-top: 18px; padding: 32px; color: #fff; border-radius: 22px; background: linear-gradient(125deg,#07363f,#0b5361); box-shadow: 0 18px 45px rgba(7,54,63,.18); }
.encryption-download__badge { display: grid; width: 120px; height: 120px; place-items: center; border: 1px solid rgba(101,223,200,.35); border-radius: 50%; background: rgba(101,223,200,.1); color: #8cead8; font-size: 14px; font-weight: 900; text-align: center; }
.encryption-download .card-tag { color: #8cead8; }.encryption-download h3 { margin: 0; font-size: 27px; letter-spacing: -.035em; }.encryption-download p:last-child { margin: 12px 0 0; color: #c5dde1; font-size: 14px; line-height: 1.6; }
.export-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.export-flow > div { min-width: 0; }.export-flow span { display: grid; width: 30px; height: 30px; place-items: center; margin-bottom: 10px; color: #fff; border-radius: 50%; background: var(--blue-700); font-size: 10px; font-weight: 900; }.export-flow strong,.export-flow small { display: block; }.export-flow strong { font-size: 13px; }.export-flow small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }.export-flow > i { color: #9badc5; font-style: normal; }
.permission-table-wrap { margin-top: 18px; overflow-x: auto; border: 1px solid transparent; border-radius: 20px; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient) border-box; }
.permission-table { width: 100%; min-width: 700px; border-collapse: collapse; font-size: 13px; }.permission-table caption { padding: 22px; color: var(--navy-900); font-size: 18px; font-weight: 800; text-align: left; }.permission-table th,.permission-table td { padding: 15px 20px; border-top: 1px solid var(--line); text-align: center; }.permission-table th:first-child { text-align: left; }.permission-table thead th { color: var(--blue-700); background: #f5f8fd; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }.permission-table tbody td { color: var(--green-600); font-weight: 850; }.permission-table tbody tr:last-child td:nth-last-child(-n+2) { color: #b33b3b; }

.pricing-section { background: var(--soft); }
.pricing-grid { display: grid; grid-template-columns: 1fr 460px; align-items: center; gap: clamp(60px, 10vw, 140px); }
.google-reminder { margin-top: 27px; padding: 15px 17px; border-left: 3px solid var(--blue-600); border-radius: 0 10px 10px 0; background: #eaf2ff; color: #42526a; font-size: 13px; }
.price-card { padding: 38px; border: 1px solid transparent; border-radius: 28px; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient-strong) border-box; box-shadow: var(--shadow-lg); }
.price-card > p { margin: 0; color: var(--blue-700); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.price { display: flex; align-items: center; margin: 24px 0; }.price > span:first-child { margin: 0 6px 29px 0; font-weight: 800; }.price strong { font-size: 76px; line-height: 1; letter-spacing: -.08em; }.price > span:last-child { margin: 17px 0 0 6px; font-weight: 800; line-height: 1.1; }.price small { color: var(--muted); font-size: 11px; font-weight: 500; }
.price-card ul { display: grid; gap: 11px; margin: 0 0 28px; padding: 24px 0; border-block: 1px solid var(--line); list-style: none; font-size: 13px; }.price-card li { display: flex; align-items: center; gap: 9px; }.price-card li span { color: var(--green-600); font-weight: 900; }.price-card > small { display: block; margin-top: 13px; color: var(--muted); text-align: center; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; list-style: none; font-weight: 750; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--blue-700); font-size: 23px; font-weight: 400; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { margin: -7px 45px 23px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 0 20px 22px; }.final-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; min-height: 280px; padding: clamp(45px, 6vw, 76px); border-radius: var(--radius-lg); color: #fff; background: radial-gradient(circle at 85% 0%, rgba(46,140,255,.68), transparent 26rem), linear-gradient(125deg, var(--navy-900), var(--blue-700)); box-shadow: var(--shadow-lg); }.final-cta p { margin: 0 0 8px; color: #7ce2cf; font-size: 10px; font-weight: 900; letter-spacing: .14em; }.final-cta h2 { margin: 0; font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -.055em; }.final-cta__inner > div:last-child { display: flex; flex-direction: column; align-items: center; gap: 11px; }.final-cta small { color: #c5d3e6; font-size: 10px; }.button--light span { font-size: 20px; }

.site-footer { padding: 38px 0; }.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }.brand--footer { font-size: 20px; }.brand--footer .brand-mark { width: 32px; }.footer-inner p { margin: 0; color: var(--muted); font-size: 12px; }

.reveal { opacity: 1; transform: translateY(0); }.reveal.is-visible { animation: reveal-in .65s cubic-bezier(.22,.8,.24,1) both; animation-delay: var(--reveal-delay, 0ms); }
@keyframes reveal-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: minmax(0,1fr); }.hero-copy { max-width: 740px; }.hero-product { width: min(760px,100%); margin-inline: auto; }.product-window { transform: none; }
  .fact-strip { grid-template-columns: repeat(2,1fr); }.fact-strip > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }.fact-strip > div:nth-child(4) { border-top: 1px solid var(--line); }
  .security-grid, .roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .capability-grid,.export-grid { grid-template-columns: repeat(2,1fr); }.export-card--featured { grid-column: 1 / -1; min-height: 380px; }
  .github-header { grid-template-columns: 1fr; gap: 18px; }.github-showcase,.github-technical-grid { grid-template-columns: 1fr; }.github-benefits { max-width: 760px; }.github-app { width: min(760px,100%); margin-inline: auto; transform: none; }.github-config-grid { grid-template-columns: repeat(2,1fr); }.github-detail-card:nth-child(3) { grid-column: 1 / -1; min-height: 440px; }.github-status-panel { grid-template-columns: 1fr; }.github-status-panel ul { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: 1fr 420px; gap: 55px; }
  .ai-header,.ai-showcase { grid-template-columns: 1fr; }.ai-header { gap: 18px; }.ai-chat-demo { width: min(760px,100%); min-height: 570px; }.ai-proof { width: min(760px,100%); }
  .import-header,.import-grid { grid-template-columns:1fr; }.import-header { gap:18px; }.import-console { width:min(760px,100%);margin-inline:auto;transform:none; }.import-formats { grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }.site-header { height: 68px; }.menu-toggle { display: block; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 15px auto; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-14px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }.site-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }.site-nav > a { padding: 14px; }.site-nav .button { margin-top: 7px; }
  .hero { min-height: auto; padding-top: 112px; }.hero h1 { font-size: clamp(43px,13vw,65px); }.hero-product { padding-top: 22px; }.floating-card--access { left: -4px; }.floating-card--cloud { right: -4px; }
  .feature-grid, .feature-card--wide, .organization-grid, .security-header, .pricing-grid, .faq-grid,.export-header { grid-template-columns: 1fr; }.feature-card--wide { grid-column: auto; }.block-stack { margin-top: 30px; margin-left: 10px; }.cloud-visual { margin-top: 10px; }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 46px; }.steps li:nth-child(2) .step-line { display: none; }
  .organization-grid { gap: 50px; }.organization-visual { min-height: 430px; }.security-header,.export-header { gap: 15px; }.security-grid { grid-template-columns: repeat(2,1fr); }.pricing-grid { gap: 40px; }.price-card { width: min(100%,480px); margin-inline: auto; }.faq-grid { gap: 12px; }
  .capability-grid,.export-grid { grid-template-columns: 1fr; }.export-card--featured { grid-column: auto; }.encryption-download { align-items:start; }.export-flow { grid-template-columns: 1fr; }.export-flow > i { transform: rotate(90deg); text-align:center; }
  .github-config-grid { grid-template-columns: 1fr; }.github-detail-card,.github-detail-card:nth-child(3) { grid-column: auto; min-height: 0; }.github-flow { grid-template-columns: 1fr; }.github-flow > i { text-align: center; transform: rotate(90deg); }.github-status-panel ul { grid-template-columns: repeat(2,1fr); }.roadmap-card--github { padding-right: 27px; }.roadmap-card--github::after { display: none; }
  .final-cta__inner { grid-template-columns: 1fr; }.final-cta__inner > div:last-child { align-items: flex-start; }
  .footer-inner { flex-wrap: wrap; }.footer-inner > p:nth-child(2) { order: 3; width: 100%; }
  .ai-pipeline { grid-template-columns: 1fr; }.ai-pipeline > i { text-align: center; transform: rotate(90deg); }
  .import-formats { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 520px) {
  .hero-actions .button { width: 100%; }.google-note { align-items: flex-start; }.product-content { padding: 26px 17px; }.product-body { grid-template-columns: 36px 1fr; }.product-sidebar { gap: 14px; }.product-sidebar span { width: 13px; height: 13px; }.space-card { grid-template-columns: 45px 1fr; }.space-icon { width: 43px; height: 43px; }.status { grid-column: 2; }.floating-card { display: none; }
  .fact-strip { grid-template-columns: 1fr 1fr; }.fact-strip > div { padding: 16px; }.fact-strip strong { font-size: 14px; }.fact-strip span { font-size: 10px; }
  .feature-card { min-height: 0; padding: 27px; }.feature-icon { margin-bottom: 28px; }.feature-card h3 { font-size: 26px; }.block-stack { height: 230px; }.cloud-visual { height: 210px; }
  .steps { grid-template-columns: 1fr; }.step-line { top: 68px; left: 27px; width: 1px; height: 40px; border-top: 0; border-left: 1px dashed #aebfd4; }.steps li:nth-child(2) .step-line { display: block; }
  .organization-visual { min-height: 400px; }.org-center { width: 145px; height: 145px; }.org-node { min-width: 98px; padding: 10px; }.org-node--one { left: 10px; }.org-node--two { right: 8px; }.org-node--three { right: 26px; }
  .security-grid, .roadmap-grid { grid-template-columns: 1fr; }.security-card { min-height: 200px; }.security-card h3 { margin-top: 30px; }.roadmap-note,.encryption-download { grid-template-columns: 1fr; }.encryption-download__badge { width: 94px;height:94px; }.capability-card,.export-card { min-height:0;padding:25px; }.price-card { padding: 28px; }.price strong { font-size: 68px; }
  .github-app { padding: 6px; border-radius: 22px; }.github-app__hero { min-height: 130px; padding: 23px 20px; }.github-app__repo-head { padding: 20px 18px 14px; }.github-app__meta { align-items: flex-start; flex-direction: column; padding-inline: 18px; }.github-app__actions { flex-wrap: wrap; justify-content: flex-start; padding-inline: 18px; }.github-app__scope { padding: 17px 18px 20px; }.github-app__scope > div { align-items: flex-start; flex-direction: column; }.github-technical-copy { padding: 26px; }.repository-tree pre { padding: 22px 18px; font-size: 10px; }.github-status-panel { padding: 24px 20px; }.github-status-panel ul { grid-template-columns: 1fr; }.github-detail-card { padding: 25px; }
  .final-cta { padding-inline: 10px; }.final-cta__inner { padding: 38px 25px; border-radius: 25px; }.final-cta .button { width: 100%; }.footer-inner { align-items: flex-start; flex-direction: column; }
  .ai-chat-demo { min-height: 0; border-radius: 21px; }.ai-chat-demo__head { align-items: flex-start; flex-direction: column; padding: 23px 20px; }.ai-chat-demo__body { padding: 22px 18px; }.ai-message { max-width: 96%; }.ai-source-demo > div { flex-direction: column; }.ai-chat-demo__input { margin: 0 14px 14px; }.ai-proof { padding: 27px 22px; border-radius: 21px; }.ai-model { grid-template-columns: 1fr; }.ai-pipeline { padding: 20px; }
  .import-console { padding:6px;border-radius:22px; }.import-console__hero { min-height:130px;align-items:flex-start;flex-direction:column;padding:23px 20px; }.import-file { grid-template-columns:auto 1fr;padding:22px 18px 16px; }.import-file b { grid-column:2;justify-self:start; }.import-progress { margin-inline:18px; }.import-stages { padding-inline:18px; }.import-formats { grid-template-columns:1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; }
}

/* Identidade editorial CentralDocs: navegação em botões e molduras tricolores. */
.site-header { height: 96px; padding-top: 12px; pointer-events: none; }
.header-inner { height: 72px; padding: 8px 10px 8px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(7,26,61,.96); box-shadow: 0 18px 45px rgba(3,19,48,.22), inset 0 1px 0 rgba(255,255,255,.07); backdrop-filter: blur(18px); pointer-events: auto; }
.site-header.is-scrolled { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; }
.site-header.is-scrolled::after { display: none; }
.brand { flex: 0 0 auto; color: #fff; }
.brand > span > span { color: #72e2cd; }
.brand-mark__back { stroke: var(--gold-500); }
.brand-mark__front, .brand-mark__fold { stroke: #fff; }
.site-nav { flex: 1 1 auto; justify-content: flex-end; gap: 6px; margin-left: 20px; font-size: 11px; }
.site-nav > a:not(.button), .site-nav .nav-cta { position: relative; display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 6px; padding: 0 10px; color: #edf5ff; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.06); font-weight: 800; line-height: 1; white-space: nowrap; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.site-nav > a:not(.button)::after { display: none; }
.site-nav > a:not(.button):hover, .site-nav > a:not(.button):focus-visible, .site-nav > a.is-current { color: var(--navy-950); border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 0 8px 18px rgba(0,0,0,.16); transform: translateY(-1px); }
.nav-icon { display: grid; width: 18px; height: 18px; flex: 0 0 18px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.09); }
.nav-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.site-nav > a:hover .nav-icon, .site-nav > a.is-current .nav-icon { background: var(--green-100); color: var(--green-600); }
.site-nav .nav-cta { min-height: 46px; padding-inline: 14px; color: #4a3200; border-color: transparent; background: linear-gradient(135deg,#fff4bd,#f3c84d 58%,#dfa51d) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 0 9px 22px rgba(240,180,41,.28); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: #2f2100; background: linear-gradient(135deg,#fff7cf,#ffd75f 58%,#e0a41a) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 0 12px 28px rgba(240,180,41,.4); }
.site-nav .nav-cta .nav-icon { background: rgba(74,50,0,.1); }

.hero { padding-top: 148px; background: radial-gradient(circle at 8% 20%,rgba(13,184,154,.14),transparent 24rem), radial-gradient(circle at 92% 18%,rgba(240,180,41,.18),transparent 27rem), linear-gradient(135deg,#fbfaf7 0%,#f3efe5 100%); }
.hero::before { opacity: .32; background-image: linear-gradient(rgba(7,26,61,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(7,26,61,.055) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom,#000,transparent 88%); }
.hero-orb--one { width: 230px; height: 230px; border: 22px solid rgba(20,105,228,.07); }
.hero-orb--two { width: 170px; height: 170px; background: linear-gradient(135deg,rgba(13,184,154,.1),rgba(240,180,41,.13)); }
.hero .eyebrow { width: max-content; max-width: 100%; padding: 8px 13px; border: 1px solid transparent; border-radius: 999px; background: linear-gradient(rgba(255,255,255,.82),rgba(255,255,255,.82)) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 4px 4px 0 rgba(7,26,61,.08); }
.hero h1 { color: var(--navy-950); }
.hero h1 em { color: var(--navy-950); background: linear-gradient(transparent 61%,rgba(240,180,41,.5) 61%); -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: currentColor; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero .button--primary { border: 2px solid transparent; background: linear-gradient(var(--blue-700),var(--blue-700)) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 7px 7px 0 rgba(7,26,61,.14); }
.hero .button--ghost { border: 2px solid var(--navy-900); background: rgba(255,255,255,.76); box-shadow: 5px 5px 0 rgba(7,26,61,.09); }
.product-window { border-width: 3px; border-radius: 18px; box-shadow: 13px 13px 0 rgba(7,26,61,.16), 0 34px 70px rgba(3,25,66,.16); transform: rotate(1deg); }
.product-topbar { background: linear-gradient(110deg,var(--navy-950),var(--navy-800)); }
.floating-card { border: 2px solid transparent; border-radius: 999px; background: linear-gradient(rgba(255,255,255,.96),rgba(255,255,255,.96)) padding-box, var(--edge-gradient) border-box; }
.fact-strip { gap: 12px; overflow: visible; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.fact-strip > div { min-height: 104px; border: 2px solid transparent; border-radius: 16px; background: linear-gradient(rgba(255,255,255,.9),rgba(255,255,255,.9)) padding-box, var(--edge-gradient) border-box; box-shadow: 7px 7px 0 rgba(7,26,61,.08); }
.fact-strip > div + div { border-left: 2px solid transparent; }
.fact-strip > div:nth-child(even) { transform: translateY(12px); }

.section--soft, .pricing-section { background: #f3f0e8; }
.feature-grid, .capability-grid, .export-grid, .roadmap-grid { gap: 22px; }
.feature-card:not(.feature-card--dark):not(.feature-card--cloud), .capability-card:not(.capability-card--github):not(.capability-card--import), .export-card:not(.export-card--featured), .roadmap-card:not(.roadmap-card--github) { border-width: 2px; box-shadow: 8px 8px 0 rgba(7,26,61,.08); }
.feature-card, .capability-card, .export-card, .roadmap-card { transition: transform .22s ease, box-shadow .22s ease; }
.feature-card:hover, .capability-card:hover, .export-card:hover, .roadmap-card:hover { transform: translate(-2px,-2px); box-shadow: 11px 11px 0 rgba(7,26,61,.1); }
.feature-card--dark, .roadmap-card--github, .export-card--featured { border: 2px solid transparent; background-origin: border-box; }
.feature-icon, .capability-card__number, .export-card__icon { border: 1px solid rgba(7,26,61,.08); box-shadow: 4px 4px 0 rgba(7,26,61,.08); }
.organization-visual { border: 2px solid transparent; background: radial-gradient(circle at center,rgba(33,118,255,.16),transparent 56%) padding-box, linear-gradient(145deg,#f6faff,#eef5ff) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 10px 10px 0 rgba(7,26,61,.08); }
.ai-chat-demo { border: 2px solid transparent; background: linear-gradient(#f7faff,#f7faff) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 12px 12px 0 rgba(0,0,0,.2), 0 34px 80px rgba(0,0,0,.26); }
.ai-proof { border: 2px solid transparent; background: linear-gradient(145deg,#0b3842,#0a2341) padding-box, var(--edge-gradient-strong) border-box; }
.import-console { border: 2px solid transparent; background: linear-gradient(#fffaf5,#fffaf5) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 11px 11px 0 rgba(97,35,0,.12), 0 34px 70px rgba(114,54,5,.13); }
.github-app { border: 2px solid transparent; background: linear-gradient(#17304f,#17304f) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 12px 12px 0 rgba(0,0,0,.22), 0 38px 90px rgba(0,0,0,.28); }
.github-detail-card, .security-card { border: 2px solid transparent; background: linear-gradient(#122b4a,#102541) padding-box, var(--edge-gradient-strong) border-box; }
.github-status-panel, .permission-table-wrap { border-width: 2px; box-shadow: 7px 7px 0 rgba(0,0,0,.13); }
.price-card { border-width: 3px; box-shadow: 12px 12px 0 rgba(7,26,61,.13), 0 30px 70px rgba(3,25,66,.12); }
.site-footer { border-top: 3px solid transparent; background: linear-gradient(#fff,#fff) padding-box, var(--edge-gradient-strong) border-box; }

@media (max-width: 980px) and (min-width: 761px) {
  .header-inner { padding-left: 14px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 32px; height: 32px; }
  .site-nav { gap: 4px; margin-left: 12px; }
  .site-nav > a:not(.button), .site-nav .nav-cta { padding-inline: 8px; font-size: 10px; }
  .nav-icon { display: none; }
}

@media (max-width: 760px) {
  .site-header { height: 84px; padding: 8px 8px 0; }
  .header-inner { width: 100%; height: 64px; padding: 7px 10px 7px 15px; border-radius: 20px; }
  .menu-toggle { display: block; background: rgba(255,255,255,.1); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { background: #fff; }
  .site-nav { position: fixed; inset: 80px 10px auto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 0; padding: 10px; border: 2px solid transparent; border-radius: 22px; background: linear-gradient(rgba(7,26,61,.98),rgba(7,26,61,.98)) padding-box, var(--edge-gradient-strong) border-box; box-shadow: 0 22px 55px rgba(3,19,48,.34); }
  .site-nav > a:not(.button), .site-nav .nav-cta { min-height: 52px; justify-content: flex-start; padding-inline: 12px; font-size: 12px; }
  .site-nav .nav-cta { grid-column: 1 / -1; justify-content: center; }
  .hero { padding-top: 118px; }
  .hero-copy, .hero h1, .hero h1 em, .hero-lead { min-width: 0; max-width: 100%; }
  .product-window { transform: none; }
  .fact-strip > div:nth-child(even) { transform: none; }
}

@media (max-width: 520px) {
  .brand { font-size: 21px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero h1 { font-size: clamp(40px,12.5vw,59px); }
  .hero .eyebrow { width: auto; font-size: 10px; }
  .fact-strip { gap: 9px; }
  .fact-strip > div { min-height: 110px; padding: 15px; box-shadow: 4px 4px 0 rgba(7,26,61,.08); }
}
