
.dt-home {
    --dt-bg: #050A05;
    --dt-blue: #00CCFF;
    --dt-cyan: #00FF66;
    --dt-purple: #8b5cf6;
    --dt-green: #22c55e;
    --dt-font: "Inter", Arial, sans-serif;
    --dt-mono: "JetBrains Mono", monospace;

    min-height: 100vh;
    background: #050A05;
    color: #E0F8E0;
    font-family: var(--dt-font);
    overflow-x: hidden;
}

body:has(.dt-home) {
    margin: 0;
    background: #050A05 !important;
    color: #E0F8E0 !important;
}

.dt-home *, .dt-home *::before, .dt-home *::after { box-sizing: border-box; }

/* NAVBAR */
.dt-navbar {
    position: sticky; top: 0; z-index: 1000; height: 74px; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; background: rgba(5, 9, 20, 0.94);
    border-bottom: 1px solid rgba(0, 255, 102, 0.14); backdrop-filter: blur(18px);
}
.dt-navbar::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #00CCFF, #00FF66, #00CCFF, transparent); opacity: 0.7;
}

.dt-brand { display: flex; align-items: center; gap: 11px; min-width: 220px; }
.dt-brand-mark {
    position: relative; width: 32px; height: 32px; border: 1px solid var(--dt-cyan);
    transform: rotate(30deg); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 18px rgba(0,255,102,0.18);
}
.dt-brand-mark::before {
    content: ""; width: 12px; height: 12px; border-radius: 50%;
    background: var(--dt-cyan); box-shadow: 0 0 15px var(--dt-cyan);
}
.dt-brand-mark span { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #00CCFF; }
.dt-brand-mark span:nth-child(1) { top: -4px; left: 13px; }
.dt-brand-mark span:nth-child(2) { bottom: -4px; left: 13px; }
.dt-brand-mark span:nth-child(3) { right: -4px; top: 13px; }

.dt-brand-text { display: flex; flex-direction: column; gap: 2px; }
.dt-brand-text strong { color: #f4f8ff; font-size: 14px; font-weight: 700; letter-spacing: 0.14em; }
.dt-brand-text small { color: #60728d; font-family: var(--dt-mono); font-size: 7px; letter-spacing: 0.2em; }

.dt-nav-links { display: flex; align-items: center; gap: 38px; }
.dt-nav-links a { position: relative; color: #aebbd0; text-decoration: none; font-size: 12px; font-weight: 500; transition: color 0.25s ease; }
.dt-nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--dt-cyan); transition: width 0.25s ease; }
.dt-nav-links a:hover { color: #ffffff; }
.dt-nav-links a:hover::after { width: 100%; }

.dt-login-btn {
    display: flex; align-items: center; gap: 12px; padding: 10px 17px;
    border: 1px solid rgba(0,255,102,0.3); border-radius: 6px;
    background: rgba(0,255,102,0.06); color: #dffaff; font-family: var(--dt-font);
    font-size: 11px; cursor: pointer; transition: all 0.25s ease;
}
.dt-login-btn b { color: var(--dt-cyan); }
.dt-login-btn:hover { background: rgba(0,255,102,0.12); border-color: var(--dt-cyan); box-shadow: 0 0 20px rgba(0,255,102,0.1); }

/* HERO */
.dt-hero {
    position: relative; min-height: 700px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(18, 89, 160, 0.16), transparent 35%), #050A05;
}
.hero-grid {
    position: absolute; inset: 0; opacity: 0.32;
    background-image: linear-gradient(rgba(0,255,102,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,102,0.06) 1px, transparent 1px);
    background-size: 55px 55px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(0, 133, 255, 0.10); filter: blur(100px); }

.hero-network { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.network-node { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--dt-cyan); box-shadow: 0 0 15px var(--dt-cyan); animation: nodePulse 3s infinite; }
.n1 { left: 17%; top: 28%; } .n2 { left: 27%; top: 47%; } .n3 { left: 17%; top: 67%; } .n4 { right: 18%; top: 31%; } .n5 { right: 27%; top: 53%; } .n6 { right: 17%; top: 69%; }
.network-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,255,102,0.55), transparent); opacity: 0.5; transform-origin: left center; }
.l1 { width: 240px; left: 18%; top: 30%; transform: rotate(25deg); }
.l2 { width: 260px; left: 18%; top: 68%; transform: rotate(-24deg); }
.l3 { width: 260px; right: 18%; top: 33%; transform: rotate(155deg); }
.l4 { width: 230px; right: 18%; top: 68%; transform: rotate(205deg); }
.l5 { width: 330px; left: 50%; top: 50%; transform: translateX(-50%); background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), transparent); }

@keyframes nodePulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

.dt-hero-content { position: relative; z-index: 10; width: 100%; max-width: 920px; padding: 100px 25px; text-align: center; }
.dt-status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; margin-bottom: 28px; border: 1px solid rgba(0,255,102,0.2); border-radius: 30px; background: rgba(8,18,32,0.7); color: #8296b2; font-family: var(--dt-mono); font-size: 8px; letter-spacing: 0.12em; }
.dt-status span { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.dt-hero h1 { margin: 0 auto 25px; max-width: 900px; color: #f5f9ff; font-family: var(--dt-font); font-size: clamp(46px, 6vw, 78px); line-height: 1.03; font-weight: 700; letter-spacing: -0.045em; }
.dt-hero h1 span { display: block; background: linear-gradient(90deg, #00CCFF, #00FF66, #60a5fa); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 50px rgba(0,255,102,0.08); }
.dt-hero-content > p { max-width: 690px; margin: 0 auto 35px; color: #91a1b8; font-size: 14px; line-height: 1.8; }

.dt-hero-buttons { display: flex; align-items: center; justify-content: center; gap: 13px; }
.dt-primary-btn { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 21px; border: 1px solid #168de0; border-radius: 6px; background: linear-gradient(135deg, #1179c7, #0b5ba2); color: white; font-family: var(--dt-font); font-size: 11px; font-weight: 600; cursor: pointer; box-shadow: 0 0 30px rgba(29,161,255,0.13); transition: all 0.25s ease; }
.dt-primary-btn b { color: #8eeeff; font-size: 16px; }
.dt-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,161,255,0.25); }
.dt-secondary-btn { display: inline-flex; align-items: center; gap: 12px; padding: 13px 20px; border: 1px solid rgba(100,130,170,0.28); border-radius: 6px; background: rgba(255,255,255,0.025); color: #b9c6d8; text-decoration: none; font-size: 11px; transition: all 0.25s ease; }
.dt-secondary-btn span { color: var(--dt-cyan); }
.dt-secondary-btn:hover { border-color: rgba(0,255,102,0.4); background: rgba(0,255,102,0.05); color: white; }

.hero-trust { display: flex; justify-content: center; gap: 22px; margin-top: 30px; color: #52637b; font-family: var(--dt-mono); font-size: 7px; letter-spacing: 0.08em; }

.hero-intel-card { position: absolute; z-index: 12; display: flex; align-items: center; gap: 10px; min-width: 215px; padding: 13px; background: rgba(8,16,29,0.9); border: 1px solid rgba(70,112,160,0.3); border-radius: 9px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); backdrop-filter: blur(15px); animation: floatCard 5s ease-in-out infinite; }
.hero-intel-card.card-left { left: 7%; top: 35%; }
.hero-intel-card.card-right { right: 7%; top: 41%; animation-delay: 1.5s; }
.intel-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; }
.intel-icon.blue { color: var(--dt-cyan); background: rgba(0,255,102,0.08); }
.intel-icon.purple { color: #a78bfa; background: rgba(139,92,246,0.1); }
.hero-intel-card div:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.hero-intel-card span { color: #60728d; font-family: var(--dt-mono); font-size: 7px; }
.hero-intel-card strong { color: #edf5ff; font-size: 11px; }
.hero-intel-card small { color: #63748a; font-size: 8px; }
.hero-intel-card i { margin-left: auto; color: var(--dt-cyan); font-family: var(--dt-mono); font-size: 10px; font-style: normal; }

@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-scan-line { position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,255,102,0.5), transparent); }

/* SECTIONS */
.dt-section { position: relative; width: 100%; padding: 115px 40px; background: #060b16; border-top: 1px solid rgba(72,103,143,0.10); }
.dt-section-heading { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.dt-kicker { margin-bottom: 13px; color: var(--dt-cyan); font-family: var(--dt-mono); font-size: 8px; font-weight: 600; letter-spacing: 0.17em; }
.dt-section-heading h2 { margin: 0 0 15px; color: #f0f5fc; font-size: clamp(29px,4vw,43px); line-height: 1.15; letter-spacing: -0.035em; }
.dt-section-heading h2 span { display: block; color: #438fe2; }
.dt-section-heading p { margin: 0; color: #718198; font-size: 13px; line-height: 1.7; }

/* CAPABILITIES */
.dt-capabilities { width: 100%; max-width: 1150px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { position: relative; min-height: 345px; padding: 27px; overflow: hidden; background: linear-gradient(145deg, #0c1626, #08101c); border: 1px solid rgba(70,108,150,0.2); border-radius: 12px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.capability-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--dt-blue); }
.capability-card.purple::before { background: var(--dt-purple); }
.capability-card.green::before { background: var(--dt-green); }
.capability-card:hover { transform: translateY(-8px); border-color: rgba(0,255,102,0.35); box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 30px rgba(29,161,255,0.05); }

.cap-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.cap-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,255,102,0.25); border-radius: 9px; background: rgba(0,255,102,0.07); color: var(--dt-cyan); font-size: 18px; }
.capability-card.purple .cap-icon { color: #a78bfa; background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.25); }
.capability-card.green .cap-icon { color: #4ade80; background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.2); }
.cap-top > span { color: #44566f; font-family: var(--dt-mono); font-size: 9px; }

.cap-label { margin-bottom: 8px; color: #4e7da7; font-family: var(--dt-mono); font-size: 7px; letter-spacing: 0.12em; }
.capability-card h3 { margin: 0 0 12px; color: #e9f1fb; font-size: 17px; }
.capability-card p { margin: 0; color: #75859a; font-size: 11px; line-height: 1.7; }

.cap-visual { position: absolute; bottom: 25px; left: 27px; right: 27px; display: flex; align-items: center; gap: 6px; }
.cap-visual span { padding: 5px 7px; color: #708198; background: #0a1320; border: 1px solid rgba(80,120,160,0.15); border-radius: 4px; font-family: var(--dt-mono); font-size: 7px; }
.cap-visual b { color: var(--dt-cyan); font-size: 11px; }
.cap-visual strong { margin-left: auto; color: var(--dt-cyan); font-family: var(--dt-mono); font-size: 8px; }

.cap-graph { position: absolute; bottom: 23px; left: 27px; width: 140px; height: 60px; }
.cap-graph span { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #8b5cf6; box-shadow: 0 0 10px rgba(139,92,246,.7); }
.cg-main { left: 50%; top: 50%; } .cg-one { left: 10%; top: 15%; } .cg-two { right: 5%; top: 10%; } .cg-three { right: 18%; bottom: 2%; }
.cg-line { position: absolute; height: 1px; width: 55px; background: rgba(139,92,246,0.45); }
.cg-line.one { left: 15%; top: 31%; transform: rotate(25deg); }
.cg-line.two { left: 52%; top: 28%; transform: rotate(-25deg); }
.cg-line.three { left: 53%; top: 52%; transform: rotate(28deg); }

.behaviour-bars { position: absolute; left: 27px; right: 27px; bottom: 25px; }
.behaviour-bars > div { margin-top: 8px; }
.behaviour-bars span { display: block; margin-bottom: 4px; color: #61738b; font-family: var(--dt-mono); font-size: 7px; }
.behaviour-bars div { position: relative; }
.behaviour-bars div::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 3px; background: #162438; border-radius: 4px; }
.behaviour-bars b { position: relative; display: block; height: 3px; background: #22c55e; z-index: 2; border-radius: 4px; }

/* INVESTIGATION WORKFLOW */
.workflow-section { background: #050a14; }
.investigation-flow { width: 100%; max-width: 1200px; margin: auto; display: flex; align-items: stretch; gap: 10px; }
.investigation-step { position: relative; flex: 1; min-width: 0; padding: 22px 18px; background: linear-gradient(150deg, #0d1727, #09111e); border: 1px solid rgba(72,108,149,0.2); border-radius: 11px; transition: transform .3s ease, border-color .3s ease; }
.investigation-step:hover { transform: translateY(-7px); border-color: rgba(29,161,255,0.4); }
.investigation-step.highlighted { border-color: rgba(0,255,102,0.32); box-shadow: 0 0 35px rgba(0,255,102,0.05); }

.step-number { position: absolute; top: 13px; right: 15px; color: #3d5068; font-family: var(--dt-mono); font-size: 8px; }
.step-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; margin-bottom: 19px; color: var(--dt-cyan); background: rgba(0,255,102,0.07); border: 1px solid rgba(0,255,102,0.2); border-radius: 8px; }
.step-icon.purple { color: #a78bfa; background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); }
.step-icon.green { color: #4ade80; background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.2); }

.step-content > span { color: #526a86; font-family: var(--dt-mono); font-size: 7px; letter-spacing: 0.08em; }
.step-content h3 { margin: 8px 0 9px; color: #eaf2fc; font-size: 16px; }
.step-content p { min-height: 72px; margin: 0; color: #718197; font-size: 10px; line-height: 1.65; }

.step-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.step-tags b { padding: 5px 6px; color: #6e819a; background: #0a1422; border: 1px solid rgba(90,120,155,0.15); border-radius: 4px; font-family: var(--dt-mono); font-size: 6px; font-weight: 500; }

.flow-arrow { display: flex; align-items: center; justify-content: center; color: #2879b8; font-size: 17px; animation: arrowPulse 2s infinite; }
@keyframes arrowPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

.mini-flow-graph { position: relative; height: 37px; }
.mini-flow-graph span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--dt-cyan); box-shadow: 0 0 10px var(--dt-cyan); }
.mini-flow-graph span:nth-child(1) { left: 15%; top: 10px; } .mini-flow-graph span:nth-child(2) { left: 48%; top: 24px; } .mini-flow-graph span:nth-child(3) { right: 10%; top: 5px; }
.mini-flow-graph i { position: absolute; width: 60px; height: 1px; background: rgba(0,255,102,0.4); }
.mini-flow-graph i:nth-of-type(1) { left: 18%; top: 14px; transform: rotate(20deg); } .mini-flow-graph i:nth-of-type(2) { left: 50%; top: 18px; transform: rotate(-20deg); }

.confidence { margin-top: 10px; }
.confidence > span { color: #526a86; font-family: var(--dt-mono); font-size: 7px; }
.confidence strong { float: right; color: #4ade80; font-family: var(--dt-mono); font-size: 10px; }
.confidence > div { clear: both; margin-top: 7px; height: 3px; background: #152337; border-radius: 4px; }
.confidence > div b { display: block; width: 91%; height: 100%; background: #22c55e; border-radius: inherit; box-shadow: 0 0 8px rgba(34,197,94,.3); }

.actor-output { display: flex; align-items: center; justify-content: space-between; padding: 10px; background: rgba(139,92,246,0.07); border: 1px solid rgba(139,92,246,0.2); border-radius: 6px; }
.actor-output strong { color: #c4b5fd; font-family: var(--dt-mono); font-size: 9px; }
.actor-output span { color: #7d6bb3; font-family: var(--dt-mono); font-size: 7px; }

.pipeline-bar { width: 100%; max-width: 1000px; margin: 40px auto 0; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; background: #091321; border: 1px solid rgba(70,108,150,0.2); border-radius: 7px; }
.pipeline-live { display: flex; align-items: center; gap: 8px; color: #8ea1b8; font-family: var(--dt-mono); font-size: 7px; letter-spacing: .1em; }
.pipeline-live span { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.pipeline-route { color: #6d8099; font-family: var(--dt-mono); font-size: 7px; }
.pipeline-route b { margin: 0 8px; color: #2195db; }

/* PLATFORM & CTA */
.dt-platform { padding: 110px 40px; background: #070d18; border-top: 1px solid rgba(72,103,143,0.12); }
.platform-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.platform-intro h2 { margin: 0 0 15px; color: #edf4fd; font-size: 34px; line-height: 1.15; }
.platform-intro h2 span { display: block; color: #438fe2; }
.platform-intro p { max-width: 480px; margin: 0 0 25px; color: #75869b; font-size: 12px; line-height: 1.8; }
.platform-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.platform-stat { padding: 25px 20px; background: #0b1524; border: 1px solid rgba(71,106,147,0.2); border-radius: 8px; }
.platform-stat strong { display: block; color: #00FF66; font-size: 27px; margin-bottom: 6px; }
.platform-stat span { color: #64768e; font-family: var(--dt-mono); font-size: 7px; letter-spacing: .08em; }

.dt-cta { position: relative; overflow: hidden; padding: 110px 30px; text-align: center; background: #050A05; }
.cta-glow { position: absolute; left: 50%; top: 50%; width: 450px; height: 300px; transform: translate(-50%,-50%); background: rgba(29,161,255,0.08); filter: blur(100px); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { margin: 0 0 15px; color: #f3f7ff; font-size: 42px; line-height: 1.1; }
.cta-content h2 span { color: var(--dt-cyan); }
.cta-content p { margin: 0 0 28px; color: #73849b; font-size: 13px; }

/* FOOTER */
.dt-footer { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: #030711; border-top: 1px solid rgba(60,94,132,0.18); color: #52647c; font-family: var(--dt-mono); font-size: 7px; letter-spacing: .07em; }
.footer-brand { display: flex; align-items: center; gap: 7px; }
.footer-brand strong { color: #b8c8da; }
.footer-brand span { color: #44566e; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .dt-navbar { padding: 0 25px; } .dt-nav-links { gap: 20px; }
    .hero-intel-card { display: none; }
    .investigation-flow { flex-wrap: wrap; } .investigation-step { flex: 1 1 calc(33.333% - 20px); } .flow-arrow { display: none; }
}
@media (max-width: 850px) {
    .dt-nav-links { display: none; } .dt-navbar { height: 68px; } .dt-brand { min-width: auto; }
    .dt-hero { min-height: 650px; } .dt-hero h1 { font-size: clamp(38px,9vw,60px); }
    .hero-trust { flex-wrap: wrap; }
    .dt-capabilities { grid-template-columns: 1fr; max-width: 600px; }
    .investigation-step { flex: 1 1 calc(50% - 10px); }
    .platform-inner { grid-template-columns: 1fr; gap: 45px; }
    .dt-footer { padding: 20px; flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 560px) {
    .dt-section, .dt-hero-content { padding: 80px 18px; }
    .dt-hero-buttons { flex-direction: column; } .dt-primary-btn, .dt-secondary-btn { width: 100%; max-width: 280px; }
    .hero-trust { display: none; } .investigation-step { flex: 1 1 100%; }
    .pipeline-bar { flex-direction: column; gap: 12px; text-align: center; } .pipeline-route { line-height: 2; }
    .platform-stats { grid-template-columns: 1fr; } .cta-content h2 { font-size: 32px; }
}



/* ============================================================
   GREEN CYBER-HEX APP LOGO (Matches Login & Profile)
============================================================ */
.dt-app-logo {
    position: relative;
    width: 26px;
    height: 26px;
    border: 2px solid #00FF66;
    transform: rotate(35deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.25);
    flex-shrink: 0;
    margin-right: 4px;
}

/* Large Center Neon Dot */
.dt-app-logo .dot-center {
    width: 12px;
    height: 12px;
    background: #00FF66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00FF66;
}

/* Small Exterior Orbit Dots */
.dt-app-logo .dot-1,
.dt-app-logo .dot-2,
.dt-app-logo .dot-3 {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #00FF66;
    border-radius: 50%;
}

/* Exact positioning for the outer nodes */
.dt-app-logo .dot-1 { top: -3px; right: 4px; }
.dt-app-logo .dot-2 { right: -3px; bottom: 4px; }
.dt-app-logo .dot-3 { bottom: -3px; left: 4px; }