:root {
  --bg: #090B10;
  --bg-alt: #0F131B;
  --surface: rgba(19, 24, 34, 0.76);
  --surface-solid: #131722;
  --surface-hover: rgba(28, 35, 48, 0.95);
  --text: #F8FAFC;
  --text-soft: #94A3B8;
  --text-muted: #64748B;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --canvas-grid: rgba(255, 255, 255, 0.024);

  /* Corporate Brand - Sayap Merah Putih Executive Identity (Opsi A) */
  --red: #B51E32;
  --red-bright: #D9253C;
  --red-dark: #7A1220;
  --white: #FFFFFF;
  --red-glow: 0 16px 44px rgba(181, 30, 50, 0.24);

  /* Gradient Architecture (Adapted from landing-des-green) */
  --gradient-primary: linear-gradient(135deg, #FF3868 0%, #FF5983 45%, #FDA4AF 100%);
  --gradient-accent: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 50%, #E2E8F0 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-red: var(--gradient-primary);
  --gradient-hero: radial-gradient(ellipse 52% 65% at 16% 22%, rgba(225, 29, 72, 0.20) 0%, rgba(181, 30, 50, 0.08) 36%, transparent 68%),
                   radial-gradient(ellipse 60% 75% at 84% 26%, rgba(255, 51, 102, 0.25) 0%, rgba(225, 29, 72, 0.12) 35%, rgba(251, 146, 60, 0.05) 55%, transparent 75%),
                   radial-gradient(ellipse 42% 42% at 50% 8%, rgba(244, 63, 94, 0.10) 0%, transparent 60%),
                   linear-gradient(112deg, rgba(8, 10, 15, 0.70) 0%, rgba(15, 12, 22, 0.58) 48%, rgba(8, 10, 15, 0.80) 100%),
                   url('../assets/backgrounds/hero-tech-waves.jpg');

  /* Subpage / Theme Mapping Compatibility */
  --primary: var(--red);
  --primary-light: var(--red-bright);
  --primary-dark: var(--red-dark);
  --primary-glow: var(--red-glow);
  --emerald: var(--red);
  --emerald-light: var(--red-bright);
  --emerald-dark: var(--red-dark);
  --cyan: #94A3B8;

  --shadow-sm: 0 10px 28px rgba(2, 6, 14, 0.32);
  --shadow-lg: 0 32px 90px rgba(2, 6, 14, 0.55);

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

[data-theme="light"] {
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #FFFFFF;
  --surface-hover: #F8FAFC;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #64748B;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.16);
  --canvas-grid: rgba(15, 23, 42, 0.028);

  --red: #B51E32;
  --red-bright: #9F1B2E;
  --red-dark: #711221;

  --gradient-primary: linear-gradient(135deg, #E11D48 0%, #BE123C 50%, #9F1239 100%);
  --gradient-accent: linear-gradient(135deg, #0F172A 0%, #475569 50%, #9F1239 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
  --gradient-red: var(--gradient-primary);
  --gradient-hero: radial-gradient(ellipse 55% 72% at 14% 22%, rgba(244, 63, 94, 0.12) 0%, rgba(225, 29, 72, 0.04) 34%, transparent 66%),
                   radial-gradient(ellipse 52% 70% at 86% 24%, rgba(251, 113, 133, 0.10) 0%, transparent 36%),
                   linear-gradient(110deg, rgba(248, 250, 252, 0.88) 0%, rgba(255, 245, 246, 0.84) 48%, rgba(248, 250, 252, 0.90) 100%),
                   url('../assets/backgrounds/hero-tech-waves.jpg');

  --shadow-sm: 0 9px 26px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);
  --red-glow: 0 16px 44px rgba(181, 30, 50, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  transition: background .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { border: 0; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: .75rem; left: 1rem; transform: translateY(-160%); padding: .7rem 1rem; border-radius: 8px; background: var(--white); color: #111827; font-weight: 700; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 200; inset: 0 auto auto 0; width: 0; height: 2px; background: var(--gradient-red); box-shadow: 0 0 12px rgba(225, 29, 72, .55); }
.ambient { position: fixed; z-index: -2; width: 34rem; height: 34rem; border-radius: 50%; filter: blur(130px); pointer-events: none; opacity: .12; }
.ambient-red { top: 40%; left: -20rem; background: var(--red); opacity: .08; }
.ambient-white { top: 44%; left: -20rem; background: #fff; opacity: .04; }
.ambient-blue, .ambient-cyan { bottom: -16rem; right: -12rem; background: var(--red-dark); opacity: .07; }
.ambient-green, .ambient-gold { top: -12rem; right: 8%; background: var(--red); opacity: .06; }

.navbar { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; padding-top: 1rem; transition: padding .3s var(--ease); }
.navbar.scrolled { padding-top: .55rem; }
.nav-shell { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: .55rem .7rem .55rem 1rem; border: 1px solid transparent; border-radius: 22px; transition: .3s var(--ease); }
.navbar.scrolled .nav-shell, .navbar.mega-open .nav-shell { border-color: var(--line); background: var(--surface-solid); box-shadow: var(--shadow-sm); backdrop-filter: none; }
.brand { display: inline-flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand-emblem { display: block; width: 52px; height: 46px; object-fit: contain; object-position: center; filter: drop-shadow(0 8px 13px rgba(181,30,50,.2)); }
.brand-emblem.small { width: 68px; height: 60px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-heading); font-size: .97rem; letter-spacing: .07em; }
.brand-copy small { margin-top: .26rem; color: var(--text-soft); font-size: .56rem; font-weight: 700; letter-spacing: .22em; }
.nav-menu { display: flex; align-items: center; gap: .15rem; }
.nav-mobile-theme { display: none; }
.nav-item { position: static; }
.nav-link { display: inline-flex; align-items: center; gap: .35rem; padding: .7rem .75rem; border-radius: 10px; background: transparent; color: var(--text-soft); font-size: .875rem; font-weight: 600; cursor: pointer; transition: .2s ease; }
.nav-link svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.nav-link:hover, .nav-item.open > .nav-link { background: color-mix(in srgb, var(--surface-solid) 72%, transparent); color: var(--text); }
.nav-item.open > .nav-link svg { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.icon-button { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); cursor: pointer; transition: .2s ease; }
.icon-button:hover { border-color: rgba(181, 30, 50, .45); transform: translateY(-2px); }
.theme-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.theme-icon.moon { display: none; }
[data-theme="light"] .theme-icon.sun { display: none; }
[data-theme="light"] .theme-icon.moon { display: block; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); cursor: pointer; }
.nav-toggle span { width: 18px; height: 2px; border-radius: 5px; background: currentColor; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-backdrop { position: fixed; z-index: 89; inset: 0; background: rgba(2, 6, 16, .66); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: .25s; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

.has-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + .65rem); left: 0; min-width: 250px; padding: .6rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-solid); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s var(--ease); z-index: 105; }
.nav-item.has-dropdown:hover .dropdown-menu, .nav-item.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-link { display: flex; flex-direction: column; padding: .65rem .85rem; border-radius: 9px; transition: .15s ease; }
.dropdown-link:hover { background: var(--surface-hover); }
.dropdown-link b { font-size: .82rem; font-weight: 700; color: var(--text); }
.dropdown-link small { font-size: .68rem; color: var(--text-muted); margin-top: .15rem; }

.mega-menu { position: absolute; top: calc(100% + .65rem); left: 0; right: 0; display: grid; grid-template-columns: 260px 1fr; min-height: 430px; max-height: calc(100vh - 115px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-solid); box-shadow: var(--shadow-lg); backdrop-filter: none; opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.985); transform-origin: top; transition: .24s var(--ease); }
.nav-item.open .mega-menu { opacity: 1; visibility: visible; transform: none; }
.mega-sidebar { display: flex; flex-direction: column; min-width: 0; padding: 1.3rem 1rem 1rem; border-right: 1px solid var(--line); background: linear-gradient(160deg, rgba(181, 30, 50, .06), rgba(255, 255, 255, .015) 45%, transparent), var(--surface-solid); }
.mega-sidebar-copy { padding: .4rem .55rem 1.1rem; }
.mega-sidebar-copy .eyebrow { color: var(--red-bright); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mega-sidebar-copy p { margin-top: .55rem; color: var(--text-soft); font-size: .78rem; line-height: 1.55; }
.mega-category-list { display: grid; gap: .28rem; }
.mega-category { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: .78rem .72rem; border: 1px solid transparent; border-radius: 11px; background: transparent; color: var(--text-soft); text-align: left; cursor: pointer; transition: .2s var(--ease); }
.mega-category > span { display: flex; align-items: center; gap: .65rem; }
.mega-category i { color: var(--text-muted); font-size: .62rem; font-style: normal; font-weight: 800; }
.mega-category b { font-size: .8rem; font-weight: 700; }
.mega-category em { color: var(--text-muted); font-size: 1.1rem; font-style: normal; }
.mega-category:hover, .mega-category.active { border-color: rgba(181, 30, 50, .28); background: rgba(181, 30, 50, .08); color: var(--text); }
.mega-category.active i, .mega-category.active em { color: var(--red-bright); }
.mega-all-link { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; padding: .9rem .7rem .3rem; border-top: 1px solid var(--line); color: var(--red-bright); font-size: .78rem; font-weight: 700; }
.mega-stage { min-width: 0; max-height: calc(100vh - 115px); overflow: auto; padding: 1.55rem; background: var(--surface-solid); }
.mega-mobile-back { display: none; }
.mega-panel[hidden] { display: none !important; }
.mega-panel { animation: menuPanelIn .28s var(--ease) both; }
@keyframes menuPanelIn { from { opacity: 0; transform: translateX(12px); } }
.mega-panel-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.15rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.mega-panel-heading span { color: var(--text-muted); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.mega-panel-heading h3 { font-family: var(--font-heading); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.mega-panel-intro { max-width: 720px; margin: -.25rem 0 1.1rem; color: var(--text-soft); font-size: .8rem; }
.mega-link-grid { display: grid; gap: .45rem .6rem; }
.product-menu-grid { grid-template-columns: repeat(3, 1fr); }
.service-menu-grid, .solution-menu-grid { grid-template-columns: repeat(2, 1fr); }
.compact-menu-grid { grid-template-columns: repeat(3, 1fr); }
.enterprise-menu-grid { grid-template-columns: repeat(2, 1fr); }
.mega-card { display: flex; align-items: center; gap: .72rem; min-width: 0; padding: .65rem; border: 1px solid transparent; border-radius: 12px; transition: .2s var(--ease); }
.mega-card:hover { border-color: var(--line); background: var(--surface); transform: translateY(-2px); }
.mega-card > span:last-child { min-width: 0; }
.mega-card b, .mega-card small { display: block; overflow: hidden; text-overflow: ellipsis; }
.mega-card b { color: var(--text); font-size: .8rem; font-weight: 700; white-space: nowrap; }
.mega-card small { margin-top: .1rem; color: var(--text-muted); font-size: .67rem; white-space: nowrap; }
.menu-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 11px;
  font-family: var(--font-heading);
  font-size: .58rem;
  font-weight: 800;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}
.menu-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.mega-card:hover .menu-icon {
  transform: scale(1.08);
}
.menu-icon.red { background: rgba(225,29,72,.14); color: #FDA4AF; border-color: rgba(244,63,94,.35); }
.menu-icon.blue { background: rgba(59,130,246,.14); color: #93C5FD; border-color: rgba(96,165,250,.35); }
.menu-icon.violet { background: rgba(139,92,246,.14); color: #C4B5FD; border-color: rgba(167,139,250,.35); }
.menu-icon.gold { background: rgba(212,175,55,.14); color: #FDE047; border-color: rgba(234,179,8,.35); }
.menu-icon.rose { background: rgba(244,63,94,.14); color: #FDA4AF; border-color: rgba(251,113,133,.35); }
.menu-icon.cyan { background: rgba(6,182,212,.14); color: #67E8F9; border-color: rgba(34,211,238,.35); }
.menu-icon.orange { background: rgba(249,115,22,.14); color: #FDBA74; border-color: rgba(251,146,60,.35); }
.menu-icon.green { background: rgba(16,185,129,.14); color: #6EE7B7; border-color: rgba(52,211,153,.35); }
.menu-icon.pink { background: rgba(236,72,153,.14); color: #F9A8D4; border-color: rgba(244,114,182,.35); }

[data-theme="light"] .menu-icon.red { background: rgba(181,30,50,.1); color: #B51E32; border-color: rgba(181,30,50,.28); }
[data-theme="light"] .menu-icon.blue { background: rgba(37,99,235,.1); color: #1D4ED8; border-color: rgba(37,99,235,.28); }
[data-theme="light"] .menu-icon.violet { background: rgba(109,40,217,.1); color: #6D28D9; border-color: rgba(109,40,217,.28); }
[data-theme="light"] .menu-icon.gold { background: rgba(161,98,7,.1); color: #B45309; border-color: rgba(161,98,7,.28); }
[data-theme="light"] .menu-icon.rose { background: rgba(190,18,60,.1); color: #BE123C; border-color: rgba(190,18,60,.28); }
[data-theme="light"] .menu-icon.cyan { background: rgba(14,116,144,.1); color: #0E7490; border-color: rgba(14,116,144,.28); }
[data-theme="light"] .menu-icon.orange { background: rgba(194,65,12,.1); color: #C2410C; border-color: rgba(194,65,12,.28); }
[data-theme="light"] .menu-icon.green { background: rgba(21,128,61,.1); color: #15803D; border-color: rgba(21,128,61,.28); }
[data-theme="light"] .menu-icon.pink { background: rgba(190,24,93,.1); color: #BE185D; border-color: rgba(190,24,93,.28); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 44px; padding: .72rem 1.25rem; border: 1px solid transparent; border-radius: 13px; font-size: .86rem; font-weight: 700; transition: .28s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--gradient-red); color: #fff; box-shadow: 0 10px 28px rgba(225, 29, 72, .38), 0 0 20px rgba(225, 29, 72, .2); border: 1px solid rgba(255, 255, 255, .18); }
.btn-primary:hover { box-shadow: 0 16px 36px rgba(225, 29, 72, .55), 0 0 30px rgba(225, 29, 72, .35); }
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(19, 25, 38, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
  border-color: rgba(225, 29, 72, 0.5);
  background: linear-gradient(145deg, rgba(225, 29, 72, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%), rgba(28, 36, 52, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(225, 29, 72, 0.2);
}
[data-theme="light"] .btn-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  box-shadow: none;
}
[data-theme="light"] .btn-secondary:hover {
  border-color: rgba(181, 30, 50, .45);
  background: var(--surface-hover);
  box-shadow: none;
}
.btn-lg { min-height: 52px; padding: .9rem 1.55rem; font-size: .92rem; }
.btn-light { background: #fff; color: var(--red-dark); box-shadow: 0 12px 30px rgba(181, 30, 50, .22); }
.btn-light:hover { background: #FFF1F2; color: var(--red); }
.btn-ghost-light { border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 9.2rem 0 2rem;
  background-image: var(--gradient-hero);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 32%, rgba(225, 29, 72, 0.30) 0%, rgba(159, 18, 57, 0.14) 28%, transparent 56%),
    radial-gradient(circle at 82% 30%, rgba(255, 51, 102, 0.32) 0%, rgba(225, 29, 72, 0.18) 32%, transparent 62%),
    radial-gradient(circle at 85% 12%, rgba(251, 146, 60, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 50% 65%, rgba(181, 30, 50, 0.12) 0%, transparent 45%);
  filter: blur(48px);
  opacity: 0.85;
  transform-origin: center;
  animation: hero-ambient-drift 14s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.45), rgba(255, 255, 255, 0.35), transparent);
  box-shadow: 0 -10px 36px rgba(181, 30, 50, 0.18);
}
[data-theme="light"] .hero::before {
  opacity: 0.30;
  filter: blur(64px);
  background:
    radial-gradient(circle at 20% 36%, rgba(225, 29, 72, 0.15) 0%, transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(255, 77, 97, 0.10) 0%, transparent 28%);
}
[data-theme="light"] .hero::after {
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(181, 30, 50, 0.35), rgba(15, 23, 42, 0.12), transparent);
  box-shadow: 0 -10px 34px rgba(181, 30, 50, 0.08);
}
@keyframes hero-ambient-drift {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(0.98); }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}
.hero-grid-lines, .cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  opacity: 0.45;
}
[data-theme="light"] .hero-grid-lines { opacity: .35; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(2.5rem, 5vw, 5rem); }
.section-tag { display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .95rem; border-radius: 99px; background: rgba(225, 29, 72, 0.1); border: 1px solid rgba(225, 29, 72, 0.28); color: #FDA4AF; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
[data-theme="light"] .section-tag { background: rgba(181, 30, 50, 0.08); border-color: rgba(181, 30, 50, 0.24); color: #B51E32; }
.section-tag.light { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.1); color: #fff; }
.tag-spark { font-size: .78rem; color: #FDA4AF; animation: sparkle 2.1s ease-in-out infinite; }
[data-theme="light"] .tag-spark { color: #B51E32; }
@keyframes sparkle { 50% { transform: rotate(90deg) scale(1.28); } }
.hero-copy h1 { max-width: 740px; margin: 1.25rem 0 1.15rem; font-family: var(--font-heading); font-size: clamp(2.4rem, 4.2vw, 4.15rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.05; }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(255, 56, 104, 0.45));
}
[data-theme="light"] .gradient-text {
  filter: none;
}
.gradient-accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-copy > p { max-width: 640px; color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-proof { display: flex; align-items: center; gap: 1rem; max-width: 600px; margin-top: 1.7rem; }
.proof-score { display: flex; align-items: center; gap: .45rem; white-space: nowrap; }
.proof-score span { color: #FDA4AF; text-shadow: 0 0 10px rgba(225, 29, 72, 0.6); }
[data-theme="light"] .proof-score span { color: var(--red-bright); text-shadow: none; }
.proof-score strong { font-family: var(--font-heading); }
.proof-divider { width: 1px; height: 28px; background: var(--line-strong); }
.hero-proof p { color: var(--text-muted); font-size: .75rem; }
.hero-visual { position: relative; min-height: 520px; perspective: 1100px; }
.product-console {
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 50%;
  width: min(93%, 525px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(22, 28, 44, 0.90) 0%, rgba(10, 14, 24, 0.96) 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.75),
              0 0 60px rgba(225, 29, 72, 0.20),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translate(-50%, -50%) rotateY(-6deg) rotateX(3deg);
  animation: consoleFloat 7s ease-in-out infinite;
}
[data-theme="light"] .product-console {
  background: linear-gradient(145deg, #fff, #edf2f7);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-lg), 0 20px 50px rgba(181, 30, 50, .08);
}
@keyframes consoleFloat { 50% { transform: translate(-50%, calc(-50% - 9px)) rotateY(-3deg) rotateX(1deg); } }
.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}
[data-theme="light"] .console-topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}
.window-dots { display: flex; gap: .34rem; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); }
.window-dots span:first-child { background: #ef4444; }
.live-state { display: flex; align-items: center; gap: .4rem; font-size: .63rem; font-weight: 700; text-transform: uppercase; }
.live-state i { width: 7px; height: 7px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 5px rgba(16,185,129,.18); animation: pulseDot 1.6s ease infinite; }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }
.console-version { color: var(--text-muted); font-size: .58rem; font-weight: 700; letter-spacing: .12em; }
.console-body { padding: 1.15rem; }
.console-heading { display: flex; align-items: center; justify-content: space-between; }
.console-heading small, .console-heading strong { display: block; }
.console-heading small { color: var(--text-muted); font-size: .62rem; text-transform: uppercase; }
.console-heading strong { margin-top: .18rem; font-family: var(--font-heading); font-size: 1.15rem; }
.trend-badge {
  padding: .32rem .65rem;
  border-radius: 99px;
  background: rgba(225, 29, 72, 0.18);
  border: 1px solid rgba(225, 29, 72, 0.32);
  color: #FDA4AF;
  font-size: .65rem;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.22);
}
[data-theme="light"] .trend-badge {
  background: rgba(181, 30, 50, 0.12);
  border-color: rgba(181, 30, 50, 0.25);
  color: #B51E32;
  box-shadow: none;
}
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1rem; }
.metric-grid article {
  position: relative;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(30, 40, 62, 0.65) 0%, rgba(16, 22, 36, 0.75) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: .25s ease;
}
.metric-grid article:hover {
  border-color: rgba(225, 29, 72, 0.45);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(225, 29, 72, 0.2);
}
[data-theme="light"] .metric-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.metric-icon { display: grid; place-items: center; width: 27px; height: 27px; margin-bottom: .65rem; border-radius: 8px; font-family: var(--font-heading); font-size: .65rem; font-style: normal; font-weight: 800; }
.metric-icon.red { background: rgba(225, 29, 72, 0.18); color: #FDA4AF; border: 1px solid rgba(225, 29, 72, 0.3); }
.metric-icon.blue { background: rgba(255, 255, 255, 0.10); color: #F8FAFC; border: 1px solid rgba(255, 255, 255, 0.16); }
.metric-icon.gold { background: rgba(251, 146, 60, 0.18); color: #FDBA74; border: 1px solid rgba(251, 146, 60, 0.3); }
[data-theme="light"] .metric-icon.red { background: rgba(181, 30, 50, 0.14); color: var(--red-bright); border: none; }
[data-theme="light"] .metric-icon.blue { background: rgba(255, 255, 255, 0.08); color: var(--text); border: none; }
[data-theme="light"] .metric-icon.gold { background: rgba(225, 29, 72, 0.14); color: var(--red-bright); border: none; }
.metric-grid small, .metric-grid strong, .metric-grid em { display: block; }
.metric-grid small { color: #94A3B8; font-size: .57rem; }
.metric-grid strong { margin-top: .12rem; font-family: var(--font-heading); font-size: 1.04rem; color: #FFFFFF; }
.metric-grid em { color: #64748B; font-size: .52rem; font-style: normal; }
[data-theme="light"] .metric-grid small { color: var(--text-muted); }
[data-theme="light"] .metric-grid strong { color: var(--text); }
[data-theme="light"] .metric-grid em { color: var(--text-soft); }
.activity-panel {
  margin-top: .75rem;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(30, 40, 62, 0.60) 0%, rgba(16, 22, 36, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .activity-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.activity-head { display: flex; justify-content: space-between; color: var(--text-soft); font-size: .58rem; }
.activity-head small { color: var(--text-soft); }
.chart-bars { display: flex; align-items: end; gap: .36rem; height: 74px; margin-top: .5rem; border-bottom: 1px solid var(--line); }
.chart-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #FF3366 0%, #E11D48 60%, rgba(181, 30, 50, 0.25) 100%);
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.35);
  transform-origin: bottom;
  animation: growBar 1.2s var(--ease) both;
}
[data-theme="light"] .chart-bars i {
  background: linear-gradient(180deg, var(--red-bright), rgba(181,30,50,.16));
  box-shadow: none;
}
@keyframes growBar { from { transform: scaleY(0); } }
.orbit-ring {
  position: absolute;
  top: 43%;
  left: 50%;
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.06);
}
.orbit-one { width: 570px; height: 570px; animation: orbitSpin 26s linear infinite; }
.orbit-two { width: 430px; height: 430px; border-color: rgba(255, 255, 255, 0.09); border-style: dashed; animation: orbitSpin 20s linear infinite reverse; }
[data-theme="light"] .orbit-ring { border-color: rgba(15, 23, 42, 0.07); box-shadow: none; }
[data-theme="light"] .orbit-two { border-color: rgba(15, 23, 42, 0.06); }
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.float-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 170px;
  padding: .75rem .95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 40, 60, 0.94) 0%, rgba(16, 22, 36, 0.97) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.58),
              0 0 28px rgba(225, 29, 72, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #FFFFFF;
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(225, 29, 72, 0.18);
  color: #FDA4AF;
  border: 1px solid rgba(225, 29, 72, 0.35);
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.25);
}
.float-chip b, .float-chip small { display: block; }
.float-chip b { font-size: .72rem; color: #FFFFFF; }
.float-chip small { color: #94A3B8; font-size: .56rem; }
[data-theme="light"] .float-chip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  color: var(--text);
  backdrop-filter: blur(14px);
}
[data-theme="light"] .float-chip > span {
  background: rgba(181, 30, 50, 0.12);
  color: var(--red);
  border-color: rgba(181, 30, 50, 0.25);
  box-shadow: none;
}
[data-theme="light"] .float-chip b { color: #0F172A; }
[data-theme="light"] .float-chip small { color: #64748B; }
.chip-people { top: 4%; left: -1%; }
.chip-finance { top: 68%; right: -3%; animation-delay: -1.6s; }
.chip-ai { bottom: 0; left: 7%; animation-delay: -3.2s; }
@keyframes chipFloat { 50% { transform: translateY(-9px); } }
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3.6rem; padding: 1.25rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%); }
[data-theme="light"] .hero-stats { border-top: 1px solid var(--line); background: none; }
.hero-stats article { padding: .5rem 1.3rem; border-right: 1px solid var(--line); }
.hero-stats article:first-child { padding-left: 0; }
.hero-stats article:last-child { border-right: 0; }
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { font-family: var(--font-heading); font-size: 1.45rem; color: var(--text); }
.hero-stats span { color: var(--text-muted); font-size: .67rem; }
/* ==========================================================================
   TRUST & CAPABILITY SHOWCASE TICKER (SILKY SMOOTH SPOTLIGHT)
   ========================================================================== */
.trust-strip {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 3rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 19, 27, 0.85) 0%, rgba(9, 11, 16, 0.96) 100%);
}
[data-theme="light"] .trust-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.trust-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(850px, 90vw);
  height: 220px;
  background: radial-gradient(ellipse, rgba(225, 29, 72, 0.12) 0%, rgba(181, 30, 50, 0.04) 45%, transparent 70%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
}
[data-theme="light"] .trust-ambient-glow {
  background: radial-gradient(ellipse, rgba(244, 63, 94, 0.08) 0%, rgba(225, 29, 72, 0.02) 45%, transparent 70%);
}

.trust-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem auto;
  position: relative;
  z-index: 1;
}

.trust-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.9rem;
  border-radius: 9999px;
  background: rgba(225, 29, 72, 0.10);
  border: 1px solid rgba(225, 29, 72, 0.28);
  color: #FB7185;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.85rem;
}
[data-theme="light"] .trust-pill-tag {
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.22);
  color: #BE123C;
}
.trust-pill-tag svg {
  color: var(--red-bright);
}

.trust-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.32;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.trust-subtext {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Ticker Shell with Full-Width Double-Ended Fade Mask */
.logo-ticker {
  width: 100%;
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  z-index: 1;
  padding: 1.6rem 0 1.85rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 97.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 97.5%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  animation: ticker 42s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.logo-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Individual Showcase Card */
.ticker-card {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 64px;
  padding: 0.72rem 1.15rem;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-shrink: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Fluid continuous GPU accelerated transform calculated by center spotlight engine */
  transform: translate3d(0, var(--card-lift, 0px), 0) scale(var(--card-scale, 0.94));
  opacity: var(--card-opacity, 0.74);
  z-index: var(--card-z, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22),
              0 calc(var(--card-glow, 0) * 10px) calc(var(--card-glow, 0) * 28px) rgba(0, 0, 0, calc(var(--card-glow, 0) * 0.45)),
              0 0 calc(var(--card-glow, 0) * 24px) rgba(225, 29, 72, calc(var(--card-glow, 0) * 0.28));
  border-color: rgba(225, 29, 72, calc(0.12 + var(--card-glow, 0) * 0.55));
  transition: border-color 0.15s ease;
}

[data-theme="light"] .ticker-card {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04),
              0 calc(var(--card-glow, 0) * 10px) calc(var(--card-glow, 0) * 26px) rgba(15, 23, 42, calc(var(--card-glow, 0) * 0.10)),
              0 calc(var(--card-glow, 0) * 4px) calc(var(--card-glow, 0) * 10px) rgba(15, 23, 42, calc(var(--card-glow, 0) * 0.05)),
              0 0 calc(var(--card-glow, 0) * 18px) rgba(225, 29, 72, calc(var(--card-glow, 0) * 0.14));
  border-color: rgba(225, 29, 72, calc(0.14 + var(--card-glow, 0) * 0.44));
}

/* Pillar Specific Accents */
.ticker-card.strategy {
  background: linear-gradient(135deg, rgba(225, 29, 72, calc(0.08 + var(--card-glow, 0) * 0.12)) 0%, rgba(181, 30, 50, calc(0.04 + var(--card-glow, 0) * 0.06)) 100%), var(--surface-solid);
  border-color: rgba(225, 29, 72, calc(0.20 + var(--card-glow, 0) * 0.55));
}
[data-theme="light"] .ticker-card.strategy {
  background: linear-gradient(135deg, rgba(225, 29, 72, calc(0.04 + var(--card-glow, 0) * 0.08)) 0%, rgba(181, 30, 50, calc(0.02 + var(--card-glow, 0) * 0.04)) 100%), #FFFFFF;
  border-color: rgba(225, 29, 72, calc(0.22 + var(--card-glow, 0) * 0.45));
}

.ticker-card.economy {
  background: linear-gradient(135deg, rgba(56, 189, 248, calc(0.07 + var(--card-glow, 0) * 0.11)) 0%, rgba(37, 99, 235, calc(0.03 + var(--card-glow, 0) * 0.05)) 100%), var(--surface-solid);
  border-color: rgba(56, 189, 248, calc(0.20 + var(--card-glow, 0) * 0.50));
}
[data-theme="light"] .ticker-card.economy {
  background: linear-gradient(135deg, rgba(56, 189, 248, calc(0.035 + var(--card-glow, 0) * 0.07)) 0%, rgba(37, 99, 235, calc(0.015 + var(--card-glow, 0) * 0.03)) 100%), #FFFFFF;
  border-color: rgba(56, 189, 248, calc(0.22 + var(--card-glow, 0) * 0.40));
}

.ticker-card.people {
  background: linear-gradient(135deg, rgba(245, 158, 11, calc(0.07 + var(--card-glow, 0) * 0.11)) 0%, rgba(217, 119, 6, calc(0.03 + var(--card-glow, 0) * 0.05)) 100%), var(--surface-solid);
  border-color: rgba(245, 158, 11, calc(0.20 + var(--card-glow, 0) * 0.50));
}
[data-theme="light"] .ticker-card.people {
  background: linear-gradient(135deg, rgba(245, 158, 11, calc(0.035 + var(--card-glow, 0) * 0.07)) 0%, rgba(217, 119, 6, calc(0.015 + var(--card-glow, 0) * 0.03)) 100%), #FFFFFF;
  border-color: rgba(245, 158, 11, calc(0.22 + var(--card-glow, 0) * 0.40));
}

.ticker-card.technology {
  background: linear-gradient(135deg, rgba(168, 85, 247, calc(0.07 + var(--card-glow, 0) * 0.11)) 0%, rgba(225, 29, 72, calc(0.03 + var(--card-glow, 0) * 0.05)) 100%), var(--surface-solid);
  border-color: rgba(168, 85, 247, calc(0.20 + var(--card-glow, 0) * 0.50));
}
[data-theme="light"] .ticker-card.technology {
  background: linear-gradient(135deg, rgba(168, 85, 247, calc(0.035 + var(--card-glow, 0) * 0.07)) 0%, rgba(225, 29, 72, calc(0.015 + var(--card-glow, 0) * 0.03)) 100%), #FFFFFF;
  border-color: rgba(168, 85, 247, calc(0.22 + var(--card-glow, 0) * 0.40));
}

/* Card Shield & Icon */
.ticker-logo-shield {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transform: scale(calc(1 + var(--card-glow, 0) * 0.08));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

[data-theme="light"] .ticker-logo-shield {
  background: rgba(15, 23, 42, 0.03);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.ticker-logo-shield svg {
  width: 19px;
  height: 19px;
  color: var(--text);
  transition: color 0.2s ease;
}

.ticker-card.strategy .ticker-logo-shield {
  border-color: rgba(225, 29, 72, 0.35);
  background: rgba(225, 29, 72, 0.12);
}
.ticker-card.strategy .ticker-logo-shield svg { color: #FB7185; }
[data-theme="light"] .ticker-card.strategy .ticker-logo-shield svg { color: #BE123C; }

.ticker-card.economy .ticker-logo-shield {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
}
.ticker-card.economy .ticker-logo-shield svg { color: #38BDF8; }
[data-theme="light"] .ticker-card.economy .ticker-logo-shield svg { color: #0284C7; }

.ticker-card.people .ticker-logo-shield {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
}
.ticker-card.people .ticker-logo-shield svg { color: #FBBF24; }
[data-theme="light"] .ticker-card.people .ticker-logo-shield svg { color: #D97706; }

.ticker-card.technology .ticker-logo-shield {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.12);
}
.ticker-card.technology .ticker-logo-shield svg { color: #C084FC; }
[data-theme="light"] .ticker-card.technology .ticker-logo-shield svg { color: #7C3AED; }

/* Card Text Info */
.ticker-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.22;
}

.ticker-entity {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.ticker-role {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

/* Reduced Motion Mode */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .ticker-card {
    scroll-snap-align: center;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================================
   VIDEO SHOWCASE SECTION (Sleek 16:9 Overview)
   ========================================================================== */
.video-section {
  position: relative;
  padding: 5rem 0 3.5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(225, 29, 72, 0.15) 0%, rgba(181, 30, 50, 0.05) 45%, transparent 75%);
}
[data-theme="light"] .video-section {
  background: radial-gradient(ellipse 75% 55% at 50% 50%, rgba(244, 63, 94, 0.04) 0%, rgba(251, 113, 133, 0.01) 45%, transparent 72%);
}
.video-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.video-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-top: 1rem;
}
.video-section-header p {
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.video-showcase-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.video-showcase-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000000;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.75), 0 0 55px rgba(225, 29, 72, 0.14);
}
[data-theme="light"] .video-showcase-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.12), 0 0 35px rgba(181, 30, 50, 0.06);
}
.video-showcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(7, 14, 27, 0.4), rgba(7, 14, 27, 0.82));
  backdrop-filter: blur(3px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 5;
}
.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.btn-video-play {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem 1.75rem 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(14, 26, 46, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-heading);
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s ease;
}
.btn-video-play:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(181, 30, 50, 0.35);
  border-color: rgba(217, 37, 60, 0.5);
}
.play-btn-circle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(181, 30, 50, 0.45);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.btn-video-play:hover .play-btn-circle {
  transform: scale(1.1);
}
.play-btn-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.video-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(26, 34, 52, 0.75) 0%, rgba(14, 18, 30, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="light"] .video-caption-bar {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.video-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px rgba(217, 37, 60, 0.6);
}
.video-feature-pill strong {
  color: var(--text);
  font-weight: 700;
}
.video-feature-pill span {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.video-caption-text {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.section { position: relative; padding: clamp(5rem, 8vw, 8rem) 0; }
.section-alt {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(225, 29, 72, 0.15) 0%, rgba(181, 30, 50, 0.05) 45%, transparent 72%),
              radial-gradient(ellipse 60% 45% at 88% 60%, rgba(225, 29, 72, 0.11) 0%, transparent 60%),
              radial-gradient(ellipse 55% 40% at 12% 80%, rgba(181, 30, 50, 0.08) 0%, transparent 55%),
              linear-gradient(180deg, rgba(16, 22, 34, 0.90) 0%, rgba(10, 13, 20, 0.96) 100%);
}
[data-theme="light"] .section-alt {
  border-block: 1px solid rgba(15, 23, 42, 0.07);
  background: radial-gradient(ellipse 75% 50% at 50% 0%, rgba(244, 63, 94, 0.038) 0%, transparent 65%),
              linear-gradient(180deg, #F1F5F9 0%, #EEF2F6 100%);
}
#produk {
  position: relative;
  background:
    radial-gradient(ellipse 85% 55% at 50% 12%, rgba(225, 29, 72, 0.22) 0%, rgba(181, 30, 50, 0.08) 46%, transparent 75%),
    radial-gradient(ellipse 65% 50% at 5% 55%, rgba(225, 29, 72, 0.16) 0%, rgba(181, 30, 50, 0.05) 45%, transparent 65%),
    radial-gradient(ellipse 65% 50% at 95% 75%, rgba(225, 29, 72, 0.14) 0%, rgba(181, 30, 50, 0.04) 40%, transparent 60%),
    linear-gradient(180deg, rgba(16, 12, 24, 0.45) 0%, rgba(9, 11, 16, 0.95) 45%, rgba(18, 14, 26, 0.55) 100%);
}
[data-theme="light"] #produk {
  background: radial-gradient(ellipse 60% 45% at 12% 25%, rgba(244, 63, 94, 0.038) 0%, transparent 60%);
}
.section-header { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-header h2, .ecosystem-copy h2, .faq-heading h2 { margin-top: 1rem; font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.65rem); letter-spacing: -.04em; line-height: 1.08; }
.section-header > p { max-width: 660px; margin: 1rem auto 0; color: var(--text-soft); font-size: .95rem; }
.section-header-split { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 2rem; max-width: none; text-align: left; }
.section-header-split > p { margin: 0 0 .25rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top-color: rgba(225, 29, 72, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(28, 28, 44, 0.65) 0%, rgba(14, 16, 26, 0.78) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 8px 24px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: .35s var(--ease);
}
.product-card::after { content: ''; position: absolute; right: -45px; bottom: -45px; width: 110px; height: 110px; border: 1px solid rgba(181,30,50,.16); border-radius: 50%; transition: .35s; }
.product-card:hover { border-color: rgba(225, 29, 72, .45); background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%), var(--surface-hover); box-shadow: var(--red-glow); transform: translateY(-6px); }
.product-card:hover::after { transform: scale(1.35); }
.product-number { position: absolute; top: 1.2rem; right: 1.2rem; color: var(--text-muted); font-family: var(--font-heading); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.product-symbol { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(181,30,50,.25); border-radius: 14px; background: rgba(181,30,50,.08); color: var(--red-bright); font-family: var(--font-heading); font-size: .82rem; font-weight: 800; box-shadow: inset 0 0 18px rgba(181,30,50,.06); }
.product-card h3 { margin-top: 1.8rem; font-family: var(--font-heading); font-size: 1.28rem; }
.product-card p { margin-top: .55rem; color: var(--text-soft); font-size: .78rem; line-height: 1.7; }
.product-card a { position: absolute; z-index: 2; bottom: 1.35rem; display: inline-flex; gap: .45rem; color: var(--red-bright); font-size: .7rem; font-weight: 700; }
.product-card.featured { background: linear-gradient(150deg, rgba(181,30,50,.14), rgba(26, 34, 52, 0.65)); }
[data-theme="light"] .product-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(150deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}
[data-theme="light"] .product-card.featured {
  background: linear-gradient(150deg, rgba(181,30,50,.06), #FFFFFF);
}

.erp-suite {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 70% 55% at 85% 15%, rgba(225, 29, 72, 0.18) 0%, rgba(181, 30, 50, 0.06) 42%, transparent 68%),
              radial-gradient(ellipse 55% 45% at 15% 85%, rgba(225, 29, 72, 0.10) 0%, transparent 60%),
              linear-gradient(145deg, rgba(24, 32, 50, 0.70) 0%, rgba(12, 16, 26, 0.88) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scroll-margin-top: 110px;
}
[data-theme="light"] .erp-suite {
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: radial-gradient(ellipse 65% 55% at 85% 15%, rgba(244, 63, 94, 0.05) 0%, transparent 60%),
              linear-gradient(145deg, #FFFFFF 0%, #F1F5F9 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.erp-suite-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.erp-suite-heading h3 { max-width: 650px; margin-top: .8rem; font-family: var(--font-heading); font-size: clamp(1.9rem, 3.3vw, 3.1rem); letter-spacing: -.035em; line-height: 1.08; }
.erp-suite-heading > p { color: var(--text-soft); font-size: .83rem; line-height: 1.8; }
.erp-module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.erp-module-card {
  min-height: 230px;
  padding: 1.25rem;
  background: rgba(18, 24, 38, 0.85);
  transition: .3s var(--ease);
}
[data-theme="light"] .erp-module-card {
  background: #FFFFFF;
}
.erp-module-card:hover { position: relative; z-index: 1; background: var(--surface-hover); box-shadow: inset 0 2px var(--red-bright); }
.erp-module-card span { color: var(--red-bright); font-family: var(--font-heading); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.erp-module-card h4 { margin-top: 2.4rem; font-family: var(--font-heading); font-size: 1.08rem; line-height: 1.25; }
.erp-module-card p { margin-top: .65rem; color: var(--text-soft); font-size: .7rem; line-height: 1.75; }
.hris-highlight { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.5rem; margin-top: 1.25rem; padding: clamp(1.6rem, 4vw, 2.7rem); border: 1px solid rgba(181,30,50,.28); border-radius: var(--radius-md); background: linear-gradient(120deg, rgba(181,30,50,.1), rgba(255,255,255,.02)); }
.hris-kicker { color: #FCA5A5; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hris-highlight h3 { margin-top: .7rem; font-family: var(--font-heading); font-size: clamp(1.65rem, 2.5vw, 2.4rem); }
.hris-highlight p { margin-top: .7rem; color: var(--text-soft); font-size: .78rem; line-height: 1.75; }
.hris-highlight ul { display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; gap: .75rem; list-style: none; }
.hris-highlight li { padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--text-soft); font-size: .7rem; font-weight: 700; }
.hris-highlight li::before { content: '✓'; margin-right: .55rem; color: var(--red-bright); }

.solution-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(22, 28, 44, 0.90) 0%, rgba(12, 16, 26, 0.96) 100%);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
[data-theme="light"] .solution-shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #FFFFFF;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}
.solution-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.solution-tab { display: flex; align-items: center; justify-content: center; gap: .75rem; padding: 1.2rem 1rem; border-right: 1px solid var(--line); background: transparent; color: var(--text-soft); font-size: .76rem; font-weight: 700; cursor: pointer; transition: .25s; }
.solution-tab:last-child { border-right: 0; }
.solution-tab span { color: var(--text-muted); font-family: var(--font-heading); font-size: .6rem; }
.solution-tab.active { background: rgba(181,30,50,.08); color: var(--text); box-shadow: inset 0 -2px var(--red); }
.solution-tab.active span { color: var(--red-bright); }
[data-theme="light"] .solution-tab.active span { color: var(--red); }
.solution-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 470px; }
.panel-copy { padding: clamp(2rem, 5vw, 4rem); }
.panel-label { color: var(--red-bright); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.panel-copy h3 { max-width: 520px; margin-top: .85rem; font-family: var(--font-heading); font-size: clamp(1.85rem, 3vw, 2.9rem); line-height: 1.1; }
.panel-copy p { margin-top: 1rem; color: var(--text-soft); font-size: .86rem; }
.panel-copy ul { display: grid; gap: .55rem; margin-top: 1.4rem; list-style: none; }
.panel-copy li { color: var(--text-soft); font-size: .77rem; }
.panel-copy li::before { content: '✓'; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: .6rem; border-radius: 50%; background: rgba(181,30,50,.12); color: var(--red-bright); font-size: .62rem; }
.panel-visual { position: relative; min-height: 410px; overflow: hidden; border-left: 1px solid var(--line); background: radial-gradient(circle at 50% 45%, rgba(181,30,50,.12), transparent 48%), rgba(255,255,255,.012); }
.mini-card { position: absolute; width: 180px; padding: 1rem; border: 1px solid var(--line-strong); border-radius: 16px; background: color-mix(in srgb, var(--surface-solid) 90%, transparent); box-shadow: var(--shadow-sm); }
.mini-card b, .mini-card small, .mini-card strong { display: block; }
.mini-card b { font-size: .7rem; }
.mini-card small { margin-top: .25rem; color: var(--text-muted); font-size: .58rem; }
.mini-card strong { margin-top: 1.2rem; font-family: var(--font-heading); font-size: 1.6rem; color: var(--red-bright); }
.mini-card.one { top: 18%; left: 12%; transform: rotate(-7deg); }
.mini-card.two { top: 38%; right: 8%; z-index: 2; transform: rotate(6deg); }
.mini-card.three { bottom: 9%; left: 22%; transform: rotate(-2deg); }
.network-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid rgba(181,30,50,.45); border-radius: 50%; background: var(--gradient-red); color: #fff; font-family: var(--font-heading); font-weight: 800; box-shadow: 0 0 0 15px rgba(181,30,50,.08), var(--red-glow); transform: translate(-50%,-50%); }
.network-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-visual path { fill: none; stroke: rgba(181,30,50,.25); stroke-width: 1.2; stroke-dasharray: 7 6; }
.network-visual .node { position: absolute; z-index: 2; display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface-solid); color: var(--text-soft); font-size: .66rem; font-style: normal; font-weight: 700; }
.network-visual .n1 { top: 12%; left: 10%; }.network-visual .n2 { top: 12%; right: 10%; }.network-visual .n3 { bottom: 12%; left: 10%; }.network-visual .n4 { right: 10%; bottom: 12%; color: var(--red-bright); }
.service-visual { display: grid; grid-template-columns: 1fr 1fr; place-items: center; padding: 2rem; }
.service-ring { display: grid; place-items: center; align-content: center; width: 180px; height: 180px; border: 1px solid rgba(181,30,50,.35); border-radius: 50%; box-shadow: 0 0 0 18px rgba(181,30,50,.04), 0 0 0 36px rgba(181,30,50,.015); }
.service-ring span { font-family: var(--font-heading); font-size: 2.35rem; font-weight: 800; color: var(--red-bright); }
.service-ring small { color: var(--text-muted); }
.service-list { display: grid; width: 100%; gap: .7rem; }
.service-list span { display: flex; justify-content: space-between; padding: .8rem; border-bottom: 1px solid var(--line); font-size: .73rem; font-weight: 700; }
.service-list i { color: var(--red-bright); font-style: normal; }

.ecosystem {
  overflow: hidden;
  background: radial-gradient(circle at 62% 48%, rgba(225, 29, 72, 0.16) 0%, rgba(181, 30, 50, 0.05) 45%, transparent 62%),
              radial-gradient(circle at 24% 56%, rgba(225, 29, 72, 0.10) 0%, transparent 50%),
              radial-gradient(ellipse 50% 35% at 50% 10%, rgba(225, 29, 72, 0.09) 0%, transparent 55%);
}
[data-theme="light"] .ecosystem {
  background: radial-gradient(circle at 62% 48%, rgba(244, 63, 94, 0.045) 0%, transparent 52%),
              radial-gradient(circle at 24% 56%, rgba(251, 146, 60, 0.025) 0%, transparent 44%);
}
.ecosystem-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 4rem; }
.ecosystem-copy > p { margin-top: 1.2rem; color: var(--text-soft); font-size: .9rem; }
.check-list { display: grid; gap: .8rem; margin-top: 1.5rem; list-style: none; }
.check-list li { display: flex; gap: .7rem; color: var(--text-soft); font-size: .78rem; }
.check-list li::before { content: ''; flex: 0 0 auto; width: 8px; height: 8px; margin-top: .55rem; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(181,30,50,.12); }
.text-link { display: inline-flex; gap: .5rem; margin-top: 1.6rem; color: var(--red-bright); font-size: .78rem; font-weight: 700; }
.ecosystem-map { position: relative; min-height: 540px; }
.connector-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.connector-lines path { fill: none; stroke: rgba(181,30,50,.22); stroke-width: 1.2; stroke-dasharray: 7 7; animation: dashFlow 12s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -120; } }
.ecosystem-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 160px; height: 160px; border: 1px solid rgba(181,30,50,.38); border-radius: 50%; background: radial-gradient(circle, rgba(181,30,50,.18), var(--surface-solid) 68%); box-shadow: 0 0 0 28px rgba(181,30,50,.03), var(--red-glow); transform: translate(-50%,-50%); }
.ecosystem-core b { margin-top: .7rem; font-family: var(--font-heading); color: #FFFFFF; }
.ecosystem-core small { color: var(--text-muted); font-size: .58rem; }
.ecosystem-node {
  position: absolute;
  z-index: 2;
  width: 152px;
  padding: .8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(28, 36, 56, 0.92) 0%, rgba(14, 18, 30, 0.96) 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="light"] .ecosystem-node {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.ecosystem-node i { color: var(--red-bright); font-size: .54rem; font-style: normal; font-weight: 800; }
.ecosystem-node b, .ecosystem-node small { display: block; }
.ecosystem-node b { margin-top: .15rem; font-size: .73rem; }
.ecosystem-node small { color: var(--text-muted); font-size: .56rem; }
.node-people { top: 3%; left: 3%; }.node-ops { top: 3%; right: 3%; }.node-fin { bottom: 20%; left: 0; }.node-customer { right: 0; bottom: 20%; }.node-connect { bottom: 0; left: 50%; transform: translateX(-50%); }

.foundation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.foundation-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(26, 34, 52, 0.55) 0%, rgba(13, 17, 28, 0.70) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: .3s var(--ease);
}
.foundation-card:hover {
  border-color: rgba(225, 29, 72, .45);
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%), var(--surface-hover);
  box-shadow: var(--red-glow);
  transform: translateY(-5px);
}
.foundation-card > span { color: var(--red-bright); font-family: var(--font-heading); font-size: .64rem; font-weight: 800; }
.foundation-card h3 { max-width: 350px; margin-top: 2.2rem; font-family: var(--font-heading); font-size: 1.34rem; }
.foundation-card p { max-width: 410px; margin-top: .55rem; color: var(--text-soft); font-size: .77rem; }
.foundation-card.large { grid-row: span 2; min-height: 476px; background: linear-gradient(150deg, rgba(181,30,50,.14), rgba(26, 34, 52, 0.68)); }
.foundation-card.wide { grid-column: span 2; }
.foundation-card.wide strong { position: absolute; right: 1.4rem; bottom: 1.4rem; color: var(--text-muted); font-family: var(--font-heading); font-size: .63rem; letter-spacing: .12em; }
.foundation-motif { position: absolute; right: -40px; bottom: -40px; width: 245px; height: 245px; }
.foundation-motif i { position: absolute; inset: calc(var(--i, 0) * 20px); border: 1px solid rgba(181,30,50,.2); border-radius: 50%; }
.foundation-motif i:nth-child(2) { --i: 1; }.foundation-motif i:nth-child(3) { --i: 2; }.foundation-motif i:nth-child(4) { --i: 3; background: rgba(181,30,50,.06); }
[data-theme="light"] .foundation-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(150deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .foundation-card.large {
  background: linear-gradient(150deg, rgba(181,30,50,.08), #FFFFFF);
}

.story-slider { position: relative; min-height: 360px; }
.story-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 3rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 40, 62, 0.75) 0%, rgba(14, 18, 30, 0.90) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(26px);
  transition: .45s var(--ease);
}
[data-theme="light"] .story-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}
.story-card.active { opacity: 1; visibility: visible; transform: none; }
.story-metric { display: grid; grid-template-columns: auto 1fr; align-content: center; gap: .4rem 1rem; }
.story-metric strong { color: var(--red-bright); font-family: var(--font-heading); font-size: 2.65rem; line-height: 1; }
.story-metric span { align-self: center; max-width: 170px; color: var(--text-soft); font-size: .7rem; }
.story-card blockquote { align-self: center; font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 2.2rem); line-height: 1.35; }
.story-person { grid-column: 2; display: flex; align-items: center; gap: .7rem; }
.story-person > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-red); color: #fff; font-size: .65rem; font-weight: 800; }
.story-person b, .story-person small { display: block; }
.story-person b { font-size: .7rem; }.story-person small { color: var(--text-muted); font-size: .58rem; }
.slider-buttons { display: flex; gap: .5rem; justify-self: end; }
.slider-buttons button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; transition: .2s; }
.slider-buttons button:hover { border-color: var(--red); color: var(--red-bright); }
.slider-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1.25rem; }
.slider-dots button { width: 8px; height: 8px; border-radius: 99px; background: var(--text-muted); cursor: pointer; transition: .2s; }
.slider-dots button.active { width: 28px; background: var(--red); }

.stories {
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 85% 50%, rgba(225, 29, 72, 0.14) 0%, rgba(181, 30, 50, 0.04) 45%, transparent 65%);
}
[data-theme="light"] .stories {
  background: radial-gradient(ellipse 60% 45% at 85% 50%, rgba(244, 63, 94, 0.035) 0%, transparent 60%);
}
.resources {
  position: relative;
  padding-top: 2rem;
  background: radial-gradient(ellipse 70% 50% at 15% 50%, rgba(225, 29, 72, 0.14) 0%, rgba(181, 30, 50, 0.04) 45%, transparent 65%);
}
[data-theme="light"] .resources {
  background: radial-gradient(ellipse 60% 45% at 15% 50%, rgba(244, 63, 94, 0.035) 0%, transparent 60%);
}
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.resource-card {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(26, 34, 52, 0.55) 0%, rgba(13, 17, 28, 0.70) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: .3s var(--ease);
}
.resource-card:hover {
  border-color: rgba(225, 29, 72, .45);
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%), var(--surface-hover);
  box-shadow: var(--red-glow);
  transform: translateY(-6px);
}
.resource-card > span { color: var(--red-bright); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.resource-card h3 { margin-top: 2.4rem; font-family: var(--font-heading); font-size: 1.4rem; }
.resource-card p { min-height: 80px; margin-top: .7rem; color: var(--text-soft); font-size: .75rem; }
.resource-card b { color: var(--red-bright); font-size: .7rem; }
[data-theme="light"] .resource-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(150deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.faq {
  position: relative;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse 75% 50% at 50% 20%, rgba(225, 29, 72, 0.14) 0%, rgba(181, 30, 50, 0.04) 45%, transparent 70%);
}
[data-theme="light"] .faq {
  background: radial-gradient(ellipse 70% 45% at 50% 30%, rgba(244, 63, 94, 0.03) 0%, transparent 60%);
}
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 5rem; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading p { margin-top: 1rem; color: var(--text-soft); font-size: .82rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.35rem 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { padding-right: 1rem; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.faq-item button i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: .25s; }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open button { color: var(--red-bright); }
.faq-item.open button i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer p { min-height: 0; overflow: hidden; color: var(--text-soft); font-size: .78rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 2rem 1.35rem 0; }

.cta-section { padding-top: 2rem; }
.cta-card { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem); border-radius: var(--radius-xl); background: var(--gradient-red); color: #fff; text-align: center; box-shadow: 0 35px 100px rgba(181,30,50,.38), 0 0 50px rgba(181,30,50,.18); border: 1px solid rgba(255,255,255,.15); }
.cta-card::before, .cta-card::after { content: ''; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.cta-card::before { top: -220px; left: -90px; }.cta-card::after { right: -100px; bottom: -230px; }
.cta-card > *:not(.cta-grid) { position: relative; z-index: 1; }
.cta-card h2 { max-width: 820px; margin: 1rem auto; font-family: var(--font-heading); font-size: clamp(2.25rem, 4.8vw, 4.2rem); letter-spacing: -.04em; line-height: 1.03; }
.cta-card > p { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,.78); font-size: .9rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.8rem; }
.cta-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; color: rgba(255,255,255,.72); font-size: .65rem; }

/* ==========================================================================
   FOOTER (PT Sayap Merah Putih — Midnight Royal Sapphire)
   ========================================================================== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  background: radial-gradient(ellipse 70% 35% at 50% 0%, rgba(225, 29, 72, 0.14) 0%, transparent 65%),
              linear-gradient(180deg, #090B10 0%, #050608 100%);
  border-top: 1px solid var(--line);
  color: #F8FAFC;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.45), rgba(255, 77, 97, 0.5), transparent);
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.3);
  pointer-events: none;
}

[data-theme="light"] .footer {
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: #0F172A;
}

[data-theme="light"] .footer::before {
  background: linear-gradient(90deg, transparent, rgba(181, 30, 50, 0.35), transparent);
  box-shadow: none;
}

.footer-top,
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem 1.75rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}

.footer-emblem {
  width: 58px;
  height: auto;
  aspect-ratio: 640 / 560;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(181, 30, 50, 0.25));
}

.footer-brand p.footer-tagline,
.footer-brand p {
  max-width: 320px;
  margin: 1.1rem 0 1.25rem;
  color: var(--text-soft);
  font-size: .82rem;
  line-height: 1.62;
}

.footer-contact-compact {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  width: 100%;
  max-width: 320px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.footer-contact-compact:hover {
  background: rgba(181, 30, 50, 0.06);
  border-color: rgba(181, 30, 50, 0.3);
}

[data-theme="light"] .footer-contact-compact {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(181, 30, 50, 0.15);
}

.footer-contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red-bright);
}

[data-theme="light"] .footer-contact-label {
  color: var(--red);
}

.footer-contact-compact p {
  margin: 0;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.footer-brief-btn {
  align-self: flex-start;
  margin-top: .25rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4,
.footer h3 {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.15rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}

[data-theme="light"] .footer-col h4,
[data-theme="light"] .footer h3 {
  color: var(--text);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col li {
  margin: 0;
  padding: 0;
}

.footer-col a,
.footer-grid > div > a:not(.brand) {
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: .82rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-col a:hover,
.footer-grid > div > a:not(.brand):hover {
  color: var(--red-bright);
  transform: translateX(4px);
}

[data-theme="light"] .footer-col a:hover,
[data-theme="light"] .footer-grid > div > a:not(.brand):hover {
  color: var(--red);
}

.footer-col a.footer-link-highlight {
  color: var(--red-bright);
  font-weight: 600;
  margin-top: .25rem;
}

[data-theme="light"] .footer-col a.footer-link-highlight {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-bottom-copy p {
  margin: 0;
  font-size: .78rem;
  color: var(--text-soft);
}

.footer-disclaimer {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 620px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: .75rem;
  text-decoration: none;
  transition: color .2s var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--red-bright);
  text-decoration: underline;
}

[data-theme="light"] .footer-bottom-links a:hover {
  color: var(--red);
}
.back-to-top { position: fixed; z-index: 70; right: 1.2rem; bottom: 1.2rem; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transform: translateY(12px); cursor: pointer; transition: .25s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--red); color: #fff; }

.reveal-enabled .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-enabled .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu { position: fixed; z-index: 90; top: 0; right: 0; display: block; width: min(92vw, 430px); height: 100dvh; overflow-y: auto; padding: 6rem 1rem 2rem; border-left: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow-lg); transform: translateX(105%); transition: transform .35s var(--ease); }
  .nav-menu.open { transform: none; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 1rem .7rem; font-size: .9rem; }
  .nav-mobile-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1.25rem 0.7rem 0;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 600;
  }
  .theme-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
  }
  .theme-toggle-pill .theme-icon {
    width: 16px;
    height: 16px;
  }
  .theme-mode-text {
    font-size: 0.75rem;
  }
  .theme-text-light { display: none; }
  [data-theme="light"] .theme-text-dark { display: none; }
  [data-theme="light"] .theme-text-light { display: inline; }
  .mega-menu { position: static; display: none; min-height: 0; max-height: none; margin: 0 0 1rem; border-radius: 16px; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
  .nav-item.open .mega-menu { display: block; }
  .dropdown-menu { position: static; display: none; padding: .5rem 0 .5rem 1rem; border: none; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .nav-item.has-dropdown.open .dropdown-menu { display: flex; flex-direction: column; }
  .mega-sidebar { padding: .65rem; border-right: 0; background: transparent; }
  .mega-sidebar-copy { padding: .35rem .5rem .8rem; }
  .mega-sidebar-copy p { font-size: .75rem; }
  .mega-all-link { margin-top: .6rem; padding: .85rem .65rem .35rem; }
  .mega-stage { display: none; max-height: none; padding: .75rem; }
  .mega-menu.show-detail .mega-sidebar { display: none; }
  .mega-menu.show-detail .mega-stage { display: block; }
  .mega-mobile-back { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .8rem; padding: .55rem .25rem; background: transparent; color: var(--red-bright); font-size: .78rem; font-weight: 700; cursor: pointer; }
  .mega-panel-heading { align-items: flex-start; flex-direction: column; gap: .2rem; margin-bottom: .65rem; }
  .mega-link-grid, .product-menu-grid, .service-menu-grid, .solution-menu-grid, .compact-menu-grid, .enterprise-menu-grid { grid-template-columns: 1fr; }
  .mega-card { padding: .65rem .5rem; }
  .mega-card b { font-size: .78rem; }
  .mega-card small { font-size: .65rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy > p { margin-inline: auto; }.hero-actions, .hero-proof { justify-content: center; margin-inline: auto; }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .erp-module-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid { grid-template-columns: 1fr; }.ecosystem-copy { max-width: 760px; }
  .faq-grid { gap: 3rem; }
  .footer-top,
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); gap: 2.5rem 1.8rem; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .nav-shell { min-height: 62px; padding: .45rem .5rem .45rem .7rem; border-radius: 17px; background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(20px); }
  .brand-emblem { width: 46px; height: 40px; }.brand-copy strong { font-size: .82rem; }.brand-copy small { font-size: .48rem; }
  .icon-button { display: none; }
  .hero { min-height: auto; padding-top: 7.5rem; }
  .hero-copy h1 { font-size: clamp(2.1rem, 9.5vw, 3.2rem); }
  .hero-copy > p { font-size: .92rem; }
  .hero-actions { flex-direction: column; }.hero-actions .btn { width: 100%; }
  .hero-proof { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 430px; margin-top: 1rem; }
  .product-console { width: 96%; transform: translate(-50%,-50%) rotateY(-2deg); }
  @keyframes consoleFloat { 50% { transform: translate(-50%, calc(-50% - 6px)) rotateY(0); } }
  .chip-people { top: 0; left: 0; }.chip-finance { top: auto; right: 0; bottom: 0; }.chip-ai { display: none; }
  .float-chip { min-width: 145px; }.orbit-one { width: 430px; height: 430px; }.orbit-two { width: 330px; height: 330px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }.hero-stats article { border-bottom: 1px solid var(--line); }.hero-stats article:nth-child(2) { border-right: 0; }.hero-stats article:nth-child(n+3) { border-bottom: 0; }.hero-stats article:nth-child(3) { padding-left: 0; }
  .section { padding: 5rem 0; }.section-header { margin-bottom: 2.2rem; }.section-header h2, .ecosystem-copy h2, .faq-heading h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section-header-split { grid-template-columns: 1fr; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr; }.product-card { min-height: 265px; }
  .erp-suite { padding: 1rem; }.erp-suite-heading, .hris-highlight { grid-template-columns: 1fr; }.erp-module-grid { grid-template-columns: 1fr; }.erp-module-card { min-height: 190px; }.hris-highlight ul { grid-template-columns: 1fr; }
  .solution-tabs { display: flex; overflow-x: auto; }.solution-tab { flex: 0 0 75%; }
  .solution-panel { grid-template-columns: 1fr; }.panel-copy { padding: 2rem 1.25rem; }.panel-visual { min-height: 360px; border-left: 0; border-top: 1px solid var(--line); }.service-visual { grid-template-columns: 1fr; gap: 2rem; }
  .ecosystem-grid { gap: 2rem; }.ecosystem-map { min-height: 470px; transform: scale(.88); margin-inline: -6%; }
  .foundation-grid { grid-template-columns: 1fr; }.foundation-card.large { grid-row: auto; min-height: 390px; }.foundation-card.wide { grid-column: auto; }.foundation-card.wide strong { position: static; display: block; margin-top: 1.5rem; }
  .story-slider { min-height: 570px; }.story-card { grid-template-columns: 1fr; gap: 1.5rem; }.story-card blockquote { align-self: start; }.story-person { grid-column: 1; }.story-metric { align-content: start; }
  .resource-grid { grid-template-columns: 1fr; }.resource-card p { min-height: auto; margin-bottom: 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }.faq-heading { position: static; }
  .cta-card { border-radius: 25px; }.cta-actions { flex-direction: column; }.cta-actions .btn { width: 100%; }
  .footer-top,
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.5rem; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .footer-top,
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 430px) {
  .metric-grid { gap: .35rem; }.metric-grid article { padding: .55rem; }.metric-icon { width: 24px; height: 24px; }.metric-grid strong { font-size: .88rem; }
  .console-body { padding: .75rem; }.chart-bars { height: 60px; }
  .ecosystem-map { margin-inline: -12%; transform: scale(.78); }
  .node-people, .node-fin { left: -2%; }.node-ops, .node-customer { right: -2%; }
}

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