:root {
  --ink: #0b1e3a;
  --ink-muted: #63738d;
  --paper: #fbfcff;
  --line: #dce4ef;
  --blue: #4169e1;
  --blue-deep: #2049bf;
  --blue-pale: #eaf0ff;
  --mint: #b9f1d5;
  --coral: #ff8073;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

button { color: inherit; font: inherit; }

.shell { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  transform: translate(-50%, -180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translate(-50%, 0); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: #fff;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 2px 18px rgba(20, 38, 73, .09);
  backdrop-filter: blur(12px);
}

.header-inner { display: flex; align-items: center; height: 84px; gap: 36px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; letter-spacing: -.05em; }

.brand-mark { display: inline-flex; align-items: end; gap: 2px; width: 23px; height: 23px; padding: 4px; border-radius: 7px; background: var(--blue); }
.brand-mark i { display: block; width: 3px; border-radius: 4px; background: #fff; }
.brand-mark i:nth-child(1) { height: 6px; opacity: .7; }
.brand-mark i:nth-child(2) { height: 10px; }
.brand-mark i:nth-child(3) { height: 14px; }

.site-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.site-nav a, .header-login { font-size: 13px; font-weight: 600; letter-spacing: .015em; transition: opacity .2s ease, color .2s ease; }
.site-nav a:hover { opacity: .67; }
.header-login { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 999px; }
.header-login:hover { background: #fff; color: var(--ink); }
.is-scrolled .header-login { border-color: var(--line); }
.is-scrolled .header-login:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.menu-toggle { display: none; }

.hero { position: relative; overflow: hidden; min-height: 760px; padding: 158px 0 72px; background: #0a1c37; color: #fff; isolation: isolate; }
.hero::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(112deg, #081b36 0%, #102d60 58%, #152f73 100%); content: ""; }
.hero::after { position: absolute; z-index: -1; right: -5%; bottom: -25%; width: 69vw; height: 69vw; border: 1px solid rgba(213, 227, 255, .13); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(213, 227, 255, .025), 0 0 0 16vw rgba(213, 227, 255, .02); content: ""; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); opacity: .9; }
.hero-glow-one { top: 8%; right: 16%; width: 270px; height: 270px; background: rgba(80, 124, 255, .25); }
.hero-glow-two { bottom: -18%; left: 29%; width: 350px; height: 350px; background: rgba(27, 210, 182, .09); }

.hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr); align-items: center; gap: 44px; }
.hero-copy { padding-bottom: 8px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 23px; color: #dbe5ff; font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; line-height: 1.4; }
.eyebrow span { display: block; width: 18px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #526987; }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(40px, 4.2vw, 61px); font-weight: 700; letter-spacing: -.085em; line-height: 1.36; }
h1 em, h2 em { color: var(--mint); font-style: normal; }
.hero-lead { max-width: 465px; margin-bottom: 35px; color: #ccdaf1; font-size: 16px; font-weight: 500; letter-spacing: .01em; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 22px; border-radius: 4px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mint); color: #113d3c; box-shadow: 0 8px 24px rgba(0, 0, 0, .16); }
.button-primary:hover { background: #d5ffe7; box-shadow: 0 12px 28px rgba(0, 0, 0, .25); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #f4f7ff; font-size: 13px; font-weight: 600; transition: opacity .2s ease; }
.text-link:hover { opacity: .65; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 51px; color: #aabbd7; font-size: 11px; font-weight: 500; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(185, 241, 213, .1); }

.hero-visual { position: relative; min-height: 430px; padding-top: 14px; }
.dashboard-window { position: relative; overflow: hidden; width: 100%; max-width: 620px; margin-left: auto; border: 1px solid rgba(231, 240, 255, .46); border-radius: 13px; background: #f8faff; box-shadow: 0 30px 52px rgba(0, 8, 31, .31), 0 1px 0 rgba(255, 255, 255, .35) inset; transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); transform-origin: 60% 60%; }
.window-topbar { display: flex; align-items: center; justify-content: space-between; height: 39px; padding: 0 15px; border-bottom: 1px solid #e9edf4; color: #26395a; background: #fff; font-size: 9px; font-weight: 800; }
.window-logo { display: flex; align-items: center; gap: 4px; }
.window-logo b { width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(140deg, var(--blue), #748ff0); }
.window-topbar-right { display: flex; gap: 5px; }
.window-topbar-right span { width: 5px; height: 5px; border-radius: 50%; background: #d3dce9; }
.dashboard-body { display: flex; min-height: 333px; }
.dash-sidebar { display: flex; flex-direction: column; align-items: center; width: 54px; padding: 14px 0 11px; background: #102646; }
.dash-avatar { display: grid; width: 23px; height: 23px; margin-bottom: 20px; border-radius: 50%; place-items: center; background: #b5c8ff; color: #244289; font-size: 9px; font-weight: 700; }
.dash-nav { width: 24px; height: 4px; margin-bottom: 15px; border-radius: 99px; background: rgba(255, 255, 255, .28); }
.dash-nav.active { height: 21px; margin-bottom: 13px; border-radius: 6px; background: #5279ef; }
.dash-nav.last { margin-top: auto; margin-bottom: 0; }
.dash-content { flex: 1; min-width: 0; padding: 18px 20px; color: #1b2a45; }
.dash-heading { display: flex; align-items: start; justify-content: space-between; }
.dash-heading b { display: block; margin-bottom: 2px; font-size: 12px; }
.dash-heading span { display: block; color: #8793a9; font-size: 7px; }
.dash-heading i { width: 22px; height: 22px; border-radius: 50%; background: #f0f3f8; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 15px 0; }
.stat-card { position: relative; min-height: 63px; overflow: hidden; padding: 9px; border: 1px solid #e8ecf2; border-radius: 6px; background: #fff; }
.stat-card span { display: block; margin-bottom: 2px; color: #76849c; font-size: 7px; }
.stat-card b { font-family: var(--mono); font-size: 18px; }
.stat-card b small { font-family: var(--sans); font-size: 7px; }
.stat-card i { position: absolute; right: -3px; bottom: -8px; width: 31px; height: 31px; border-radius: 50%; background: #eef2ff; }
.stat-card.stat-indigo { border-color: #dce5ff; background: #f5f7ff; }
.stat-card.stat-indigo b { color: #315fdd; }
.stat-card b.warm { color: #f06a5e; }
.dash-lower { display: grid; grid-template-columns: 1.22fr .95fr; gap: 10px; }
.schedule-card, .task-card { padding: 10px; border: 1px solid #e8ecf2; border-radius: 6px; background: #fff; }
.card-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.card-title b { font-size: 8px; }
.card-title span { color: #5b78d8; font-size: 6px; }
.card-title .count { display: grid; width: 14px; height: 14px; border-radius: 50%; place-items: center; background: #eef2fd; color: #4169e1; }
.time-row { display: grid; grid-template-columns: 25px 6px 1fr; align-items: center; gap: 5px; min-height: 21px; font-size: 6px; }
.time-row > span { color: #94a0b1; }
.time-row i { width: 5px; height: 5px; border-radius: 50%; background: #4a70df; }
.time-row:nth-child(2) i { background: #eeb860; }
.time-row:nth-child(3) i { background: #6ac6aa; }
.time-row b { font-size: 7px; font-weight: 600; }
.task-line { display: flex; align-items: center; gap: 5px; min-height: 26px; border-top: 1px solid #edf0f5; font-size: 7px; font-weight: 600; }
.task-line i { width: 8px; height: 8px; border: 1px solid #9babc1; border-radius: 3px; }
.task-line.muted { color: #9da7b5; text-decoration: line-through; }
.task-line.muted i { border-color: #6797e9; background: #6797e9; }

.visual-chip { position: absolute; display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 8px; background: rgba(248, 251, 255, .96); box-shadow: 0 15px 28px rgba(0, 13, 46, .22); color: #203351; }
.visual-chip b, .visual-chip small { display: block; }
.visual-chip b { font-size: 9px; line-height: 1.45; }
.visual-chip small { color: #7d8da4; font-size: 7px; }
.chip-one { top: -4px; left: -23px; }
.chip-two { right: -15px; bottom: 9px; }
.chip-check { display: grid; width: 21px; height: 21px; border-radius: 50%; place-items: center; background: #c8f5db; color: #23875d; font-size: 12px; font-weight: 800; }
.chip-calendar { display: grid; width: 23px; height: 23px; border-radius: 5px; place-items: center; background: #eef2ff; color: #4169e1; font-family: var(--mono); font-size: 8px; font-weight: 700; }

.intro-strip { border-bottom: 1px solid var(--line); background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); min-height: 166px; }
.intro-grid > * { display: flex; flex-direction: column; justify-content: center; margin: 0; }
.intro-grid > p { padding-right: 50px; color: #50617b; font-size: 17px; line-height: 1.65; }
.intro-grid > p strong { color: var(--ink); font-weight: 700; }
.intro-item { position: relative; padding-left: 28px; border-left: 1px solid var(--line); }
.intro-item span { margin-bottom: 5px; color: #9dabc0; font-family: var(--mono); font-size: 10px; }
.intro-item b { margin-bottom: 3px; font-size: 15px; }
.intro-item small { color: #74839a; font-size: 10px; line-height: 1.7; }

.section { padding: 126px 0; }
.split-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; }
.section-heading h2, .section-title-row h2, .flow h2, .security h2 { margin: 0; font-size: clamp(30px, 3.4vw, 47px); font-weight: 700; letter-spacing: -.075em; line-height: 1.46; }
.about { background: #f8faff; }
.about-copy { max-width: 475px; padding-top: 35px; }
.about-copy p { margin-bottom: 22px; color: #53647e; font-size: 15px; line-height: 2.05; }
.inline-link { display: inline-flex; gap: 12px; margin-top: 7px; padding-bottom: 4px; border-bottom: 1px solid #7c91ae; color: #263e66; font-size: 13px; font-weight: 700; transition: gap .2s ease; }
.inline-link:hover { gap: 18px; }
.quote-panel { position: relative; overflow: hidden; display: flex; align-items: center; gap: 25px; margin-top: 96px; padding: 44px 54px; border-radius: 5px; background: #e9efff; }
.quote-panel::after { position: absolute; right: -56px; top: -82px; width: 230px; height: 230px; border: 24px solid rgba(87, 120, 222, .09); border-radius: 50%; content: ""; }
.quote-symbol { color: #7592ec; font-family: Georgia, serif; font-size: 85px; line-height: .5; }
.quote-panel p { margin: 0 auto 0 0; color: #263b61; font-size: clamp(22px, 2.45vw, 34px); font-weight: 700; letter-spacing: -.06em; }
.quote-panel p em { color: var(--blue); font-style: normal; }
.quote-panel > span { position: relative; z-index: 1; color: #6980b7; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }

.features { background: #fff; }
.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 54px; }
.section-title-row > p { margin: 0 0 2px; color: #687991; font-size: 13px; line-height: 1.9; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 377px; overflow: hidden; padding: 31px; border: 1px solid var(--line); border-radius: 5px; background: #fbfcff; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(43, 64, 107, .12); }
.feature-number { position: absolute; top: 28px; right: 29px; color: #97a7c1; font-family: var(--mono); font-size: 11px; }
.feature-icon { position: relative; width: 47px; height: 47px; margin: 21px 0 31px; border-radius: 12px; background: #e8efff; }
.feature-card h3 { margin-bottom: 11px; font-size: 20px; letter-spacing: -.05em; }
.feature-card p { max-width: 278px; margin-bottom: 31px; color: #6a7a90; font-size: 13px; line-height: 1.95; }
.feature-tag { color: #7385a1; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.feature-schedule { background: linear-gradient(145deg, #f9fbff, #eff4ff); }
.feature-attendance { background: linear-gradient(145deg, #fbfcff, #f5f9fa); }
.feature-task { background: linear-gradient(145deg, #fbfbff, #f5f0ff); }
.icon-calendar span { position: absolute; display: block; }
.icon-calendar span:nth-child(1) { top: 11px; left: 12px; width: 23px; height: 23px; border: 2px solid #5277df; border-radius: 4px; }
.icon-calendar span:nth-child(2) { top: 16px; left: 12px; width: 23px; height: 2px; background: #5277df; }
.icon-calendar span:nth-child(3) { top: 8px; left: 17px; width: 2px; height: 7px; background: #5277df; box-shadow: 11px 0 #5277df; }
.icon-clock span { position: absolute; top: 10px; left: 10px; width: 27px; height: 27px; border: 2px solid #5c87c3; border-radius: 50%; }
.icon-clock i { position: absolute; top: 17px; left: 23px; width: 2px; height: 10px; border-radius: 2px; background: #5c87c3; transform-origin: bottom; transform: rotate(-43deg); }
.icon-task span { position: absolute; left: 12px; width: 22px; height: 2px; border-radius: 3px; background: #8765c5; }
.icon-task span:nth-child(1) { top: 14px; }
.icon-task span:nth-child(2) { top: 22px; width: 17px; }
.icon-task span:nth-child(3) { top: 30px; width: 12px; }

.flow { padding-top: 0; background: #fff; }
.flow-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 57px; padding: 76px 74px; border-radius: 6px; background: #0c2345; color: #fff; }
.flow-copy { max-width: 380px; }
.flow-copy h2 { margin-bottom: 23px; }
.flow-copy > p:last-child { margin: 0; color: #bfcce1; font-size: 13px; line-height: 2; }
.flow-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: center; }
.role { min-height: 116px; padding: 19px; border: 1px solid rgba(213, 228, 255, .18); border-radius: 4px; background: rgba(255, 255, 255, .035); }
.role span { display: block; margin-bottom: 13px; color: #8faddd; font-family: var(--mono); font-size: 9px; letter-spacing: .09em; }
.role b { display: block; margin-bottom: 3px; font-size: 14px; }
.role small { color: #a8b8d0; font-size: 10px; }
.role-owner { border-color: rgba(185, 241, 213, .36); background: rgba(185, 241, 213, .08); }
.role-owner span { color: var(--mint); }

.security { padding-top: 127px; background: #f8faff; }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; }
.security-list { border-top: 1px solid #ccd8e9; }
.security-list article { display: grid; grid-template-columns: 49px 1fr; gap: 14px; padding: 25px 0 24px; border-bottom: 1px solid #ccd8e9; }
.security-list > article > span { padding-top: 4px; color: #7789a4; font-family: var(--mono); font-size: 10px; }
.security-list h3 { margin-bottom: 5px; font-size: 16px; letter-spacing: -.04em; }
.security-list p { margin: 0; color: #718097; font-size: 12px; line-height: 1.9; }

.cta { position: relative; overflow: hidden; padding: 122px 0 126px; background: #4169e1; color: #fff; text-align: center; isolation: isolate; }
.cta::before { position: absolute; z-index: -1; top: -28vw; left: 50%; width: 92vw; height: 92vw; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; content: ""; transform: translateX(-50%); }
.cta::after { position: absolute; z-index: -1; top: -18vw; left: 50%; width: 64vw; height: 64vw; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; content: ""; transform: translateX(-50%); }
.cta .eyebrow { justify-content: center; }
.cta h2 { margin: 0 0 16px; font-size: clamp(36px, 4.1vw, 57px); font-weight: 700; letter-spacing: -.085em; line-height: 1.35; }
.cta h2 em { color: var(--mint); font-style: normal; }
.cta-inner > p:not(.eyebrow) { margin-bottom: 31px; color: #e4ebff; font-size: 14px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 26px; }
.button-light { color: #2c4dba; background: #fff; box-shadow: 0 10px 20px rgba(23, 52, 142, .18); }
.button-light:hover { background: #f1f5ff; }
.cta-contact { padding-bottom: 2px; border-bottom: 1px solid rgba(255, 255, 255, .63); color: #fff; font-size: 13px; font-weight: 700; }
.cta-art { position: absolute; z-index: -1; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; }
.cta-art-left { top: 54%; left: -71px; width: 145px; height: 145px; }
.cta-art-right { top: 19%; right: -39px; width: 112px; height: 112px; }

.site-footer { padding: 42px 0 25px; background: #07182f; color: #fff; }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 36px; border-bottom: 1px solid rgba(229, 239, 255, .16); }
.brand-footer .brand-mark { background: #557be9; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 29px; }
.footer-links a { color: #c0cee3; font-size: 11px; font-weight: 500; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; color: #8294b0; font-family: var(--mono); font-size: 9px; letter-spacing: .025em; }
.footer-bottom p { margin: 0; }

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 142px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { width: min(100%, 650px); min-height: 390px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr repeat(3, 1fr); }
  .intro-grid > p { grid-column: 1 / -1; min-height: 95px; padding: 26px 0 18px; }
  .intro-item { min-height: 100px; }
  .split-layout, .security-grid { gap: 44px; }
  .flow-panel { padding: 60px 48px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 40px, 600px); }
  .site-header { color: #fff; }
  .header-inner { height: 70px; gap: 12px; }
  .site-nav { position: absolute; top: 70px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px; border: 1px solid rgba(223, 232, 248, .7); border-radius: 9px; background: rgba(255, 255, 255, .98); box-shadow: 0 14px 30px rgba(1, 15, 40, .2); color: var(--ink); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 2px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border: 0; }
  .header-login { margin-left: auto; padding: 7px 11px; font-size: 11px; }
  .menu-toggle { position: relative; display: grid; width: 36px; height: 36px; padding: 0; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; place-items: center; background: transparent; cursor: pointer; }
  .is-scrolled .menu-toggle { border-color: var(--line); }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 14px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle span:nth-child(2) { transform: translateY(-3px); }
  .menu-toggle span:nth-child(3) { transform: translateY(3px); }
  .menu-toggle.is-open span:nth-child(2) { transform: rotate(45deg); }
  .menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
  .hero { padding: 121px 0 49px; }
  .hero-grid { gap: 38px; }
  .eyebrow { margin-bottom: 15px; font-size: 10px; }
  h1 { margin-bottom: 18px; font-size: clamp(34px, 10vw, 46px); line-height: 1.42; }
  .hero-lead { margin-bottom: 27px; font-size: 14px; line-height: 1.9; }
  .hero-actions { align-items: start; flex-direction: column; gap: 18px; }
  .button { min-height: 49px; width: 100%; }
  .hero-note { margin-top: 32px; }
  .hero-visual { min-height: 249px; padding: 0 7px; }
  .dashboard-window { max-width: none; border-radius: 8px; transform: none; }
  .window-topbar { height: 28px; padding: 0 10px; }
  .dashboard-body { min-height: 208px; }
  .dash-sidebar { width: 35px; padding: 8px 0; }
  .dash-avatar { width: 17px; height: 17px; margin-bottom: 11px; font-size: 6px; }
  .dash-nav { width: 15px; height: 3px; margin-bottom: 9px; }
  .dash-nav.active { height: 13px; margin-bottom: 7px; }
  .dash-content { padding: 11px 10px; }
  .dash-heading b { font-size: 8px; }
  .dash-heading span { font-size: 5px; }
  .dash-heading i { width: 16px; height: 16px; }
  .dash-stats { gap: 5px; margin: 9px 0; }
  .stat-card { min-height: 42px; padding: 5px; }
  .stat-card span { font-size: 5px; }
  .stat-card b { font-size: 12px; }
  .stat-card b small { font-size: 5px; }
  .dash-lower { gap: 5px; }
  .schedule-card, .task-card { padding: 6px; }
  .card-title { margin-bottom: 4px; }
  .card-title b, .card-title span { font-size: 5px; }
  .time-row { grid-template-columns: 18px 4px 1fr; gap: 3px; min-height: 14px; font-size: 5px; }
  .time-row i { width: 3px; height: 3px; }
  .time-row b, .task-line { font-size: 5px; }
  .task-line { min-height: 16px; gap: 3px; }
  .task-line i { width: 5px; height: 5px; border-radius: 2px; }
  .visual-chip { gap: 5px; padding: 6px 7px; border-radius: 5px; }
  .visual-chip b { font-size: 6px; }
  .visual-chip small { font-size: 5px; }
  .chip-one { top: -11px; left: -3px; }
  .chip-two { right: -2px; bottom: -14px; }
  .chip-check { width: 14px; height: 14px; font-size: 8px; }
  .chip-calendar { width: 15px; height: 15px; font-size: 6px; }
  .intro-grid { grid-template-columns: 1fr; padding: 23px 0; }
  .intro-grid > p { min-height: auto; padding: 0 0 19px; font-size: 15px; }
  .intro-item { min-height: 68px; padding: 11px 0 11px 21px; border-left: 0; border-top: 1px solid var(--line); }
  .intro-item span { position: absolute; left: 0; top: 13px; margin: 0; font-size: 8px; }
  .intro-item b { margin-bottom: 0; font-size: 13px; }
  .intro-item small { font-size: 9px; }
  .section { padding: 77px 0; }
  .split-layout, .security-grid { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .section-title-row h2, .flow h2, .security h2 { font-size: 30px; }
  .about-copy { padding-top: 0; }
  .about-copy p { font-size: 13px; line-height: 2; }
  .quote-panel { display: block; margin-top: 52px; padding: 35px 27px; }
  .quote-symbol { margin-bottom: 16px; font-size: 66px; }
  .quote-panel p { margin-bottom: 16px; font-size: 24px; }
  .quote-panel > span { font-size: 8px; }
  .section-title-row { display: block; margin-bottom: 32px; }
  .section-title-row > p { margin-top: 18px; font-size: 12px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: 277px; padding: 25px; }
  .feature-icon { margin: 13px 0 20px; }
  .feature-card p { margin-bottom: 20px; }
  .flow { padding-top: 0; }
  .flow-panel { grid-template-columns: 1fr; gap: 31px; padding: 45px 26px; }
  .flow-copy > p:last-child { font-size: 12px; }
  .flow-roles { grid-template-columns: 1fr; }
  .role { min-height: 95px; padding: 15px; }
  .security-list article { grid-template-columns: 38px 1fr; padding: 19px 0; }
  .security-list h3 { font-size: 14px; }
  .security-list p { font-size: 11px; }
  .cta { padding: 80px 0 85px; }
  .cta h2 { font-size: 35px; }
  .cta-inner > p:not(.eyebrow) { margin-bottom: 25px; font-size: 12px; }
  .cta-actions { flex-direction: column; gap: 17px; }
  .cta-contact { font-size: 12px; }
  .footer-main { align-items: start; flex-direction: column; gap: 27px; padding-bottom: 25px; }
  .footer-links { justify-content: start; gap: 13px 20px; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 4px; font-size: 8px; }
}

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