body[data-page="home"] {
  --home-bg: #ffffff;
  --home-surface: #ffffff;
  --home-surface-soft: #f7f7f8;
  --home-ink: #0d1117;
  --home-ink-strong: #05070b;
  --home-muted: #5f6673;
  --home-muted-strong: #343c48;
  --home-line: #e5e7eb;
  --home-line-strong: #cfd5dc;
  --home-accent: #0f4aa8;
  --home-accent-soft: rgba(15, 74, 168, 0.08);
  --home-shadow-sm: 0 20px 45px rgba(13, 17, 23, 0.06);
  --home-shadow-md: 0 36px 90px rgba(13, 17, 23, 0.08);
  margin: 0;
  color: var(--home-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--home-bg);
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body[data-page="home"] .page-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body[data-page="home"] .page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body[data-page="home"] .page-loader-panel {
  min-width: min(100%, 320px);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 28px;
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--home-shadow-sm);
  text-align: center;
}

body[data-page="home"] .page-loader-panel strong {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

body[data-page="home"] .page-loader-panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.86rem;
}

body[data-page="home"] .page-loader-mark {
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid var(--home-line-strong);
  background: var(--home-surface);
  overflow: hidden;
}

body[data-page="home"] .page-loader-mark::before,
body[data-page="home"] .page-loader-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-top: 2px solid var(--home-ink);
  border-left: 2px solid var(--home-ink);
  transform-origin: center;
}

body[data-page="home"] .page-loader-mark::before {
  animation: home-loader-rotate 1s linear infinite;
}

body[data-page="home"] .page-loader-mark::after {
  inset: 15px;
  border-color: var(--home-accent);
  animation: home-loader-rotate 0.8s linear infinite reverse;
}

@keyframes home-loader-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body[data-page="home"] a {
  color: inherit;
}

body[data-page="home"] .container {
  width: min(1300px, calc(100vw - 32px));
}

body[data-page="home"] .lp-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

body[data-page="home"] .landing-main {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body[data-page="home"].is-loaded .landing-main {
  opacity: 1;
  transform: none;
}

body[data-page="home"] .section-light {
  background: var(--home-bg);
}

body[data-page="home"] .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 130;
  background: linear-gradient(90deg, var(--home-ink) 0%, var(--home-accent) 100%);
}

body[data-page="home"] .landing-header.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body[data-page="home"] .landing-header.site-header.scrolled {
  border-bottom-color: var(--home-line);
  box-shadow: 0 10px 30px rgba(13, 17, 23, 0.05);
}

body[data-page="home"] .landing-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

body[data-page="home"] .landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-ink);
  font-family: "Outfit", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.055em;
}

body[data-page="home"] .landing-brand::before {
  display: none;
}

body[data-page="home"] .brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  border: none;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  opacity: 0.92;
  filter: saturate(0.86) contrast(1.05);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

body[data-page="home"] .landing-brand:hover .brand-mark img {
  transform: translateY(-1px) scale(1.02);
  filter: saturate(0.94) contrast(1.08);
}

body[data-page="home"] .brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

body[data-page="home"] .brand-text {
  display: block;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

body[data-page="home"] .brand-caption {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  color: var(--home-muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-1px);
}

body[data-page="home"] .brand-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--home-line-strong);
  transform: translateY(-50%);
}

body[data-page="home"] .landing-mobile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body[data-page="home"] .landing-mobile-intro {
  display: none;
}

body[data-page="home"] .landing-mobile-utility-bar {
  display: none;
}

body[data-page="home"] .landing-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

body[data-page="home"] .landing-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--home-muted-strong);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 5px 0;
  white-space: nowrap;
}

body[data-page="home"] .landing-links a span {
  display: block;
}

body[data-page="home"] .landing-links a small {
  display: none;
}

body[data-page="home"] .landing-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--home-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

body[data-page="home"] .landing-links a:hover,
body[data-page="home"] .landing-links a.active,
body[data-page="home"] .landing-links a[aria-current="page"] {
  color: var(--home-ink);
}

body[data-page="home"] .landing-links a:hover::after,
body[data-page="home"] .landing-links a.active::after,
body[data-page="home"] .landing-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

body[data-page="home"] .landing-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}

body[data-page="home"] .home-language-inline {
  display: inline-flex;
  align-items: center;
  min-width: 96px;
}

body[data-page="home"] .home-notification-host {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body[data-page="home"] .home-notification-host:empty {
  display: none;
}

body[data-page="home"] .home-language-panel {
  display: none;
}

body[data-page="home"] .home-language-label {
  margin: 0;
  color: var(--home-muted-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-language-hint {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

body[data-page="home"] .home-language-select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--home-line-strong);
  border-radius: 0;
  background:
    linear-gradient(45deg, transparent 50%, var(--home-ink) 50%),
    linear-gradient(135deg, var(--home-ink) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%,
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 2.5em;
  background-repeat: no-repeat;
  color: var(--home-ink);
  padding: 0 28px 0 11px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  appearance: none;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

body[data-page="home"] .home-language-select:hover,
body[data-page="home"] .home-language-select:focus {
  border-color: var(--home-ink);
  box-shadow: 0 0 0 3px var(--home-accent-soft);
}

body[data-page="home"] .home-language-select option {
  color: var(--home-ink);
}

body[data-page="home"] .home-language-select-compact {
  min-width: 96px;
  min-height: 36px;
  padding: 0 24px 0 9px;
  font-size: 0.74rem;
}

body[data-page="home"] .nav-install,
body[data-page="home"] .nav-login,
body[data-page="home"] .nav-cta,
body[data-page="home"] .btn {
  border-radius: 0;
}

body[data-page="home"] .nav-install,
body[data-page="home"] .nav-login,
body[data-page="home"] .nav-cta,
body[data-page="home"] .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--home-line-strong);
  background: var(--home-surface);
  color: var(--home-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  cursor: pointer;
}

body[data-page="home"] .notif-toggle.app-icon-btn {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.24) !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

body[data-page="home"] .notif-toggle .notif-icon,
body[data-page="home"] .notif-toggle .notif-icon svg {
  width: 16px !important;
  height: 16px !important;
}

body[data-page="home"] .notif-toggle .notif-icon svg {
  stroke: #0f172a !important;
  color: #0f172a !important;
}

body[data-page="home"] .notif-toggle .notif-icon .notif-badge {
  fill: #1d4ed8 !important;
}

body[data-page="home"] .gradient-btn,
body[data-page="home"] .btn-dark,
body[data-page="home"] .nav-cta {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #ffffff !important;
  box-shadow: var(--home-shadow-sm);
}

body[data-page="home"] .nav-login:hover,
body[data-page="home"] .nav-install:hover,
body[data-page="home"] .nav-cta:hover,
body[data-page="home"] .btn:hover {
  transform: translateY(-3px);
  border-color: var(--home-ink);
}

body[data-page="home"] .gradient-btn:hover,
body[data-page="home"] .btn-dark:hover,
body[data-page="home"] .nav-cta:hover {
  background: var(--home-surface);
  color: var(--home-ink) !important;
  box-shadow: none;
}

body[data-page="home"] .outline-btn,
body[data-page="home"] .btn-light {
  background: var(--home-surface);
  color: var(--home-ink);
}

body[data-page="home"] .outline-btn:hover,
body[data-page="home"] .btn-light:hover {
  background: var(--home-surface-soft);
}

body[data-page="home"] .home-nav-toggle {
  display: none !important;
  width: 46px;
  height: 46px;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

body[data-page="home"] .home-nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--home-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body[data-page="home"].home-nav-open .home-nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body[data-page="home"].home-nav-open .home-nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

body[data-page="home"] .home-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}

body[data-page="home"].home-nav-open .home-nav-scrim {
  opacity: 1;
  pointer-events: auto;
}

body[data-page="home"] .home-top-slot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding: 0 20px 0;
  overflow: hidden;
  transition: padding 0.25s ease, max-height 0.25s ease, opacity 0.25s ease;
}

body[data-page="home"] .home-top-slot > * {
  max-width: min(100%, 980px);
}

body[data-page="home"] .home-top-slot.slot-empty {
  max-height: 0;
  padding-top: 0;
  opacity: 0;
}

body[data-page="home"] .ripple-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="home"] .btn-ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.1);
  transform: scale(0);
  pointer-events: none;
  animation: home-btn-ripple 0.62s ease-out forwards;
}
body[data-page="home"] .hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 2.4vw, 30px) 0 clamp(54px, 7vw, 88px);
  background: var(--home-bg);
}

body[data-page="home"] .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 17, 23, 0.035) 1px, transparent 1px),
    radial-gradient(560px circle at var(--hero-cursor-x, 50%) var(--hero-cursor-y, 32%), rgba(15, 74, 168, calc(0.09 * var(--hero-cursor-strength, 0.42))), transparent 68%);
  background-size: 152px 152px, 152px 152px, auto;
  opacity: 0.62;
  pointer-events: none;
}

body[data-page="home"] .hero-section.hero-interactive::before {
  opacity: 0.78;
}

body[data-page="home"] .hero-grid {
  align-items: start;
  row-gap: 24px;
}

body[data-page="home"] .hero-copy {
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

body[data-page="home"] .eyebrow {
  margin: 0;
  color: var(--home-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-copy h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.75rem, 6.4vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

body[data-page="home"] .hero-copy h1 span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
}

body[data-page="home"].is-loaded .hero-copy h1 span:nth-child(1) {
  animation: home-hero-line 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

body[data-page="home"].is-loaded .hero-copy h1 span:nth-child(2) {
  animation: home-hero-line 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

body[data-page="home"].is-loaded .hero-copy h1 span:nth-child(3) {
  animation: home-hero-line 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.19s forwards;
}

body[data-page="home"] .hero-text,
body[data-page="home"] .section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.68;
}

body[data-page="home"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-page="home"] .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="home"] .hero-meta span,
body[data-page="home"] .demo-foot span,
body[data-page="home"] .hero-word-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  color: var(--home-muted-strong);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="home"] .hero-proof article,
body[data-page="home"] .feature-card,
body[data-page="home"] .workflow-card,
body[data-page="home"] .resource-card,
body[data-page="home"] .stat-card,
body[data-page="home"] .testimonial-card,
body[data-page="home"] .faq-item,
body[data-page="home"] .compliance-card,
body[data-page="home"] .hero-board,
body[data-page="home"] .hero-readout {
  position: relative;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

body[data-page="home"] .hero-proof article:hover,
body[data-page="home"] .feature-card:hover,
body[data-page="home"] .workflow-card:hover,
body[data-page="home"] .resource-card:hover,
body[data-page="home"] .stat-card:hover,
body[data-page="home"] .testimonial-card:hover,
body[data-page="home"] .faq-item:hover,
body[data-page="home"] .compliance-card:hover,
body[data-page="home"] .hero-board:hover,
body[data-page="home"] .hero-readout:hover {
  transform: translateY(-6px);
  border-color: var(--home-line-strong);
  box-shadow: var(--home-shadow-sm);
}

body[data-page="home"] .hero-proof article {
  min-height: 150px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body[data-page="home"] .hero-proof article::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--home-ink);
}

body[data-page="home"] .hero-proof strong,
body[data-page="home"] .hero-board header strong,
body[data-page="home"] .readout-head strong,
body[data-page="home"] .feature-card h3,
body[data-page="home"] .workflow-card h3,
body[data-page="home"] .resource-card h3,
body[data-page="home"] .compliance-card h3,
body[data-page="home"] .stat-card h3,
body[data-page="home"] .testimonial-card h4,
body[data-page="home"] .demo-console header strong {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

body[data-page="home"] .hero-proof strong {
  font-size: 1rem;
}

body[data-page="home"] .hero-board header strong,
body[data-page="home"] .readout-head strong {
  font-size: 1.02rem;
}

body[data-page="home"] .hero-proof span,
body[data-page="home"] .feature-card p,
body[data-page="home"] .workflow-card p,
body[data-page="home"] .resource-card p,
body[data-page="home"] .compliance-card p,
body[data-page="home"] .testimonial-card p,
body[data-page="home"] .faq-panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

body[data-page="home"] .hero-visual-wrap {
  grid-column: 8 / span 5;
  position: relative;
  z-index: 1;
}

body[data-page="home"] .glass-card {
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-sm);
}

body[data-page="home"] .hero-neo-panel {
  padding: 22px;
  display: grid;
  gap: 18px;
  min-height: 100%;
}

body[data-page="home"] .hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body[data-page="home"] .hero-panel-kicker,
body[data-page="home"] .hero-board header span,
body[data-page="home"] .readout-head span,
body[data-page="home"] .hero-signal-list span,
body[data-page="home"] .demo-rows span,
body[data-page="home"] .demo-lanes span,
body[data-page="home"] .step-badge,
body[data-page="home"] .testimonial-live-kicker,
body[data-page="home"] .footer-col h4 {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="home"] .status-chip,
body[data-page="home"] .step-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--home-line);
  background: var(--home-surface-soft);
  color: var(--home-muted-strong);
}

body[data-page="home"] .hero-signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="home"] .hero-signal-list div,
body[data-page="home"] .readout-line {
  min-height: 84px;
  padding: 14px 12px;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

body[data-page="home"] .hero-signal-list strong,
body[data-page="home"] .readout-line strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

body[data-page="home"] .hero-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

body[data-page="home"] .hero-board,
body[data-page="home"] .hero-readout {
  padding: 16px;
  display: grid;
  gap: 12px;
}

body[data-page="home"] .hero-board header,
body[data-page="home"] .readout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--home-line);
}

body[data-page="home"] .hero-board-list {
  display: grid;
  gap: 0;
}

body[data-page="home"] .hero-board-list div {
  padding: 12px 0;
  border-top: 1px solid var(--home-line);
  display: grid;
  gap: 6px;
}

body[data-page="home"] .hero-board-list div:first-child {
  border-top: 0;
}

body[data-page="home"] .hero-board-list span,
body[data-page="home"] .readout-line span {
  color: var(--home-muted-strong);
  font-size: 0.84rem;
  line-height: 1.5;
}

body[data-page="home"] .hero-board-list em {
  font-style: normal;
  color: var(--home-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="home"] .landing-section {
  position: relative;
  padding: clamp(62px, 7vw, 96px) 0;
  border-top: 1px solid var(--home-line);
  background: var(--home-bg);
}

body[data-page="home"] .landing-main [id] {
  scroll-margin-top: 96px;
}

body[data-page="home"] .section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 920px;
}

body[data-page="home"] .section-head h2,
body[data-page="home"] .demo-copy h2,
body[data-page="home"] .feedback-copy h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 14ch;
}

body[data-page="home"] .feature-card,
body[data-page="home"] .workflow-card,
body[data-page="home"] .resource-card,
body[data-page="home"] .stat-card,
body[data-page="home"] .compliance-card {
  min-height: 200px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

body[data-page="home"] .feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-line);
  background: var(--home-surface-soft);
  color: var(--home-accent);
}

body[data-page="home"] .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .feature-card h3,
body[data-page="home"] .workflow-card h3,
body[data-page="home"] .resource-card h3,
body[data-page="home"] .compliance-card h3 {
  font-size: 1.18rem;
}

body[data-page="home"] .workflow-card a,
body[data-page="home"] .resource-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body[data-page="home"] .workflow-card a::after,
body[data-page="home"] .resource-card a::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

body[data-page="home"] .workflow-card:hover a::after,
body[data-page="home"] .resource-card:hover a::after {
  width: 42px;
}

body[data-page="home"] .compact-overview-grid .feature-card,
body[data-page="home"] .resource-grid .resource-card,
body[data-page="home"] .trust-grid .trust-card {
  grid-column: span 3;
}

body[data-page="home"] .feature-grid .feature-card,
body[data-page="home"] .command-lane-grid .workflow-card {
  grid-column: span 4;
}

body[data-page="home"] .workflow-grid .workflow-card {
  grid-column: span 3;
}

body[data-page="home"] .stats-grid .stat-card {
  grid-column: span 4;
}
body[data-page="home"] .demo-grid,
body[data-page="home"] .compliance-grid,
body[data-page="home"] .feedback-grid {
  align-items: start;
  row-gap: 32px;
}

body[data-page="home"] .demo-copy,
body[data-page="home"] .feedback-copy,
body[data-page="home"] .compliance-copy {
  grid-column: 1 / span 5;
  display: grid;
  gap: 22px;
}

body[data-page="home"] .demo-visual,
body[data-page="home"] .feedback-form,
body[data-page="home"] .compliance-cards {
  grid-column: 7 / span 6;
}

body[data-page="home"] .demo-console,
body[data-page="home"] .feedback-form,
body[data-page="home"] .testimonial-slider {
  padding: 24px;
  display: grid;
  gap: 18px;
}

body[data-page="home"] .demo-console header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--home-line);
}

body[data-page="home"] .demo-console header strong {
  font-size: 1.08rem;
}

body[data-page="home"] .demo-console header span,
body[data-page="home"] .testimonial-live-note,
body[data-page="home"] .footer-bottom,
body[data-page="home"] .message-text {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

body[data-page="home"] .message-text {
  min-height: 1.4em;
}

body[data-page="home"] .demo-console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .demo-rows,
body[data-page="home"] .demo-lanes,
body[data-page="home"] .compliance-cards {
  display: grid;
  gap: 14px;
}

body[data-page="home"] .demo-rows div,
body[data-page="home"] .demo-lanes div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  display: grid;
  gap: 8px;
}

body[data-page="home"] .demo-rows strong,
body[data-page="home"] .demo-lanes strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

body[data-page="home"] .good {
  color: var(--home-accent);
}

body[data-page="home"] .demo-bars {
  display: grid;
  gap: 10px;
}

body[data-page="home"] .demo-bars span {
  display: block;
  width: min(100%, var(--w, 72%));
  height: 12px;
  background: linear-gradient(90deg, var(--home-ink) 0%, var(--home-accent) 100%);
  transform-origin: left;
  animation: home-bars-pulse 5s ease-in-out infinite;
}

body[data-page="home"] .demo-bars span:nth-child(2) {
  animation-delay: 0.3s;
}

body[data-page="home"] .demo-bars span:nth-child(3) {
  animation-delay: 0.6s;
}

body[data-page="home"] .demo-bars span:nth-child(4) {
  animation-delay: 0.9s;
}

body[data-page="home"] .demo-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

body[data-page="home"] .demo-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--home-muted);
  line-height: 1.7;
}

body[data-page="home"] .demo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--home-ink);
}

body[data-page="home"] .stat-card {
  justify-content: end;
}

body[data-page="home"] .stat-card h3 {
  font-size: clamp(2.35rem, 4.6vw, 3.8rem);
  line-height: 0.9;
}

body[data-page="home"] .stat-card p {
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="home"] .testimonial-slider {
  gap: 18px;
}

body[data-page="home"] .testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .testimonial-card {
  min-height: 210px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}

body[data-page="home"] .testimonial-card p {
  color: var(--home-ink);
  line-height: 1.8;
}

body[data-page="home"] .testimonial-card h4 {
  font-size: 1.08rem;
}

body[data-page="home"] .testimonial-card small {
  color: var(--home-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .feedback-form label {
  display: grid;
  gap: 10px;
  color: var(--home-muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .feedback-form input,
body[data-page="home"] .feedback-form select,
body[data-page="home"] .feedback-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  color: var(--home-ink);
  font: inherit;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body[data-page="home"] .feedback-form textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

body[data-page="home"] .feedback-form input:focus,
body[data-page="home"] .feedback-form select:focus,
body[data-page="home"] .feedback-form textarea:focus {
  border-color: var(--home-ink);
  box-shadow: 0 0 0 3px var(--home-accent-soft);
}

body[data-page="home"] .faq-list {
  display: grid;
  gap: 14px;
}

body[data-page="home"] .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px;
  border: 0;
  background: var(--home-surface);
  color: var(--home-ink);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-align: left;
}

body[data-page="home"] .faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

body[data-page="home"] .faq-icon::before,
body[data-page="home"] .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--home-ink);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

body[data-page="home"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body[data-page="home"] .faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body[data-page="home"] .faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

body[data-page="home"] .faq-item.open .faq-panel {
  padding: 0 20px 20px;
}

body[data-page="home"] .landing-footer.site-footer {
  border-top: 1px solid var(--home-line);
  background: var(--home-bg);
  padding: 48px 0 26px;
}

@media (max-width: 1360px) {
  body[data-page="home"] .hero-copy {
    grid-column: 1 / span 7;
  }

  body[data-page="home"] .hero-visual-wrap {
    grid-column: 8 / span 5;
  }

  body[data-page="home"] .landing-links {
    gap: 8px;
  }

  body[data-page="home"] .home-language-inline {
    min-width: 102px;
  }

  body[data-page="home"] .landing-links a {
    font-size: 0.8rem;
  }

  body[data-page="home"] .nav-install,
  body[data-page="home"] .nav-login,
  body[data-page="home"] .nav-cta,
  body[data-page="home"] .btn {
    min-height: 40px;
    padding: 0 14px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.9rem);
  }
}

body[data-page="home"] .footer-grid {
  gap: 24px;
}

body[data-page="home"] .footer-brand-col {
  grid-column: span 5;
  display: grid;
  gap: 14px;
}

body[data-page="home"] .footer-brand {
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

body[data-page="home"] .footer-brand::before {
  display: none;
}

body[data-page="home"] .footer-brand-col p,
body[data-page="home"] .footer-col a {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

body[data-page="home"] .footer-grid > .footer-col {
  grid-column: span 2;
  display: grid;
  gap: 8px;
}

body[data-page="home"] .footer-grid > .footer-col:last-child {
  grid-column: span 3;
}

body[data-page="home"] .footer-col a:hover {
  color: var(--home-ink);
}

body[data-page="home"] .landing-footer .support-link {
  color: var(--home-ink);
}

body[data-page="home"] .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--home-line);
}
body[data-page="home"] [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

body[data-page="home"] [data-reveal].in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes home-hero-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-btn-ripple {
  from {
    transform: scale(0);
    opacity: 0.28;
  }

  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes home-bars-pulse {
  0%,
  100% {
    transform: scaleX(0.98);
    opacity: 0.84;
  }

  50% {
    transform: scaleX(1.02);
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  body[data-page="home"] .hero-copy {
    grid-column: 1 / span 7;
  }

  body[data-page="home"] .hero-visual-wrap {
    grid-column: 8 / span 5;
  }

  body[data-page="home"] .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .compact-overview-grid .feature-card,
  body[data-page="home"] .resource-grid .resource-card,
  body[data-page="home"] .trust-grid .trust-card,
  body[data-page="home"] .workflow-grid .workflow-card,
  body[data-page="home"] .stats-grid .stat-card {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .landing-nav {
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 10px 0;
  }

  body[data-page="home"] .home-nav-toggle {
    display: inline-flex !important;
  }

  body[data-page="home"] .landing-mobile-panel {
    position: fixed;
    top: 76px;
    left: 10px;
    right: 10px;
    width: auto;
    padding: 18px 16px 16px;
    border: 1px solid var(--home-line);
    background: var(--home-surface);
    box-shadow: var(--home-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 95;
  }

  body[data-page="home"].home-nav-open .landing-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  body[data-page="home"] .landing-mobile-intro {
    display: grid;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--home-line);
  }

  body[data-page="home"] .landing-mobile-intro p {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--home-accent);
  }

  body[data-page="home"] .landing-mobile-intro strong {
    max-width: 24ch;
    font-size: 0.96rem;
    line-height: 1.28;
    font-weight: 700;
    color: var(--home-ink);
  }

  body[data-page="home"] .landing-mobile-utility-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--home-line);
  }

  body[data-page="home"] .home-language-panel {
    display: grid;
    gap: 8px;
    padding: 0;
    border-bottom: 0;
  }

  body[data-page="home"] .home-notification-host {
    justify-content: flex-start;
    align-self: start;
  }

  body[data-page="home"] .landing-mobile-intro p,
  body[data-page="home"] .landing-mobile-intro strong {
    margin: 0;
  }

  body[data-page="home"] .landing-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  body[data-page="home"] .landing-links a {
    display: grid;
    gap: 4px;
    padding: 11px 0;
    white-space: normal;
  }

  body[data-page="home"] .landing-links a small {
    display: block;
    color: var(--home-muted);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  body[data-page="home"] .landing-links a::after {
    transform: scaleX(1);
    background: var(--home-line);
  }

  body[data-page="home"] .landing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body[data-page="home"] .landing-actions #homeNotificationHostDesktop {
    display: none;
  }

  body[data-page="home"] .landing-mobile-panel #homeNotificationHostMobile .notif-toggle.app-icon-btn {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
  }

  body[data-page="home"] .home-language-inline {
    display: none;
  }

  body[data-page="home"] .home-language-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  body[data-page="home"] .home-language-hint {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  body[data-page="home"] .home-language-select {
    min-height: 38px;
    font-size: 0.92rem;
  }

  body[data-page="home"] .landing-actions .nav-install,
  body[data-page="home"] .landing-actions .nav-login,
  body[data-page="home"] .landing-actions .nav-cta {
    width: 100%;
    min-height: 38px;
  }

  body[data-page="home"] .landing-actions .nav-cta {
    grid-column: span 2;
  }

  body[data-page="home"] .hero-copy,
  body[data-page="home"] .hero-visual-wrap,
  body[data-page="home"] .demo-copy,
  body[data-page="home"] .demo-visual,
  body[data-page="home"] .feedback-copy,
  body[data-page="home"] .feedback-form,
  body[data-page="home"] .compliance-copy,
  body[data-page="home"] .compliance-cards {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(2.35rem, 9vw, 4.1rem);
  }

  body[data-page="home"] .hero-proof,
  body[data-page="home"] .hero-signal-list,
  body[data-page="home"] .hero-visual-grid,
  body[data-page="home"] .demo-console-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .footer-brand-col {
    grid-column: span 12;
  }

  body[data-page="home"] .footer-grid > .footer-col,
  body[data-page="home"] .footer-grid > .footer-col:last-child {
    grid-column: span 4;
  }

  body[data-page="home"] .testimonials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .landing-mobile-panel {
    top: 72px;
    left: 8px;
    right: 8px;
    padding: 16px 14px 14px;
    max-height: calc(100dvh - 80px);
  }

  body[data-page="home"] .landing-mobile-intro strong {
    max-width: none;
    font-size: 0.9rem;
  }

  body[data-page="home"] .landing-mobile-utility-bar {
    gap: 10px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .container {
    width: min(100vw - 28px, 1240px);
  }

  body[data-page="home"] .landing-nav {
    padding: 10px 0;
  }

  body[data-page="home"] .brand-mark {
    width: 24px;
    height: 24px;
  }

  body[data-page="home"] .brand-lockup {
    gap: 0;
  }

  body[data-page="home"] .brand-caption {
    display: none;
  }

  body[data-page="home"] .hero-section {
    padding-top: 28px;
  }

  body[data-page="home"] .hero-actions {
    flex-direction: column;
  }

  body[data-page="home"] .hero-actions .btn {
    width: 100%;
  }

  body[data-page="home"] .hero-meta,
  body[data-page="home"] .demo-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .compact-overview-grid .feature-card,
  body[data-page="home"] .command-lane-grid .workflow-card,
  body[data-page="home"] .resource-grid .resource-card,
  body[data-page="home"] .trust-grid .trust-card,
  body[data-page="home"] .workflow-grid .workflow-card,
  body[data-page="home"] .stats-grid .stat-card,
  body[data-page="home"] .footer-grid > .footer-col,
  body[data-page="home"] .footer-grid > .footer-col:last-child {
    grid-column: span 12;
  }

  body[data-page="home"] .feature-card,
  body[data-page="home"] .workflow-card,
  body[data-page="home"] .resource-card,
  body[data-page="home"] .stat-card,
  body[data-page="home"] .compliance-card,
  body[data-page="home"] .testimonial-card,
  body[data-page="home"] .feedback-form {
    padding: 18px;
  }

  body[data-page="home"] .testimonials-track {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .faq-trigger {
    padding: 18px 18px;
    font-size: 1rem;
  }

  body[data-page="home"] .faq-panel {
    padding: 0 18px;
  }

  body[data-page="home"] .faq-item.open .faq-panel {
    padding: 0 18px 18px;
  }

  body[data-page="home"] .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] *,
  body[data-page="home"] *::before,
  body[data-page="home"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body[data-page="home"] .landing-main,
  body[data-page="home"] [data-reveal],
  body[data-page="home"] .hero-copy h1 span {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
