:root {
  --blue: #1268f3;
  --blue-2: #0758dd;
  --cyan: #18bfe7;
  --green: #1fc98b;
  --orange: #ffb23f;
  --red: #ff5d5d;
  --ink: #071b43;
  --text: #344764;
  --muted: #6d7f98;
  --line: #dbe7f7;
  --soft: #f4f8ff;
  --card: #fff;
  --shadow: 0 18px 46px rgba(27, 88, 178, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(215,226,244,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(21, 74, 145, .05);
}
.dark-hero .site-header {
  background: rgba(3, 18, 42, .92);
  border-bottom-color: rgba(100, 158, 238, .18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.dark-hero .nav-links {
  color: rgba(235, 245, 255, .86);
}
.dark-hero .nav-links a:hover,
.dark-hero .nav-links .active {
  color: #fff;
}
.dark-hero .menu-toggle {
  color: #fff;
}
.dark-hero .nav-actions .btn.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.42);
}
.nav { display: flex; align-items: center; gap: 28px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; min-width: 174px; }
.brand img:first-child { width: 34px; height: 34px; object-fit: contain; }
.brand img:last-child { width: 120px; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; flex: 1; gap: 34px; color: #1b2e4f; font-size: 14px; white-space: nowrap; }
.nav-links a { padding: 23px 0; }
.nav-links a:hover, .nav-links .active { color: var(--blue); font-weight: 700; }
.nav-actions, .hero-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; border: 0; color: var(--blue); background: transparent; font-size: 22px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, #2f8cff, #075ee8); box-shadow: 0 14px 28px rgba(18,104,243,.24); }
.btn.ghost { color: var(--blue); background: #fff; border-color: #bcd6ff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  background:
    linear-gradient(90deg, rgba(18,104,243,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,104,243,.04) 1px, transparent 1px),
    linear-gradient(122deg, rgba(255,255,255,.95) 0 42%, rgba(232,244,255,.9) 43% 100%),
    linear-gradient(115deg, #f9fcff 0%, #edf6ff 54%, #eaf4ff 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}
.hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 74px;
  width: 56%;
  height: 430px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.18)),
    linear-gradient(135deg, rgba(18,104,243,.11), rgba(24,191,231,.06));
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 58%, rgba(18,104,243,.08) 58.2% 58.6%, transparent 58.8%),
    linear-gradient(116deg, transparent 0 66%, rgba(24,191,231,.1) 66.2% 66.6%, transparent 66.8%);
  pointer-events: none;
}
.dark-hero .hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(124,181,255,.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(124,181,255,.06) 1px, transparent 1px),
    linear-gradient(118deg, rgba(10,42,96,.2) 0 42%, rgba(32,113,231,.12) 43% 100%),
    linear-gradient(115deg, #03142f 0%, #06306e 55%, #061a3a 100%);
  background-size: 58px 58px, 58px 58px, auto, auto;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.86fr) minmax(520px,1.14fr); align-items: center; gap: 48px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(55,116,205,.1);
  font-size: 13px;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(18,104,243,.1);
}
.dark-hero .eyebrow { color: #d7e9ff; background: rgba(255,255,255,.13); box-shadow: none; }
.hero h1 { margin: 24px 0 12px; color: var(--ink); font-size: clamp(30px, 3.05vw, 40px); line-height: 1.03; font-weight: 900; }
.dark-hero .hero h1 { color: #fff; }
.hero h2 { margin: 0 0 18px; color: var(--ink); font-size: 24px; line-height: 1.45; font-weight: 800; }
.dark-hero .hero h2 { color: #e7f1ff; }
.hero p { max-width: 610px; margin: 0 0 22px; color: #405878; font-size: 16px; line-height: 1.95; }
.dark-hero .hero p { color: rgba(230,242,255,.84); }
.check-list { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; color: #294160; font-weight: 700; }
.dark-hero .check-list { color: #d7e9ff; }
.check-list li { display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--blue); }
.dark-hero .check-list i { color: #72bcff; }

.hero-visual { min-width: 0; }
.product-window {
  position: relative;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(185,210,246,.94);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,252,255,.92)),
    #fff;
  box-shadow: 0 28px 70px rgba(27,88,178,.16);
  overflow: hidden;
}
.product-window::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(211,228,252,.82);
  border-radius: 14px;
  pointer-events: none;
}
.dark-hero .product-window { background: rgba(8,33,72,.86); border-color: rgba(102,169,255,.38); box-shadow: 0 26px 70px rgba(0,0,0,.28); }
.app-top { display: flex; align-items: center; justify-content: space-between; height: 44px; margin: -18px -18px 16px; padding: 0 18px; border-bottom: 1px solid #e6eefb; background: linear-gradient(180deg,#fff,#f7fbff); color: #18365c; }
.dark-hero .app-top { color: #dcecff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.app-top span { color: var(--blue); font-size: 12px; font-weight: 800; }

.stat-strip { margin-top: -44px; position: relative; z-index: 2; }
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid #dceafd;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,252,255,.95)),
    #fff;
  box-shadow: 0 22px 54px rgba(27,88,178,.14);
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--orange));
}
.stat { min-height: 88px; padding: 20px; text-align: center; border-right: 1px solid #e4eefb; }
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--ink); font-size: 28px; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.section { position: relative; padding: 68px 0; background: #fff; }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,104,243,.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,104,243,.024) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  pointer-events: none;
}
.section.alt { background: linear-gradient(180deg,#f6faff,#fff); }
.section > .shell { position: relative; z-index: 1; }
.section-head { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head h2 { margin: 0 0 12px; color: var(--ink); font-size: 26px; line-height: 1.28; }
.section-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.info-card, .capability, .matrix article, .scenario, details, .large-screen {
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,253,255,.96)),
    #fff;
  box-shadow: 0 14px 34px rgba(37,96,171,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.info-card:hover, .capability:hover, .matrix article:hover, .scenario:hover, details:hover {
  transform: translateY(-3px);
  border-color: #bcd7ff;
  box-shadow: 0 22px 46px rgba(34,91,168,.13);
}
.info-card {
  position: relative;
  min-height: 166px;
  padding: 24px 22px;
  overflow: hidden;
}
.info-card::before,
.capability::before,
.matrix article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: .72;
}
.info-card::after,
.capability::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, rgba(18,104,243,.08), rgba(24,191,231,.04));
  transform: rotate(18deg);
}
.info-card i, .capability i, .preview-points i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(135deg, #eef6ff, #dfeeff);
  box-shadow: inset 0 0 0 1px rgba(18,104,243,.08);
}
.info-card > *, .capability > * { position: relative; z-index: 1; }
.info-card h3, .capability h3, .matrix h3, .scenario h3 { margin: 14px 0 8px; color: var(--ink); font-size: 17px; }
.info-card p, .capability p, .matrix p, .scenario p { margin: 0; color: #5b6f89; font-size: 13px; line-height: 1.75; }

.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.capability {
  position: relative;
  min-height: 146px;
  padding: 20px;
  overflow: hidden;
}
.matrix { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.matrix article { position: relative; padding: 22px 20px 20px; min-height: 160px; overflow: hidden; }
.matrix b { display: inline-grid; place-items: center; width: 44px; height: 30px; border-radius: 6px; color: #fff; background: linear-gradient(135deg,var(--blue),#51a9ff); font-size: 13px; }

.preview-grid { display: grid; grid-template-columns: .38fr .62fr; gap: 26px; align-items: center; }
.preview-points { display: grid; gap: 12px; }
.preview-points button { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 0 14px; border: 1px solid #dce8f8; border-radius: 8px; color: #263d5c; background: #fff; cursor: pointer; text-align: left; font-weight: 800; }
.preview-points button.active, .preview-points button:hover { border-color: #bcd7ff; color: var(--blue); box-shadow: 0 14px 30px rgba(31,95,178,.09); }
.large-screen {
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,255,.94)),
    #fff;
}
.large-screen .product-window { min-height: 460px; box-shadow: none; border-color: #e1ebf8; }

.flow { display: grid; grid-template-columns: repeat(7,1fr); gap: 0; margin: 0; padding: 0; counter-reset: step; }
.flow li {
  position: relative;
  list-style: none;
  min-height: 148px;
  padding: 22px 14px;
  border: 1px solid #dce8f8;
  border-right: 0;
  background: linear-gradient(180deg,#fff,#f9fcff);
  text-align: center;
  box-shadow: 0 12px 28px rgba(45,104,184,.06);
}
.flow li:first-child { border-radius: 8px 0 0 8px; }
.flow li:last-child { border-right: 1px solid #dce8f8; border-radius: 0 8px 8px 0; }
.flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-top: 1px solid #bcd7ff;
  border-right: 1px solid #bcd7ff;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.flow li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto 12px; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 900; }
.flow strong { display: block; color: var(--ink); font-size: 16px; }
.flow span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.scenario-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.scenario { overflow: hidden; }
.scenario img { display: block; width: 100%; height: 132px; object-fit: cover; background: #eef6ff; }
.scenario div { padding: 18px; }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 20px; }
details { overflow: hidden; }
summary { position: relative; padding: 17px 48px 17px 20px; color: #173156; font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 50%; color: var(--blue); font-size: 22px; transform: translateY(-50%); }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.cta { position: relative; overflow: hidden; padding: 48px 0; color: #fff; background: linear-gradient(115deg,#0864f2,#2891ff); }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px), linear-gradient(180deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size: 42px 42px; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { margin: 0 0 8px; color: #fff; font-size: 28px; }
.cta p { margin: 0; color: rgba(255,255,255,.84); }
.cta .btn.primary { color: var(--blue); background: #fff; box-shadow: none; }
.cta .btn.ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.62); }

.site-footer { padding: 42px 0 20px; color: #b8c8dd; background: #071a35; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img:first-child { width: 34px; height: 34px; }
.footer-brand img:last-child { width: 120px; }
.site-footer h3 { margin: 0 0 14px; color: #fff; font-size: 15px; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; color: #b8c8dd; font-size: 13px; }
.site-footer p { max-width: 360px; margin: 0; font-size: 13px; line-height: 1.8; }
.copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 12px; color: #8da0b7; }

.ai-preview {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 28px;
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(18,104,243,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,104,243,.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(231,243,255,.68), rgba(255,255,255,.16));
  background-size: 36px 36px, 36px 36px, auto;
}
.upload-list, .question-list { display: grid; gap: 10px; padding: 14px; border: 1px solid #dce8f8; border-radius: 8px; background: #fff; }
.upload-list span, .question-list span { padding: 9px 10px; border-radius: 6px; background: #f3f8ff; color: #35506f; font-size: 12px; font-weight: 700; }
.ai-core { display: grid; place-items: center; width: 104px; height: 104px; margin: 0 auto; border-radius: 50%; color: #fff; background: radial-gradient(circle,#2aa1ff,#0864e9 64%,#dcecff 66%); font-size: 36px; font-weight: 900; box-shadow: 0 0 44px rgba(18,104,243,.35); }

.editor-preview { display: grid; grid-template-columns: 110px 1fr 130px; gap: 12px; min-height: 310px; }
.editor-preview aside, .editor-preview section, .meta-panel { padding: 14px; border: 1px solid #dce8f8; border-radius: 8px; background: #fff; }
.editor-preview aside { display: grid; align-content: start; gap: 10px; }
.editor-preview aside span, .meta-panel span { padding: 8px; border-radius: 6px; background: #f4f8ff; font-size: 12px; color: #415a78; }
.toolbar { display: flex; gap: 8px; margin-bottom: 14px; }
.toolbar i { width: 20px; height: 20px; border-radius: 4px; background: #dce9fb; }
.editor-preview h4 { margin: 0 0 12px; color: var(--ink); }
.media-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.media-row em { height: 52px; border-radius: 6px; background: linear-gradient(135deg,#e4edf8,#bac9d9); }
.editor-preview ol { margin: 0; padding-left: 18px; color: #344764; line-height: 2; font-size: 13px; }
.editor-preview .active { color: var(--blue); font-weight: 900; }

.dashboard-preview { position: relative; display: grid; grid-template-columns: 132px 1fr; min-height: 310px; border: 1px solid #dce8f8; border-radius: 8px; overflow: hidden; background: #fff; }
.dashboard-preview aside { display: grid; align-content: start; gap: 12px; padding: 18px; color: #dcecff; background: linear-gradient(180deg,#0d66e8,#073b90); }
.dashboard-preview aside span { font-size: 13px; }
.dashboard-preview section { padding: 18px; }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dashboard-preview .kpis { grid-template-columns: repeat(3,1fr); }
.kpis b { padding: 13px; border: 1px solid #e1ebf8; border-radius: 8px; color: var(--ink); background: #fff; font-size: 22px; }
.kpis small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 600; }
.chart-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 14px; }
.line-chart { min-height: 150px; border: 1px solid #e1ebf8; border-radius: 8px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 150'%3E%3Cg stroke='%23dce9fb'%3E%3Cpath d='M20 30H280M20 72H280M20 114H280'/%3E%3C/g%3E%3Cpath d='M20 120C48 96 66 100 92 74S140 90 166 54 220 70 280 32' fill='none' stroke='%231268f3' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/90% 80% no-repeat,#fff; }
.donut { min-height: 150px; border-radius: 8px; background: radial-gradient(circle,#fff 0 43%,transparent 44%), conic-gradient(#1268f3 0 32%,#18bfe7 32% 55%,#ffb23f 55% 76%,#1fc98b 76% 100%); }
.notice-card { position: absolute; right: 18px; top: 18px; width: 170px; padding: 14px; border-radius: 8px; background: #fff; box-shadow: 0 16px 38px rgba(21,74,145,.16); }
.notice-card p { margin: 6px 0 0; font-size: 12px; line-height: 1.55; }

.score-preview { position: relative; min-height: 322px; }
.laptop { width: 74%; padding: 16px; border: 10px solid #17202c; border-bottom-width: 28px; border-radius: 12px; background: #fff; }
.laptop table { width: 100%; margin-top: 12px; border-collapse: collapse; font-size: 12px; }
.laptop th, .laptop td { padding: 9px; border-bottom: 1px solid #edf3fb; text-align: left; }
.phone-score, .score-card { position: absolute; right: 60px; bottom: 0; width: 128px; min-height: 220px; padding: 48px 14px 14px; border: 7px solid #17202c; border-radius: 24px; background: #fff; text-align: center; box-shadow: 0 18px 38px rgba(21,74,145,.18); }
.phone-score b, .score-card b { display: block; color: #08a879; font-size: 32px; }
.phone-score i { display: block; height: 8px; margin-top: 12px; border-radius: 999px; background: #dce9fb; }
.score-card { right: 0; top: 48px; bottom: auto; min-height: 190px; border: 1px solid #e1ebf8; border-radius: 8px; }

.analytics-preview,
.scope-preview,
.room-preview,
.random-preview,
.time-preview,
.absence-preview {
  min-height: 322px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,255,.82)),
    linear-gradient(90deg, rgba(18,104,243,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,104,243,.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.analytics-kpis,
.absence-kpis {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}
.analytics-kpis b,
.absence-kpis b {
  padding: 13px 14px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(27,93,177,.06);
}
.analytics-kpis small,
.absence-kpis small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1.22fr .78fr .92fr;
  gap: 10px;
  margin-top: 12px;
}
.analytics-card,
.absence-chart,
.absence-donut {
  min-height: 132px;
  padding: 12px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(37,96,171,.07);
}
.analytics-card.wide { grid-column: span 2; }
.analytics-card h4,
.absence-chart h4,
.absence-donut h4 {
  margin: 0 0 10px;
  color: #173156;
  font-size: 13px;
}
.sparkline {
  height: 92px;
  border-radius: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 120'%3E%3Cg stroke='%23dce9fb'%3E%3Cpath d='M10 25H350M10 62H350M10 99H350'/%3E%3C/g%3E%3Cpath d='M12 92C42 78 58 70 82 56S128 74 154 46 208 66 238 36 294 50 348 24' fill='none' stroke='%231268f3' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M12 92C42 78 58 70 82 56S128 74 154 46 208 66 238 36 294 50 348 24L348 118H12Z' fill='%231268f3' opacity='.08'/%3E%3C/svg%3E") center/100% 100% no-repeat,
    linear-gradient(180deg,#fff,#f4f9ff);
}
.sparkline.red {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 110'%3E%3Cg stroke='%23dce9fb'%3E%3Cpath d='M12 24H308M12 56H308M12 88H308'/%3E%3C/g%3E%3Cpath d='M12 62C44 78 66 82 92 44S144 70 176 54 234 64 306 34' fill='none' stroke='%23ff5a70' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat,
    linear-gradient(180deg,#fff,#fff7f9);
}
.donut.mini,
.donut.reason {
  min-height: 92px;
  border-radius: 8px;
}
.rank-bars { display: grid; gap: 11px; padding-top: 4px; }
.rank-bars i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--blue),#73b8ff);
  width: var(--w);
}
.analytics-card ol { margin: 0; padding-left: 20px; color: #455d7b; font-size: 12px; line-height: 2; }

.scope-preview {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
}
.org-tree,
.scope-table {
  padding: 16px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 26px rgba(37,96,171,.07);
}
.org-tree { display: grid; align-content: start; gap: 9px; }
.org-tree b,
.scope-tags b { color: var(--ink); }
.org-tree span {
  padding: 8px 10px;
  border-radius: 6px;
  color: #4d6481;
  background: #f4f8ff;
  font-size: 12px;
  font-weight: 700;
}
.org-tree span.active { color: #fff; background: linear-gradient(135deg,var(--blue),#45a4ff); }
.scope-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; }
.scope-tags span {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 12px;
  font-weight: 800;
}
.scope-table table,
.absence-table {
  width: 100%;
  border-collapse: collapse;
  color: #334965;
  font-size: 12px;
}
.scope-table th,
.scope-table td,
.absence-table th,
.absence-table td {
  padding: 10px;
  border-bottom: 1px solid #eaf1fb;
  text-align: center;
}
.scope-table td:first-child,
.scope-table th:first-child,
.absence-table td,
.absence-table th { text-align: left; }
.scope-table td:not(:first-child)::before {
  content: "";
  display: inline-grid;
  width: 14px;
  height: 14px;
  border: 1px solid #bfd1e8;
  border-radius: 4px;
  background: #fff;
}
.scope-table td.checked::before {
  border-color: var(--blue);
  background: linear-gradient(135deg,var(--blue),#54adff);
  box-shadow: inset 0 0 0 3px #fff;
}
.scope-legend { display: flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--muted); font-size: 12px; }
.scope-legend i,
.scope-legend em { width: 12px; height: 12px; border-radius: 3px; background: var(--blue); }
.scope-legend em { background: #ff4d5f; }

.room-preview {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
}
.room-board,
.candidate-list,
.rule-panel,
.result-panel,
.timeline-panel,
.calendar-panel,
.rule-sheet {
  padding: 16px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 26px rgba(37,96,171,.07);
}
.room-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--ink); }
.room-top span {
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: #edf5ff;
  font-size: 12px;
  font-weight: 800;
}
.seat-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
}
.seat-grid i {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid #cfe0f6;
  border-radius: 6px;
  color: #225284;
  background: #eaf4ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.seat-grid i.ok { background: #e6f8ee; border-color: #bce8cf; color: #128352; }
.seat-grid i.empty { background: #f5f8fc; color: #8b9bb1; }
.seat-grid i.warn { background: #fff0f1; border-color: #ffc7ce; color: #e5485f; }
.seat-legend { display: flex; gap: 10px; margin-top: 12px; color: #647893; font-size: 12px; }
.candidate-list { display: grid; gap: 10px; align-content: start; }
.candidate-list span {
  padding: 8px;
  border-radius: 6px;
  background: #f4f8ff;
  color: #475f7c;
  font-size: 12px;
}
.candidate-list button,
.result-panel button,
.rule-sheet button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg,var(--blue),#43a1ff);
  font-weight: 900;
}

.random-preview {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  gap: 18px;
  align-items: center;
}
.rule-panel,
.result-panel { display: grid; gap: 10px; }
.rule-panel label,
.result-panel span,
.rule-sheet label {
  display: grid;
  gap: 5px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #344b68;
  background: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
}
.rule-panel label span,
.rule-sheet label span { color: #667b95; font-weight: 700; }
.rule-panel small { color: var(--blue); font-weight: 900; }
.engine-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 50% 42%, #62b7ff, #1268f3 60%, #dcecff 62%);
  box-shadow: 0 20px 52px rgba(18,104,243,.28), inset 0 0 0 14px rgba(255,255,255,.22);
}
.engine-core i { font-size: 38px; }
.engine-core b { position: absolute; bottom: 30px; font-size: 16px; }
.result-panel strong { color: #10a66b; }

.time-preview {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 14px;
}
.timeline-panel ol { margin: 12px 0 0; padding: 0; list-style: none; }
.timeline-panel li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 9px 0 9px 18px;
  color: #344b68;
  font-size: 12px;
}
.timeline-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 9px;
  height: 9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px #9dc5ff;
}
.timeline-panel li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 28px;
  bottom: -12px;
  width: 2px;
  background: linear-gradient(180deg,#91bdff,#9debd1);
}
.timeline-panel time { color: var(--ink); font-weight: 900; }
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 7px;
  margin-top: 14px;
}
.calendar-days i {
  display: grid;
  place-items: center;
  min-height: 24px;
  border-radius: 50%;
  color: #4c607a;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.calendar-days i.active { color: #fff; background: var(--blue); }
.calendar-days i.success { color: #fff; background: #22bf87; }
.rule-sheet { display: grid; gap: 9px; }
.clock-face {
  position: absolute;
  left: 120px;
  bottom: 8px;
  width: 118px;
  height: 118px;
  border: 10px solid #1c7cff;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, #163b73 49% 51%, transparent 52%),
    linear-gradient(30deg, transparent 48%, #163b73 49% 51%, transparent 52%),
    radial-gradient(circle,#fff 0 60%,#edf6ff 61%);
  box-shadow: 0 18px 34px rgba(18,104,243,.22);
}

.absence-preview {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.absence-kpis { grid-column: 1 / -1; }
.absence-kpis b:nth-child(3) { color: #ff4d5f; }
.absence-table {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
}

.anti-preview { position: relative; min-height: 310px; }
.secure-screen { width: 68%; min-height: 230px; margin: 34px 0 0 18px; padding: 18px; border: 1px solid rgba(136,184,255,.4); border-radius: 8px; background: rgba(255,255,255,.92); }
.question-card { height: 112px; border-radius: 8px; background: linear-gradient(180deg,#edf5ff,#fff); }
.face-card { width: 84px; height: 104px; margin: -76px 0 0 auto; border-radius: 8px; background: linear-gradient(180deg,#b8d6ff,#eef6ff); }
.shield-card { position: absolute; right: 86px; top: 58px; display: grid; place-items: center; width: 150px; height: 170px; color: #fff; font-size: 24px; background: linear-gradient(160deg,rgba(73,160,255,.92),rgba(18,104,243,.68)); clip-path: polygon(50% 0,90% 16%,82% 74%,50% 100%,18% 74%,10% 16%); filter: drop-shadow(0 22px 36px rgba(18,104,243,.28)); }
.floating-tags span { position: absolute; padding: 8px 12px; border-radius: 6px; color: #fff; background: rgba(18,104,243,.92); font-size: 12px; font-weight: 800; box-shadow: 0 10px 22px rgba(18,104,243,.24); }
.floating-tags span:nth-child(1) { left: 42px; top: 16px; }
.floating-tags span:nth-child(2) { right: 12px; top: 18px; }
.floating-tags span:nth-child(3) { left: 174px; top: 128px; }
.floating-tags span:nth-child(4) { right: 4px; top: 190px; }
.floating-tags span:nth-child(5) { right: 82px; bottom: 12px; }

@media (max-width: 1100px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 64px; padding: 12px 24px 18px; background: #fff; border-bottom: 1px solid #dce8f8; box-shadow: 0 18px 34px rgba(21,74,145,.12); }
  .nav-links.open { display: grid; gap: 10px; }
  .nav-links a { padding: 8px 0; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .hero-grid, .preview-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; }
  .why-grid, .capability-grid, .matrix, .scenario-grid { grid-template-columns: repeat(2,1fr); }
  .flow { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1200px); }
  .nav { min-height: 58px; }
  .nav-actions { display: none; }
  .hero { padding: 30px 0 34px; }
  .hero-grid { gap: 22px; }
  .hero h1 { margin-top: 18px; font-size: clamp(30px, 3.05vw, 40px); }
  .hero h2 { margin-bottom: 12px; font-size: 24px; }
  .hero p { margin-bottom: 14px; font-size: 16px; line-height: 1.72; }
  .check-list { gap: 7px; margin-bottom: 18px; font-size: 13px; }
  .hero-actions { flex-wrap: wrap; }
  .stats, .why-grid, .capability-grid, .matrix, .scenario-grid, .faq-grid, .flow, .kpis, .chart-row, .ai-preview, .editor-preview, .dashboard-preview, .analytics-kpis, .analytics-grid, .scope-preview, .room-preview, .random-preview, .time-preview, .absence-preview, .absence-kpis { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #e4eefb; }
  .section { padding: 46px 0; }
  .section-head h2 { font-size: 26px; }
  .hero .product-window { height: 286px; min-height: 286px; }
  .product-window, .large-screen .product-window { min-height: auto; }
  .large-screen .product-window { height: auto; }
  .analytics-preview, .scope-preview, .room-preview, .random-preview, .time-preview, .absence-preview { min-height: 230px; }
  .upload-list, .question-list, .dashboard-preview aside, .editor-preview aside.meta-panel { display: none; }
  .shield-card, .floating-tags, .notice-card, .phone-score, .score-card, .clock-face { display: none; }
  .secure-screen, .laptop { width: 100%; margin: 0; }
  .analytics-card.wide, .absence-kpis, .absence-table { grid-column: auto; }
  .org-tree, .candidate-list, .rule-panel, .result-panel, .timeline-panel { display: none; }
  .seat-grid { grid-template-columns: repeat(4,1fr); }
  .calendar-panel, .rule-sheet { min-width: 0; }
  .cta-inner { display: block; }
  .cta .hero-actions { margin-top: 20px; flex-wrap: wrap; }
}

/* Absence record page - matched to the provided design */
body.absence-page {
  --hy-blue: #125cff;
  --hy-blue-2: #2d7dff;
  --hy-cyan: #35c4ff;
  --hy-text: #17233d;
  --absence-blue: #0f72f4;
  --absence-blue-dark: #075fe9;
  --absence-ink: #071a3a;
  --absence-text: #2c4161;
  --absence-muted: #677a96;
  --absence-line: #dbe8fb;
  --absence-bg: #f5f9ff;
  min-width: 1180px;
  color: var(--absence-text);
  background: #fff;
}

.absence-page .hy-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.absence-page .hy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 228, 250, 0.72);
}

.absence-page .hy-header-inner {
  height: 70px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 18px;
}

.absence-page .hy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #10265b;
}

.absence-page .hy-logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(13, 71, 161, 0.08));
}

.absence-page .hy-logo-wordmark {
  width: 132px;
  height: auto;
  display: block;
}

.absence-page .hy-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.absence-page .hy-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #27324a;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.absence-page .hy-nav a:hover {
  color: var(--hy-blue);
  background: #eef5ff;
}

.absence-page .hy-nav a.active {
  color: var(--hy-blue);
  background: transparent;
}

.absence-page .hy-nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.absence-page .hy-nav-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.absence-page .hy-nav-drop > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
}

.absence-page .hy-nav-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 80;
  display: grid;
  width: 154px;
  padding: 8px;
  border: 1px solid #dfeafb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(31, 87, 176, 0.16);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.absence-page .hy-nav-menu.hy-nav-menu-wide {
  width: 224px;
}

.absence-page .hy-nav-drop:hover .hy-nav-menu,
.absence-page .hy-nav-drop:focus-within .hy-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.absence-page .hy-nav .hy-nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #27324a;
  background: transparent;
  font-size: 13px;
}

.absence-page .hy-nav .hy-nav-menu a:hover,
.absence-page .hy-nav .hy-nav-menu a.active {
  color: var(--hy-blue);
  background: #eef6ff;
}

.absence-page .hy-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.absence-page .hy-login,
.absence-page .hy-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.absence-page .hy-login {
  min-height: 38px;
  padding: 0 22px;
  color: var(--hy-blue);
  background: #fff;
  border: 1px solid #d9e6ff;
  box-shadow: 0 6px 18px rgba(18, 92, 255, 0.06);
}

.absence-page .hy-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b57ff 0%, #2f82ff 100%);
  box-shadow: 0 14px 28px rgba(18, 92, 255, 0.24);
}

.absence-page .hy-login:hover,
.absence-page .hy-primary:hover {
  transform: translateY(-1px);
}

.absence-page .hy-small {
  min-height: 38px;
  padding: 0 22px;
}

.absence-page * {
  letter-spacing: 0;
}

.absence-shell {
  width: 1320px;
  max-width: calc(100% - 96px);
  margin: 0 auto;
}

.absence-header {
  position: relative;
  z-index: 60;
  height: 76px;
  border-bottom: 1px solid #e8eef8;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(20,74,144,.05);
  backdrop-filter: blur(12px);
}

.absence-nav {
  display: flex;
  align-items: center;
  height: 76px;
}

.absence-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 290px;
  color: #143466;
  white-space: nowrap;
}

.absence-brand img:first-child {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.absence-brand img:nth-child(2) {
  width: 116px;
  height: auto;
}

.absence-brand span {
  display: inline-block;
  margin-left: 9px;
  padding-left: 13px;
  border-left: 1px solid #cad8ec;
  color: #193052;
  font-size: 16px;
  font-weight: 500;
}

.absence-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 58px;
  color: #142644;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.absence-links a {
  padding: 29px 0;
}

.absence-links a:hover,
.absence-links .active {
  color: var(--absence-blue);
}

.absence-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: 220px;
}

.absence-login {
  color: var(--absence-blue);
  font-size: 14px;
  font-weight: 700;
}

.absence-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 40px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg,#177cff,#075fe9);
  box-shadow: 0 10px 22px rgba(15,114,244,.22);
  font-size: 14px;
  font-weight: 800;
}

.absence-menu {
  display: none;
}

.absence-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 72% 28%, rgba(67,148,255,.18), transparent 36%),
    radial-gradient(circle at 18% 36%, rgba(67,148,255,.08), transparent 32%),
    linear-gradient(115deg,#fafdff 0%, #f2f8ff 47%, #eaf4ff 100%);
}

.absence-hero-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: start;
  gap: 44px;
  min-height: 540px;
}

.absence-hero-copy {
  padding-top: 18px;
}

.absence-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 35px;
  padding: 0 19px;
  border-radius: 18px;
  color: var(--absence-blue);
  background: linear-gradient(180deg,#edf5ff,#dfeeff);
  box-shadow: 0 10px 20px rgba(34,105,211,.09);
  font-size: 13px;
  font-weight: 800;
}

.absence-eyebrow i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--absence-blue);
  font-size: 10px;
}

.absence-hero-copy h1 {
  margin: 28px 0 12px;
  color: #060a12;
  font-size: clamp(30px, 3.05vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.absence-hero-copy h2 {
  margin: 0 0 26px;
  color: #142c5b;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.absence-hero-copy p {
  margin: 0;
  color: #405570;
  font-size: 16px;
  line-height: 2.02;
}

.absence-feature-row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin: 46px 0 34px;
}

.absence-feature-row div {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  color: #1e3455;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.absence-feature-row i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg,#62a7ff,#1475f4);
  font-size: 15px;
  box-shadow: 0 12px 20px rgba(18,104,243,.2);
}

.absence-hero-actions,
.absence-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.absence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  min-width: 140px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 23px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.absence-btn-primary {
  color: #fff;
  background: linear-gradient(135deg,#167cff,#075fe9);
  box-shadow: 0 13px 24px rgba(15,114,244,.26);
}

.absence-btn-ghost {
  color: var(--absence-blue);
  background: #fff;
  border-color: #8fbfff;
}

.absence-dashboard {
  border: 1px solid #dce9fb;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 70px rgba(34,93,170,.12);
}

.hero-dashboard {
  padding: 18px 18px 17px;
}

.absence-dashboard h3,
.absence-list-panel h4,
.absence-panel h4,
.absence-preview-card h3 {
  margin: 0;
  color: #142643;
  font-weight: 900;
}

.hero-dashboard > h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.absence-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.absence-kpi-grid div,
.mini-kpis div {
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26,85,168,.08);
}

.absence-kpi-grid span,
.mini-kpis span {
  display: block;
  color: #53667f;
  font-size: 12px;
  font-weight: 800;
}

.absence-kpi-grid strong,
.mini-kpis strong {
  display: block;
  margin-top: 8px;
  color: #091b39;
  font-size: 24px;
  line-height: 1;
}

.absence-kpi-grid strong.red {
  color: #ff4e64;
}

.absence-dashboard-panels {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 14px;
  margin-top: 14px;
}

.absence-panel,
.absence-list-panel,
.absence-preview-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26,85,168,.08);
}

.absence-panel {
  min-height: 158px;
  padding: 12px 16px 8px;
}

.absence-panel h4,
.absence-list-panel h4 {
  font-size: 13px;
}

.trend-panel svg {
  display: block;
  width: 100%;
  height: 116px;
  margin-top: 4px;
}

.grid path {
  fill: none;
  stroke: #dce7f6;
  stroke-width: 1;
}

.axis text {
  fill: #697b91;
  font-size: 10px;
  font-weight: 700;
}

.dots circle {
  fill: #2f7df6;
  stroke: #fff;
  stroke-width: 2;
}

.reason-body {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 7px;
}

.reason-donut {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(circle,#fff 0 43%, transparent 44%),
    conic-gradient(#2f7df6 0 30%, #35c98f 30% 55.7%, #ff8a3d 55.7% 72.8%, #ffbd52 72.8% 85.7%, #ff6b8a 85.7% 94.3%, #6b5cff 94.3% 100%);
  box-shadow: inset 0 0 0 1px rgba(210,226,249,.9);
}

.reason-body ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-body li {
  display: grid;
  grid-template-columns: 9px minmax(62px,1fr) auto;
  align-items: center;
  gap: 6px;
  color: #233b5a;
  font-size: 10px;
  font-weight: 800;
}

.reason-body li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c);
}

.reason-body li b {
  color: #102747;
  font-weight: 900;
}

.absence-list-panel {
  margin-top: 12px;
  padding: 10px 16px 7px;
}

.absence-list-panel table,
.absence-preview-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 7px;
  color: #273e5e;
  font-size: 11px;
  font-weight: 700;
}

.absence-list-panel th,
.absence-list-panel td,
.absence-preview-card th,
.absence-preview-card td {
  height: 24px;
  padding: 0 7px;
  border-bottom: 1px solid #e9f0fa;
  text-align: left;
  white-space: nowrap;
}

.absence-list-panel th,
.absence-preview-card th {
  color: #1a2d4b;
  background: #f7faff;
  font-weight: 900;
}

.absence-list-panel a,
.absence-preview-card a {
  color: var(--absence-blue);
  font-weight: 900;
}

.absence-section {
  padding: 26px 0;
  background: #fff;
}

.absence-section-head {
  margin: 0 auto 24px;
  text-align: center;
}

.absence-section-head h2 {
  margin: 0 0 12px;
  color: #0c2349;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 900;
}

.absence-section-head p {
  margin: 0;
  color: #536982;
  font-size: 16px;
  font-weight: 600;
}

.absence-why {
  padding-top: 35px;
}

.absence-why-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 18px;
}

.absence-why-grid article {
  min-height: 166px;
  padding: 24px 18px 17px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28,89,172,.08);
  text-align: center;
}

.absence-why-grid i {
  color: #3b86f8;
  font-size: 34px;
}

.absence-why-grid h3 {
  margin: 17px 0 8px;
  color: #102747;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
}

.absence-why-grid p {
  margin: 0;
  color: #405570;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.absence-flow-section {
  padding-top: 17px;
  padding-bottom: 18px;
}

.absence-flow {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin: 0;
  padding: 0;
  border: 1px solid #d8e8fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24,86,168,.1);
  overflow: hidden;
}

.absence-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 120px;
  padding: 28px 40px;
  list-style: none;
}

.absence-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #cfe2ff;
  transform: translateY(-50%);
}

.absence-flow b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #0f72f4;
  font-size: 14px;
  font-weight: 900;
}

.absence-flow h3 {
  margin: 0 0 9px;
  color: #142643;
  font-size: 18px;
  font-weight: 900;
}

.absence-flow p {
  margin: 0;
  color: #425772;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 600;
}

.absence-preview-section {
  padding-top: 9px;
}

.absence-preview-grid {
  display: grid;
  grid-template-columns: 2.05fr .95fr .95fr;
  gap: 34px;
  align-items: stretch;
}

.absence-preview-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dce8f8;
  border-radius: 10px;
}

.absence-preview-card h3 {
  margin-bottom: 13px;
  color: #0e6fec;
  font-size: 17px;
}

.absence-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr .82fr 1.12fr;
  gap: 12px;
  margin-bottom: 10px;
}

.absence-filter-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #263c5b;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.absence-filter-row select,
.absence-search-row input {
  min-width: 0;
  height: 30px;
  border: 1px solid #d7e3f3;
  border-radius: 3px;
  color: #2d4362;
  background: #fff;
  font-size: 12px;
}

.absence-filter-row select {
  width: 80px;
  padding-left: 7px;
}

.absence-filter-row label:last-child select {
  width: 124px;
}

.absence-search-row {
  display: flex;
  gap: 9px;
  margin-bottom: 7px;
}

.absence-search-row input {
  flex: 1;
  padding: 0 11px;
}

.absence-search-row button {
  width: 58px;
  height: 30px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #0f72f4;
  font-size: 12px;
  font-weight: 900;
}

.absence-search-row button.light {
  color: #2b4465;
  background: #f1f5fa;
  border: 1px solid #d7e3f3;
}

.absence-record-card table {
  font-size: 10px;
}

.absence-record-card th,
.absence-record-card td {
  height: 28px;
  padding: 0 6px;
}

.mini-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-kpis div {
  min-height: 66px;
  border: 1px solid #edf2fa;
  box-shadow: none;
}

.absence-mini-analysis svg {
  display: block;
  width: 100%;
  height: 155px;
  margin-top: 7px;
}

.notice-list {
  display: grid;
  gap: 22px;
  padding: 13px 5px 3px;
}

.notice-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}

.notice-list i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #2f7df6;
  font-size: 25px;
}

.notice-list div {
  position: relative;
}

.notice-list p {
  margin: 0;
  padding-right: 42px;
  color: #243a59;
  font-size: 12px;
  line-height: 1.72;
  font-weight: 700;
}

.notice-list time {
  position: absolute;
  right: 0;
  top: 2px;
  color: #94a4b8;
  font-size: 10px;
  font-weight: 800;
}

.absence-scenes-section {
  padding-top: 12px;
  padding-bottom: 20px;
}

.absence-scenes-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 34px;
}

.absence-scenes-grid article {
  position: relative;
  min-height: 206px;
  border: 1px solid #dbe8fa;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 13px 30px rgba(28,89,172,.08);
}

.absence-scenes-grid img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.absence-scenes-grid div {
  position: relative;
  z-index: 1;
  min-height: 126px;
  padding: 20px 22px 10px;
  background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.91));
}

.absence-scenes-grid h3 {
  margin: 0 0 12px;
  color: #102747;
  font-size: 18px;
  font-weight: 900;
}

.absence-scenes-grid p {
  margin: 0;
  color: #344a68;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 650;
}

.absence-faq-section {
  padding-top: 0;
  padding-bottom: 27px;
}

.absence-faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px 34px;
}

.absence-faq-grid details {
  border: 0;
  border-radius: 8px;
  background: #f7faff;
  box-shadow: none;
  overflow: hidden;
}

.absence-faq-grid details:hover {
  transform: none;
  box-shadow: none;
}

.absence-faq-grid summary {
  min-height: 44px;
  padding: 13px 56px 3px 28px;
  color: #102747;
  font-size: 15px;
  font-weight: 900;
}

.absence-faq-grid summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  right: 27px;
  color: #2f7df6;
  font-size: 13px;
}

.absence-faq-grid details[open] summary::after {
  content: "\f077";
}

.absence-faq-grid p {
  margin: 0;
  padding: 0 28px 14px;
  color: #334b69;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 650;
}

.absence-cta {
  position: relative;
  overflow: hidden;
  padding: 32px 0 31px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px),
    linear-gradient(110deg,#0865ef 0%,#147cf7 56%,#0967ee 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.absence-cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  background: repeating-radial-gradient(ellipse at 100% 50%, rgba(255,255,255,.22) 0 1px, transparent 1px 13px);
  opacity: .18;
}

.absence-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.absence-cta h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.absence-cta p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 650;
}

.absence-btn-white {
  min-width: 162px;
  height: 52px;
  border-radius: 26px;
  color: #0f72f4;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.absence-btn-outline {
  min-width: 162px;
  height: 52px;
  border-radius: 26px;
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.75);
}

@media (max-width: 1180px) {
  .absence-page .hy-shell {
    width: min(100% - 32px, 1100px);
  }

  .absence-page .hy-header-inner {
    grid-template-columns: 176px minmax(0, 1fr) 176px;
    gap: 16px;
  }

  .absence-page .hy-logo-mark {
    width: 44px;
    height: 44px;
  }

  .absence-page .hy-logo-wordmark {
    width: 122px;
  }

  .absence-page .hy-nav a {
    padding: 8px 8px;
    font-size: 13px;
  }

  body.absence-page {
    min-width: 0;
  }

  .absence-shell {
    max-width: calc(100% - 44px);
  }

  .absence-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 14px 24px 20px;
    background: #fff;
    border-bottom: 1px solid #dce8f8;
    box-shadow: 0 18px 34px rgba(21,74,145,.12);
  }

  .absence-links.open {
    display: grid;
    gap: 10px;
  }

  .absence-links a {
    padding: 8px 0;
  }

  .absence-menu {
    display: inline-flex;
    margin-left: auto;
    border: 0;
    color: var(--absence-blue);
    background: transparent;
    font-size: 22px;
  }

  .absence-actions {
    width: auto;
    margin-left: 18px;
  }

  .absence-hero-grid,
  .absence-preview-grid {
    grid-template-columns: 1fr;
  }

  .absence-hero-copy {
    max-width: 760px;
  }

  .absence-why-grid,
  .absence-scenes-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .absence-flow {
    grid-template-columns: 1fr;
  }

  .absence-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .absence-page .hy-header {
    position: static;
  }

  .absence-page .hy-header-inner {
    display: flex;
    height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .absence-page .hy-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .absence-page .hy-header-actions {
    margin-left: auto;
  }

  .absence-page .hy-login {
    display: none;
  }

  .absence-shell {
    max-width: calc(100% - 28px);
  }

  .absence-brand {
    width: auto;
  }

  .absence-brand span,
  .absence-actions {
    display: none;
  }

  .absence-hero {
    padding: 28px 0;
  }

  .absence-hero-grid {
    min-height: auto;
    gap: 26px;
  }

  .absence-hero-copy h1 {
    font-size: clamp(30px, 3.05vw, 40px);
  }

  .absence-hero-copy h2 {
    font-size: 24px;
  }

  .absence-feature-row,
  .absence-kpi-grid,
  .absence-dashboard-panels,
  .absence-why-grid,
  .absence-scenes-grid,
  .absence-faq-grid,
  .mini-kpis,
  .absence-filter-row {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    overflow-x: auto;
  }

  .absence-list-panel,
  .absence-record-card {
    overflow-x: auto;
  }

  .absence-list-panel table,
  .absence-record-card table {
    min-width: 780px;
  }

  .reason-body {
    grid-template-columns: 1fr;
  }

  .absence-cta-inner {
    display: block;
  }

  .absence-cta-actions {
    margin-top: 22px;
    flex-wrap: wrap;
  }
}

/* AI question page - matched to the provided design */
body.ai-page {
  --hy-blue: #125cff;
  --hy-blue-2: #2d7dff;
  --hy-cyan: #35c4ff;
  --hy-text: #17233d;
  --aiq-blue: #0d63f3;
  --aiq-blue-2: #2b82ff;
  --aiq-ink: #091a3a;
  --aiq-text: #31425f;
  --aiq-muted: #697891;
  --aiq-line: #dce8fb;
  min-width: 1180px;
  color: var(--aiq-text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.ai-page * {
  letter-spacing: 0;
}

.ai-page .hy-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.ai-page .hy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 228, 250, 0.72);
}

.ai-page .hy-header-inner {
  height: 70px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 18px;
}

.ai-page .hy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #10265b;
}

.ai-page .hy-logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(13, 71, 161, 0.08));
}

.ai-page .hy-logo-wordmark {
  width: 132px;
  height: auto;
  display: block;
}

.ai-page .hy-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ai-page .hy-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #27324a;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.ai-page .hy-nav a:hover {
  color: var(--hy-blue);
  background: #eef5ff;
}

.ai-page .hy-nav a.active {
  color: var(--hy-blue);
  background: transparent;
}

.ai-page .hy-nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ai-page .hy-nav-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ai-page .hy-nav-drop > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
}

.ai-page .hy-nav-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 80;
  display: grid;
  width: 154px;
  padding: 8px;
  border: 1px solid #dfeafb;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 42px rgba(31,87,176,.16);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.ai-page .hy-nav-menu.hy-nav-menu-wide {
  width: 224px;
}

.ai-page .hy-nav-drop:hover .hy-nav-menu,
.ai-page .hy-nav-drop:focus-within .hy-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ai-page .hy-nav .hy-nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #27324a;
  background: transparent;
  font-size: 13px;
}

.ai-page .hy-nav .hy-nav-menu a:hover,
.ai-page .hy-nav .hy-nav-menu a.active {
  color: var(--hy-blue);
  background: #eef6ff;
}

.ai-page .hy-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.ai-page .hy-login,
.ai-page .hy-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ai-page .hy-login {
  min-height: 38px;
  padding: 0 22px;
  color: var(--hy-blue);
  background: #fff;
  border: 1px solid #d9e6ff;
  box-shadow: 0 6px 18px rgba(18,92,255,.06);
}

.ai-page .hy-primary {
  color: #fff;
  background: linear-gradient(135deg,#0b57ff 0%,#2f82ff 100%);
  box-shadow: 0 14px 28px rgba(18,92,255,.24);
}

.ai-page .hy-login:hover,
.ai-page .hy-primary:hover {
  transform: translateY(-1px);
}

.ai-page .hy-small {
  min-height: 38px;
  padding: 0 22px;
}

.aiq-shell {
  width: 1200px;
  max-width: calc(100% - 96px);
  margin: 0 auto;
}

.aiq-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 30px;
  background:
    radial-gradient(circle at 70% 45%, rgba(67,137,255,.24), transparent 32%),
    linear-gradient(90deg, rgba(12,92,242,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12,92,242,.045) 1px, transparent 1px),
    linear-gradient(115deg,#fafdff 0%, #edf5ff 50%, #dceaff 100%);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.aiq-hero-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  gap: 32px;
  min-height: 382px;
}

.aiq-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 15px;
  border-radius: 6px;
  color: #2b70e8;
  background: #e9f2ff;
  font-size: 13px;
  font-weight: 900;
}

.aiq-copy h1 {
  margin: 18px 0 8px;
  color: #111827;
  font-size: clamp(30px, 3.05vw, 40px);
  line-height: .98;
  font-weight: 900;
}

.aiq-copy h1 span {
  color: #1267f5;
}

.aiq-copy h2 {
  margin: 0 0 19px;
  color: #061a3c;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}

.aiq-copy p {
  max-width: 560px;
  margin: 0;
  color: #465873;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
}

.aiq-hero-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin: 22px 0 20px;
}

.aiq-hero-features div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.aiq-hero-features i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #bdd6ff;
  border-radius: 50%;
  color: #1267f5;
  background: #fff;
}

.aiq-hero-features strong {
  color: #142643;
  font-size: 14px;
  font-weight: 900;
}

.aiq-hero-features small {
  color: #667891;
  font-size: 12px;
  font-weight: 700;
}

.aiq-actions,
.aiq-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aiq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

.aiq-btn.primary {
  color: #fff;
  background: #075fe9;
  box-shadow: 0 14px 24px rgba(13,99,243,.24);
}

.aiq-btn.ghost {
  color: #075fe9;
  background: #fff;
  border-color: #8fb8ff;
}

.aiq-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 22px;
  color: #435772;
  font-size: 12px;
  font-weight: 800;
}

.aiq-trust i {
  margin-right: 7px;
  color: #1267f5;
}

.aiq-visual {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr 145px;
  align-items: center;
  gap: 34px;
  min-height: 320px;
  padding: 12px 12px;
}

.aiq-visual::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 50%;
  height: 210px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.45) 0 2px, transparent 2px 34px),
    radial-gradient(circle at 50% 50%, rgba(28,116,255,.35), transparent 60%);
  transform: translateY(-50%) perspective(420px) rotateX(62deg);
  pointer-events: none;
}

.aiq-visual::after {
  content: "";
  position: absolute;
  left: 160px;
  right: 160px;
  top: 50%;
  height: 180px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(29,117,255,.44) 50%, transparent 88%),
    repeating-linear-gradient(16deg, transparent 0 18px, rgba(255,255,255,.42) 19px 21px, transparent 22px 42px);
  transform: translateY(-50%);
  filter: blur(.2px);
  opacity: .92;
  pointer-events: none;
}

.aiq-input-panel,
.aiq-output-panel {
  position: relative;
  z-index: 1;
  padding: 14px;
  border: 1px solid #c5d8f7;
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 42px rgba(46,103,185,.14);
}

.aiq-input-panel h3,
.aiq-output-panel h3 {
  margin: 0 0 12px;
  color: #1267f5;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.aiq-input-panel div,
.aiq-output-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-top: 7px;
  padding: 0 12px;
  border-radius: 5px;
  color: #243957;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 6px 14px rgba(32,83,160,.08);
}

.aiq-input-panel i {
  color: #1267f5;
  font-size: 21px;
}

.aiq-input-panel small {
  display: block;
  color: #6d7d92;
  font-size: 11px;
}

.aiq-input-panel em {
  display: block;
  padding: 10px 12px 0;
  color: #9aa7b8;
  font-style: normal;
  font-weight: 900;
}

.aiq-output-panel i {
  color: #1267f5;
}

.aiq-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle,#62b4ff 0 39%,#1267f5 40% 66%,rgba(255,255,255,.8) 67% 72%,rgba(80,153,255,.3) 73%);
  box-shadow: 0 0 0 14px rgba(255,255,255,.34), 0 0 48px rgba(18,103,245,.62);
}

.aiq-core span {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
}

.aiq-section {
  padding: 18px 0;
  background: #fff;
}

.aiq-section-head {
  margin: 0 auto 18px;
  text-align: center;
}

.aiq-section-head h2 {
  margin: 0 0 10px;
  color: #0c2349;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}

.aiq-section-head p {
  max-width: 770px;
  margin: 0 auto;
  color: #61728b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 650;
}

.aiq-why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.aiq-why-grid article,
.aiq-cap-grid article,
.aiq-flow li,
.aiq-scene-grid article,
.aiq-faq-grid details {
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(29,86,180,.07);
}

.aiq-why-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 15px 18px;
}

.aiq-why-grid i,
.aiq-cap-grid i,
.aiq-flow i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #1267f5;
  background: #edf5ff;
  font-size: 22px;
}

.aiq-why-grid article:nth-child(2) i {
  color: #e95620;
  background: #fff0e8;
}

.aiq-why-grid article:nth-child(4) i {
  color: #ff9b18;
  background: #fff5dc;
}

.aiq-why-grid h3,
.aiq-cap-grid h3,
.aiq-flow h3,
.aiq-scene-grid h3 {
  margin: 0 0 7px;
  color: #102747;
  font-size: 16px;
  font-weight: 900;
}

.aiq-why-grid p,
.aiq-cap-grid p,
.aiq-flow p,
.aiq-scene-grid p {
  margin: 0;
  color: #50637d;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 650;
}

.aiq-capabilities {
  padding-top: 8px;
}

.aiq-cap-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px 20px;
}

.aiq-cap-grid article {
  min-height: 98px;
  padding: 15px 19px;
}

.aiq-cap-grid i {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  font-size: 18px;
}

.aiq-flow-section {
  padding-top: 8px;
}

.aiq-flow {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
}

.aiq-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 13px 16px;
  list-style: none;
}

.aiq-flow li:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  right: -24px;
  top: 50%;
  color: #2a74f4;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-50%);
}

.aiq-product-section {
  padding-top: 7px;
}

.aiq-product {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 24px;
  padding: 22px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg,#f3f8ff,#fff);
  box-shadow: 0 12px 34px rgba(29,86,180,.08);
}

.aiq-side-list {
  display: grid;
  gap: 15px;
  align-content: center;
  height: auto;
}

.aiq-side-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.aiq-side-list i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #1267f5;
  background: #eaf3ff;
  font-size: 18px;
  grid-row: 1 / span 2;
}

.aiq-side-list h3 {
  grid-column: 2;
  margin: 0 0 6px;
  color: #12305d;
  font-size: 15px;
  font-weight: 900;
}

.aiq-side-list p {
  grid-column: 2;
  margin: 0;
  color: #50637d;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 650;
}

.aiq-screen {
  overflow: hidden;
  height: auto;
  border: 1px solid #d6e4f6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(29,86,180,.12);
}

.aiq-screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e6eef9;
  color: #243957;
  background: #fbfdff;
  font-size: 12px;
  font-weight: 800;
}

.aiq-screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4deed;
}

.aiq-screen-bar em {
  margin-left: auto;
  color: #8a98aa;
  font-style: normal;
}

.aiq-screen-body {
  display: grid;
  grid-template-columns: 86px 1fr 210px;
  min-height: 282px;
}

.aiq-screen-body aside:first-child {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 17px 12px;
  color: #a8b9d1;
  background: #132a49;
  font-size: 11px;
}

.aiq-screen-body aside:first-child b {
  color: #fff;
  margin-bottom: 12px;
}

.aiq-screen-body aside:first-child span {
  padding: 7px 8px;
  border-radius: 6px;
}

.aiq-screen-body aside:first-child .active {
  color: #fff;
  background: #1267f5;
}

.aiq-screen-body section {
  padding: 17px 18px;
  background: #fff;
}

.aiq-step-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #50637d;
  font-size: 12px;
  font-weight: 850;
}

.aiq-step-tabs b {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #1267f5;
  font-size: 11px;
}

.aiq-question-card {
  padding: 15px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #fff;
}

.aiq-question-card h4 {
  margin: 0 0 12px;
  color: #102747;
  font-size: 15px;
}

.aiq-question-card p,
.aiq-question-card label,
.aiq-question-card small {
  display: block;
  margin: 0 0 10px;
  color: #324661;
  font-size: 12px;
  line-height: 1.65;
}

.aiq-question-card small {
  margin: 14px 0 0;
  padding: 10px;
  border-radius: 6px;
  background: #f7faff;
}

.aiq-source {
  padding: 15px;
  border-left: 1px solid #e5edf8;
  background: #fbfdff;
}

.aiq-source b {
  display: block;
  margin-bottom: 12px;
  color: #102747;
  font-size: 14px;
}

.aiq-source p {
  margin: 0 0 10px;
  color: #425772;
  font-size: 12px;
  line-height: 1.6;
}

.aiq-source mark {
  display: block;
  margin-top: 12px;
  padding: 10px;
  color: #344b68;
  background: #fff6bf;
  font-size: 12px;
  line-height: 1.65;
}

.aiq-source button {
  width: 100%;
  height: 34px;
  margin-top: 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #1267f5;
  font-weight: 900;
}

.aiq-scenes {
  padding-top: 16px;
}

.aiq-scene-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 22px;
}

.aiq-scene-grid article {
  overflow: hidden;
}

.aiq-scene-grid img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.aiq-scene-grid h3 {
  padding: 12px 14px 0;
}

.aiq-scene-grid h3 i {
  margin-right: 6px;
  color: #1267f5;
  font-size: 13px;
}

.aiq-scene-grid p {
  padding: 0 14px 12px;
}

.aiq-faq-section {
  padding-top: 6px;
}

.aiq-faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px 24px;
}

.aiq-faq-grid details {
  min-height: 52px;
  background: #f7faff;
  box-shadow: none;
}

.aiq-faq-grid details:hover {
  transform: none;
}

.aiq-faq-grid summary {
  position: relative;
  padding: 13px 48px 6px 35px;
  color: #102747;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.aiq-faq-grid summary::-webkit-details-marker {
  display: none;
}

.aiq-faq-grid summary::before {
  content: "\00d7";
  position: absolute;
  left: 17px;
  top: 14px;
  color: #1267f5;
  font-weight: 900;
}

.aiq-faq-grid summary::after {
  content: "\f078";
  position: absolute;
  right: 20px;
  top: 17px;
  color: #1267f5;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

.aiq-faq-grid details[open] summary::after {
  content: "\f077";
}

.aiq-faq-grid p {
  margin: 0;
  padding: 0 35px 12px;
  color: #465873;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 650;
}

.aiq-cta {
  padding: 14px 0 14px;
  background: #fff;
}

.aiq-cta-inner {
  display: grid;
  grid-template-columns: 210px 1fr 300px;
  align-items: center;
  gap: 34px;
  min-height: 118px;
  padding: 16px 38px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.22), transparent 22%),
    linear-gradient(100deg,#075fe9,#167cff 56%,#045ee8);
  box-shadow: 0 18px 42px rgba(13,99,243,.2);
}

.aiq-cta-badge {
  display: grid;
  place-items: center;
  width: 126px;
  height: 96px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg,rgba(255,255,255,.24),rgba(255,255,255,.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 18px 34px rgba(0,0,0,.1);
  font-size: 24px;
  font-weight: 900;
  transform: rotate(-8deg);
}

.aiq-cta h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.aiq-cta p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 650;
}

.aiq-cta-actions {
  justify-content: flex-end;
}

.aiq-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.aiq-cta-actions a:first-child {
  color: #1267f5;
  background: #fff;
}

.aiq-footer {
  padding: 32px 0 18px;
  color: #b9c7db;
  background: linear-gradient(180deg,#14253d,#101d31);
}

.aiq-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4,.7fr) 1fr;
  gap: 38px;
}

.aiq-footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.aiq-footer-logo img:first-child {
  width: 31px;
  height: 31px;
}

.aiq-footer-logo img:nth-child(2) {
  width: 104px;
}

.aiq-footer-logo span {
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
}

.aiq-footer-about p {
  max-width: 310px;
  margin: 0 0 18px;
  color: #c6d2e3;
  font-size: 13px;
  line-height: 1.9;
}

.aiq-footer-about span {
  display: block;
  margin-top: 9px;
  color: #c6d2e3;
  font-size: 13px;
}

.aiq-footer-about i {
  width: 20px;
}

.aiq-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
}

.aiq-footer a {
  display: block;
  margin: 11px 0;
  color: #b9c7db;
  font-size: 13px;
}

.aiq-qr img {
  width: 92px;
  height: 92px;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
}

.aiq-qr p {
  margin: 12px 0 0;
  color: #d5deea;
  font-size: 13px;
  line-height: 1.7;
}

.aiq-footer-bottom {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8d9db5;
  font-size: 12px;
}

.aiq-footer-bottom a {
  display: inline;
  margin: 0;
  color: #8d9db5;
  font-size: 12px;
}

@media (max-width: 1180px) {
  body.ai-page {
    min-width: 0;
  }

  .ai-page .hy-shell {
    width: min(100% - 32px, 1100px);
  }

  .ai-page .hy-header-inner {
    grid-template-columns: 176px minmax(0, 1fr) 176px;
    gap: 16px;
  }

  .ai-page .hy-logo-mark {
    width: 44px;
    height: 44px;
  }

  .ai-page .hy-logo-wordmark {
    width: 122px;
  }

  .ai-page .hy-nav a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .aiq-shell {
    max-width: calc(100% - 44px);
  }

  .aiq-hero-grid,
  .aiq-product,
  .aiq-cta-inner,
  .aiq-footer-grid {
    grid-template-columns: 1fr;
  }

  .aiq-copy {
    max-width: 760px;
  }

  .aiq-why-grid,
  .aiq-cap-grid,
  .aiq-scene-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .aiq-flow {
    grid-template-columns: 1fr;
  }

  .aiq-flow li:not(:last-child)::after {
    display: none;
  }

  .aiq-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .ai-page .hy-header {
    position: static;
  }

  .ai-page .hy-header-inner {
    display: flex;
    height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .ai-page .hy-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .ai-page .hy-header-actions {
    margin-left: auto;
  }

  .ai-page .hy-login {
    display: none;
  }

  .aiq-shell {
    max-width: calc(100% - 28px);
  }

  .aiq-copy h1 {
    font-size: clamp(30px, 3.05vw, 40px);
  }

  .aiq-copy h2 {
    font-size: 24px;
  }

  .aiq-visual,
  .aiq-hero-features,
  .aiq-why-grid,
  .aiq-cap-grid,
  .aiq-scene-grid,
  .aiq-faq-grid,
  .aiq-screen-body {
    grid-template-columns: 1fr;
  }

  .aiq-visual::before,
  .aiq-visual::after {
    display: none;
  }

  .aiq-screen {
    overflow-x: auto;
  }

  .aiq-screen-body {
    min-width: 720px;
  }

  .aiq-footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
