:root {
  --bg: #eef5fb;
  --bg-deep: #e4edf7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-soft: rgba(82, 113, 150, 0.10);
  --line: rgba(82, 113, 150, 0.18);
  --line-strong: rgba(82, 113, 150, 0.28);
  --text: #102033;
  --text-soft: #43566d;
  --text-muted: #738399;
  --cyan: #15bfd5;
  --cyan-strong: #0ea5c3;
  --blue: #4788ff;
  --violet: #6d66ff;
  --green: #22c98e;
  --amber: #f5a13e;
  --danger: #eb6780;
  --shadow: 0 24px 64px rgba(43, 72, 106, 0.12), 0 8px 24px rgba(43, 72, 106, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 76px;
}

[data-theme="dark"] {
  --bg: #091421;
  --bg-deep: #07101a;
  --surface: rgba(13, 26, 41, 0.76);
  --surface-solid: #0d1d2e;
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(141, 188, 231, 0.13);
  --line-strong: rgba(141, 188, 231, 0.24);
  --text: #f2f8ff;
  --text-soft: #b5c6d8;
  --text-muted: #7f94aa;
  --cyan: #65e6f4;
  --cyan-strong: #2ed0e5;
  --blue: #6aa7ff;
  --violet: #8d83ff;
  --green: #57e0af;
  --amber: #ffbf6c;
  --danger: #ff7c92;
  --shadow: 0 34px 80px rgba(0, 0, 0, 0.34), 0 10px 26px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 48% -8%, rgba(38, 157, 206, 0.16), transparent 36%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  transition: color .3s ease, background-color .3s ease;
}
body.modal-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { color: #03101b; background: var(--cyan); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan-strong), var(--violet)); border: 3px solid var(--bg-deep); border-radius: 99px; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translate3d(-500px, -500px, 0);
  will-change: transform;
  background: radial-gradient(circle, rgba(58, 210, 234, .08), transparent 68%);
  transition: opacity .3s ease;
}

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-color: var(--line);
  backdrop-filter: blur(22px) saturate(1.25);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 760; letter-spacing: -.04em; }
.brand-mark { width: 34px; height: 34px; filter: drop-shadow(0 0 16px rgba(60, 215, 240, .28)); }
.brand-name { font-size: 22px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; color: var(--text-soft); font-size: 14px; font-weight: 550; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; bottom: -9px; width: 0; height: 2px; border-radius: 3px; background: var(--cyan); transform: translateX(-50%); transition: width .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .mobile-menu-button { border: 1px solid var(--line); color: var(--text); background: var(--surface-soft); cursor: pointer; }
.theme-toggle { position: relative; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; overflow: hidden; }
.theme-icon { position: absolute; transition: transform .25s ease, opacity .25s ease; }
.theme-icon-sun { transform: translateY(24px) rotate(45deg); opacity: 0; }
.theme-icon-moon { opacity: 1; }
[data-theme="light"] .theme-icon-sun { transform: translateY(0) rotate(0); opacity: 1; }
[data-theme="light"] .theme-icon-moon { transform: translateY(-24px) rotate(-45deg); opacity: 0; }
.mobile-menu-button { display: none; width: 42px; height: 42px; border-radius: 12px; place-content: center; gap: 6px; }
.mobile-menu-button span { width: 18px; height: 1.5px; background: currentColor; transition: transform .25s ease; }
.mobile-menu-button.active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.mobile-menu-button.active span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu { display: none; }

.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 19px; border-radius: 14px; font-weight: 680; color: var(--text); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 13px; }
.button-large { min-height: 54px; padding: 0 24px; border-radius: 16px; }
.button-primary {
  color: #03101b;
  background: linear-gradient(120deg, #9af8ff, #57d8ee 48%, #6f9cff);
  box-shadow: 0 14px 36px rgba(62, 200, 228, .21), inset 0 1px rgba(255,255,255,.6);
}
.button-primary:hover { box-shadow: 0 18px 44px rgba(62, 200, 228, .3), inset 0 1px rgba(255,255,255,.65); }
.button-secondary, .button-ghost { color: var(--text); background: var(--surface-soft); border: 1px solid var(--line); backdrop-filter: blur(12px); }
.button-secondary:hover, .button-ghost:hover { border-color: var(--line-strong); background: rgba(121, 201, 238, .08); }
.button-light { color: #05111c; background: white; box-shadow: 0 15px 40px rgba(0,0,0,.18); }
.button-transparent { color: white; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(92,229,242,.09), 0 0 18px var(--cyan); }
.gradient-text { color: transparent; background: linear-gradient(100deg, #bcfbff, #5bd7ef 48%, #9189ff); -webkit-background-clip: text; background-clip: text; }
.muted-gradient { color: transparent; background: linear-gradient(90deg, var(--text-soft), #74b8cf); -webkit-background-clip: text; background-clip: text; }

.hero { min-height: 920px; padding-top: 170px; padding-bottom: 44px; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; opacity: .26; mask-image: linear-gradient(to bottom, black, transparent 78%); background-image: linear-gradient(rgba(108,205,236,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(108,205,236,.09) 1px, transparent 1px); background-size: 58px 58px; transform: perspective(900px) rotateX(65deg) translateY(290px) scale(1.8); transform-origin: center; }
.hero-grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%, transparent 0, var(--bg) 58%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .18; }
.hero-orb-one { width: 420px; height: 420px; background: var(--cyan); left: 15%; top: 8%; }
.hero-orb-two { width: 500px; height: 500px; background: var(--violet); right: 2%; top: 16%; opacity: .13; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.25fr; align-items: center; gap: 56px; }
.hero-copy { padding-bottom: 34px; }
.hero h1 { max-width: 690px; margin: 22px 0 26px; font-size: clamp(50px, 5.2vw, 78px); line-height: 1.02; letter-spacing: -.065em; }
.hero-lead { max-width: 650px; margin: 0; color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.play-dot { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(92,229,242,.1); font-size: 9px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 30px; color: var(--text-muted); font-size: 12px; }
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-icon { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid rgba(77,226,168,.34); border-radius: 50%; color: var(--green); font-size: 10px; }

.hero-visual { position: relative; min-width: 760px; transform: perspective(1800px) rotateY(-5deg) rotateX(1.5deg); transform-origin: left center; }
.dashboard-window { position: relative; z-index: 2; border: 1px solid rgba(170,231,255,.2); border-radius: 24px; background: rgba(5, 13, 23, .88); box-shadow: 0 70px 140px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.025) inset; overflow: hidden; backdrop-filter: blur(24px); }
[data-theme="light"] .dashboard-window { background: rgba(250,253,255,.92); }
.window-topbar { height: 44px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); padding: 0 15px; background: rgba(255,255,255,.02); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #ff7383; }
.window-dots span:nth-child(2) { background: #ffc45e; }
.window-dots span:nth-child(3) { background: #49d59c; }
.window-address { min-width: 250px; padding: 6px 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--text-muted); background: rgba(255,255,255,.025); font-size: 9px; text-align: center; }
.window-status { justify-self: end; display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 9px; }
.window-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.dashboard-body { display: grid; grid-template-columns: 150px 1fr; min-height: 482px; }
.dashboard-sidebar { display: flex; flex-direction: column; padding: 15px 11px; border-right: 1px solid var(--line); background: rgba(255,255,255,.012); }
.sidebar-logo { display: flex; align-items: center; gap: 7px; margin: 0 6px 15px; font-size: 11px; font-weight: 750; }
.mini-mark { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: #03101b; background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.sidebar-workspace, .sidebar-profile { display: flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.workspace-avatar, .profile-avatar { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: #c8fbff; background: linear-gradient(135deg, rgba(47,201,226,.25), rgba(113,101,255,.25)); font-size: 8px; font-weight: 750; }
.sidebar-workspace > span:nth-child(2), .sidebar-profile > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.sidebar-workspace b, .sidebar-profile b { font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-workspace small, .sidebar-profile small { color: var(--text-muted); font-size: 6.5px; }
.chevron { margin-left: auto; color: var(--text-muted); font-size: 9px; }
.sidebar-links { display: flex; flex-direction: column; gap: 3px; margin-top: 15px; }
.sidebar-links span { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 8px; color: var(--text-muted); font-size: 8px; }
.sidebar-links span.active { color: #bdffff; background: linear-gradient(90deg, rgba(63,211,232,.14), rgba(63,211,232,.02)); box-shadow: inset 2px 0 var(--cyan); }
.sidebar-links i { width: 12px; text-align: center; font-style: normal; }
.sidebar-profile { margin-top: auto; border: 0; background: transparent; }
.dashboard-content { min-width: 0; padding: 24px 25px; }
.dash-heading { display: flex; justify-content: space-between; gap: 20px; }
.dash-heading small { color: var(--text-muted); font-size: 7px; }
.dash-heading h3 { margin: 6px 0 3px; font-size: 16px; letter-spacing: -.03em; }
.dash-heading p { margin: 0; color: var(--text-muted); font-size: 8px; }
.dash-heading-actions { display: flex; gap: 6px; align-items: start; }
.icon-button { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--text-muted); font-size: 10px; }
.notification-badge { position: relative; }
.notification-badge::after { content: ""; position: absolute; top: 5px; right: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.dash-primary { padding: 7px 10px; border-radius: 8px; color: #03101b; background: linear-gradient(135deg, var(--cyan), var(--blue)); font-size: 8px; font-weight: 750; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 20px; }
.mini-stat { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.022); }
.mini-stat-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; font-style: normal; font-size: 11px; }
.mini-stat-icon.cyan { color: var(--cyan); background: rgba(62,213,235,.12); }
.mini-stat-icon.violet { color: #a49bff; background: rgba(125,107,255,.12); }
.mini-stat-icon.blue { color: #79b8ff; background: rgba(78,157,255,.12); }
.mini-stat div { display: flex; flex-direction: column; }
.mini-stat small { color: var(--text-muted); font-size: 7px; }
.mini-stat strong { font-size: 17px; line-height: 1.2; }
.trend { margin-left: auto; align-self: start; padding: 3px 5px; border-radius: 5px; color: var(--green); background: rgba(77,226,168,.08); font-size: 6px; }
.dashboard-panels { display: grid; grid-template-columns: 1.48fr .9fr; gap: 10px; margin-top: 10px; }
.activity-panel, .tasks-panel { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.panel-heading { display: flex; align-items: center; justify-content: space-between; font-size: 8px; }
.panel-heading span { color: var(--text-muted); font-size: 6px; }
.chart { position: relative; height: 118px; margin-top: 11px; }
.chart-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(170,225,255,.06) 1px, transparent 1px); background-size: 100% 31px; }
.chart svg { position: relative; width: 100%; height: 100%; overflow: visible; }
.chart-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw-chart 2.6s .6s ease forwards; }
.chart-labels { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 6px; }
.counter-pill { min-width: 17px; height: 17px; display: grid; place-items: center; border-radius: 6px; color: var(--cyan) !important; background: rgba(92,229,242,.1); }
.task-row { display: flex; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.task-row:last-child { border-bottom: 0; }
.task-icon { width: 21px; height: 21px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 7px; font-size: 8px; }
.task-icon.warning { color: var(--amber); background: rgba(255,188,102,.12); }
.task-icon.info { color: var(--blue); background: rgba(78,157,255,.12); }
.task-icon.success { color: var(--green); background: rgba(77,226,168,.12); }
.task-row > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.task-row b { font-size: 7px; }
.task-row small { color: var(--text-muted); font-size: 6px; }
.task-arrow { margin-left: auto; color: var(--text-muted); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(178,233,255,.2); border-radius: 14px; background: rgba(11, 26, 42, .84); box-shadow: 0 20px 55px rgba(0,0,0,.36); backdrop-filter: blur(16px); animation: float 5s ease-in-out infinite; }
[data-theme="light"] .floating-card { background: rgba(255,255,255,.9); }
.floating-card-one { left: -48px; bottom: 46px; }
.floating-card-two { right: -38px; top: 84px; animation-delay: -2.4s; }
.floating-icon, .floating-avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--green); background: rgba(77,226,168,.12); font-size: 11px; }
.floating-avatar { color: #d0faff; background: linear-gradient(135deg, rgba(48,194,222,.28), rgba(117,99,255,.28)); font-weight: 750; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card b { font-size: 9px; }
.floating-card small { color: var(--text-muted); font-size: 7px; }
.orbit { position: absolute; z-index: 0; border: 1px solid rgba(99,214,239,.12); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; right: 4%; top: -18%; animation: spin 20s linear infinite; }
.orbit-two { width: 690px; height: 690px; left: -15%; top: -35%; animation: spin 28s linear infinite reverse; }
.orbit span { position: absolute; width: 8px; height: 8px; top: 50%; left: -4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 17px var(--cyan); }
.integration-strip { position: relative; z-index: 3; display: flex; align-items: center; gap: 24px; margin-top: 80px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.integration-label { flex: 0 0 auto; color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.integration-track { display: flex; align-items: center; justify-content: space-between; gap: 22px; width: 100%; color: var(--text-soft); font-size: 12px; white-space: nowrap; }
.integration-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

.section-heading { max-width: 780px; margin-bottom: 56px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin: 17px 0 20px; font-size: clamp(38px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -.055em; }
.section-heading p { margin: 0; color: var(--text-soft); font-size: 17px; line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; max-width: none; gap: 70px; }
.split-heading h2 { max-width: 720px; }
.split-heading > p { padding-bottom: 8px; }

.problem-section { overflow: hidden; }
.problem-section::before { content: ""; position: absolute; width: 800px; height: 500px; left: 50%; top: 30%; transform: translateX(-50%); background: radial-gradient(circle, rgba(42,194,224,.08), transparent 65%); pointer-events: none; }
.before-after { display: grid; grid-template-columns: 1fr 110px 1fr; align-items: center; }
.comparison-card { min-height: 440px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-soft); }
.comparison-before { opacity: .78; }
.comparison-after { background: linear-gradient(145deg, rgba(22,50,69,.7), rgba(12,25,43,.74)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05); }
[data-theme="light"] .comparison-after { background: rgba(255,255,255,.82); }
.comparison-tag { display: inline-flex; padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.comparison-after .comparison-tag { color: var(--cyan); border-color: rgba(92,229,242,.2); background: rgba(92,229,242,.06); }
.comparison-card h3 { margin: 26px 0; font-size: 28px; line-height: 1.25; letter-spacing: -.035em; }
.comparison-card ul { display: grid; gap: 15px; padding: 0; margin: 0; list-style: none; }
.comparison-card li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-soft); font-size: 14px; }
.comparison-card li span { width: 21px; height: 21px; display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; border-radius: 7px; color: var(--danger); background: rgba(255,119,136,.08); }
.comparison-after li span { color: var(--green); background: rgba(77,226,168,.1); }
.comparison-flow { display: flex; align-items: center; }
.comparison-flow > span:not(.flow-core) { width: 35px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong)); }
.comparison-flow > span:last-child { background: linear-gradient(90deg, var(--line-strong), transparent); }
.flow-core { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(92,229,242,.25); border-radius: 14px; color: #071522; background: linear-gradient(135deg, #a5fbff, #50d7ec); box-shadow: 0 0 35px rgba(73,214,236,.2); font-weight: 850; }

.modules-section { background: linear-gradient(to bottom, transparent, rgba(8,21,34,.55), transparent); }
[data-theme="light"] .modules-section { background: linear-gradient(to bottom, transparent, rgba(217,235,245,.58), transparent); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(350px, auto); gap: 16px; }
.bento-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(18,36,56,.62), rgba(9,19,32,.78)); overflow: hidden; }
[data-theme="light"] .bento-card { background: rgba(255,255,255,.76); }
.spotlight-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108,229,244,.1), transparent 42%); opacity: 0; transition: opacity .3s ease; }
.spotlight-card:hover::before { opacity: 1; }
.bento-large { grid-column: span 2; display: grid; grid-template-columns: 1fr .95fr; gap: 25px; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; }
.module-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(92,229,242,.17); border-radius: 14px; color: var(--cyan); background: rgba(92,229,242,.08); font-size: 18px; box-shadow: inset 0 1px rgba(255,255,255,.05); }
.violet-icon { color: #a79fff; background: rgba(123,108,255,.1); border-color: rgba(123,108,255,.18); }
.blue-icon { color: #81baff; background: rgba(78,157,255,.1); border-color: rgba(78,157,255,.18); }
.amber-icon { color: var(--amber); background: rgba(255,188,102,.09); border-color: rgba(255,188,102,.17); }
.green-icon { color: var(--green); background: rgba(77,226,168,.09); border-color: rgba(77,226,168,.17); }
.cyan-icon { color: var(--cyan); }
.module-kicker { color: var(--cyan); font-size: 11px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.bento-card h3 { margin: 10px 0 13px; font-size: 25px; letter-spacing: -.04em; line-height: 1.2; }
.bento-card p { margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.72; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.feature-tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--text-muted); background: rgba(255,255,255,.025); font-size: 10px; }
.people-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 280px; }
.person-card { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; min-width: 180px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: rgba(7,18,31,.84); box-shadow: 0 15px 35px rgba(0,0,0,.2); }
[data-theme="light"] .person-card { background: rgba(255,255,255,.9); }
.person-card > span { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: #c5fbff; background: linear-gradient(135deg, rgba(48,196,225,.25), rgba(113,97,255,.28)); font-size: 10px; font-weight: 800; }
.person-card > div { display: flex; flex-direction: column; }
.person-card b { font-size: 10px; }
.person-card small { color: var(--text-muted); font-size: 8px; }
.person-card i { margin-left: auto; color: var(--green); font-size: 6px; }
.person-main { transform: translateY(-15px); }
.person-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 44px; }
.person-columns .person-card { min-width: 152px; }
.org-line { position: absolute; background: var(--line-strong); }
.org-line.vertical { width: 1px; height: 70px; top: 45%; }
.org-line.horizontal { width: 50%; height: 1px; top: 59%; }
.document-stack { position: relative; height: 170px; margin-top: auto; perspective: 900px; }
.paper { position: absolute; width: 142px; height: 176px; left: 50%; bottom: -50px; border: 1px solid var(--line); border-radius: 13px 13px 0 0; background: #12233a; box-shadow: 0 20px 40px rgba(0,0,0,.22); }
[data-theme="light"] .paper { background: white; }
.paper-back { transform: translateX(-74%) rotate(-9deg); opacity: .38; }
.paper-mid { transform: translateX(-35%) rotate(8deg); opacity: .58; }
.paper-front { left: 44%; padding: 18px; transform: rotate(-2deg); }
.paper-logo { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px; color: #06121d; background: var(--cyan); font-size: 10px; font-weight: 800; }
.paper i { display: block; height: 5px; margin-top: 15px; border-radius: 5px; background: var(--line); }
.paper i + i { margin-top: 8px; }
.paper i.short { width: 65%; }
.signature { position: absolute; right: 16px; bottom: 20px; color: var(--cyan); font-family: cursive; font-size: 14px; transform: rotate(-8deg); }
.exam-visual { position: relative; margin-top: auto; padding-top: 25px; }
.exam-progress { height: 6px; border-radius: 99px; background: var(--surface-soft); overflow: hidden; }
.exam-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--violet)); box-shadow: 0 0 14px rgba(92,229,242,.3); }
.exam-score { display: flex; align-items: end; gap: 7px; margin: 18px 0; }
.exam-score strong { font-size: 38px; line-height: 1; letter-spacing: -.05em; }
.exam-score small { color: var(--text-muted); font-size: 9px; }
.answer-row { display: flex; align-items: center; gap: 10px; padding: 10px; margin-top: 7px; border: 1px solid var(--line); border-radius: 10px; }
.answer-row.selected { border-color: rgba(77,226,168,.2); background: rgba(77,226,168,.04); }
.answer-row span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: var(--surface-soft); color: var(--text-muted); font-size: 8px; }
.answer-row i { width: 60%; height: 5px; border-radius: 9px; background: var(--line); }
.answer-row b { margin-left: auto; color: var(--green); }
.timeline-visual { position: relative; padding: 10px 0 0 8px; }
.timeline-line { position: absolute; width: 1px; top: 29px; bottom: 29px; left: 22px; background: var(--line-strong); }
.timeline-item { position: relative; display: flex; align-items: center; gap: 13px; padding: 13px 0; }
.timeline-dot { position: relative; z-index: 2; width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--surface-solid); }
.timeline-dot.done { color: var(--green); border-color: rgba(77,226,168,.3); }
.timeline-dot.active { border-color: rgba(92,229,242,.4); box-shadow: 0 0 0 5px rgba(92,229,242,.06), 0 0 20px rgba(92,229,242,.16); }
.timeline-dot.active::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.timeline-item div { display: flex; flex-direction: column; }
.timeline-item b { font-size: 11px; }
.timeline-item small { color: var(--text-muted); font-size: 8px; }
.timeline-item em { margin-left: auto; padding: 4px 7px; border-radius: 6px; color: var(--cyan); background: rgba(92,229,242,.08); font-size: 7px; font-style: normal; }
.application-visual { display: grid; gap: 8px; margin-top: auto; padding-top: 24px; }
.application-row { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.02); }
.app-avatar { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #d7fcff; background: linear-gradient(135deg, rgba(48,196,225,.22), rgba(113,97,255,.25)); font-size: 9px; font-weight: 800; }
.application-row div { display: flex; flex-direction: column; }
.application-row b { font-size: 9px; }
.application-row small { color: var(--text-muted); font-size: 7px; }
.application-row em { margin-left: auto; padding: 4px 7px; border-radius: 6px; color: var(--green); background: rgba(77,226,168,.09); font-size: 7px; font-style: normal; }
.application-row em.review { color: var(--amber); background: rgba(255,188,102,.09); }
.discord-visual { display: flex; align-items: center; justify-content: center; margin-top: auto; padding-top: 32px; }
.system-node { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.system-node span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(92,229,242,.2); border-radius: 17px; color: #06131e; background: linear-gradient(135deg, #9bf8ff, #55cfe7); box-shadow: 0 0 35px rgba(92,229,242,.18); font-weight: 850; }
.system-node small { color: var(--text-muted); font-size: 8px; }
.discord-node span { color: white; background: linear-gradient(135deg, #7d8cff, #5865f2); border-color: rgba(140,151,255,.32); box-shadow: 0 0 35px rgba(88,101,242,.2); }
.beam { position: relative; width: 90px; height: 1px; margin: 0 10px 19px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.beam i { position: absolute; width: 6px; height: 6px; top: -2.5px; border-radius: 50%; background: white; box-shadow: 0 0 10px var(--cyan); animation: beam-flow 2s linear infinite; }
.beam i:nth-child(2) { animation-delay: -.7s; }
.beam i:nth-child(3) { animation-delay: -1.4s; }

.depth-section { overflow: hidden; }
.depth-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 1px 1px, rgba(111,214,239,.38) 1px, transparent 0); background-size: 28px 28px; mask-image: radial-gradient(circle at center, black, transparent 68%); }
.flip-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flip-card { height: 350px; perspective: 1200px; outline: none; }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.flip-card:hover .flip-inner, .flip-card:focus .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(18,36,56,.76), rgba(7,17,29,.92)); backface-visibility: hidden; overflow: hidden; }
[data-theme="light"] .flip-face { background: rgba(255,255,255,.9); }
.flip-front::before { content: ""; position: absolute; width: 210px; height: 210px; right: -50px; bottom: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(70,212,235,.14), transparent 65%); }
.flip-back { transform: rotateY(180deg); background: linear-gradient(145deg, rgba(28,65,79,.9), rgba(12,25,45,.96)); }
[data-theme="light"] .flip-back { background: linear-gradient(145deg, #e9fbff, #edf0ff); }
.flip-number { color: var(--text-muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.flip-symbol { width: 64px; height: 64px; display: grid; place-items: center; margin: auto 0 22px; border: 1px solid rgba(92,229,242,.18); border-radius: 21px; color: var(--cyan); background: rgba(92,229,242,.07); font-size: 27px; box-shadow: 0 0 40px rgba(92,229,242,.07); }
.flip-face h3 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.04em; }
.flip-face p { margin: 0; color: var(--text-soft); font-size: 14px; }
.flip-hint { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 10px; }
.flip-hint i { font-style: normal; color: var(--cyan); }
.flip-back .module-kicker { margin-top: auto; }
.flip-back h3 { margin-top: 12px; }
.flip-back ul { display: grid; gap: 10px; padding: 0; margin: 18px 0 auto; list-style: none; }
.flip-back li { position: relative; padding-left: 18px; color: var(--text-soft); font-size: 13px; }
.flip-back li::before { content: ""; position: absolute; width: 6px; height: 6px; left: 0; top: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }

.workflow-section { background: linear-gradient(100deg, rgba(12,30,47,.55), transparent 60%); }
[data-theme="light"] .workflow-section { background: linear-gradient(100deg, rgba(210,233,244,.65), transparent 60%); }
.workflow-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.workflow-copy { position: sticky; top: 125px; }
.workflow-copy h2 { margin: 17px 0 20px; font-size: clamp(40px, 4vw, 58px); line-height: 1.08; letter-spacing: -.055em; }
.workflow-copy p { margin: 0 0 30px; color: var(--text-soft); font-size: 16px; line-height: 1.72; }
.workflow-steps { position: relative; display: grid; gap: 12px; }
.workflow-steps::before { content: ""; position: absolute; width: 1px; top: 30px; bottom: 30px; left: 38px; background: linear-gradient(var(--cyan), var(--line), transparent); }
.workflow-step { position: relative; display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: start; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.workflow-step:hover, .workflow-step.active { transform: translateX(8px); border-color: rgba(92,229,242,.22); background: rgba(92,229,242,.045); }
.step-number { position: relative; z-index: 2; width: 28px; height: 28px; display: grid; place-items: center; margin-top: 1px; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--text-muted); background: var(--surface-solid); font-size: 9px; font-weight: 750; }
.workflow-step.active .step-number { color: #06131d; border-color: transparent; background: var(--cyan); box-shadow: 0 0 20px rgba(92,229,242,.2); }
.workflow-step h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.03em; }
.workflow-step p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.65; }
.step-status { padding: 5px 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--text-muted); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }

.audience-tabs { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.018); overflow: hidden; }
.tab-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 7px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.tab-button { min-height: 49px; border: 0; border-radius: 13px; color: var(--text-muted); background: transparent; cursor: pointer; font-weight: 650; transition: color .2s ease, background .2s ease; }
.tab-button.active { color: var(--text); background: rgba(92,229,242,.07); box-shadow: inset 0 0 0 1px rgba(92,229,242,.12); }
.tab-panel { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; min-height: 500px; padding: 48px; animation: panel-in .4s ease; }
.tab-copy h3 { margin: 12px 0 17px; font-size: 36px; line-height: 1.16; letter-spacing: -.045em; }
.tab-copy > p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.tab-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 25px 0 0; list-style: none; }
.tab-copy li { position: relative; padding-left: 18px; color: var(--text-soft); font-size: 12px; }
.tab-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.tab-visual { position: relative; min-height: 370px; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at center, rgba(66,198,226,.08), transparent 58%), rgba(255,255,255,.018); overflow: hidden; }
.network-map { display: grid; place-items: center; }
.network-core { position: relative; z-index: 3; width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(92,229,242,.24); border-radius: 24px; color: #06131d; background: linear-gradient(135deg, #a0f9ff, #4fd1e8); box-shadow: 0 0 70px rgba(78,211,234,.22); font-size: 28px; font-weight: 850; }
.network-ring { position: absolute; width: 250px; height: 250px; border: 1px dashed rgba(111,216,240,.22); border-radius: 50%; animation: spin 30s linear infinite; }
.network-ring::after { content: ""; position: absolute; width: 360px; height: 360px; left: -56px; top: -56px; border: 1px solid var(--line); border-radius: 50%; }
.network-node { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(8,19,32,.88); box-shadow: 0 16px 30px rgba(0,0,0,.2); }
[data-theme="light"] .network-node { background: rgba(255,255,255,.9); }
.network-node span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(92,229,242,.09); font-size: 8px; font-weight: 800; }
.network-node small { color: var(--text-soft); font-size: 8px; }
.node-a { top: 35px; left: 80px; }
.node-b { top: 75px; right: 38px; }
.node-c { bottom: 42px; right: 78px; }
.node-d { bottom: 68px; left: 34px; }
.metric-orbit { display: grid; place-items: center; }
.metric-center { width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(92,229,242,.2); border-radius: 50%; background: radial-gradient(circle, rgba(92,229,242,.14), rgba(92,229,242,.02) 65%); box-shadow: 0 0 60px rgba(92,229,242,.08); }
.metric-center strong { font-size: 34px; letter-spacing: -.04em; }
.metric-center small { color: var(--text-muted); font-size: 9px; }
.metric-chip { position: absolute; min-width: 110px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--text-muted); background: rgba(8,19,32,.86); font-size: 9px; box-shadow: 0 14px 28px rgba(0,0,0,.18); }
[data-theme="light"] .metric-chip { background: rgba(255,255,255,.9); }
.metric-chip b { display: block; color: var(--text); font-size: 16px; }
.chip-a { top: 46px; left: 42px; }.chip-b { top: 60px; right: 42px; }.chip-c { bottom: 52px; left: 60px; }.chip-d { bottom: 38px; right: 52px; }
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 20px; align-items: start; }
.kanban-col { min-height: 280px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.kanban-col > small { display: block; margin: 2px 3px 10px; color: var(--text-muted); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.kanban-col > div { display: flex; flex-direction: column; gap: 4px; padding: 10px; margin-bottom: 7px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-soft); }
.kanban-col b { font-size: 9px; }.kanban-col span { color: var(--text-muted); font-size: 7px; }.kanban-col .done-card { border-color: rgba(77,226,168,.18); background: rgba(77,226,168,.04); }
.profile-card-ui { text-align: center; padding-bottom: 28px; }
.profile-cover { height: 120px; background: radial-gradient(circle at 30% 40%, rgba(92,229,242,.32), transparent 25%), radial-gradient(circle at 70% 20%, rgba(123,108,255,.35), transparent 30%), linear-gradient(140deg, #112f46, #111c39); }
.profile-large-avatar { width: 82px; height: 82px; display: grid; place-items: center; margin: -41px auto 12px; border: 6px solid var(--surface-solid); border-radius: 24px; color: #d7fcff; background: linear-gradient(135deg, #247e98, #5148a7); font-size: 20px; font-weight: 850; }
.profile-card-ui h4 { margin: 0; font-size: 20px; }.profile-card-ui > p { margin: 4px 0 22px; color: var(--text-muted); font-size: 11px; }
.profile-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 25px; }
.profile-meta span { display: flex; flex-direction: column; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.profile-meta small { color: var(--text-muted); font-size: 7px; }.profile-meta b { font-size: 11px; }

.principles-panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 62px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg, rgba(16,39,57,.72), rgba(9,19,32,.8)); overflow: hidden; }
[data-theme="light"] .principles-panel { background: rgba(255,255,255,.75); }
.principles-panel::after { content: "U"; position: absolute; left: -40px; bottom: -150px; color: rgba(112,219,240,.035); font-size: 420px; font-weight: 900; line-height: 1; }
.principles-copy { position: relative; z-index: 1; }
.principles-copy h2 { margin: 17px 0 20px; font-size: 44px; line-height: 1.08; letter-spacing: -.05em; }
.principles-copy p { color: var(--text-soft); font-size: 15px; line-height: 1.75; }
.principles-list { position: relative; z-index: 1; display: grid; gap: 0; }
.principles-list article { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.principles-list article:last-child { border-bottom: 0; }
.principles-list article > span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--cyan); font-size: 9px; }
.principles-list h3 { margin: 0 0 4px; font-size: 17px; }.principles-list p { margin: 0; color: var(--text-muted); font-size: 12px; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.15fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin: 17px 0 18px; font-size: 45px; line-height: 1.08; letter-spacing: -.05em; }
.faq-intro p { margin: 0 0 28px; color: var(--text-soft); font-size: 15px; line-height: 1.72; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; color: var(--text); background: transparent; text-align: left; cursor: pointer; font-size: 17px; font-weight: 660; }
.accordion-trigger i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 9px; color: var(--text-muted); font-style: normal; transition: transform .25s ease, color .25s ease, border-color .25s ease; }
.accordion-item.open .accordion-trigger i { color: var(--cyan); border-color: rgba(92,229,242,.22); transform: rotate(45deg); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.accordion-content > p { overflow: hidden; margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.72; }
.accordion-item.open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.open .accordion-content > p { padding-bottom: 26px; }

.final-cta-section { padding-top: 70px; }
.final-cta { position: relative; min-height: 470px; display: flex; align-items: center; padding: 70px; border-radius: 36px; color: white; background: linear-gradient(125deg, #0c6b85, #225a91 48%, #4d46a6); box-shadow: 0 45px 100px rgba(10,56,91,.3); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 520px; height: 520px; right: -80px; top: -160px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.cta-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 45px 45px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.cta-beam { position: absolute; width: 650px; height: 120px; right: -110px; bottom: 20px; border-radius: 50%; background: rgba(133,250,255,.14); filter: blur(55px); transform: rotate(-17deg); }
.cta-content { position: relative; z-index: 2; max-width: 710px; }
.cta-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cta-badge i { width: 7px; height: 7px; border-radius: 50%; background: #b8fbff; box-shadow: 0 0 13px #b8fbff; }
.final-cta h2 { margin: 22px 0 18px; font-size: clamp(44px, 5vw, 66px); line-height: 1.03; letter-spacing: -.06em; }
.final-cta p { max-width: 610px; margin: 0; color: rgba(255,255,255,.74); font-size: 16px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.cta-logo { position: absolute; z-index: 1; right: 80px; top: 50%; transform: translateY(-50%) rotate(-8deg); color: rgba(255,255,255,.1); font-size: 280px; font-weight: 900; line-height: .8; text-shadow: 0 0 80px rgba(255,255,255,.1); }

.site-footer { padding: 30px 0 20px; }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 55px 0; border-bottom: 1px solid var(--line); }
.footer-brand p { max-width: 380px; margin: 18px 0 0; color: var(--text-muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.footer-links b { margin-bottom: 5px; font-size: 12px; }
.footer-links a { color: var(--text-muted); font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 19px 0 0; color: var(--text-muted); font-size: 10px; }
.footer-bottom a { color: var(--text-soft); }
.footer-bottom a:hover { color: var(--cyan); }

.contact-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.contact-modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,5,12,.72); backdrop-filter: blur(12px); }
.modal-card { position: relative; z-index: 1; width: min(100%, 500px); padding: 38px; border: 1px solid var(--line-strong); border-radius: 27px; background: color-mix(in srgb, var(--surface-solid) 94%, transparent); box-shadow: 0 45px 100px rgba(0,0,0,.45); transform: translateY(16px) scale(.98); transition: transform .3s ease; }
.contact-modal.open .modal-card { transform: translateY(0) scale(1); }
.modal-close { position: absolute; right: 17px; top: 17px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 11px; color: var(--text-muted); background: var(--surface-soft); cursor: pointer; font-size: 19px; }
.modal-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 15px; color: #06131d; background: linear-gradient(135deg, #9cf9ff, #4ecfe6); box-shadow: 0 0 35px rgba(92,229,242,.18); font-size: 19px; font-weight: 850; }
.modal-card h2 { margin: 10px 0 13px; font-size: 31px; line-height: 1.12; letter-spacing: -.045em; }
.modal-card > p { margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.contact-options { display: grid; gap: 9px; margin-top: 25px; }
.contact-options a { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); transition: border-color .2s ease, transform .2s ease; }
.contact-options a:hover { transform: translateX(4px); border-color: rgba(92,229,242,.24); }
.contact-avatar { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: #d8fdff; background: linear-gradient(135deg, #1c7f98, #4c48a8); font-size: 11px; font-weight: 800; }
.contact-avatar.alt { background: linear-gradient(135deg, #5a52b4, #9c4c91); }
.contact-options div { display: flex; flex-direction: column; }
.contact-options b { font-size: 13px; }.contact-options small { color: var(--text-muted); font-size: 9px; }.contact-options i { margin-left: auto; color: var(--cyan); font-style: normal; }
.modal-note { display: block; margin-top: 14px; color: var(--text-muted); font-size: 9px; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes draw-chart { to { stroke-dashoffset: 0; } }
@keyframes beam-flow { from { left: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } to { left: calc(100% - 6px); opacity: 0; } }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; text-align: center; margin: 0 auto; }
  .hero-lead { margin: 0 auto; }.hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(100%, 900px); min-width: 0; margin: 30px auto 0; transform: none; }
  .integration-strip { margin-top: 65px; }
  .integration-track { justify-content: flex-start; overflow: hidden; }
  .bento-grid { grid-template-columns: 1fr 1fr; }.bento-card, .bento-large, .bento-wide { grid-column: auto; }
  .bento-large, .bento-wide { display: flex; }
  .people-visual { margin-top: 20px; }.person-columns { transform: scale(.88); }
  .workflow-layout { gap: 50px; }
  .tab-panel { gap: 35px; }
}

@media (max-width: 980px) {
  .desktop-nav, .nav-actions .button-ghost { display: none; }
  .mobile-menu-button { display: grid; }
  .mobile-menu { position: fixed; top: var(--header-height); left: 20px; right: 20px; display: grid; gap: 5px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface-solid) 95%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(20px); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-menu a { padding: 11px 12px; border-radius: 9px; color: var(--text-soft); font-size: 14px; }
  .mobile-menu a:hover { background: var(--surface-soft); }
  .before-after { grid-template-columns: 1fr; gap: 16px; }.comparison-flow { display: none; }.comparison-card { min-height: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 0; }
  .flip-grid { grid-template-columns: 1fr; }.flip-card { height: 310px; }
  .workflow-layout { grid-template-columns: 1fr; }.workflow-copy { position: static; }
  .tab-panel { grid-template-columns: 1fr; }.tab-visual { min-height: 350px; }
  .principles-panel { grid-template-columns: 1fr; gap: 35px; padding: 45px; }
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }.faq-intro { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 86px 0; }
  .site-header .brand-name { font-size: 19px; }
  .site-header .brand-mark { width: 30px; height: 30px; }
  .hero { min-height: auto; padding-top: 128px; padding-bottom: 20px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .hero-proof { display: grid; justify-content: start; max-width: max-content; margin-left: auto; margin-right: auto; text-align: left; }
  .hero-visual { margin-top: 45px; }
  .dashboard-window { border-radius: 17px; }
  .window-address { min-width: 135px; }.window-status { display: none; }
  .dashboard-body { grid-template-columns: 1fr; min-height: 440px; }
  .dashboard-sidebar { display: none; }.dashboard-content { padding: 15px; }
  .dash-heading h3 { font-size: 14px; }.dash-heading-actions .icon-button { display: none; }
  .stat-grid { gap: 6px; }.mini-stat { padding: 8px; gap: 6px; }.mini-stat-icon { width: 25px; height: 25px; }.mini-stat strong { font-size: 13px; }.trend { display: none; }
  .dashboard-panels { grid-template-columns: 1fr; }.tasks-panel { display: none; }.activity-panel { min-height: 220px; }
  .floating-card { transform: scale(.82); }.floating-card-one { left: -14px; bottom: 35px; }.floating-card-two { right: -22px; top: 56px; }
  .integration-strip { align-items: flex-start; flex-direction: column; gap: 11px; }.integration-track { width: max-content; animation: mobile-marquee 15s linear infinite; }
  .section-heading { margin-bottom: 38px; }.section-heading h2 { font-size: 39px; }.section-heading p { font-size: 15px; }
  .comparison-card { padding: 26px; border-radius: 23px; }.comparison-card h3 { font-size: 24px; }
  .bento-grid { grid-template-columns: 1fr; }.bento-card { min-height: 330px; padding: 25px; }.bento-wide { min-height: 440px; }
  .person-columns { width: 115%; transform: scale(.74); }.org-line.horizontal { width: 65%; }
  .flip-face { padding: 25px; }
  .workflow-step { grid-template-columns: 44px 1fr; padding: 21px; }.step-status { display: none; }.workflow-steps::before { left: 34px; }
  .tab-list { grid-template-columns: 1fr 1fr; gap: 4px; }.tab-panel { min-height: 650px; padding: 25px; }.tab-copy h3 { font-size: 29px; }.tab-copy ul { grid-template-columns: 1fr; }.tab-visual { min-height: 330px; }
  .network-ring { transform: scale(.84); }.network-node { transform: scale(.82); }.node-a { left: 15px; }.node-b { right: 5px; }.node-c { right: 25px; }.node-d { left: 3px; }
  .metric-chip { transform: scale(.8); }.chip-a { left: 2px; }.chip-b { right: 2px; }.chip-c { left: 8px; }.chip-d { right: 8px; }
  .kanban { padding: 11px; gap: 5px; }.kanban-col { padding: 6px; }.kanban-col > div { padding: 7px; }
  .principles-panel { padding: 28px; border-radius: 25px; }.principles-copy h2 { font-size: 35px; }
  .faq-intro h2 { font-size: 38px; }.accordion-trigger { font-size: 15px; }
  .final-cta { min-height: 520px; padding: 40px 28px; border-radius: 27px; }.final-cta h2 { font-size: 43px; }.cta-logo { right: -20px; top: 20%; font-size: 190px; }.cta-actions { flex-direction: column; }.cta-actions .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; gap: 8px; }
  .modal-card { padding: 30px 22px; }.modal-card h2 { font-size: 28px; }
}

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

@keyframes mobile-marquee { from { transform: translateX(0); } to { transform: translateX(-42%); } }

@media (max-width: 720px) {
  .floating-card { animation: none; transform: scale(.82); transform-origin: center; }
}


/* v1.1 — lightweight SVG icon system and adaptive performance mode */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ui-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.theme-icon .ui-icon { width: 17px; height: 17px; }
.button .ui-icon { width: 16px; height: 16px; }
.play-dot .ui-icon { width: 11px; height: 11px; fill: currentColor; stroke-width: 1.4; }
.proof-icon .ui-icon { width: 11px; height: 11px; stroke-width: 2.4; }
.chevron .ui-icon { width: 9px; height: 9px; }
.sidebar-links i .ui-icon { width: 12px; height: 12px; }
.icon-button .ui-icon { width: 12px; height: 12px; }
.mini-stat-icon .ui-icon { width: 14px; height: 14px; }
.module-icon .ui-icon { width: 21px; height: 21px; }
.floating-icon .ui-icon, .task-icon .ui-icon, .timeline-dot .ui-icon { width: 11px; height: 11px; stroke-width: 2.4; }
.answer-row b .ui-icon { width: 10px; height: 10px; stroke-width: 2.5; }
.comparison-after li span .ui-icon { width: 12px; height: 12px; stroke-width: 2.3; }
.discord-node .ui-icon { width: 25px; height: 25px; }
.flip-symbol .ui-icon { width: 29px; height: 29px; }
.flip-hint .ui-icon, .contact-options i .ui-icon { width: 13px; height: 13px; }

/* Skip off-screen section paint until the browser needs it. */
@supports (content-visibility: auto) {
  .section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 860px;
  }
}

/* Isolate complex previews so their internal paint does not invalidate the page. */
.dashboard-window,
.bento-card,
.principles-panel,
.final-cta,
.tab-shell {
  contain: layout paint;
}

/* Pause decorative work while the tab is in the background. */
.page-hidden *,
.page-hidden *::before,
.page-hidden *::after {
  animation-play-state: paused !important;
}

/* Adaptive lightweight mode: same layout, fewer GPU-heavy effects. */
.lite-mode .page-noise,
.lite-mode .cursor-glow,
.lite-mode .orbit,
.lite-mode .hero-orb,
.lite-mode .cta-beam {
  display: none !important;
}
.lite-mode .site-header.scrolled,
.lite-mode .dashboard-window,
.lite-mode .button-secondary,
.lite-mode .button-ghost,
.lite-mode .floating-card,
.lite-mode .mobile-menu,
.lite-mode .modal-backdrop {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.lite-mode .dashboard-window,
.lite-mode .final-cta,
.lite-mode .bento-card,
.lite-mode .principles-panel {
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.lite-mode .chart-line {
  animation: none;
  stroke-dashoffset: 0;
}
.lite-mode .beam i,
.lite-mode .network-ring,
.lite-mode .floating-card,
.lite-mode .integration-track {
  animation: none !important;
}
.lite-mode .spotlight-card::before { display: none; }

@media (max-width: 900px) {
  .page-noise,
  .cursor-glow,
  .orbit,
  .hero-orb,
  .cta-beam {
    display: none !important;
  }
  .site-header.scrolled,
  .dashboard-window,
  .button-secondary,
  .button-ghost,
  .floating-card,
  .mobile-menu,
  .modal-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .integration-track { animation: none !important; width: auto; flex-wrap: wrap; }
}

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


/* ===== Unitelya v1.2 redesign overrides ===== */
html { background: var(--bg); }
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(21, 191, 213, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(109, 102, 255, 0.14), transparent 30%),
    radial-gradient(circle at 50% 46%, rgba(110, 173, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 22%, #f9fcff 54%, var(--bg-deep) 100%);
}
[data-theme="dark"] body {
  background:
    radial-gradient(circle at 10% -4%, rgba(41, 192, 220, 0.17), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(126, 104, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0a1522 0%, var(--bg) 38%, var(--bg-deep) 100%);
}
.page-noise { opacity: .018; }
.container { width: min(calc(100% - 36px), var(--container)); }
.section { padding: 112px 0; }
.section::after { content: ""; position: absolute; left: 50%; bottom: 0; width: min(100%, 1180px); height: 1px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--line), transparent); opacity: .7; pointer-events: none; }
.hero::after, .final-cta-section::after { display: none; }
.site-header { background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.42)); backdrop-filter: blur(12px) saturate(1.08); -webkit-backdrop-filter: blur(12px) saturate(1.08); }
[data-theme="dark"] .site-header { background: linear-gradient(180deg, rgba(7,17,28,.72), rgba(7,17,28,.32)); }
.site-header.scrolled { background: color-mix(in srgb, var(--surface-solid) 82%, transparent); border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(48, 73, 106, 0.08); }
[data-theme="dark"] .site-header.scrolled { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24); }
.brand-mark { filter: drop-shadow(0 12px 22px rgba(74, 176, 235, 0.18)); }
.desktop-nav a { font-weight: 620; }
.desktop-nav a::after { bottom: -8px; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.theme-toggle, .mobile-menu-button { background: rgba(255,255,255,.7); border-color: var(--line); box-shadow: 0 8px 20px rgba(68, 97, 134, 0.08); }
[data-theme="dark"] .theme-toggle, [data-theme="dark"] .mobile-menu-button { background: rgba(255,255,255,.035); }
.button { font-weight: 720; border-radius: 16px; box-shadow: 0 10px 24px rgba(68, 97, 134, 0.10); }
.button-primary { color: white; background: linear-gradient(135deg, #19c1d6 0%, #3278ff 52%, #7068ff 100%); border: 0; }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(66, 116, 255, 0.25); }
.button-secondary, .button-ghost, .button-light, .button-transparent { background: rgba(255,255,255,.76); border-color: var(--line); }
[data-theme="dark"] .button-secondary, [data-theme="dark"] .button-ghost, [data-theme="dark"] .button-light, [data-theme="dark"] .button-transparent { background: rgba(255,255,255,.04); }
.button-light { color: #0e2437; }
.button-transparent:hover, .button-secondary:hover, .button-ghost:hover { transform: translateY(-2px); }
.hero { padding-top: 140px; overflow: hidden; }
.hero-grid { opacity: .55; mask-image: radial-gradient(circle at 50% 28%, black 48%, transparent 94%); }
.hero-orb { filter: blur(18px); opacity: .9; }
.hero-orb-one { background: radial-gradient(circle, rgba(28, 191, 214, 0.22), transparent 68%); }
.hero-orb-two { background: radial-gradient(circle, rgba(112, 102, 255, 0.18), transparent 70%); }
.eyebrow { padding: 8px 14px; border: 1px solid rgba(21, 191, 213, .16); border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: 0 10px 28px rgba(62, 95, 138, 0.08); }
[data-theme="dark"] .eyebrow { background: rgba(255,255,255,.035); }
.eyebrow-dot { box-shadow: 0 0 0 8px rgba(21,191,213,.10), 0 0 18px rgba(21,191,213,.22); }
.hero-copy h1 { max-width: 14ch; }
.hero-lead { max-width: 64ch; color: var(--text-soft); font-size: clamp(17px, 1.75vw, 20px); line-height: 1.72; }
.gradient-text, .muted-gradient { background: linear-gradient(135deg, #18bed6 0%, #337cff 40%, #7168ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-proof { margin-top: 28px; gap: 12px; flex-wrap: wrap; }
.proof-item { background: rgba(255,255,255,.68); border: 1px solid var(--line); box-shadow: 0 12px 24px rgba(62, 95, 138, 0.08); }
[data-theme="dark"] .proof-item { background: rgba(255,255,255,.04); }
.dashboard-window, .bento-card, .comparison-card, .workflow-step, .workflow-summary, .audience-tabs, .principles-panel, .accordion-item, .final-cta, .modal-card, .mobile-menu, .tab-shell, .flip-card, .footer-top, .faq-intro { background: color-mix(in srgb, var(--surface-solid) 92%, transparent); border: 1px solid var(--line); box-shadow: var(--shadow); }
.dashboard-window { border-radius: 30px; overflow: hidden; }
.window-topbar { background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(243,248,255,.78)); border-bottom: 1px solid var(--line); }
[data-theme="dark"] .window-topbar { background: linear-gradient(180deg, rgba(16,33,52,.94), rgba(13,28,43,.86)); }
.dashboard-body { background: transparent; }
.dashboard-sidebar { background: linear-gradient(180deg, rgba(244,248,255,.96), rgba(236,243,251,.86)); border-right: 1px solid var(--line); }
[data-theme="dark"] .dashboard-sidebar { background: linear-gradient(180deg, rgba(11,24,39,.98), rgba(11,24,39,.86)); }
.sidebar-links span, .sidebar-workspace, .sidebar-profile, .icon-button, .task-row, .application-row, .answer-row, .person-card, .kanban-col > div, .profile-meta span, .contact-options a, .workflow-note, .stat-grid .mini-stat, .activity-panel, .tasks-panel, .tab-panel, .accordion-content, .flip-face, .principles-list article { background: rgba(255,255,255,.72); border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(62, 95, 138, 0.06); }
[data-theme="dark"] .sidebar-links span, [data-theme="dark"] .sidebar-workspace, [data-theme="dark"] .sidebar-profile, [data-theme="dark"] .icon-button, [data-theme="dark"] .task-row, [data-theme="dark"] .application-row, [data-theme="dark"] .answer-row, [data-theme="dark"] .person-card, [data-theme="dark"] .kanban-col > div, [data-theme="dark"] .profile-meta span, [data-theme="dark"] .contact-options a, [data-theme="dark"] .workflow-note, [data-theme="dark"] .stat-grid .mini-stat, [data-theme="dark"] .activity-panel, [data-theme="dark"] .tasks-panel, [data-theme="dark"] .tab-panel, [data-theme="dark"] .accordion-content, [data-theme="dark"] .flip-face, [data-theme="dark"] .principles-list article { background: rgba(255,255,255,.03); }
.sidebar-links span.active, .task-row:hover, .application-row:hover, .contact-options a:hover { border-color: rgba(21,191,213,.24); background: linear-gradient(180deg, rgba(240,249,255,.96), rgba(234,246,255,.78)); }
[data-theme="dark"] .sidebar-links span.active, [data-theme="dark"] .task-row:hover, [data-theme="dark"] .application-row:hover, [data-theme="dark"] .contact-options a:hover { background: rgba(21,191,213,.08); }
.dashboard-content, .bento-card, .workflow-summary, .tab-panel, .principles-panel, .final-cta, .modal-card { position: relative; }
.dashboard-content::before, .bento-card::after, .principles-panel::after, .final-cta::before, .modal-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.84), transparent); pointer-events: none; }
.spotlight-card::before { background: radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 190, 214, 0.08), transparent 42%); }
.integration-strip { padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.56); box-shadow: 0 14px 30px rgba(62, 95, 138, 0.06); }
[data-theme="dark"] .integration-strip { background: rgba(255,255,255,.03); }
.integration-track i { background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.problem-section::before, .modules-section, .workflow-section::before, .principles-section::before, .faq-section::before { background: none; }
.problem-section, .workflow-section, .principles-section, .faq-section { position: relative; }
.problem-section::after, .workflow-section::after, .principles-section::after, .faq-section::after, .modules-section::after { box-shadow: 0 1px 0 rgba(255,255,255,.35) inset; }
.before-after { gap: 16px; }
.comparison-card { min-height: 460px; }
.comparison-before { opacity: 1; background: linear-gradient(180deg, rgba(255,244,246,.96), rgba(255,251,252,.94)); }
[data-theme="dark"] .comparison-before { background: linear-gradient(180deg, rgba(53,17,27,.76), rgba(29,16,24,.84)); }
.comparison-after { background: linear-gradient(180deg, rgba(240,250,255,.98), rgba(244,247,255,.96)); }
[data-theme="dark"] .comparison-after { background: linear-gradient(180deg, rgba(10,31,46,.92), rgba(15,26,45,.98)); }
.comparison-before .comparison-tag { background: rgba(235,103,128,.08); color: #d45871; border-color: rgba(235,103,128,.16); }
.comparison-after .comparison-tag { background: rgba(21,191,213,.10); color: var(--cyan-strong); }
.flow-core { box-shadow: 0 14px 32px rgba(50, 115, 255, 0.22); }
.bento-grid { gap: 18px; }
.bento-card { border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.94)); }
[data-theme="dark"] .bento-card { background: linear-gradient(180deg, rgba(11,24,39,.98), rgba(12,27,43,.92)); }
.feature-tags span, .comparison-tag, .cta-badge, .counter-pill, .workflow-badge, .flip-hint, .module-kicker { box-shadow: none; }
.feature-tags span, .comparison-tag, .cta-badge, .counter-pill, .workflow-badge, .flip-hint { background: rgba(255,255,255,.72); border-color: var(--line); }
[data-theme="dark"] .feature-tags span, [data-theme="dark"] .comparison-tag, [data-theme="dark"] .cta-badge, [data-theme="dark"] .counter-pill, [data-theme="dark"] .workflow-badge, [data-theme="dark"] .flip-hint { background: rgba(255,255,255,.04); }
.module-icon, .mini-stat-icon, .task-icon, .workflow-icon, .modal-icon, .cta-logo, .contact-avatar, .app-avatar, .profile-large-avatar, .profile-avatar, .workspace-avatar, .sidebar-logo .mini-mark { box-shadow: 0 14px 28px rgba(63, 120, 255, 0.14); }
.module-icon, .mini-stat-icon, .workflow-icon, .modal-icon, .cta-logo, .contact-avatar, .app-avatar, .profile-large-avatar, .profile-avatar, .workspace-avatar, .sidebar-logo .mini-mark { background: linear-gradient(135deg, rgba(21,191,213,.16), rgba(110,102,255,.18)); color: var(--cyan-strong); border-color: rgba(21,191,213,.18); }
.violet-icon { color: #685dff; background: linear-gradient(135deg, rgba(109,102,255,.14), rgba(132,103,255,.18)); }
.blue-icon { color: #2a74ff; background: linear-gradient(135deg, rgba(71,136,255,.14), rgba(75,168,255,.18)); }
.amber-icon { color: #d28a26; background: linear-gradient(135deg, rgba(245,161,62,.14), rgba(250,187,101,.18)); }
.green-icon { color: #1ea06d; background: linear-gradient(135deg, rgba(34,201,142,.14), rgba(73,221,172,.18)); }
.paper, .flip-back, .flip-front, .profile-card-ui, .kanban-col, .discord-node, .summary-card { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,249,255,.92)); border: 1px solid var(--line); }
[data-theme="dark"] .paper, [data-theme="dark"] .flip-back, [data-theme="dark"] .flip-front, [data-theme="dark"] .profile-card-ui, [data-theme="dark"] .kanban-col, [data-theme="dark"] .discord-node, [data-theme="dark"] .summary-card { background: linear-gradient(180deg, rgba(13,28,43,.96), rgba(10,22,35,.94)); }
.chart { border-radius: 18px; background: linear-gradient(180deg, rgba(240,247,255,.9), rgba(234,243,252,.72)); }
[data-theme="dark"] .chart { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)); }
.chart-grid-lines { opacity: .32; }
.chart-line { filter: drop-shadow(0 6px 10px rgba(21,191,213,.18)); }
.timeline-dot.active { box-shadow: 0 0 0 5px rgba(21,191,213,.08), 0 0 18px rgba(21,191,213,.16); }
.workflow-step.active, .tab-button.active, .accordion-item.open { border-color: rgba(21,191,213,.25); box-shadow: 0 18px 36px rgba(62, 95, 138, 0.10); }
[data-theme="dark"] .workflow-step.active, [data-theme="dark"] .tab-button.active, [data-theme="dark"] .accordion-item.open { box-shadow: 0 18px 36px rgba(0,0,0,.22); }
.tab-button { background: rgba(255,255,255,.62); border: 1px solid var(--line); }
[data-theme="dark"] .tab-button { background: rgba(255,255,255,.03); }
.principles-panel { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.94)); }
[data-theme="dark"] .principles-panel { background: linear-gradient(180deg, rgba(11,24,39,.98), rgba(12,27,43,.92)); }
.principles-list article span { background: linear-gradient(135deg, #18bed6, #7168ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.faq-layout { gap: 30px; }
.faq-intro { padding: 30px; border-radius: 24px; }
.accordion-item { overflow: hidden; border-radius: 18px; }
.accordion-trigger { background: transparent; }
.accordion-content { margin: 0 16px 16px; border-radius: 14px; }
.final-cta { overflow: hidden; background: linear-gradient(135deg, rgba(18,190,213,.08) 0%, rgba(50,120,255,.08) 35%, rgba(110,102,255,.12) 100%), linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,255,.94)); }
[data-theme="dark"] .final-cta { background: linear-gradient(135deg, rgba(18,190,213,.12) 0%, rgba(50,120,255,.10) 35%, rgba(110,102,255,.14) 100%), linear-gradient(180deg, rgba(11,24,39,.98), rgba(10,22,35,.96)); }
.cta-logo { color: white; background: linear-gradient(135deg, #18bed6, #7168ff); }
.cta-beam { opacity: .9; filter: blur(6px); }
.site-footer { background: transparent; }
.footer-top { padding: 30px; border-radius: 26px; }
.footer-bottom { color: var(--text-muted); border-top-color: var(--line); }
.contact-modal.open .modal-card { box-shadow: 0 30px 90px rgba(38, 65, 99, 0.18); }
.modal-backdrop { background: rgba(18, 33, 52, 0.28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
@media (max-width: 1180px) { .before-after { grid-template-columns: 1fr; } .comparison-flow { justify-content: center; padding: 4px 0; } .comparison-card { min-height: unset; } }
@media (max-width: 900px) { .site-header { background: color-mix(in srgb, var(--surface-solid) 88%, transparent); } .section { padding: 86px 0; } .hero { padding-top: 120px; } .eyebrow, .proof-item, .integration-strip, .tab-button, .button-secondary, .button-ghost { background: color-mix(in srgb, var(--surface-solid) 96%, transparent); } .dashboard-window, .bento-card, .comparison-card, .workflow-step, .workflow-summary, .audience-tabs, .principles-panel, .accordion-item, .final-cta, .modal-card, .faq-intro { box-shadow: 0 16px 40px rgba(42, 70, 104, 0.10); } }
@media (prefers-reduced-motion: reduce) { .hero-orb, .orbit, .spotlight-card::before { display: none !important; } }

/* ===== Unitelya v1.2.1 layout hotfix ===== */
.hero {
  padding-top: 124px;
}
.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: 48px;
  min-height: 600px;
  padding: 70px;
  border: 1px solid rgba(120, 172, 223, 0.22);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(16, 137, 172, 0.88) 0%, rgba(28, 76, 148, 0.88) 46%, rgba(79, 75, 184, 0.9) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
  box-shadow: 0 44px 90px rgba(7, 21, 44, 0.28);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% -8%, rgba(255,255,255,.18), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  pointer-events: none;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 110px rgba(255,255,255,.04), 0 0 0 220px rgba(255,255,255,.02);
  pointer-events: none;
}
.hero-panel-copy,
.hero-logo-stage { position: relative; z-index: 1; }
.hero-panel-copy h1 {
  margin: 16px 0 18px;
  max-width: 10.5ch;
  color: #fff;
  font-size: clamp(54px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.075em;
}
.hero-panel .hero-lead {
  max-width: 52ch;
  color: rgba(255,255,255,.8);
}
.hero-panel .cta-badge {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-panel .cta-badge i {
  background: #bdf6ff;
  box-shadow: 0 0 0 8px rgba(189,246,255,.12);
}
.hero-panel-actions { margin-top: 30px; }
.hero-panel .button-light {
  background: #fff;
  border-color: transparent;
  color: #102033;
}
.hero-panel .button-light:hover { box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16); }
.hero-panel .button-transparent {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.hero-panel .button-transparent:hover {
  background: rgba(255,255,255,.12);
}
.hero-logo-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
}
.hero-logo-glow {
  position: absolute;
  width: 520px;
  height: 220px;
  right: -20px;
  bottom: -34px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(159, 219, 255, 0.38), rgba(159, 219, 255, 0.08) 48%, transparent 74%);
  filter: blur(16px);
  transform: rotate(-18deg);
}
.hero-logo-card {
  display: grid;
  place-items: center;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 1 / 1;
  font-size: clamp(110px, 14vw, 184px);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #37d1f2 0%, #3e91ff 56%, #7267ff 100%);
  border-radius: 12px;
  transform: rotate(-8deg);
  box-shadow: 0 28px 60px rgba(8, 21, 49, 0.34);
}

.showcase-section {
  padding-top: 96px;
}
.showcase-layout {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}
.showcase-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(50px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -.07em;
}
.showcase-copy p {
  max-width: 38ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}
.showcase-actions {
  margin-top: 32px;
}
.showcase-visual {
  position: relative;
  min-width: 0;
  padding: 12px 12px 28px;
}
.showcase-visual .dashboard-window {
  transform: none;
}
.showcase-visual .floating-card {
  z-index: 3;
  max-width: 170px;
  min-height: 78px;
  padding: 14px 16px;
  gap: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(135, 168, 210, .26);
  box-shadow: 0 24px 40px rgba(82, 114, 148, .16);
}
[data-theme="dark"] .showcase-visual .floating-card {
  background: rgba(10,24,38,.96);
}
.showcase-visual .floating-card b {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
.showcase-visual .floating-card small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
}
.showcase-visual .floating-card-one {
  left: -28px;
  bottom: 30px;
}
.showcase-visual .floating-card-two {
  right: -20px;
  top: 88px;
}
.task-row {
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.task-row:first-of-type { margin-top: 16px; }
.task-row > span:nth-child(2) { gap: 3px; }
.task-row b {
  font-size: 12px;
  line-height: 1.25;
}
.task-row small {
  font-size: 10px;
  line-height: 1.35;
}

.flip-grid {
  align-items: stretch;
}
.flip-card {
  height: 364px;
}
.flip-face {
  justify-content: flex-start;
  gap: 0;
}
.flip-symbol {
  margin: 34px 0 28px;
}
.flip-front h3,
.flip-front p,
.flip-back h3,
.flip-back p,
.flip-back ul {
  position: relative;
  z-index: 1;
}
.flip-front p {
  max-width: 25ch;
  min-height: 48px;
}
.flip-hint {
  margin-top: auto;
}

.audience-tabs {
  overflow: hidden;
}
.tab-list {
  position: relative;
  z-index: 2;
}
.tab-button {
  cursor: pointer;
  position: relative;
}
.tab-button:hover {
  color: var(--text);
  background: rgba(255,255,255,.1);
}
.tab-panel {
  min-height: 520px;
}
.tab-panel[hidden] { display: none !important; }
.tab-panel.active { display: grid; }

.faq-layout {
  grid-template-columns: .62fr 1.1fr;
  gap: 46px;
}
.faq-intro {
  position: sticky;
  top: 108px;
  align-self: start;
}
.accordion {
  display: grid;
  gap: 14px;
  border: 0;
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: 0 16px 34px rgba(54, 83, 118, 0.08);
}
[data-theme="dark"] .accordion-item {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.accordion-trigger {
  padding: 22px 24px;
}
.accordion-trigger span {
  display: block;
  padding-right: 12px;
}
.accordion-content {
  margin: 0;
  padding: 0 24px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.accordion-content > p {
  padding: 0 0 22px !important;
}

.final-cta-section { display: none; }

@media (max-width: 1180px) {
  .hero-panel,
  .showcase-layout {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    padding: 54px;
  }
  .hero-logo-stage {
    min-height: 280px;
  }
  .showcase-copy p {
    max-width: none;
  }
  .showcase-visual .floating-card-one {
    left: 10px;
    bottom: 14px;
  }
  .showcase-visual .floating-card-two {
    right: 8px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-intro {
    position: static;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 112px;
  }
  .hero-panel {
    min-height: auto;
    padding: 32px 26px 36px;
    gap: 28px;
    border-radius: 28px;
  }
  .hero-panel-copy h1,
  .showcase-copy h2 {
    font-size: clamp(42px, 14vw, 58px);
  }
  .hero-panel .hero-lead,
  .showcase-copy p {
    font-size: 16px;
  }
  .hero-logo-stage {
    min-height: 220px;
  }
  .hero-logo-glow {
    width: 300px;
    height: 140px;
    right: 0;
  }
  .hero-logo-card {
    width: 180px;
    font-size: 122px;
  }
  .showcase-section {
    padding-top: 72px;
  }
  .showcase-layout {
    gap: 28px;
  }
  .showcase-visual {
    padding: 0;
  }
  .showcase-visual .floating-card {
    transform: scale(.92);
    transform-origin: center;
  }
  .showcase-visual .floating-card-one {
    left: 4px;
    bottom: 8px;
  }
  .showcase-visual .floating-card-two {
    top: 16px;
    right: 4px;
  }
  .flip-card {
    height: 332px;
  }
}

/* ===== Unitelya v1.2.2 FAQ cleanup ===== */
.showcase-visual {
  padding-bottom: 0;
}

.faq-section .container.faq-layout {
  display: block;
  max-width: 980px;
}
.faq-intro {
  position: static;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.faq-intro .eyebrow {
  margin-inline: auto;
}
.faq-intro p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.faq-intro .button {
  margin-top: 12px;
}
.faq-section .accordion {
  max-width: 980px;
  margin: 0 auto;
}
.faq-section .accordion-item {
  border-radius: 20px;
}
.faq-section .accordion-trigger {
  padding: 22px 26px;
  font-size: 18px;
}
.faq-section .accordion-content {
  padding: 0 26px;
}
.faq-section .accordion-content > p {
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .faq-intro {
    margin-bottom: 20px;
    text-align: left;
  }
  .faq-intro .eyebrow {
    margin-inline: 0;
  }
  .faq-intro p {
    margin-left: 0;
    margin-right: 0;
  }
  .faq-section .accordion-trigger {
    padding: 18px 18px;
    font-size: 16px;
  }
  .faq-section .accordion-content {
    padding: 0 18px;
  }
}


/* ===== Unitelya v1.2.3 FAQ spoiler + showcase balance ===== */
.faq-section .accordion-content {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  visibility: hidden;
  transition: max-height .32s ease, opacity .2s ease, padding .32s ease, visibility 0s linear .32s;
}
.faq-section .accordion-content > p {
  margin: 0;
  padding: 0 !important;
  overflow: visible;
}
.faq-section .accordion-item.open .accordion-content {
  max-height: 320px;
  opacity: 1;
  padding: 0 26px 22px;
  visibility: visible;
  transition: max-height .32s ease, opacity .2s ease, padding .32s ease, visibility 0s;
}
.faq-section .accordion-item.open .accordion-content > p {
  padding: 0 !important;
}

.showcase-section {
  padding-top: 76px;
  padding-bottom: 94px;
}
.showcase-layout {
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  gap: 38px;
}
.showcase-copy .eyebrow {
  opacity: .82;
}
.showcase-copy h2 {
  max-width: 9.5ch;
  font-size: clamp(44px, 4.5vw, 62px);
  line-height: 1.02;
}
.showcase-copy p {
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.68;
}
.showcase-actions {
  margin-top: 26px;
}
.showcase-actions .button {
  min-height: 52px;
}
.showcase-visual {
  opacity: .94;
}
.showcase-visual .dashboard-window {
  border-color: color-mix(in srgb, var(--line) 88%, transparent);
  box-shadow: 0 24px 58px rgba(37, 69, 105, .12), 0 1px 0 rgba(255,255,255,.5) inset;
}
[data-theme="dark"] .showcase-visual .dashboard-window {
  box-shadow: 0 24px 58px rgba(0, 0, 0, .28), 0 1px 0 rgba(255,255,255,.03) inset;
}
.showcase-visual .dashboard-window::before {
  opacity: .45;
}
.showcase-section .gradient-text {
  background: linear-gradient(135deg, #34b8d2 0%, #4f8bea 54%, #6b6ee9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .faq-section .accordion-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  .faq-section .accordion-item.open .accordion-content {
    padding: 0 18px 18px;
  }
  .showcase-section {
    padding-top: 62px;
    padding-bottom: 76px;
  }
  .showcase-copy h2 {
    max-width: 12ch;
  }
}

/* ===== Unitelya v1.2.4 tabs + discord channel ===== */
.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: transparent;
  border-bottom: 0;
}
.tab-button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: -.01em;
  box-shadow: none;
}
.tab-button.active {
  box-shadow: inset 0 0 0 1px rgba(92,229,242,.14);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.discord-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 16px;
  margin-top: 4px;
  border-radius: 18px;
  border: 1px solid rgba(114, 137, 218, 0.22);
  background: linear-gradient(135deg, rgba(88,101,242,0.14), rgba(118,103,255,0.10));
  box-shadow: 0 14px 30px rgba(49, 66, 136, 0.12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.discord-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 137, 218, 0.38);
  box-shadow: 0 18px 34px rgba(49, 66, 136, 0.16);
  background: linear-gradient(135deg, rgba(88,101,242,0.18), rgba(118,103,255,0.12));
}
.discord-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7289da, #5865f2);
  box-shadow: 0 10px 24px rgba(88,101,242,0.28);
  flex: 0 0 auto;
}
.discord-cta-icon .ui-icon {
  width: 20px;
  height: 20px;
}
.discord-cta-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.discord-cta-copy b {
  font-size: 14px;
  color: var(--text);
}
.discord-cta-copy small {
  color: var(--text-muted);
  font-size: 11px;
}
.discord-cta-arrow {
  margin-left: auto;
  color: #7289da;
  flex: 0 0 auto;
}
.discord-cta-arrow .ui-icon {
  width: 16px;
  height: 16px;
}
[data-theme="dark"] .discord-cta {
  background: linear-gradient(135deg, rgba(88,101,242,0.16), rgba(118,103,255,0.10));
  border-color: rgba(114,137,218,0.26);
}
@media (max-width: 900px) {
  .tab-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }
  .tab-button {
    min-height: 42px;
    font-size: 13px;
    padding: 0 10px;
  }
  .discord-cta {
    width: 100%;
  }
}

/* ===== Unitelya v1.2.5 Discord header + principles alignment ===== */
.header-discord-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 6px 13px 6px 7px;
  border: 1px solid rgba(114, 137, 218, 0.30);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7289da 0%, #5865f2 58%, #6754e8 100%);
  box-shadow: 0 12px 26px rgba(88, 101, 242, 0.24);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.header-discord-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 17px 30px rgba(88, 101, 242, 0.32);
}
.header-discord-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,.13);
}
.header-discord-icon .ui-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}
.mobile-discord-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, #7289da, #5865f2) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 14px 28px rgba(88,101,242,.22);
}
.mobile-discord-link span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255,255,255,.12);
}
.mobile-discord-link .ui-icon {
  width: 17px;
  height: 17px;
}

.principles-list {
  display: grid;
  gap: 12px;
}
.principles-list article,
[data-theme="dark"] .principles-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface-solid) 90%, transparent);
  box-shadow: 0 12px 26px rgba(54, 83, 118, 0.06);
}
[data-theme="dark"] .principles-list article {
  background: rgba(255,255,255,.025);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}
.principles-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.principles-list article > span,
.principles-list article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(42, 191, 216, .24);
  border-radius: 13px;
  color: var(--cyan-strong);
  background: linear-gradient(135deg, rgba(21,191,213,.10), rgba(109,102,255,.09));
  box-shadow: inset 0 1px rgba(255,255,255,.34);
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: .08em;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
.principles-list article > div {
  min-width: 0;
}
.principles-list h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.25;
}
.principles-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1060px) {
  .header-discord-button span:last-child {
    display: none;
  }
  .header-discord-button {
    width: 40px;
    padding: 5px;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .header-discord-button {
    display: none;
  }
  .principles-list article,
  [data-theme="dark"] .principles-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 78px;
    gap: 13px;
    padding: 14px;
  }
  .principles-list article > span,
  .principles-list article span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}

.hero-discord-link {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #7289da 0%, #5865f2 64%, #6754e8 100%);
  box-shadow: 0 16px 30px rgba(49, 55, 143, .26);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.hero-discord-link:hover {
  transform: translateY(-3px) rotate(-2deg);
  filter: saturate(1.08);
  box-shadow: 0 22px 38px rgba(49, 55, 143, .34);
}
.hero-discord-link .ui-icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}
@media (max-width: 900px) {
  .hero-discord-link {
    width: 100%;
    height: 52px;
  }
}


/* ===== Unitelya v1.3 logo replacement ===== */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 10px 18px rgba(74, 176, 235, 0.18));
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.hero-logo-card {
  width: clamp(190px, 29vw, 300px);
  padding: 0;
  background: transparent;
  box-shadow: 0 28px 60px rgba(8, 21, 49, 0.28);
  overflow: visible;
}
.hero-logo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18%;
}
@media (max-width: 900px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero-logo-card {
    width: 190px;
  }
}


/* ===== Unitelya v1.3.1 discord header icon fix ===== */
.header-discord-icon {
  border-radius: 9px;
  background: rgba(255,255,255,.16);
}
.header-discord-icon .ui-icon {
  width: 16px;
  height: 16px;
  stroke: none;
  fill: currentColor;
}
.mobile-discord-link {
  display: none !important;
}
@media (max-width: 900px) {
  .header-discord-button {
    display: inline-flex;
    width: 40px;
    min-width: 40px;
    padding: 5px;
    justify-content: center;
  }
  .header-discord-button span:last-child {
    display: none;
  }
}


/* ===== Unitelya v1.3.6 footer + discord node cleanup ===== */
.discord-node {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.discord-node span {
  position: relative;
  z-index: 1;
}
.discord-node .ui-icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}
.footer-bottom .footer-author-text {
  color: inherit;
  font: inherit;
}

/* ===== Unitelya v1.3.7 visual fixes ===== */
[data-theme="light"] .showcase-visual .dashboard-window {
  background: linear-gradient(180deg, rgba(255,255,255,.985), rgba(247,250,255,.965));
  border-color: rgba(152, 177, 210, 0.32);
}
[data-theme="light"] .showcase-visual .dashboard-content,
[data-theme="light"] .showcase-visual .dash-heading h3,
[data-theme="light"] .showcase-visual .mini-stat strong,
[data-theme="light"] .showcase-visual .panel-heading b,
[data-theme="light"] .showcase-visual .task-row b,
[data-theme="light"] .showcase-visual .sidebar-logo,
[data-theme="light"] .showcase-visual .sidebar-workspace b,
[data-theme="light"] .showcase-visual .sidebar-profile b,
[data-theme="light"] .showcase-visual .task-arrow {
  color: #18293b;
}
[data-theme="light"] .showcase-visual .window-address,
[data-theme="light"] .showcase-visual .window-status,
[data-theme="light"] .showcase-visual .dash-heading small,
[data-theme="light"] .showcase-visual .dash-heading p,
[data-theme="light"] .showcase-visual .mini-stat small,
[data-theme="light"] .showcase-visual .panel-heading span,
[data-theme="light"] .showcase-visual .chart-labels,
[data-theme="light"] .showcase-visual .task-row small,
[data-theme="light"] .showcase-visual .sidebar-links span,
[data-theme="light"] .showcase-visual .sidebar-workspace small,
[data-theme="light"] .showcase-visual .sidebar-profile small {
  color: #647b91;
}
[data-theme="light"] .showcase-visual .sidebar-links span,
[data-theme="light"] .showcase-visual .sidebar-workspace,
[data-theme="light"] .showcase-visual .sidebar-profile,
[data-theme="light"] .showcase-visual .stat-grid .mini-stat,
[data-theme="light"] .showcase-visual .activity-panel,
[data-theme="light"] .showcase-visual .tasks-panel,
[data-theme="light"] .showcase-visual .icon-button,
[data-theme="light"] .showcase-visual .task-row {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 22px rgba(64, 97, 138, 0.06);
}
[data-theme="light"] .showcase-visual .sidebar-links span.active {
  color: #26a9d4;
  background: linear-gradient(180deg, rgba(232, 250, 255, .96), rgba(229, 244, 255, .9));
}

.hero-panel-copy h1,
.showcase-copy h2 {
  line-height: 1.04;
  letter-spacing: -.062em;
  padding-right: .08em;
  padding-bottom: .06em;
  overflow: visible;
}
.showcase-copy h2 {
  max-width: 10.3ch;
}

.hero-logo-stage {
  overflow: visible;
}
.hero-logo-card {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}
.hero-logo-image {
  filter: drop-shadow(0 22px 38px rgba(28, 49, 98, 0.18));
}

.flip-grid {
  overflow: visible;
}
.flip-card,
.flip-inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.flip-card::before,
.flip-card::after,
.flip-inner::before,
.flip-inner::after {
  content: none !important;
  display: none !important;
}

/* ===== Unitelya v1.3.8 heading glyph clipping fix ===== */
.gradient-text,
.muted-gradient {
  display: inline-block;
  padding-right: .12em;
  padding-bottom: .08em;
  margin-right: -.02em;
  overflow: visible;
  vertical-align: top;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.hero-panel-copy h1,
.workflow-copy h2,
.principles-copy h2,
.faq-intro h2,
.final-cta h2,
.tab-copy h3 {
  overflow: visible;
  text-rendering: geometricPrecision;
}

.showcase-copy h2,
.hero-panel-copy h1 {
  max-width: 10.8ch;
  line-height: 1.06;
  padding-right: .1em;
  padding-bottom: .08em;
}

@media (max-width: 900px) {
  .showcase-copy h2,
  .hero-panel-copy h1 {
    max-width: 12.6ch;
  }
}

/* ===== Unitelya v1.3.9 heading balance restore ===== */
.gradient-text,
.muted-gradient {
  display: inline;
  padding-right: .02em;
  padding-bottom: .02em;
  margin-right: 0;
  vertical-align: baseline;
}

.section-heading h2,
.showcase-copy h2,
.hero-panel-copy h1,
.workflow-copy h2,
.principles-copy h2,
.faq-intro h2,
.final-cta h2,
.tab-copy h3 {
  padding-right: .1em;
  padding-bottom: .06em;
}

.showcase-copy h2,
.hero-panel-copy h1 {
  max-width: 9.7ch;
  line-height: 1.02;
  letter-spacing: -.066em;
}

.showcase-copy h2 .gradient-text,
.showcase-copy h2 .muted-gradient,
.hero-panel-copy h1 .gradient-text,
.hero-panel-copy h1 .muted-gradient {
  white-space: nowrap;
  display: inline;
  padding-right: .05em;
}

@media (max-width: 900px) {
  .showcase-copy h2,
  .hero-panel-copy h1 {
    max-width: 10.8ch;
    line-height: 1.03;
  }
}

/* ===== Unitelya v1.4.0 explicit heading layout + Discord links ===== */
.showcase-copy .showcase-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  margin: 18px 0 18px;
  padding: 0 .12em .08em 0;
  overflow: visible;
  font-size: clamp(44px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.066em;
}
.showcase-title > span {
  display: block;
  max-width: 100%;
}
.showcase-title .showcase-title-accent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 .08em .05em 0;
  margin: 0;
  overflow: visible;
  line-height: 1.02;
  background: none;
  color: inherit;
}
.showcase-title .showcase-title-accent > span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #34b8d2 0%, #4f8bea 54%, #6b6ee9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: .08em;
  padding-bottom: .03em;
  overflow: visible;
}
.showcase-title-nowrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .showcase-copy .showcase-title {
    font-size: clamp(42px, 11.2vw, 58px);
    line-height: 1.04;
    letter-spacing: -.06em;
  }
}

/* ===== Unitelya v1.4.2 depth copy cleanup + workflow highlight polish ===== */
.workflow-steps::before {
  left: 39px;
  width: 2px;
  background: linear-gradient(180deg, rgba(21, 191, 213, 0.18), rgba(21, 191, 213, 0.08) 50%, rgba(130, 149, 176, 0.12));
}

.workflow-step {
  overflow: hidden;
  transform: none !important;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.workflow-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 0;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(21,191,213,.95), rgba(91,113,255,.78));
  opacity: 0;
  transition: width .25s ease, opacity .25s ease;
}

.workflow-step:hover {
  border-color: rgba(21,191,213,.18);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 26px rgba(62, 95, 138, 0.06);
}

.workflow-step.active {
  border-color: rgba(21,191,213,.28);
  background: linear-gradient(180deg, rgba(240,250,255,.92), rgba(232,246,255,.84));
  box-shadow: 0 18px 34px rgba(62, 95, 138, 0.10);
}
[data-theme="dark"] .workflow-step.active {
  background: linear-gradient(180deg, rgba(18,33,52,.92), rgba(15,28,45,.88));
  box-shadow: 0 18px 36px rgba(0,0,0,.20);
}
[data-theme="dark"] .workflow-step:hover {
  background: rgba(255,255,255,.035);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.workflow-step.active::before {
  width: 4px;
  opacity: 1;
}

.workflow-step.active .step-number {
  transform: scale(1.02);
}

[data-theme="light"] .workflow-step.active h3,
[data-theme="light"] .workflow-step.active p,
[data-theme="light"] .workflow-step.active .step-status {
  color: #18293b;
}
[data-theme="light"] .workflow-step.active .step-status {
  border-color: rgba(138,160,189,.28);
  background: rgba(255,255,255,.72);
}
[data-theme="dark"] .workflow-step.active .step-status {
  background: rgba(255,255,255,.04);
}

@media (max-width: 900px) {
  .workflow-step::before {
    top: 12px;
    bottom: 12px;
  }
}

/* ===== Unitelya v1.4.3 flip cards cleanup ===== */
.flip-card {
  height: 318px;
}

.flip-face {
  padding: 26px;
}

.flip-front::before,
.flip-back::before,
.flip-back::after {
  content: none !important;
  display: none !important;
}

.flip-front,
.flip-back {
  background-image: none;
}
[data-theme="dark"] .flip-front {
  background: linear-gradient(145deg, rgba(11,24,40,.92), rgba(7,17,29,.96));
}
[data-theme="dark"] .flip-back {
  background: linear-gradient(145deg, rgba(15,30,48,.95), rgba(10,21,38,.98));
}

.flip-symbol {
  width: 56px;
  height: 56px;
  margin: 18px 0 18px;
  border-radius: 18px;
  font-size: 24px;
  box-shadow: none;
}

.flip-face h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.08;
}

.flip-face p,
.flip-back li {
  font-size: 15px;
  line-height: 1.58;
}

.flip-hint {
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .flip-card {
    height: 300px;
  }
  .flip-face {
    padding: 22px;
  }
}

/* ===== Unitelya v1.4.5 flip cards real cleanup ===== */
.flip-card {
  height: 286px;
}

.flip-face {
  padding: 23px 24px;
}

.flip-symbol {
  width: 44px;
  height: 44px;
  margin: 15px 0 16px;
  border-radius: 14px;
  font-size: 21px;
}
.flip-symbol .ui-icon {
  width: 22px;
  height: 22px;
}

.flip-face h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
}

.flip-front p {
  max-width: 31ch;
  min-height: 0;
  font-size: 14px;
  line-height: 1.52;
}

.flip-hint,
[data-theme="light"] .flip-hint,
[data-theme="dark"] .flip-hint {
  margin-top: auto;
  padding: 10px 0 0;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.flip-hint::before,
.flip-hint::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .flip-card {
    height: 278px;
  }
  .flip-face {
    padding: 21px;
  }
}

/* ===== Unitelya v1.4.6 workflow number highlight removal ===== */
.workflow-step.active .step-number {
  color: var(--text-muted);
  border-color: var(--line-strong);
  background: var(--surface-solid);
  box-shadow: none;
  transform: none;
}

/* ===== Unitelya v1.4.8 flip numbers removed + workflow hover only ===== */
.flip-number {
  display: none !important;
}

.workflow-step.active,
[data-theme="dark"] .workflow-step.active {
  transform: none !important;
  border-color: var(--line) !important;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent) !important;
  box-shadow: var(--shadow) !important;
}
.workflow-step.active::before {
  width: 0 !important;
  opacity: 0 !important;
}
.workflow-step.active .step-number,
.workflow-step .step-number {
  color: var(--text-muted) !important;
  border-color: var(--line-strong) !important;
  background: var(--surface-solid) !important;
  box-shadow: none !important;
}
[data-theme="light"] .workflow-step.active h3,
[data-theme="light"] .workflow-step.active p,
[data-theme="light"] .workflow-step.active .step-status {
  color: inherit !important;
}
[data-theme="light"] .workflow-step.active .step-status {
  background: transparent !important;
  border-color: rgba(138,160,189,.22) !important;
}

.workflow-step:hover,
[data-theme="dark"] .workflow-step:hover {
  transform: none !important;
  border-color: rgba(21,191,213,.28) !important;
  background: linear-gradient(180deg, rgba(240,250,255,.92), rgba(232,246,255,.84)) !important;
  box-shadow: 0 18px 34px rgba(62, 95, 138, 0.10) !important;
}
[data-theme="dark"] .workflow-step:hover {
  background: linear-gradient(180deg, rgba(18,33,52,.92), rgba(15,28,45,.88)) !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.20) !important;
}
.workflow-step:hover::before {
  width: 4px !important;
  opacity: 1 !important;
}
.workflow-step:hover .step-number {
  color: #06131d !important;
  border-color: transparent !important;
  background: var(--cyan) !important;
}
.workflow-step:hover h3,
.workflow-step:hover p,
.workflow-step:hover .step-status {
  color: #18293b;
}
[data-theme="dark"] .workflow-step:hover h3,
[data-theme="dark"] .workflow-step:hover p,
[data-theme="dark"] .workflow-step:hover .step-status {
  color: inherit;
}
.workflow-step:hover .step-status {
  background: rgba(255,255,255,.72);
  border-color: rgba(138,160,189,.28);
}
[data-theme="dark"] .workflow-step:hover .step-status {
  background: rgba(255,255,255,.04);
}

/* ===== Unitelya v1.5.0 · GTA RP edition ===== */
.gta-rp-edition {
  position: relative;
  background:
    radial-gradient(circle at 14% 8%, rgba(21,191,213,.12), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(110,102,255,.12), transparent 30%),
    var(--bg);
}
.gta-rp-edition::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(112deg, transparent 0 46%, rgba(95,204,231,.12) 46.2% 46.45%, transparent 46.7%),
    linear-gradient(68deg, transparent 0 61%, rgba(119,113,255,.10) 61.15% 61.4%, transparent 61.65%),
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(113,165,211,.045) 111px 112px),
    repeating-linear-gradient(0deg, transparent 0 110px, rgba(113,165,211,.035) 111px 112px);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
[data-theme="dark"] .gta-rp-edition {
  background:
    radial-gradient(circle at 15% 4%, rgba(21,191,213,.12), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(110,102,255,.14), transparent 34%),
    linear-gradient(180deg, #07131f 0%, #091727 42%, #081421 100%);
}

.gta-rp-edition .site-header.scrolled {
  background: color-mix(in srgb, var(--bg-deep) 88%, transparent);
  box-shadow: 0 12px 34px rgba(4,15,27,.18);
}
.gta-rp-edition .site-header.scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,191,213,.52), rgba(110,102,255,.42), transparent);
}

.gta-rp-edition .hero-grid {
  opacity: .34;
  background-image:
    linear-gradient(rgba(101,230,244,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101,230,244,.08) 1px, transparent 1px),
    linear-gradient(37deg, transparent 46%, rgba(141,131,255,.11) 47%, transparent 48%);
  background-size: 54px 54px, 54px 54px, 240px 240px;
}
.gta-rp-edition .hero-panel {
  border-color: rgba(105,219,240,.28);
  background:
    linear-gradient(122deg, rgba(6,24,38,.96) 0%, rgba(12,57,82,.94) 42%, rgba(39,45,104,.95) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  box-shadow:
    0 52px 110px rgba(3,13,27,.34),
    0 0 0 1px rgba(255,255,255,.03) inset;
}
.gta-rp-edition .hero-panel::before {
  opacity: .82;
  background:
    radial-gradient(circle at 16% 20%, rgba(68,224,242,.14), transparent 28%),
    linear-gradient(28deg, transparent 0 37%, rgba(103,222,240,.08) 37.2% 37.6%, transparent 37.8%),
    linear-gradient(115deg, transparent 0 66%, rgba(142,131,255,.10) 66.15% 66.55%, transparent 66.8%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 30px);
  background-size: auto, auto, auto, 30px 30px, 30px 30px;
}
.gta-rp-edition .hero-panel::after {
  width: 660px;
  height: 660px;
  right: -155px;
  top: -175px;
  border-color: rgba(119,235,247,.15);
  box-shadow:
    0 0 0 82px rgba(91,197,231,.035),
    0 0 0 164px rgba(121,112,255,.025),
    0 0 90px rgba(45,176,221,.10);
}
.gta-rp-edition .hero-panel .cta-badge {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
  background: rgba(5,17,29,.28);
  border-color: rgba(135,234,247,.24);
}
.gta-rp-edition .hero-panel .cta-badge::after {
  content: "LIVE";
  margin-left: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #07131f;
  background: #79eef6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}
.gta-rp-edition .hero-panel-copy h1 {
  max-width: 11.2ch;
  text-shadow: 0 16px 46px rgba(0,0,0,.26);
}

.rp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.rp-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(166,232,244,.18);
  border-radius: 10px;
  color: rgba(255,255,255,.78);
  background: rgba(3,14,26,.26);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 650;
}
.rp-chip-row b {
  color: #81edf5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.rp-status-card {
  position: absolute;
  right: 2px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 17px 18px;
  border: 1px solid rgba(129,234,246,.22);
  border-radius: 16px;
  color: white;
  background: linear-gradient(145deg, rgba(4,17,30,.86), rgba(13,33,58,.78));
  box-shadow: 0 22px 50px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.025) inset;
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}
.rp-status-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rp-status-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58e6b1;
  box-shadow: 0 0 14px rgba(88,230,177,.9);
}
.rp-status-card strong {
  margin-top: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  letter-spacing: .06em;
}
.rp-status-card small {
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

.gta-rp-edition .button-primary {
  color: #04111d;
  background: linear-gradient(120deg, #74edf5, #32c7e3 48%, #6f74ff);
  box-shadow: 0 15px 38px rgba(37,190,225,.22), inset 0 1px rgba(255,255,255,.6);
}
.gta-rp-edition .button-primary:hover {
  box-shadow: 0 20px 48px rgba(37,190,225,.32), 0 0 0 1px rgba(132,238,248,.18) inset;
}

.gta-rp-edition .showcase-section::before,
.gta-rp-edition .modules-section::before,
.gta-rp-edition .workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(90deg, transparent 0 49.8%, rgba(21,191,213,.10) 50%, transparent 50.2%),
    radial-gradient(circle at 74% 38%, rgba(21,191,213,.10), transparent 28%);
}
.gta-rp-edition .dashboard-window {
  border-color: rgba(79,202,228,.24);
  box-shadow: 0 30px 80px rgba(4,18,33,.26), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.gta-rp-edition .window-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .02em;
}
.gta-rp-edition .window-status {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.gta-rp-edition .bento-card,
.gta-rp-edition .comparison-card,
.gta-rp-edition .flip-face,
.gta-rp-edition .workflow-step,
.gta-rp-edition .tab-panel,
.gta-rp-edition .accordion-item {
  border-top-color: color-mix(in srgb, var(--cyan) 28%, var(--line));
}
.gta-rp-edition .module-kicker,
.gta-rp-edition .step-status,
.gta-rp-edition .flip-hint,
.gta-rp-edition .comparison-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
}
.gta-rp-edition .site-footer {
  position: relative;
  border-top: 1px solid transparent;
}
.gta-rp-edition .site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,191,213,.38), rgba(110,102,255,.30), transparent);
}

@media (max-width: 900px) {
  .gta-rp-edition .hero-panel {
    padding: 34px 26px 38px;
  }
  .rp-chip-row {
    gap: 7px;
  }
  .rp-chip-row span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }
  .rp-status-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 260px);
    margin: -18px auto 0;
    transform: none;
  }
}
