:root {
    color-scheme: dark;
    --bg: #030507;
    --line: rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.08);
    --text: #f5f7fa;
    --muted: #9aa4b2;
    --cyan: #40e3cf;
    --blue: #7fb6ff;
    --violet: #a594ff;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}

/* Shared styles for the existing Tailwind pages. */
body.unified-page {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255,255,255,0.017) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 48% 0%, rgba(64, 227, 207, 0.1), transparent 32rem),
        linear-gradient(180deg, rgba(3, 5, 7, 0.54), #030507 44rem);
    color: #f8fafc;
}

body.unified-page #scroll-content {
    position: relative;
    min-height: 100vh;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #7df3e2 52%, #83b8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-wrapper {
    min-height: 52px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(3, 7, 18, 0.72);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
}

.nav-brand-divider {
    width: 1px;
    height: 24px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.14);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu-group {
    position: relative;
}

.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-panel {
    min-width: 190px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.dynamic-border-button,
.mobile-link-current {
    color: #041211;
    background: linear-gradient(135deg, #ffffff, #74f4e1 48%, #85b7ff);
    box-shadow: 0 0 28px rgba(64, 227, 207, 0.2);
}

.dynamic-border-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 800;
}

.page-hero {
    position: relative;
}

.blob {
    position: fixed;
    z-index: 0;
    width: 36vw;
    height: 36vw;
    border-radius: 999px;
    opacity: 0.22;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    top: -12vw;
    left: -10vw;
    background: #40e3cf;
}

.blob-2 {
    right: -14vw;
    bottom: 8vw;
    background: #7fb6ff;
}

.feature-card,
.service-card,
.metric-card,
.form-panel,
.info-list-card,
.about-brand-card,
.faq-search-shell,
.resource-search-shell,
.product-tab-shell,
.service-tab-shell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.64);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-card,
.service-card,
.metric-card,
.form-panel,
.info-list-card,
.about-brand-card {
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.metric-card:hover,
.info-list-card:hover {
    border-color: rgba(64, 227, 207, 0.32);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
}

.service-sample-pill,
.interactive-hero-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(64, 227, 207, 0.22);
    color: rgba(156, 245, 231, 0.86);
    background: rgba(64, 227, 207, 0.07);
}

.service-sample-pill {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.interactive-hero-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.form-input,
.form-select,
.resource-search-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-input,
.form-select {
    min-height: 52px;
    padding: 0 14px;
}

textarea.form-input {
    min-height: 132px;
    padding-top: 14px;
}

.form-input:focus,
.form-select:focus,
.resource-search-input:focus {
    border-color: rgba(64, 227, 207, 0.62);
    box-shadow: 0 0 0 4px rgba(64, 227, 207, 0.1);
}

.product-image-container {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.46);
    overflow: hidden;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 46px;
}

.hero-stat-label {
    display: block;
    color: rgba(125, 243, 226, 0.78);
    font-size: 12px;
    font-weight: 800;
}

.faq-item,
.timeline-item {
    border-color: rgba(255, 255, 255, 0.1);
}

body.unified-page main {
    position: relative;
    z-index: 1;
    padding-top: 88px !important;
}

body.unified-page .page-hero {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

body.unified-page .page-hero h1 {
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: clamp(36px, 3.8vw, 54px) !important;
    line-height: 1.08;
    font-weight: 800;
}

body.unified-page .page-hero p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(232, 238, 244, 0.68);
    line-height: 1.8;
}

body.unified-page section:not(.page-hero),
body.unified-page footer > div {
    position: relative;
    z-index: 1;
}

body.unified-page .container {
    width: min(calc(100% - 40px), var(--max));
}

body.unified-page .page-hero + section,
body.unified-page main > section:not(.page-hero) {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

body.unified-page .bg-gray-900\/50,
body.unified-page .bg-gray-900\/40,
body.unified-page .bg-gray-800\/50,
body.unified-page .bg-gray-800\/40 {
    background: rgba(7, 13, 16, 0.62) !important;
}

body.unified-page .rounded-2xl {
    border-radius: 8px !important;
}

body.unified-page .border-gray-700,
body.unified-page .border-gray-800 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.unified-page .shadow-lg,
body.unified-page .shadow-xl {
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28) !important;
}

body.unified-page footer {
    width: min(calc(100% - 40px), var(--max));
    margin: 64px auto 0;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

body.unified-page footer .container {
    width: 100%;
}

body.unified-page .glow-on-hover,
body.unified-page button[type="submit"],
body.unified-page .bg-gradient-to-r {
    border-radius: 8px !important;
}

body.unified-page .grid > .bg-gray-900\/50,
body.unified-page .grid > .service-card,
body.unified-page .grid > .feature-card,
body.unified-page .grid > .info-list-card,
body.unified-page .form-panel {
    border-radius: 8px !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        rgba(5, 9, 12, 0.7) !important;
}

body.unified-page h2,
body.unified-page h3 {
    letter-spacing: 0;
}

body.unified-page h2 {
    font-weight: 800 !important;
    line-height: 1.12 !important;
}

body.unified-page h3 {
    font-weight: 800 !important;
}

body.unified-page p,
body.unified-page li {
    color: rgba(232, 238, 244, 0.66);
    line-height: 1.75;
}

body.unified-page .text-gray-400,
body.unified-page .text-gray-500 {
    color: rgba(232, 238, 244, 0.62) !important;
}

body.unified-page .text-cyan-200\/70 {
    color: rgba(64, 227, 207, 0.78) !important;
}

body.unified-page .feature-card,
body.unified-page .service-card,
body.unified-page .metric-card,
body.unified-page .form-panel,
body.unified-page .info-list-card,
body.unified-page .about-brand-card,
body.unified-page .faq-item,
body.unified-page .resource-card,
body.unified-page .bg-gray-900\/50,
body.unified-page .bg-gray-900\/40,
body.unified-page .bg-gray-800\/50,
body.unified-page .bg-gray-800\/40 {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.072), rgba(255,255,255,0.024)),
        rgba(4, 8, 11, 0.72) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 26px 70px rgba(0,0,0,0.22) !important;
}

body.unified-page .feature-card:hover,
body.unified-page .service-card:hover,
body.unified-page .metric-card:hover,
body.unified-page .info-list-card:hover,
body.unified-page .faq-item:hover {
    border-color: rgba(64, 227, 207, 0.28) !important;
    transform: translateY(-2px);
}

body.unified-page .metric-card {
    min-height: 92px;
    padding: 16px !important;
}

body.unified-page .metric-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.05;
}

body.unified-page .product-image-container {
    border-radius: 8px !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 30px 30px,
        linear-gradient(180deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 30px 30px,
        rgba(2, 8, 10, 0.44);
}

body.unified-page .product-image-container img {
    border-radius: 0 !important;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,0.42));
}

body.unified-page a.bg-gradient-to-r,
body.unified-page button.bg-gradient-to-r,
body.unified-page button[type="submit"],
body.unified-page .dynamic-border-button {
    min-height: 44px;
    border: 0 !important;
    border-radius: 8px !important;
    color: #03100f !important;
    background: linear-gradient(135deg, #ffffff, #73f3df 48%, #84b8ff) !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

body.unified-page a.border,
body.unified-page button.border {
    min-height: 44px;
    border-color: rgba(255,255,255,0.14) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.045) !important;
    color: rgba(245,247,250,0.88) !important;
}

body.unified-page .service-sample-pill,
body.unified-page .inline-flex.rounded-full,
body.unified-page .rounded-full {
    border: 1px solid rgba(64, 227, 207, 0.2) !important;
    border-radius: 999px !important;
    background: rgba(64, 227, 207, 0.06) !important;
    color: rgba(165, 248, 235, 0.84) !important;
}

body.unified-page .product-tab-shell,
body.unified-page .service-tab-shell,
body.unified-page .faq-search-shell,
body.unified-page .resource-search-shell {
    border-radius: 8px !important;
    background: rgba(3, 5, 7, 0.58) !important;
}

body.unified-page .product-tab-shell,
body.unified-page .service-tab-shell {
    width: fit-content;
    max-width: calc(100% - 32px);
    margin-inline: auto;
    padding: 6px;
    gap: 6px !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(64, 227, 207, 0.045)),
        rgba(3, 5, 7, 0.78) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 52px rgba(0, 0, 0, 0.22);
}

body.unified-page .tab-button {
    position: relative;
    min-height: 40px;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 7px;
    color: rgba(226, 232, 240, 0.72);
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.unified-page .tab-button::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.34) 46%, transparent 72%);
    transform: translateX(-120%);
    transition: opacity 180ms ease, transform 520ms ease;
}

body.unified-page .tab-button:hover {
    color: #fff;
    border-color: rgba(64, 227, 207, 0.18);
    background: rgba(255, 255, 255, 0.065);
    transform: translateY(-1px);
}

body.unified-page .tab-button:hover::before {
    opacity: 0.42;
    transform: translateX(120%);
}

body.unified-page .tab-button.active,
body.unified-page .tab-button[aria-selected="true"] {
    color: #061312;
    border-color: rgba(134, 255, 215, 0.6);
    background: linear-gradient(135deg, #f5fffb 0%, #72f2df 50%, #7fb6ff 100%);
    box-shadow: 0 0 24px rgba(64, 227, 207, 0.2);
}

body.unified-page .service-tab-panel,
body.unified-page .faq-layout,
body.unified-page .privacy-content {
    border-radius: 8px !important;
}

body.unified-page .form-input,
body.unified-page .form-select,
body.unified-page .resource-search-input {
    border-radius: 8px !important;
    background: rgba(255,255,255,0.055) !important;
}

body.unified-page .modal > div {
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    background: rgba(5, 9, 12, 0.96) !important;
}

body.unified-page .timeline-item {
    border-left-color: rgba(64, 227, 207, 0.32) !important;
}

body.unified-page .about-brand-title,
body.unified-page .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #72f2df 54%, #88b9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

/* Usability fixes: dropdown bridge and dense metric cards. */
.eledot-home .site-header .nav-menu-group::before,
.unified-page .site-header .nav-menu-group::before {
    left: -18px !important;
    right: -18px !important;
    height: 38px !important;
}

.eledot-home .site-header .nav-dropdown-panel,
.unified-page .site-header .nav-dropdown-panel {
    top: 100% !important;
    left: 0 !important;
    margin-top: 0 !important;
    transform: translateY(10px) !important;
}

.eledot-home .site-header .nav-menu-group:hover .nav-dropdown-panel,
.unified-page .site-header .nav-menu-group:hover .nav-dropdown-panel,
.eledot-home .site-header .nav-menu-group:focus-within .nav-dropdown-panel,
.unified-page .site-header .nav-menu-group:focus-within .nav-dropdown-panel {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.eledot-home .site-header .nav-dropdown-panel .py-1,
.unified-page .site-header .nav-dropdown-panel .py-1 {
    display: grid;
    gap: 2px;
}

body.unified-page .feature-card .grid.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
}

body.unified-page .metric-card {
    overflow: hidden;
}

body.unified-page .metric-card strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(20px, 1.55vw, 25px) !important;
    line-height: 1.12 !important;
}

body.unified-page .metric-card span:last-child {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.45;
}

/* New home page, scoped so it cannot break existing pages. */
body.eledot-home {
    background: var(--bg);
    color: var(--text);
}

body.eledot-home.menu-open {
    overflow: hidden;
}

.eledot-home #optic-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

body.eledot-home #optic-field {
    display: none;
}

.eledot-home .site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255,255,255,0.017) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 48% 0%, rgba(64, 227, 207, 0.11), transparent 32rem),
        linear-gradient(180deg, rgba(3, 5, 7, 0.54), #030507 44rem);
}

.eledot-home .site-header,
.unified-page .site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - 32px), var(--max));
    height: 58px;
    padding: 0 16px 0 18px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(3, 5, 7, 0.62);
    backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(-50%);
    transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.eledot-home .site-header.is-elevated,
.unified-page .site-header.is-elevated {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(3, 5, 7, 0.86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.eledot-home .brand img,
.unified-page .brand img {
    width: 164px;
}

.eledot-home .desktop-nav,
.unified-page .desktop-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.eledot-home .desktop-nav a,
.eledot-home .header-action,
.unified-page .desktop-nav a,
.unified-page .header-action {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 7px;
    color: rgba(245, 247, 250, 0.76);
    font-size: 13px;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease;
}

.eledot-home .site-header .nav-menu-group,
.unified-page .site-header .nav-menu-group {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.eledot-home .site-header .nav-menu-group::before,
.unified-page .site-header .nav-menu-group::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -8px;
    right: -8px;
    height: 18px;
}

.eledot-home .site-header .nav-menu-trigger::after,
.unified-page .site-header .nav-menu-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.72;
}

.eledot-home .site-header .nav-dropdown-panel,
.unified-page .site-header .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(3, 5, 7, 0.92);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

#slm,
#filter,
#services,
#resources,
#faq {
    scroll-margin-top: 116px;
}

.eledot-home .site-header .nav-menu-group:hover .nav-dropdown-panel,
.unified-page .site-header .nav-menu-group:hover .nav-dropdown-panel,
.eledot-home .site-header .nav-menu-group:focus-within .nav-dropdown-panel,
.unified-page .site-header .nav-menu-group:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.eledot-home .site-header .nav-dropdown-panel a,
.unified-page .site-header .nav-dropdown-panel a {
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    color: rgba(245, 247, 250, 0.72);
    white-space: nowrap;
}

.eledot-home .site-header .nav-dropdown-panel a:hover,
.unified-page .site-header .nav-dropdown-panel a:hover {
    color: #fff;
    background: rgba(64, 227, 207, 0.12);
}

.eledot-home .desktop-nav a:hover,
.eledot-home .desktop-nav a[aria-current="page"],
.unified-page .desktop-nav a:hover,
.unified-page .desktop-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.eledot-home .header-action,
.unified-page .header-action {
    position: relative;
    justify-content: center;
    min-width: 92px;
    color: #041211;
    background: linear-gradient(135deg, #ffffff, #73f3df 48%, #84b8ff);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 0 0 rgba(64, 227, 207, 0);
}

.eledot-home .header-action::before,
.unified-page .header-action::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 32%, rgba(255,255,255,0.95) 45%, transparent 58%),
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.7), transparent 22%),
        linear-gradient(135deg, #ffffff, #73f3df 48%, #84b8ff);
    transform: translateX(-115%);
    transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.eledot-home .header-action::after,
.unified-page .header-action::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 6px;
    background:
        radial-gradient(circle at 22% 30%, rgba(255,255,255,0.85) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 68%, rgba(255,255,255,0.62) 0 1.5px, transparent 2.5px),
        linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
}

.eledot-home .header-action:hover,
.unified-page .header-action:hover {
    color: #020908;
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(64, 227, 207, 0.34), 0 10px 32px rgba(127, 182, 255, 0.22);
}

.eledot-home .header-action:hover::before,
.unified-page .header-action:hover::before {
    transform: translateX(0);
}

.eledot-home .header-action:hover::after,
.unified-page .header-action:hover::after {
    opacity: 1;
    transform: scale(1);
}

.eledot-home .menu-button,
.eledot-home .mobile-nav,
.unified-page .menu-button,
.unified-page .mobile-nav {
    display: none;
}

.eledot-home .section-panel {
    position: relative;
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.eledot-home .hero-section {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.78fr);
    align-items: center;
    gap: 58px;
    min-height: 100svh;
    padding: 128px 0 72px;
}

.eledot-home .hero-ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.eledot-home .beam {
    position: absolute;
    left: -10%;
    width: 124%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(64, 227, 207, 0.08), rgba(127, 182, 255, 0.44), transparent);
    transform-origin: center;
    animation: beamSweep 8s linear infinite;
}

.eledot-home .beam-a { top: 23%; --r: -8deg; transform: rotate(var(--r)); }
.eledot-home .beam-b { top: 48%; --r: 5deg; transform: rotate(var(--r)); animation-delay: -2.4s; }
.eledot-home .beam-c { top: 68%; --r: -3deg; transform: rotate(var(--r)); animation-delay: -5s; }

.eledot-home .eyebrow {
    margin: 0 0 16px;
    color: rgba(64, 227, 207, 0.86);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eledot-home h1,
.eledot-home h2,
.eledot-home h3,
.eledot-home p {
    letter-spacing: 0;
}

.eledot-home h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 5.75vw, 78px);
    line-height: 1.04;
    font-weight: 800;
}

.eledot-home .hero-lede {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(232, 238, 244, 0.7);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.85;
}

.eledot-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.eledot-home .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.eledot-home .button:hover {
    transform: translateY(-2px);
}

.eledot-home .button-primary {
    color: #03100f;
    background: linear-gradient(135deg, #ffffff, #73f3df 48%, #84b8ff);
}

.eledot-home .button-secondary {
    border: 1px solid var(--line);
    color: rgba(245, 247, 250, 0.88);
    background: rgba(255, 255, 255, 0.055);
}

.eledot-home .hero-instrument {
    justify-self: end;
    width: min(100%, 500px);
    perspective: 1100px;
}

.eledot-home .instrument-frame {
    --mx: 0;
    --my: 0;
    position: relative;
    min-height: 530px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at calc(50% + (var(--mx) * 20%)) calc(35% + (var(--my) * 18%)), rgba(64, 227, 207, 0.18), transparent 17rem),
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.025)),
        rgba(4, 9, 12, 0.7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 40px 90px rgba(0,0,0,0.44);
    transform: rotateX(calc(3deg - (var(--my) * 2deg))) rotateY(calc(-7deg + (var(--mx) * 3deg)));
    transform-style: preserve-3d;
    transition: transform 120ms ease-out;
    overflow: hidden;
}

.eledot-home .instrument-frame::before {
    content: "";
    position: absolute;
    inset: 72px 22px 184px;
    border: 1px solid rgba(64, 227, 207, 0.22);
    background:
        radial-gradient(circle at calc(50% + (var(--mx) * 34%)) calc(50% + (var(--my) * 28%)), rgba(127, 182, 255, 0.22), transparent 9rem),
        linear-gradient(90deg, rgba(64, 227, 207, 0.16), transparent 24%, transparent 76%, rgba(127,182,255,0.16)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.065) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 22px);
}

.eledot-home .instrument-frame::after {
    content: "";
    position: absolute;
    inset: 90px -10px auto;
    height: 190px;
    background: linear-gradient(90deg, transparent, rgba(64, 227, 207, 0.42), rgba(127, 182, 255, 0.24), transparent);
    filter: blur(18px);
    transform: translateZ(24px) translateX(calc(var(--mx) * 18px));
}

.eledot-home .instrument-topline,
.eledot-home .wave-display,
.eledot-home .instrument-grid {
    position: relative;
    z-index: 2;
}

.eledot-home .instrument-topline {
    display: flex;
    justify-content: space-between;
    color: rgba(245, 247, 250, 0.76);
    font-size: 12px;
    font-weight: 800;
}

.eledot-home .wave-display {
    height: 304px;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(64, 227, 207, 0.22);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 22px 22px,
        rgba(4, 12, 15, 0.42);
}

.eledot-home .wave-display::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at calc(36% + (var(--mx) * 16%)) calc(46% + (var(--my) * 12%)), rgba(255,255,255,0.22), transparent 8rem),
        linear-gradient(90deg,
            rgba(98, 75, 255, 0.34) 0%,
            rgba(44, 151, 255, 0.36) 18%,
            rgba(53, 239, 218, 0.38) 38%,
            rgba(113, 255, 148, 0.32) 55%,
            rgba(255, 226, 90, 0.28) 70%,
            rgba(255, 118, 78, 0.25) 86%,
            rgba(255, 69, 128, 0.2) 100%);
    opacity: 0.72;
    mix-blend-mode: screen;
}

.eledot-home .wave-display::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(3,5,7,0.5));
}

.eledot-home .spectrum-band {
    position: absolute;
    inset: 18px 18px 34px;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(71, 44, 255, 0.1),
            rgba(43, 139, 255, 0.52) 17%,
            rgba(45, 244, 218, 0.7) 34%,
            rgba(89, 255, 170, 0.62) 49%,
            rgba(255, 230, 88, 0.58) 65%,
            rgba(255, 124, 66, 0.54) 81%,
            rgba(255, 62, 142, 0.42));
    clip-path: polygon(0 82%, 8% 80%, 15% 62%, 24% 58%, 32% 28%, 39% 20%, 48% 44%, 56% 36%, 64% 15%, 73% 26%, 82% 52%, 91% 42%, 100% 70%, 100% 100%, 0 100%);
    filter: blur(0.2px) drop-shadow(0 0 28px rgba(64, 227, 207, 0.35));
    opacity: 0.92;
    animation: spectrumPulse 5s ease-in-out infinite;
}

.eledot-home .spectrum-curve {
    position: absolute;
    z-index: 2;
    left: 4%;
    width: 92%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.78), var(--cyan), var(--blue), transparent);
    filter: drop-shadow(0 0 14px rgba(64, 227, 207, 0.5));
    transform-origin: center;
    opacity: 0.78;
}

.eledot-home .curve-a {
    top: 32%;
    transform: skewY(-8deg) translateY(calc(var(--my) * 8px));
}

.eledot-home .curve-b {
    top: 51%;
    transform: skewY(6deg) translateX(calc(var(--mx) * 12px));
    opacity: 0.56;
}

.eledot-home .curve-c {
    top: 70%;
    transform: skewY(-3deg) translateX(calc(var(--mx) * -10px));
    opacity: 0.42;
}

.eledot-home .scan-line {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: calc(50% + (var(--mx) * 34%));
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.7), var(--cyan), transparent);
    box-shadow: 0 0 28px rgba(64, 227, 207, 0.55);
    transform: translateX(-50%);
}

.eledot-home .peak {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    width: 9px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #fff, var(--cyan));
    box-shadow: 0 0 22px rgba(64, 227, 207, 0.46);
    transform: translateY(calc(var(--my) * -5px));
}

.eledot-home .peak-a { left: 31%; height: 54%; }
.eledot-home .peak-b { left: 55%; height: 72%; background: linear-gradient(180deg, #fff, #84b8ff); }
.eledot-home .peak-c { left: 78%; height: 42%; background: linear-gradient(180deg, #fff, #ff7c42); }

.eledot-home .spectrum-focus {
    position: absolute;
    z-index: 4;
    left: calc(50% + (var(--mx) * 34%));
    top: calc(50% + (var(--my) * 28%));
    width: 104px;
    height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(64,227,207,0.12) 28%, transparent 60%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 34px rgba(64, 227, 207, 0.24);
}

.eledot-home .instrument-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.eledot-home .instrument-grid div {
    min-height: 80px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.eledot-home .instrument-grid strong {
    display: block;
    font-size: 23px;
}

.eledot-home .instrument-grid span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.eledot-home .scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 0;
    color: rgba(245,247,250,0.42);
    font-size: 12px;
    font-weight: 800;
}

.eledot-home .scroll-cue::after {
    content: "";
    display: inline-block;
    width: 74px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg, rgba(255,255,255,0.45), transparent);
}

.eledot-home .signal-section,
.eledot-home .product-section,
.eledot-home .application-section,
.eledot-home .process-section,
.eledot-home .closing-section {
    padding: 108px 0;
}

.eledot-home .section-heading {
    max-width: 760px;
}

.eledot-home .section-heading h2,
.eledot-home .process-copy h2,
.eledot-home .closing-inner h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
}

.eledot-home .section-heading p:not(.eyebrow),
.eledot-home .process-copy p,
.eledot-home .closing-inner p {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(232, 238, 244, 0.66);
    font-size: 17px;
    line-height: 1.8;
}

.eledot-home .signal-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 54px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line-soft);
}

.eledot-home .signal-item {
    min-height: 290px;
    padding: 28px;
    background: rgba(5, 9, 12, 0.76);
}

.eledot-home .signal-item span,
.eledot-home .application-line span,
.eledot-home .process-stack span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.eledot-home .signal-item h3,
.eledot-home .application-line h3,
.eledot-home .product-copy h3 {
    margin: 22px 0 0;
    font-size: 26px;
}

.eledot-home .signal-item p,
.eledot-home .application-line p,
.eledot-home .product-copy p {
    margin: 16px 0 0;
    color: rgba(232, 238, 244, 0.64);
    line-height: 1.75;
}

.eledot-home .product-showcase {
    display: grid;
    gap: 18px;
    margin-top: 54px;
}

.eledot-home .product-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
    align-items: center;
    gap: 34px;
    min-height: 430px;
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
    overflow: hidden;
}

.eledot-home .product-panel:nth-child(even) .product-visual {
    order: 2;
}

.eledot-home .product-visual {
    display: grid;
    place-items: center;
    min-height: 338px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, rgba(255,255,255,0.032) 1px, transparent 1px) 0 0 / 34px 34px,
        #070d10;
}

.eledot-home .product-visual img {
    width: min(92%, 560px);
    max-height: 290px;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0,0,0,0.5));
    transition: transform 500ms ease;
}

.eledot-home .product-panel:hover .product-visual img {
    transform: translateY(-8px) scale(1.02);
}

.eledot-home .product-copy {
    padding: 10px min(2vw, 28px);
}

.eledot-home .text-link {
    display: inline-flex;
    margin-top: 24px;
    color: #fff;
    font-weight: 800;
}

.eledot-home .text-link::after {
    content: "";
    width: 52px;
    height: 1px;
    margin: 12px 0 0 14px;
    background: var(--cyan);
    transition: width 180ms ease;
}

.eledot-home .text-link:hover::after {
    width: 82px;
}

.eledot-home .application-grid {
    display: grid;
    margin-top: 54px;
    border-top: 1px solid var(--line-soft);
}

.eledot-home .application-line {
    display: grid;
    grid-template-columns: 0.55fr 0.8fr 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-soft);
}

.eledot-home .application-line h3,
.eledot-home .application-line p {
    margin: 0;
}

.eledot-home .process-section {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
    gap: 64px;
    align-items: center;
}

.eledot-home .process-stack {
    display: grid;
    gap: 10px;
}

.eledot-home .process-stack div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 0 22px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.eledot-home .process-stack strong {
    font-size: 18px;
}

.eledot-home .closing-section {
    padding-bottom: 132px;
}

.eledot-home .closing-inner {
    display: grid;
    place-items: center;
    min-height: 520px;
    padding: 74px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(64, 227, 207, 0.13), transparent 22rem),
        linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
    overflow: hidden;
}

.eledot-home .closing-inner img {
    width: min(82vw, 340px);
    margin-bottom: 44px;
}

.eledot-home .closing-inner .hero-actions {
    justify-content: center;
}

.eledot-home .site-footer {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 34px 0 44px;
    border-top: 1px solid var(--line-soft);
    color: rgba(232, 238, 244, 0.46);
    font-size: 13px;
}

.eledot-home .site-footer p {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    margin: 0;
}

.eledot-home .site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 180ms ease;
}

.eledot-home .site-footer img {
    width: 15px;
    height: 15px;
}

.eledot-home .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.eledot-home .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes beamSweep {
    0% { opacity: 0; transform: translateX(-20%) rotate(var(--r, 0deg)); }
    18% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { opacity: 0; transform: translateX(20%) rotate(var(--r, 0deg)); }
}

@keyframes waveDrift {
    0%, 100% { opacity: 0.34; translate: calc(-10px + (var(--mx, 0) * -10px)) 0; }
    50% { opacity: 1; translate: calc(12px + (var(--mx, 0) * 14px)) 0; }
}

@keyframes spectrumPulse {
    0%, 100% { filter: blur(0.2px) drop-shadow(0 0 22px rgba(64, 227, 207, 0.3)); opacity: 0.82; }
    50% { filter: blur(0.2px) drop-shadow(0 0 38px rgba(127, 182, 255, 0.48)); opacity: 1; }
}

/* Refined home spectrum console: quiet, integrated, instrument-grade. */
.eledot-home .hero-instrument {
    width: min(100%, 460px);
}

.eledot-home .instrument-frame {
    min-height: 456px;
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at calc(50% + (var(--mx) * 16%)) calc(36% + (var(--my) * 14%)), rgba(64, 227, 207, 0.11), transparent 15rem),
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
        rgba(3, 6, 8, 0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 28px 70px rgba(0,0,0,0.36);
}

.eledot-home .instrument-frame::before {
    inset: 64px 18px 142px;
    border-color: rgba(255, 255, 255, 0.075);
    background:
        linear-gradient(90deg, rgba(64, 227, 207, 0.06), transparent 28%, transparent 72%, rgba(127,182,255,0.05)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px);
}

.eledot-home .instrument-frame::after {
    inset: 112px 18px auto;
    height: 70px;
    background: linear-gradient(90deg, transparent, rgba(64, 227, 207, 0.18), rgba(127, 182, 255, 0.16), transparent);
    filter: blur(20px);
}

.eledot-home .instrument-topline {
    font-size: 11px;
    color: rgba(245, 247, 250, 0.58);
}

.eledot-home .wave-display {
    height: 250px;
    margin-top: 26px;
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 30px 30px,
        linear-gradient(180deg, rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 30px 30px,
        rgba(2, 8, 10, 0.38);
}

.eledot-home .wave-display::before {
    background:
        radial-gradient(circle at calc(42% + (var(--mx) * 18%)) calc(44% + (var(--my) * 12%)), rgba(255,255,255,0.12), transparent 6rem),
        linear-gradient(90deg, rgba(64,227,207,0.06), rgba(127,182,255,0.08), rgba(64,227,207,0.04));
    opacity: 0.9;
}

.eledot-home .spectrum-band {
    inset: auto 22px 74px;
    height: 42px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(64, 227, 207, 0.14) 13%,
            rgba(64, 227, 207, 0.58) 31%,
            rgba(210, 255, 249, 0.9) 45%,
            rgba(127, 182, 255, 0.64) 61%,
            rgba(64, 227, 207, 0.24) 78%,
            transparent);
    clip-path: polygon(0 54%, 11% 52%, 18% 49%, 27% 40%, 34% 24%, 42% 36%, 49% 12%, 57% 31%, 66% 25%, 75% 45%, 86% 50%, 100% 54%, 100% 100%, 0 100%);
    opacity: 0.88;
    filter: drop-shadow(0 0 22px rgba(64, 227, 207, 0.28));
}

.eledot-home .spectrum-curve {
    left: 7%;
    width: 86%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(64,227,207,0.18), rgba(245,247,250,0.72), rgba(127,182,255,0.45), transparent);
    opacity: 0.7;
}

.eledot-home .curve-a { top: 39%; transform: skewY(-4deg) translateY(calc(var(--my) * 5px)); }
.eledot-home .curve-b { top: 50%; transform: skewY(2deg) translateX(calc(var(--mx) * 8px)); opacity: 0.38; }
.eledot-home .curve-c { top: 63%; transform: skewY(-2deg) translateX(calc(var(--mx) * -8px)); opacity: 0.28; }

.eledot-home .peak {
    bottom: 74px;
    width: 4px;
    opacity: 0.78;
}

.eledot-home .peak-a { left: 35%; height: 34%; }
.eledot-home .peak-b { left: 51%; height: 48%; }
.eledot-home .peak-c { left: 70%; height: 28%; background: linear-gradient(180deg, #fff, #7fb6ff); }

.eledot-home .scan-line {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.42), var(--cyan), transparent);
    opacity: 0.68;
}

.eledot-home .spectrum-focus {
    width: 72px;
    height: 72px;
    border-color: rgba(255, 255, 255, 0.11);
    background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(64,227,207,0.08) 30%, transparent 66%);
    box-shadow: 0 0 24px rgba(64, 227, 207, 0.16);
}

.eledot-home .instrument-grid {
    gap: 8px;
    margin-top: 10px;
}

.eledot-home .instrument-grid div {
    min-height: 62px;
    padding: 12px;
    border-color: rgba(255,255,255,0.08);
    background: rgba(255, 255, 255, 0.035);
}

.eledot-home .instrument-grid strong {
    font-size: 20px;
}

.eledot-home .instrument-grid span {
    font-size: 11px;
    margin-top: 3px;
}

/* Darkroom spectrum chamber hero. */
.eledot-home .hero-chamber {
    --beam-shift: 50%;
    --beam-hue: 178;
    --beam-intensity: 0.68;
    --phase-energy: 0.75;
    --cursor-x: 0;
    --cursor-y: 0;
    position: relative;
    display: block;
    width: 100%;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background: #010304;
    contain: layout paint;
}

.eledot-home .chamber-backdrop {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
    filter: saturate(calc(0.86 + var(--beam-intensity) * 0.22)) brightness(0.9);
    transform:
        translate3d(calc(var(--cursor-x) * -10px), calc(var(--cursor-y) * -7px), 0)
        scale(1.035);
    transition: filter 220ms ease-out;
    will-change: transform;
}

.eledot-home .chamber-field {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    opacity: 0.82;
    pointer-events: none;
    will-change: opacity;
}

.eledot-home .chamber-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.eledot-home .chamber-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at calc(50% + var(--cursor-x) * 3%) calc(49% + var(--cursor-y) * 3%), rgba(3, 5, 7, 0.01), rgba(3, 5, 7, 0.16) 34%, rgba(3, 5, 7, 0.72) 82%),
        linear-gradient(90deg, rgba(3, 5, 7, 0.34), transparent 22%, transparent 78%, rgba(3, 5, 7, 0.34)),
        linear-gradient(180deg, rgba(3, 5, 7, 0.62), transparent 28%, rgba(3, 5, 7, 0.78));
}

.eledot-home .chamber-beam {
    position: absolute;
    top: 50.5%;
    left: -4%;
    width: 108%;
    height: calc(10px + var(--phase-energy) * 13px);
    background:
        linear-gradient(90deg,
            transparent 0%,
            hsla(var(--beam-hue), 88%, 58%, 0.05) 16%,
            rgba(255, 255, 255, 0.58) 43%,
            hsla(var(--beam-hue), 92%, 62%, calc(0.58 + var(--beam-intensity) * 0.3)) 50%,
            hsla(calc(var(--beam-hue) + 32), 95%, 70%, 0.54) 58%,
            rgba(255, 210, 96, 0.38) 68%,
            rgba(255, 86, 132, 0.22) 80%,
            transparent 100%);
    filter: blur(calc(5px + var(--phase-energy) * 4px));
    opacity: calc(0.58 + var(--beam-intensity) * 0.38);
    transform: translateY(-50%);
    mix-blend-mode: screen;
    animation: chamberBeam 4.6s ease-in-out infinite;
    will-change: opacity;
}

.eledot-home .beam-scan {
    position: absolute;
    top: 34%;
    bottom: 24%;
    left: var(--beam-shift);
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.78), hsl(var(--beam-hue), 92%, 62%), transparent);
    box-shadow: 0 0 34px hsla(var(--beam-hue), 92%, 62%, 0.5);
    opacity: calc(0.34 + var(--beam-intensity) * 0.42);
    transform: translateX(-50%);
}

.eledot-home .dispersion-plane {
    position: absolute;
    top: 31%;
    bottom: 19%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.42), hsla(var(--beam-hue), 92%, 68%, 0.48), transparent);
    box-shadow:
        0 0 28px hsla(var(--beam-hue), 92%, 62%, 0.26),
        16px 0 44px hsla(calc(var(--beam-hue) + 42), 96%, 66%, 0.12);
    opacity: calc(0.2 + var(--beam-intensity) * 0.36);
    transform:
        translate3d(calc(var(--cursor-x) * 10px), calc(var(--cursor-y) * 6px), 0)
        skewY(calc(var(--cursor-y) * 2deg));
    animation: planeBreath 4.8s ease-in-out infinite;
    will-change: opacity, transform;
}

.eledot-home .plane-a { left: 33%; animation-delay: -1s; }
.eledot-home .plane-b { left: 49.5%; animation-delay: -2.4s; }
.eledot-home .plane-c { left: 66%; animation-delay: -3.5s; }

.eledot-home .chamber-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 100svh;
    width: min(calc(100% - 32px), 760px);
    margin: 0 auto;
    padding: 126px 0 184px;
    text-align: center;
}

.eledot-home .chamber-company {
    margin: 0 0 20px;
    color: rgba(64, 227, 207, 0.78);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.eledot-home .hero-chamber h1 {
    max-width: 760px;
    font-size: clamp(46px, 4.6vw, 66px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-wrap: balance;
    text-shadow:
        0 0 34px rgba(127, 182, 255, 0.24),
        0 12px 52px rgba(0, 0, 0, 0.52);
}

.eledot-home .hero-chamber .hero-lede {
    max-width: 610px;
    margin-top: 22px;
    color: rgba(244, 248, 252, 0.66);
    font-size: clamp(15px, 1.2vw, 17px);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.74);
}

.eledot-home .chamber-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.eledot-home .chamber-primary {
    min-width: 176px;
    min-height: 54px;
    border: 1px solid rgba(127, 255, 232, 0.36);
    box-shadow: 0 0 42px rgba(64, 227, 207, 0.24);
}

.eledot-home .chamber-secondary {
    min-width: 128px;
    min-height: 54px;
    backdrop-filter: blur(18px);
}

.eledot-home .optic-callout {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 5px;
    min-width: 112px;
    color: rgba(232, 238, 244, 0.54);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.86);
    transition: color 180ms ease, transform 180ms ease;
}

.eledot-home .optic-callout::before {
    content: "";
    width: 46px;
    height: 1px;
    margin-bottom: 4px;
    background: linear-gradient(90deg, rgba(64, 227, 207, 0.72), rgba(255, 255, 255, 0.24), transparent);
}

.eledot-home .optic-callout span {
    color: rgba(64, 227, 207, 0.76);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(17px, 1.2vw, 21px);
    line-height: 1;
}

.eledot-home .optic-callout small {
    color: rgba(232, 238, 244, 0.42);
    font-size: 12px;
}

.eledot-home .optic-callout:hover {
    color: #fff;
    transform: translateY(-2px);
}

.eledot-home .callout-left-top { top: 31%; left: 12%; }
.eledot-home .callout-right-top { top: 31%; right: 12%; }
.eledot-home .callout-left-bottom { top: 64%; left: 13%; }
.eledot-home .callout-right-mid { top: 64%; right: 13%; }
.eledot-home .callout-right-bottom { display: none; }

.eledot-home .chamber-console {
    position: absolute;
    left: 50%;
    bottom: 42px;
    z-index: 4;
    display: grid;
    grid-template-columns: auto minmax(150px, 210px) minmax(130px, 185px) minmax(90px, 120px);
    gap: 14px;
    align-items: center;
    width: min(calc(100% - 32px), 790px);
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(6, 14, 16, 0.72), rgba(2, 7, 9, 0.54));
    backdrop-filter: blur(14px) saturate(130%);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.eledot-home .console-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(232, 238, 244, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.eledot-home .console-status span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(64, 227, 207, 0.8);
}

.eledot-home .chamber-console label {
    display: grid;
    grid-template-columns: auto minmax(76px, 1fr) auto;
    gap: 10px;
    align-items: center;
    color: rgba(232, 238, 244, 0.7);
    font-size: 12px;
    font-weight: 700;
}

.eledot-home .chamber-console strong {
    min-width: 56px;
    color: #fff;
    font-family: "Space Grotesk", Inter, sans-serif;
    text-align: right;
}

.eledot-home .spectrum-control {
    width: 100%;
    accent-color: var(--cyan);
}

.eledot-home .console-spectrum {
    position: relative;
    height: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    background:
        linear-gradient(90deg,
            rgba(58, 99, 255, 0.16),
            rgba(64, 227, 207, 0.46) 35%,
            rgba(255, 234, 126, 0.34) 66%,
            rgba(255, 84, 132, 0.22));
}

.eledot-home .console-spectrum i {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 1px, transparent 1px 12px);
    opacity: 0.46;
    transform: translateX(calc(var(--beam-shift) - 50%));
    transition: transform 160ms ease-out;
}

.eledot-home .chamber-scroll {
    left: 50%;
    bottom: 18px;
    z-index: 4;
    transform: translateX(-50%);
}

@keyframes chamberBeam {
    0%, 100% { opacity: calc(0.52 + var(--beam-intensity) * 0.34); }
    50% { opacity: calc(0.68 + var(--beam-intensity) * 0.28); }
}

@keyframes planeBreath {
    0%, 100% { opacity: calc(0.18 + var(--beam-intensity) * 0.24); }
    50% { opacity: calc(0.28 + var(--beam-intensity) * 0.42); }
}

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

@media (max-width: 900px) {
    .eledot-home .site-header,
    .unified-page .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .eledot-home .desktop-nav,
    .eledot-home .header-action,
    .unified-page .desktop-nav,
    .unified-page .header-action {
        display: none;
    }

    .eledot-home .menu-button,
    .unified-page .menu-button {
        display: inline-grid;
        place-items: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line-soft);
        border-radius: 8px;
        color: #fff;
        background: rgba(255,255,255,0.055);
    }

    .eledot-home .menu-button span,
    .unified-page .menu-button span {
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    body.eledot-home.menu-open .menu-button span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    body.unified-page.menu-open .menu-button span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    body.eledot-home.menu-open .menu-button span:last-child,
    body.unified-page.menu-open .menu-button span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .eledot-home .mobile-nav,
    .unified-page .mobile-nav {
        position: fixed;
        inset: 92px 16px auto;
        z-index: 19;
        display: grid;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(3, 5, 7, 0.94);
        backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.eledot-home.menu-open .mobile-nav,
    body.unified-page.menu-open .mobile-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .eledot-home .mobile-nav a,
    .unified-page .mobile-nav a {
        padding: 14px 12px;
        border-radius: 8px;
        color: rgba(245,247,250,0.82);
        font-weight: 700;
    }

    .eledot-home .hero-section,
    .eledot-home .process-section {
        grid-template-columns: 1fr;
    }

    .eledot-home .hero-chamber {
        display: block;
        min-height: 100svh;
    }

    .eledot-home .chamber-backdrop {
        object-position: center;
        opacity: 0.74;
    }

    .eledot-home .chamber-content {
        min-height: 100svh;
        padding: 118px 0 222px;
    }

    .eledot-home .chamber-company {
        max-width: 280px;
        font-size: 11px;
        line-height: 1.8;
        letter-spacing: 0.18em;
    }

    .eledot-home .optic-callout {
        min-width: 0;
        transform: none !important;
    }

    .eledot-home .optic-callout span {
        font-size: 18px;
    }

    .eledot-home .optic-callout small {
        font-size: 11px;
    }

    .eledot-home .optic-callout {
        display: none;
    }

    .eledot-home .chamber-console {
        grid-template-columns: 1fr;
        bottom: 54px;
        gap: 12px;
    }

    .eledot-home .console-status {
        justify-content: center;
    }

    .eledot-home .hero-instrument {
        justify-self: stretch;
        width: 100%;
    }

    .eledot-home .instrument-frame {
        min-height: 460px;
        transform: none;
    }

    .eledot-home .signal-rail {
        grid-template-columns: 1fr;
    }

    .eledot-home .product-panel,
    .eledot-home .product-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .eledot-home .product-panel:nth-child(even) .product-visual {
        order: 0;
    }

    .eledot-home .application-line {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .eledot-home .site-header,
    .eledot-home .section-panel,
    .eledot-home .site-footer {
        width: min(calc(100% - 24px), var(--max));
    }

    .eledot-home .brand img {
        width: 138px;
    }

    .eledot-home .hero-section {
        padding-top: 126px;
    }

    .eledot-home h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .eledot-home .hero-chamber h1 {
        font-size: clamp(40px, 12.4vw, 58px);
        line-height: 1.06;
        font-weight: 600;
    }

    .eledot-home .hero-chamber .hero-lede {
        max-width: 340px;
        font-size: 15px;
        line-height: 1.75;
    }

    .eledot-home .chamber-actions,
    .eledot-home .chamber-actions .button {
        width: 100%;
    }

    .eledot-home .chamber-actions {
        max-width: 300px;
    }

    .eledot-home .chamber-console {
        display: none;
    }

    .eledot-home .chamber-console label {
        grid-template-columns: 36px 1fr 58px;
    }

    .eledot-home .hero-actions,
    .eledot-home .button {
        width: 100%;
    }

    .eledot-home .signal-section,
    .eledot-home .product-section,
    .eledot-home .application-section,
    .eledot-home .process-section,
    .eledot-home .closing-section {
        padding: 76px 0;
    }

    .eledot-home .product-panel {
        padding: 14px;
    }

    .eledot-home .product-visual {
        min-height: 260px;
    }

    .eledot-home .instrument-frame {
        min-height: 410px;
        padding: 16px;
    }

    .eledot-home .wave-display {
        height: 220px;
    }

    .eledot-home .instrument-grid {
        grid-template-columns: 1fr;
    }

    body.unified-page .page-hero h1 {
        font-size: clamp(38px, 12vw, 56px) !important;
    }
}
