/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    background: #050608;
    overflow-x: hidden;
}

:root {
    --bg: #050608;
    --bg-2: #070A0F;
    --panel: rgba(255, 255, 255, 0.03);
    --panel-border: rgba(255, 255, 255, 0.10);
    --text: rgba(255, 255, 255, 0.88);
    --muted: rgba(255, 255, 255, 0.68);
    --muted-2: rgba(255, 255, 255, 0.55);
    --cyan: #21E6FF;
    --orange: #FF8A00;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 6, 8, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-2);
    font-weight: 400;
    margin-top: 0.25rem;
    text-align: center;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--cyan);
    transition: width 0.2s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.is-active {
    color: var(--cyan);
}

.nav-menu a.is-active::after {
    width: 100%;
}

.nav-menu a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(33, 230, 255, 0.14);
    border-radius: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
  
    /* Darken for readable headline, then the image */
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
      url('image/second.webp');
  
    background-size: cover;          /* premium full-bleed */
    background-position: 50% 50%;    /* shows slightly more “upper” part */
    background-repeat: no-repeat;
    background-attachment: scroll;   /* avoid fixed/parallax issues */
  
    color: white;
    padding-top: 80px;
  }
  
  /* Mobile tweak: usually better crop and less “lost” image */
  @media (max-width: 768px) {
    .hero {
      min-height: 60vh;
      background-position: 50% 25%;
    }
  }

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    background: var(--bg-2);
    padding: 5rem 0;
    background: var(--bg-2);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--muted);
}

.content-text p {
    margin-bottom: 1.5rem;
}

/* Improve long-form readability */
.content-text p {
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.model-image {
    text-align: center;
    margin-top: 3rem;
}

.model-graph {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Model Section */
.model-section {
    background: var(--bg);
    padding: 5rem 0;
    background: var(--bg);
}

.steps-title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
    margin: 4rem 0 3rem 0;
    color: rgba(255, 255, 255, 0.92);
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: min(560px, 70vw);
    height: 26px;
    margin: 14px auto 0;
    opacity: 0.55;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* Subtle "topographic" divider (inline SVG) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='60' viewBox='0 0 900 60'%3E%3Cg fill='none' stroke='%2321E6FF' stroke-opacity='.20' stroke-width='2'%3E%3Cpath d='M20 42 C140 20 210 56 330 34 S540 18 670 34 S810 56 880 26'/%3E%3Cpath d='M20 50 C160 28 220 60 340 40 S560 22 690 40 S820 58 880 34'/%3E%3C/g%3E%3Cg fill='none' stroke='%23FF8A00' stroke-opacity='.18' stroke-width='2'%3E%3Cpath d='M22 30 C150 10 230 50 360 28 S580 8 710 28 S820 46 878 18'/%3E%3C/g%3E%3C/svg%3E");
}

.model-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-box {
    background: var(--panel);
    padding: 2.4rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    border: 1px solid var(--panel-border);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(33, 230, 255, 0.45);
}

.step-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
}

.step-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-image {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.step-box:hover .step-image {
    transform: scale(1.04);
    border-color: rgba(33, 230, 255, 0.35);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.55);
}

.step-box p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add arrows between steps */
.step-box:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: rgba(33, 230, 255, 0.75);
    font-weight: 700;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Sekretess Section */
.sekretess-section {
    background: var(--bg);
    background: var(--bg);
}

.nda-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.nda-example {
    background: var(--panel);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.nda-example:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(33, 230, 255, 0.35);
}

.nda-example h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.nda-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.3rem;
    border: 1px solid rgba(33, 230, 255, 0.45);
    border-radius: 12px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    background: rgba(33, 230, 255, 0.06);
}

.nda-link:hover {
    background: rgba(33, 230, 255, 0.14);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(33, 230, 255, 0.12);
}

/* About Section */
.about-section {
    background: var(--bg-2);
    background: var(--bg-2);
}

.about-section .content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--muted);
}

.about-section .content-text p {
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.8;
}

.about-section .content-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--cyan);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Contact Section */
.contact-section {
    background: var(--bg);
    background: var(--bg-2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4b5563;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--panel);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(33, 230, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(33, 230, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(33, 230, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(33, 230, 255, 0.55);
}

.btn-primary:hover {
    background: rgba(33, 230, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(33, 230, 255, 0.16);
}

/* Footer */
.footer {
    background: #040508;
    color: rgba(255, 255, 255, 0.86);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(5, 6, 8, 0.96);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .model-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-box:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: rgba(33, 230, 255, 0.75);
    font-weight: 700;
}

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .incubator-projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
    background: var(--panel);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .project-logo-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

    .section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
}

    .nav-container {
        padding: 1rem;
    }

    .logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-2);
    font-weight: 400;
    margin-top: 0.25rem;
    text-align: center;
    line-height: 1.2;
}

    .content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--muted);
}
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .step-box,
    .contact-form {
    background: var(--panel);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
}

    .content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--muted);
}

    .project-card {
    background: var(--panel);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .project-logo-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

    .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

    .logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-2);
    font-weight: 400;
    margin-top: 0.25rem;
    text-align: center;
    line-height: 1.2;
}
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.step-box {
    background: var(--panel);
    padding: 2.4rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    border: 1px solid var(--panel-border);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Incubator Section */
.incubator-section {
    background: var(--bg-2);
    background: var(--bg-2);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.incubator-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--panel);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(33, 230, 255, 0.45);
}

.project-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.project-logo a:hover {
    transform: none;
}

.project-logo-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.project-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
}

.project-description {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0;
    flex-grow: 1;
}



.incubator-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.incubator-info p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}


.project-card:hover .project-logo-image{
    transform: scale(1.04);
    border-color: rgba(33, 230, 255, 0.35);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.55);
}


.hero-actions{
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.btn-secondary{
    background: rgba(255, 138, 0, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 138, 0, 0.55);
}

.btn-secondary:hover{
    background: rgba(255, 138, 0, 0.14);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 138, 0, 0.14);
}

/* Make general links fit the dark theme */
a{
    color: rgba(33, 230, 255, 0.92);
}
a:hover{
    color: rgba(33, 230, 255, 1);
}

/* Tighten hero typography a bit */
.hero-title{
    letter-spacing: -0.03em;
}
.hero-subtitle{
    color: rgba(255, 255, 255, 0.80);
}

/* Make white sections not exist */
section{
    padding: 5.5rem 0;
}
