:root {
  --blue: #1768ff;
  --blue-dark: #0955e8;
  --blue-soft: #eaf2ff;
  --ink: #0b1324;
  --ink-2: #26334a;
  --muted: #68748a;
  --line: #e5eaf1;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --dark: #08101f;
  --dark-2: #0d1729;
  --green: #16a56a;
  --orange: #f19b38;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(11, 31, 65, .08);
  --shadow-lg: 0 34px 90px rgba(21, 57, 117, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pad { padding: 132px 0; }
.section-tint { background: var(--surface-2); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 78px;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(220,226,235,.76);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.95); box-shadow: 0 8px 30px rgba(13,31,62,.06); }
.nav-wrap { height: 100%; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-name { font: 800 20px/1 "Arial", sans-serif; letter-spacing: -.03em; }
.brand-mark { width: 31px; height: 31px; position: relative; display: inline-block; }
.brand-mark span { position: absolute; display: block; background: var(--blue); border-radius: 4px; transform: skewY(-30deg); }
.brand-mark span:nth-child(1) { width: 8px; height: 18px; left: 2px; top: 7px; }
.brand-mark span:nth-child(2) { width: 8px; height: 24px; left: 11px; top: 3px; }
.brand-mark span:nth-child(3) { width: 8px; height: 14px; left: 20px; top: 9px; }
.desktop-nav { display: flex; gap: 34px; margin-left: 72px; }
.desktop-nav a, .nav-link { font-size: 14px; font-weight: 600; color: #3d495c; transition: color .2s ease; }
.desktop-nav a:hover, .nav-link:hover { color: var(--blue); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.menu-toggle { display: none; margin-left: auto; width: 40px; height: 40px; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 78px 0 auto 0; padding: 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mobile-menu a { display: block; padding: 14px 4px; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-menu .button { margin-top: 15px; text-align: center; border-bottom: 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 10px; border: 1px solid transparent; font-weight: 700; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-lg { min-height: 54px; padding: 0 25px; font-size: 15px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 22px rgba(23,104,255,.24); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 15px 28px rgba(23,104,255,.28); }
.button-secondary { color: var(--ink); border-color: #d9e0ea; background: rgba(255,255,255,.72); }
.button-secondary:hover { background: #fff; box-shadow: var(--shadow-sm); }
.button-dark { color: #fff; background: var(--ink); }
.button-light { color: var(--blue); background: #fff; }

.hero { position: relative; min-height: 850px; padding-top: 184px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.04fr; align-items: center; gap: 44px; position: relative; z-index: 2; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.glow-one { width: 720px; height: 720px; right: -230px; top: 30px; background: radial-gradient(circle, rgba(33,115,255,.13), rgba(33,115,255,0) 68%); }
.glow-two { width: 420px; height: 420px; left: -210px; bottom: -100px; background: radial-gradient(circle, rgba(65,213,194,.10), rgba(65,213,194,0) 70%); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font: 700 12px/1.2 "Arial", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(23,104,255,.10); }
.eyebrow.neutral { color: #4d5a70; }
.hero h1 { margin: 27px 0 25px; font-size: clamp(42px, 3.85vw, 56px); line-height: 1.25; letter-spacing: -.055em; font-weight: 800; }
.hero-line { display: block; color: var(--blue); white-space: nowrap; }
.hero-line-dark { color: var(--ink); }
.hero-description { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.85; letter-spacing: -.02em; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 25px; color: #536178; font-size: 13px; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #19b878; box-shadow: 0 0 0 5px rgba(25,184,120,.1); }
.hero-visual { position: relative; min-width: 0; }
.visual-shell { background: #fff; border: 1px solid #dfe6f1; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); transform-origin: center; }
.visual-topbar { height: 43px; padding: 0 15px; display: flex; align-items: center; border-bottom: 1px solid #edf0f5; background: #fbfcfe; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d6dce6; }
.topbar-label { margin-left: 17px; font: 700 8px/1 "Arial"; color: #8a96a8; letter-spacing: .12em; }
.live-pill { margin-left: auto; display: flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid #e1e7ef; border-radius: 999px; color: #67758b; font: 600 8px/1 "Arial"; }
.live-pill span { width: 5px; height: 5px; background: #27bf7b; border-radius: 50%; }
.visual-body { display: grid; grid-template-columns: 90px 1fr; min-height: 500px; }
.mock-sidebar { display: flex; flex-direction: column; gap: 9px; background: #0d1729; padding: 18px 12px; color: rgba(255,255,255,.65); }
.sidebar-logo { width: 27px; height: 27px; border-radius: 8px; background: var(--blue); display: grid; place-items: center; color: #fff; font: 800 12px/1 "Arial"; margin: 0 auto 14px; }
.side-item { padding: 9px 8px; border-radius: 7px; text-align: center; font: 600 7px/1 "Arial"; }
.side-item i { display: block; width: 14px; height: 12px; border: 1.5px solid currentColor; border-radius: 3px; margin: 0 auto 6px; opacity: .8; }
.side-item.active { color: #fff; background: rgba(255,255,255,.09); }
.sidebar-spacer { flex: 1; }
.side-avatar { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; margin: auto; background: rgba(255,255,255,.15); color: #fff; font: 700 9px/1 "Arial"; }
.mock-main { min-width: 0; background: #f6f8fb; padding: 25px; }
.mock-heading-row { display: flex; align-items: center; }
.mock-heading-row small, .report-head small { display: block; font: 700 7px/1 "Arial"; color: #98a4b5; letter-spacing: .08em; margin-bottom: 6px; }
.mock-heading-row strong { display: block; font-size: 17px; line-height: 1.2; }
.mock-heading-row button { margin-left: auto; border: 0; border-radius: 7px; background: var(--blue); color: #fff; font-size: 8px; font-weight: 700; padding: 8px 12px; }
.pipeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 22px; }
.source-card { min-width: 0; background: #fff; border: 1px solid #e7ebf1; border-radius: 10px; padding: 13px; box-shadow: 0 5px 15px rgba(20,45,82,.04); }
.card-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; margin-bottom: 11px; }
.card-icon svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.photo-icon { color: #1967ff; background: #e9f1ff; }.message-icon { color: #8f57e9; background: #f1eafe; }.document-icon { color: #e58a2a; background: #fff1df; }
.source-card span { display: block; color: #748196; font-size: 8px; }
.source-card b { display: block; margin-top: 1px; font: 800 18px/1.4 "Arial"; }
.processing-line { height: 53px; display: flex; align-items: center; position: relative; padding: 0 20px; }
.processing-line::before { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, #d6dfec, #88afff, #d6dfec); }
.processing-line span { position: absolute; left: 23%; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(23,104,255,.12); animation: travel 3s ease-in-out infinite; }
.processing-line i { position: absolute; width: 10px; height: 10px; border: 2px solid #9abaf7; border-top-color: var(--blue); border-radius: 50%; left: 50%; background: #f6f8fb; animation: spin 1.5s linear infinite; }
.processing-line em { position: absolute; left: 50%; bottom: 1px; transform: translateX(-50%); font-style: normal; color: #96a1b1; font-size: 7px; background: #f6f8fb; padding: 0 8px; white-space: nowrap; }
.report-card { background: #fff; border: 1px solid #e4eaf2; border-radius: 12px; padding: 17px; box-shadow: 0 8px 24px rgba(18,43,81,.05); }
.report-head { display: flex; align-items: center; }
.report-head strong { display: block; font-size: 12px; }
.complete-badge { margin-left: auto; color: #178b5e; background: #e8f8f1; padding: 4px 8px; border-radius: 999px; font-size: 7px; font-weight: 700; }
.report-grid { display: grid; grid-template-columns: 115px 1fr; gap: 16px; margin-top: 15px; }
.score-panel { border: 1px solid #edf0f5; border-radius: 9px; padding: 12px 7px; text-align: center; }
.score-ring { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto; display: grid; place-content: center; background: radial-gradient(circle at center, #fff 59%, transparent 61%), conic-gradient(var(--blue) 0 92%, #e7edf5 92%); }
.score-ring b { font: 800 16px/1 "Arial"; }.score-ring span { color: #8a97aa; font-size: 6px; margin-top: 3px; }
.score-panel p { margin: 7px 0 0; color: #7e8b9e; font-size: 6.5px; }
.chart-panel { min-width: 0; }
.chart-title { display: flex; align-items: center; font-size: 7px; color: #778499; }
.chart-title b { margin-left: auto; color: #18a36d; }
.mini-chart { width: 100%; height: 75px; overflow: visible; }
.chart-area { fill: url(#areaGradient); }.chart-line { fill: none; stroke: var(--blue); stroke-width: 2.2; stroke-linecap: round; }
.chart-tags { display: flex; gap: 6px; }.chart-tags span { padding: 4px 7px; border-radius: 5px; background: #f1f5fa; color: #7d899b; font-size: 6px; }
.floating-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 13px; background: rgba(255,255,255,.94); border: 1px solid rgba(213,222,235,.9); border-radius: 10px; box-shadow: 0 15px 35px rgba(21,57,117,.14); color: #3b4960; font-size: 9px; font-weight: 700; backdrop-filter: blur(8px); }
.floating-chip span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 6px; background: var(--blue-soft); color: var(--blue); font: 800 8px/1 "Arial"; }
.chip-one { left: -28px; bottom: 72px; animation: float 4.5s ease-in-out infinite; }.chip-two { right: -15px; top: 82px; animation: float 5s ease-in-out .8s infinite; }

.proof-strip { border-block: 1px solid var(--line); background: #fff; }
.proof-inner { min-height: 104px; display: flex; align-items: center; gap: 65px; }
.proof-inner > p { flex-shrink: 0; margin: 0; color: #748196; font-size: 13px; font-weight: 600; }
.proof-flow { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.proof-flow span { font-size: 14px; font-weight: 700; color: #324057; }
.proof-flow i { display: block; width: 42px; height: 1px; background: #cfd7e3; position: relative; }
.proof-flow i::after { content: ""; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1px solid #aab4c3; border-right: 1px solid #aab4c3; transform: rotate(45deg); }

.two-column { display: grid; grid-template-columns: .86fr 1.14fr; gap: 105px; }
.section-heading h2 { margin: 22px 0 22px; font-size: clamp(36px, 3.5vw, 52px); line-height: 1.3; letter-spacing: -.045em; }
.section-heading > p { max-width: 630px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.section-heading.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.section-heading.centered > p { margin-inline: auto; }
.problem-list { border-top: 1px solid var(--line); }
.problem-list article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.problem-number { color: var(--blue); font: 800 13px/1.6 "Arial"; }
.problem-list h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.025em; }
.problem-list p { margin: 0; color: var(--muted); font-size: 15px; }

.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 68px; }
.feature-card { position: relative; min-height: 340px; padding: 26px 22px; background: #fff; border: 1px solid #e4e9f1; border-radius: 18px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: #cddbf2; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon.capture { color:#1768ff;background:#eaf2ff}.feature-icon.structure{color:#8452dc;background:#f0eafe}.feature-icon.analyze{color:#e58a2a;background:#fff0df}.feature-icon.report{color:#0e9d72;background:#e4f8f1}.feature-icon.action{color:#e05567;background:#ffebef}
.feature-step { position: absolute; top: 28px; right: 22px; color: #c0c9d5; font: 800 11px/1 "Arial"; }
.feature-card h3 { margin: 30px 0 4px; font: 800 16px/1.3 "Arial"; letter-spacing: -.02em; }
.feature-card strong { display: block; font-size: 18px; }
.feature-card p { margin: 17px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.product-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.product-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid #dbe3ee; border-radius: 999px; color: #637087; font: 700 10px/1 "Arial"; letter-spacing: .08em; }
.product-badge span { width: 7px; height: 7px; border-radius: 50%; background: #19b878; box-shadow: 0 0 0 4px rgba(25,184,120,.1); }
.mini-brand { margin-top: 28px; font-size: 20px; font-weight: 800; color: #111a2b; }.mini-brand small { color: #7f8a9d; font-size: 11px; font-weight: 600; }
.product-copy h2 { margin: 18px 0 22px; font-size: clamp(38px, 3.5vw, 53px); line-height: 1.25; letter-spacing: -.05em; }
.product-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.check-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.check-list li { display: flex; align-items: center; gap: 11px; margin: 12px 0; color: #3c4960; font-size: 14px; font-weight: 600; }
.check-list span { width: 23px; height: 23px; border-radius: 7px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 12px; }
.paycheck-demo { min-width: 0; position: relative; padding: 30px 0 45px; }
.phone-shadow { position: absolute; inset: 16% 12% 9% 7%; background: radial-gradient(circle, rgba(42,94,190,.18), transparent 68%); filter: blur(22px); }
.browser-window { position: relative; z-index: 1; overflow: hidden; border: 1px solid #dce3ed; border-radius: 18px; background: #fff; box-shadow: 0 35px 85px rgba(19,54,111,.17); }
.browser-bar { height: 42px; padding: 0 14px; display: flex; align-items: center; background: #f7f9fc; border-bottom: 1px solid #e7ebf1; }
.browser-bar > div:first-child { display: flex; gap: 5px; }.browser-bar > div:first-child span { width: 7px; height: 7px; border-radius: 50%; background: #cfd6e1; }
.browser-url { width: 210px; margin: auto; padding: 6px 12px; border-radius: 6px; text-align: center; color: #8894a6; background: #fff; font-size: 7px; }
.paycheck-ui { display: grid; grid-template-columns: 112px 1fr; min-height: 455px; }
.paycheck-ui aside { padding: 22px 13px; background: #111b2d; color: rgba(255,255,255,.65); }
.pc-logo { color: #fff; font-size: 12px; font-weight: 800; margin: 0 6px 24px; }
.pc-nav { display: block; padding: 9px 10px; border-radius: 6px; font-size: 8px; margin-bottom: 4px; }.pc-nav.active { color: #fff; background: rgba(255,255,255,.1); }
.pc-main { min-width: 0; padding: 24px; background: #f5f7fa; }
.pc-title { display: flex; align-items: center; }.pc-title small { display:block;color:#8490a3;font-size:7px;margin-bottom:5px}.pc-title strong{display:block;font-size:15px}.pc-title>span{margin-left:auto;color:#178b5e;background:#e7f8f0;padding:5px 8px;border-radius:999px;font-size:7px;font-weight:700}
.pc-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }.pc-summary article{padding:15px;background:#fff;border:1px solid #e6ebf2;border-radius:9px}.pc-summary small{display:block;color:#8793a5;font-size:7px}.pc-summary strong{display:block;margin:5px 0;font:800 17px/1.2 "Arial"}.pc-summary em{font-style:normal;color:#1768ff;font-size:7px}
.pc-chart-card{margin-top:10px;padding:15px;background:#fff;border:1px solid #e6ebf2;border-radius:9px}.pc-chart-head{display:flex;align-items:center;margin-bottom:14px;font-size:8px}.pc-chart-head span{margin-left:auto;color:#8894a6;font-size:7px}.bar-row{display:grid;grid-template-columns:60px 1fr 30px;gap:9px;align-items:center;margin:11px 0;font-size:7px}.bar-row i{display:block;height:6px;border-radius:99px;background:#edf1f6;overflow:hidden}.bar-row i b{display:block;height:100%;border-radius:99px;background:#1768ff}.bar-row strong{color:#168b5f}.bar-row.warning i b{background:#f2a64b}.bar-row.warning strong{color:#e58a2a}
.pc-alert{display:flex;align-items:center;gap:10px;margin-top:10px;padding:12px;background:#fff8ee;border:1px solid #f7e1bf;border-radius:9px}.pc-alert>span{width:24px;height:24px;border-radius:7px;display:grid;place-items:center;background:#ffead0;color:#e78a26;font-weight:800;font-size:10px}.pc-alert b{display:block;font-size:8px}.pc-alert p{margin:2px 0 0;color:#8b7b67;font-size:6px}.pc-alert button{margin-left:auto;border:0;background:#fff;color:#d87b1f;border-radius:5px;padding:6px 8px;font-size:6px;font-weight:700}
.mobile-report { position: absolute; z-index: 2; right: -22px; bottom: 0; width: 172px; min-height: 340px; padding: 13px 15px 15px; border: 6px solid #111a2a; border-radius: 27px; background: #fff; box-shadow: 0 28px 65px rgba(14,42,88,.25); }
.mobile-notch { width: 56px; height: 13px; border-radius: 0 0 9px 9px; background: #111a2a; margin: -13px auto 13px; }
.mobile-head{display:flex;align-items:center;font-size:8px}.mobile-head span{margin-left:auto;color:#7d899b}.mobile-report>small{display:block;margin-top:26px;color:#8b96a7;font-size:7px}.mobile-report>strong{display:block;margin-top:3px;font-size:10px}.mobile-amount{margin-top:10px;font:800 20px/1.2 "Arial"}.mobile-amount em{font:700 9px/1 "Apple SD Gothic Neo";margin-left:2px}.mobile-gauge{height:7px;margin-top:14px;border-radius:999px;background:#edf1f6;overflow:hidden}.mobile-gauge span{display:block;width:72%;height:100%;border-radius:999px;background:linear-gradient(90deg,#1768ff,#5e92ff)}.mobile-info{display:flex;gap:8px;margin-top:17px;padding:10px;border-radius:8px;background:#fff5e7}.mobile-info i{width:19px;height:19px;display:grid;place-items:center;border-radius:6px;background:#ffe5c4;color:#df8529;font-style:normal;font-size:8px;font-weight:800}.mobile-info b{display:block;font-size:7px}.mobile-info small{display:block;margin-top:2px;color:#8c7e6c;font-size:5.5px}.mobile-report>button{width:100%;margin-top:18px;padding:10px;border:0;border-radius:7px;background:#1768ff;color:#fff;font-size:7px;font-weight:700}

.section-dark { background: var(--dark); color: #fff; }
.section-heading.light h2 { max-width: 720px; }.section-heading.light > p { color: #aab4c5; }
.section-dark .eyebrow { color: #6b9dff; }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 65px; }
.industry-card { min-height: 310px; padding: 27px 25px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.045); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.industry-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.075); border-color: rgba(114,158,255,.45); }
.industry-card.active { background: linear-gradient(145deg, rgba(23,104,255,.24), rgba(255,255,255,.04)); border-color: rgba(66,128,255,.48); }
.industry-top { display: flex; align-items: center; }
.industry-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #7eabff; background: rgba(54,116,237,.18); }
.industry-icon svg { width: 24px; fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round; }
.status { margin-left: auto; padding: 5px 8px; border-radius: 999px; font-size: 8px; font-weight: 700; }
.status.live { color:#50d69e;background:rgba(31,185,124,.13)}.status.planned{color:#84aefc;background:rgba(50,111,229,.16)}.status.research{color:#b9c1cf;background:rgba(255,255,255,.08)}
.industry-card h3 { margin: 28px 0 11px; font-size: 21px; }.industry-card p { margin: 0; color: #9faabd; font-size: 14px; line-height: 1.75; }.industry-card strong { display: block; margin-top: 26px; color: #6f9fff; font: 700 11px/1 "Arial"; letter-spacing: .04em; }

.principle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; margin-top: 72px; }
.principle-grid article { padding-top: 26px; border-top: 2px solid #dfe5ed; }
.principle-grid span { color: var(--blue); font: 800 11px/1 "Arial"; }.principle-grid h3 { margin: 19px 0 12px; font: 800 18px/1.3 "Arial"; }.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.contact { padding-top: 70px; }
.contact-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: .92fr 1.08fr; gap: 75px; padding: 72px; border-radius: 30px; background: linear-gradient(135deg, #0c5bea 0%, #1975ff 58%, #3389ff 100%); color: #fff; }
.contact-shell::before { content:""; position:absolute; width:430px;height:430px;right:-160px;top:-250px;border-radius:50%;border:70px solid rgba(255,255,255,.06); }
.contact-shell::after { content:""; position:absolute; width:250px;height:250px;left:-120px;bottom:-150px;border-radius:50%;background:rgba(255,255,255,.05); }
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact .eyebrow { color: rgba(255,255,255,.72); }.contact h2 { margin: 22px 0; font-size: clamp(35px,3.2vw,49px); line-height:1.3;letter-spacing:-.045em}.contact-copy>p{margin:0;color:rgba(255,255,255,.78);font-size:15px;line-height:1.85}
.contact-types{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px}.contact-types span{padding:7px 10px;border:1px solid rgba(255,255,255,.24);border-radius:999px;color:rgba(255,255,255,.86);font-size:10px;font-weight:600}
.contact-form { padding: 27px; border: 1px solid rgba(255,255,255,.16); border-radius: 19px; background: rgba(255,255,255,.11); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: block; margin-bottom: 13px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; outline: 0; background: rgba(7,40,104,.22); font-size: 12px; transition: border-color .2s ease, background .2s ease; resize: vertical; }
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,.46)}.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(255,255,255,.65);background:rgba(7,40,104,.32)}
.contact-form .button { width: 100%; border: 0; }.form-note{margin:9px 0 0;text-align:center;color:rgba(255,255,255,.62);font-size:9px}

.site-footer { margin-top: 120px; padding: 70px 0 24px; background: #080f1d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; padding-bottom: 55px; }
.brand.inverse .brand-name { color:#fff}.footer-brand p{margin:24px 0 0;color:#8d99ac;font-size:13px;line-height:1.8}.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}.footer-links strong{display:block;margin-bottom:17px;color:#fff;font-size:12px}.footer-links a{display:block;margin:10px 0;color:#8d99ac;font-size:12px;transition:color .2s}.footer-links a:hover{color:#fff}.footer-bottom{display:flex;align-items:center;gap:30px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);color:#748095;font-size:10px}.footer-disclaimer{margin-left:auto;text-align:right}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }.delay-2 { transition-delay: .15s; }.delay-3 { transition-delay: .22s; }.delay-4 { transition-delay: .29s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes travel { 0%,100% { left: 23%; opacity:.5 } 50% { left: 76%; opacity:1 } }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }

@media (max-width: 1100px) {
  .desktop-nav { margin-left: 45px; gap: 23px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { text-align: center; }.hero-description{max-width:720px;margin-inline:auto}.hero-actions,.hero-note{justify-content:center}.hero-visual{max-width:760px;width:100%;margin:auto}.hero{padding-top:160px}.feature-grid{grid-template-columns:repeat(3,1fr)}.feature-card{min-height:300px}.product-grid{gap:45px}.industry-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 860px) {
  .section-pad { padding: 95px 0; }
  .desktop-nav,.nav-actions{display:none}.menu-toggle{display:block}.two-column,.product-grid,.contact-shell,.footer-grid{grid-template-columns:1fr}.two-column{gap:55px}.product-grid{gap:60px}.contact-shell{gap:50px;padding:55px 40px}.proof-inner{display:block;padding-block:24px}.proof-inner>p{text-align:center;margin-bottom:18px}.proof-flow i{width:20px}.principle-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{gap:50px}.footer-links{max-width:640px}.footer-bottom{align-items:flex-start}.footer-disclaimer{max-width:440px}.feature-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 68px; }.mobile-menu{top:68px}.brand-name{font-size:18px}.brand-mark{width:28px;height:28px;transform:scale(.9)}
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 88px; }.hero h1{font-size:39px}.hero-line{white-space:normal}.hero-description{font-size:15px}.desktop-only{display:none}.hero-actions{flex-direction:column}.hero-actions .button{width:100%}.hero-note{font-size:11px;text-align:left;align-items:flex-start}.visual-body{grid-template-columns:52px 1fr;min-height:420px}.mock-sidebar{padding:13px 6px}.side-item span{display:none}.side-item i{margin-bottom:0}.mock-main{padding:14px}.pipeline{gap:5px}.source-card{padding:9px 7px}.source-card span{font-size:6px}.source-card b{font-size:14px}.report-grid{grid-template-columns:82px 1fr;gap:8px}.score-panel{padding:8px 3px}.score-ring{width:47px;height:47px}.chart-tags{display:none}.floating-chip{font-size:7px;padding:8px 9px}.chip-one{left:-7px;bottom:45px}.chip-two{right:-7px;top:57px}.visual-shell{transform:none}
  .proof-flow{display:grid;grid-template-columns:1fr 13px 1fr 13px 1fr;gap:7px;text-align:center}.proof-flow span{font-size:10px}.proof-flow i{width:10px}.proof-flow span:nth-of-type(4),.proof-flow span:nth-of-type(5),.proof-flow i:nth-of-type(4){display:none}
  .section-heading h2,.product-copy h2{font-size:34px}.section-heading>p,.product-copy>p{font-size:15px}.problem-list article{grid-template-columns:40px 1fr;gap:10px}.problem-list h3{font-size:17px}.problem-list p{font-size:13px}
  .feature-grid,.industry-grid,.principle-grid{grid-template-columns:1fr}.feature-card{min-height:auto}.industry-card{min-height:260px}.principle-grid{gap:28px}
  .browser-window{margin-right:0}.paycheck-ui{grid-template-columns:75px 1fr;min-height:390px}.paycheck-ui aside{padding:16px 7px}.pc-nav{padding:7px 5px;font-size:6px}.pc-main{padding:13px}.pc-summary strong{font-size:12px}.mobile-report{width:142px;min-height:290px;right:-6px}.mobile-amount{font-size:16px}.pc-alert{display:none}
  .contact-shell{width:calc(100% - 20px);padding:42px 22px;border-radius:23px}.form-row{grid-template-columns:1fr}.footer-links{grid-template-columns:1fr 1fr;gap:30px}.footer-links>div:last-child{grid-column:1/-1}.footer-bottom{display:block}.footer-disclaimer{text-align:left;margin:10px 0 0}.site-footer{margin-top:90px}.section-pad{padding:82px 0}
}
@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.floating-chip,.processing-line span,.processing-line i{animation:none}.button{transition:none} }
