
html,body{
margin:0;
padding:0;
background:#020617;
font-family:Segoe UI,Arial,sans-serif;
color:#e2e8f0;
overflow-x:hidden;
}

/* ========================= */
/* PROBLEM SECTION UPGRADE */
/* ========================= */

.problem-highlight {
    position: relative;
    overflow: hidden;
}

.problem-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(56,189,248,0.15), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.problem-headline {
    font-size: 24px;
    letter-spacing: 4px;
    color: #7dd3fc;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-headline.sub {
    opacity: 0.7;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.problem-divider {
    height: 1px;
    width: 100%;
    background: rgba(56,189,248,0.2);
    margin: 20px 0 25px 0;
    opacity: 0.4;
}

.problem-content p {
    margin-bottom: 14px;
    opacity: 0.9;
}

.problem-bottom {
    margin-top: auto;
    padding-top: 20px;
}

.problem-bottom p {
    font-weight: 500;
    color: #7dd3fc;
    opacity: 0.9;
}

/* ========================= */
/* INTELLIGENCE GAP UPGRADE */
/* ========================= */

.flow-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flow-title {
    font-weight: 600;
    color: #7dd3fc;
    margin-bottom: 25px;
    text-align: center;
}

.flow-step {
    padding: 10px 20px;
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 6px;
    margin: 5px 0;
    background: rgba(56,189,248,0.03);
    font-size: 14px;
}

.flow-arrow {
    opacity: 0.4;
    margin: 5px 0;
}

/* RIGHT SIDE */

.gap-highlight {
    text-align: left;
}

.gap-headline {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #7dd3fc;
    margin-bottom: 8px;
}

.gap-sub {
    font-size: 18px;
    opacity: 0.7;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gap-divider {
    height: 1px;
    background: rgba(56,189,248,0.2);
    margin: 20px 0 25px 0;
}

.gap-content p {
    margin-bottom: 14px;
}

/* subtle glow */

.gap-highlight {
    animation: pulseGlow 6s ease-in-out infinite;
}

/* subtle glow animation */

.problem-highlight {
    animation: pulseGlow 6s ease-in-out infinite;
}



@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(56,189,248,0.1); }
    50% { box-shadow: 0 0 25px rgba(56,189,248,0.25); }
    100% { box-shadow: 0 0 10px rgba(56,189,248,0.1); }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    align-items: stretch; 

}
.bottom {
    margin-top: auto;
}
.card {
    display: flex;
    flex-direction: column;
    padding: 40px;

}
.card.small p:last-child {
    margin-top: auto;
}
.card.small p {
    margin-bottom: 16px;
    max-width: 100%;

}
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 40px;
}

.card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;

    font-size: 15px;
    line-height: 1.8;
    color: #cbd5f5;
    opacity: .9;
}

.card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #38bdf8;
    opacity: 0.8;
}

canvas{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-2;
}

#particles{
position:fixed;
width:100%;
height:100%;
z-index:-1;
}

.p{
position:absolute;
width:2px;
height:2px;
background:#38bdf8;
border-radius:50%;
opacity:.15;
animation:float linear infinite;
}

@keyframes float{
0%{transform:translateY(100vh);opacity:0}
20%{opacity:.4}
80%{opacity:.4}
100%{transform:translateY(-10vh);opacity:0}
}

.container{
max-width:1600px;
margin:auto;
padding:120px 40px;
}
.card.full {
    grid-column: span 12;
}
.card.full img {
    width: 100%;
    border-radius: 12px;
    display: block;
}
.kraken{
font-size:80px;
letter-spacing:10px;
font-weight:800;
text-align:center;
color:#7dd3fc;
text-shadow:
0 0 10px rgba(56,189,248,.5),
0 0 30px rgba(56,189,248,.4),
0 0 60px rgba(56,189,248,.3);
}

.tagline{
text-align:center;
margin-top:20px;
font-size:20px;
color:#94a3b8;
letter-spacing:2px;
}

.section{
margin-top:100px;
}

h2{
font-size:28px;
letter-spacing:3px;
color:#7dd3fc;
margin-bottom:30px;
}

p{
line-height:1.9;
font-size:15px;
color:#cbd5f5;
opacity:.9;
margin-bottom:18px;
}

.divider{
width:80px;
height:2px;
background:#38bdf8;
margin:50px 0;
opacity:.3;
}

.card{

background:rgba(15,23,42,0.45);
border:1px solid rgba(56,189,248,0.15);
padding:30px;
border-radius:10px;
margin-bottom:30px;

backdrop-filter:blur(8px);

box-shadow:
0 0 20px rgba(56,189,248,0.08),
inset 0 0 20px rgba(56,189,248,0.03);

}

.card.small {
    grid-column: span 6; 
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    justify-content: space-between;

}
.card.small .content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.card.small strong {
    font-size: 18px;
    color: #7dd3fc;
}
.card.small p:last-child {
    margin-top: auto;
}
.card.highlight {
    background: rgba(56,189,248,0.05);
    border: 1px solid rgba(56,189,248,0.3);
}
.card.large {
    grid-column: span 12;
}
.footer{
text-align:center;
margin-top:120px;
padding-bottom:40px;
font-size:12px;
color:#64748b;
letter-spacing:2px;
}
.access-card{
text-align:center;
}

.access-box{

margin-top:30px;

padding:30px;

border:1px solid rgba(56,189,248,0.25);

border-radius:8px;

background:rgba(2,6,23,0.7);

box-shadow:
0 0 20px rgba(56,189,248,0.1),
inset 0 0 20px rgba(56,189,248,0.05);

}

.access-text{

font-size:13px;

letter-spacing:4px;

color:#38bdf8;

margin-bottom:20px;

opacity:.8;

}

.access-button{

display:inline-block;

padding:12px 26px;

border:1px solid rgba(56,189,248,0.5);

color:#7dd3fc;

text-decoration:none;

letter-spacing:2px;

font-size:13px;

border-radius:6px;

transition:all .25s;

}

.access-button:hover{

background:rgba(56,189,248,0.2);
transform: translateY(-4px);
transition: all .25s ease;
box-shadow:0 0 15px rgba(56,189,248,0.5);

}

.top-actions{
text-align:center;
margin-top:40px;
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.top-button{

display:inline-block;

padding:12px 28px;

border:1px solid rgba(56,189,248,0.5);

border-radius:6px;

color:#7dd3fc;

text-decoration:none;

letter-spacing:3px;

font-size:13px;

transition:all .25s;

box-shadow:0 0 10px rgba(56,189,248,0.15);

}

.top-button:hover{

background:rgba(56,189,248,0.2);

box-shadow:
0 0 20px rgba(56,189,248,0.5),
0 0 40px rgba(56,189,248,0.25);

transform:translateY(-2px);

}
.kraken-link{
text-decoration:none;
color:inherit;
}
.flow p {
    margin-bottom: 18px;
    opacity: 0.9;
}

.flow p:first-child {
    color: #7dd3fc;
    font-weight: 500;
}

.top-button,
.access-button {
    box-sizing: border-box;
}
/* ========================= */
/* ACTOR SECTION UPGRADE */
/* ========================= */

.actor-box {
    text-align: left;
}

.actor-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #64748b;
    margin-bottom: 10px;
}

.actor-highlight {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.actor-highlight.negative {
    color: #94a3b8;
}

.actor-highlight.positive {
    color: #7dd3fc;
}

.actor-content p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.actor-bottom {
    text-align: center;
}

.actor-bottom p:first-child {
    font-size: 18px;
    color: #7dd3fc;
    font-weight: 600;
}

.actor-bottom p:last-child {
    opacity: 0.9;
}

/* ========================= */
/* KRAKEN APPROACH UPGRADE */
/* ========================= */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    align-items: start;
}

.approach-text-left {
    grid-column: span 6;
}

.approach-text-right {
    grid-column: span 6;
}

.approach-visual {
    grid-column: span 12;
    position: relative;
    padding: 20px;
    background: rgba(56,189,248,0.03);
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 12px;
}

.approach-visual img {
    width: 100%;
    border-radius: 10px;
    display: block;
    opacity: 0.95;
}

.approach-visual::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: rgba(56,189,248,0.3);
    transform: translateX(-50%);
}

.approach-text-left p,
.approach-text-right p {
    margin-bottom: 12px;
}

.approach-text-left strong,
.approach-text-right strong {
    color: #7dd3fc;
}

/* ========================= */
/* CAPABILITIES UPGRADE */
/* ========================= */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.cap-card {
    grid-column: span 6;
    background: rgba(15,23,42,0.45);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 10px;
    padding: 30px;
}

.cap-card h3 {
    color: #7dd3fc;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cap-card ul {
list-style: none;
padding: 0;
}

.cap-card ul li {
position: relative;
padding-left: 18px;
margin-bottom: 8px;
}

.cap-card ul li::before {
content: "•";
position: absolute;
left: 0;
color: #38bdf8;
opacity: 0.8;
}

.cap-card ul li::first-word {
color: #38bdf8;
}


/* ========================= */
/* VISION UPGRADE */
/* ========================= */

.vision-card {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.vision-card p:first-child {
    font-size: 18px;
    color: #7dd3fc;
}

/* ========================= */
/* USE CASES */
/* ========================= */

.usecase-wrapper {
    margin-top: 40px;
}

.usecase {
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.usecase-header {
    padding: 18px 20px;
    cursor: pointer;
    background: rgba(56,189,248,0.05);
    font-weight: 500;
    letter-spacing: 1px;
}

.usecase-content {
    display: none;
    padding: 20px;
    background: rgba(2,6,23,0.7);
}

.usecase.active .usecase-content {
    display: block;
}

.usecase strong {
    color: #7dd3fc;
}


.killer-line{
margin-top:10px;
font-size:14px;
color:#38bdf8;
opacity:0.9;
}

.flow-box{
text-align:center;
}

.flow-line{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.flow-block{
background:#020617;
border:1px solid rgba(56,189,248,0.2);
padding:15px 20px;
border-radius:10px;
min-width:150px;
}

.flow-block span{
font-size:12px;
opacity:0.6;
}

.flow-arrow{
opacity:0.5;
}

.flow-bottom{
margin-top:15px;
font-size:13px;
opacity:0.7;
}

.img-label{
font-size:12px;
opacity:0.6;
margin-bottom:10px;
}

.why-container{
max-width:600px;
margin:40px auto 0 auto;
text-align:center;
display:flex;
flex-direction:column;
gap:16px;
}

.why-line{
font-size:15px;
opacity:0.7;
}

.why-line.highlight{
font-size:18px;
opacity:1;
color:#38bdf8;
font-weight:500;
}

.why-line.small{
font-size:13px;
opacity:0.5;
}
/* ========================= */
/* MOBILE FIX */
/* ========================= */

@media (max-width: 900px) {

    .container {
        padding: 50px 16px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card.small,
    .card.full,
    .card.large {
        grid-column: span 12 !important;
    }

    .card {
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .card.small {
        min-height: auto;
    }

}
@media (max-width: 900px) {
    .top-actions {
        flex-direction: column;
        gap: 14px;
        padding: 0;
        width: 100%;
    }

    .top-button,
    .access-button {
        width: 100%;
        display: block;

        padding: 16px;
        font-size: 15px;

        text-align: center;

        border-radius: 10px;

        /* DAS FIXT ALIGNMENT */
        margin: 0 auto;
    }

    .kraken {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 14px;
    }

    .section {
        margin-top: 80px;
    }

    .access-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .access-box {
        padding: 20px;
        margin-top: 20px;
    }


    .card-grid,
    .capabilities-grid,
    .approach-grid {
        grid-template-columns: 1fr !important;
    }

    .cap-card,
    .card.small,
    .approach-text-left,
    .approach-text-right {
        grid-column: span 12 !important;
    }
    .card ul {
        columns: 1;
    }
}
