:root {
    --navy: #0B1F3A;
    --section-dark: #0F2340;
    --section-light: #132B4A;
    --accent: #25b1ca;
    --accent-glow: rgba(37,177,202,0.3);
    --accent-glow-strong: rgba(37,177,202,0.5);
    --white: #FFFFFF;
    --gray: #C5D1E0;
    --gray-muted: #8fa3bc;
    --border-subtle: rgba(37,177,202,0.15);
    --border-accent: rgba(37,177,202,0.4);
    --card-bg: rgba(255,255,255,0.04);
    --card-hover-bg: rgba(255,255,255,0.07);
    --transition-standard: 0.35s ease;
    --transition-fast: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

/* ===== NAVBAR ===== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(11,31,58,0.6);
    backdrop-filter: blur(8px);
    transition: var(--transition-standard);
    border-top: 3px solid var(--accent);
}

nav.scrolled {
    background: rgba(11,31,58,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-accent);
}

.logo {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent);
}

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */

.hero {
    height: calc(100vh - 70px);
    margin-top: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;

    background:
        linear-gradient(
            to bottom,
            rgba(5,10,25,0.65) 0%,
            rgba(5,10,25,0.35) 40%,
            rgba(5,10,25,0.35) 60%,
            rgba(5,10,25,0.75) 100%
        ),
        url("images/bg.jpeg") center/cover no-repeat;
}

.hero-content {
    user-select: none;
    -webkit-user-select: none;
}

.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 25px;
    font-size: 70px;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8), 0 0 60px rgba(37,177,202,0.25);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* supernova halo — soft bloom expanding from center */
.hero-content h1::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent            0%,
        rgba(37,177,202,0.3)  20%,
        rgba(37,177,202,0.6)  50%,
        rgba(37,177,202,0.3)  80%,
        transparent            100%
    );
    filter: blur(7px);
    transform-origin: center;
    transform: scaleX(0.1);
    animation: novaHalo 3s ease-in-out infinite;
}

/* supernova core — sharp pill line, expands from center outward */
.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent   0%,
        var(--accent) 20%,
        #ffffff       50%,
        var(--accent) 80%,
        transparent   100%
    );
    transform-origin: center;
    transform: scaleX(0.1);
    animation: novaCore 3s ease-in-out infinite;
}

@keyframes novaCore {
    0%, 100% {
        transform: scaleX(0.1);
        opacity: 0.6;
        box-shadow: 0 0 4px var(--accent);
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--accent), 0 0 22px var(--accent-glow);
    }
}

@keyframes novaHalo {
    0%, 100% { transform: scaleX(0.1); opacity: 0; }
    50%       { transform: scaleX(1);   opacity: 1; }
}

.hero-content span {
    color: var(--accent);
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    margin: 8px auto 24px;
    max-width: 520px;
}

.hero-content p {
    color: var(--gray);
    font-size: 17px;
    letter-spacing: 1px;
    max-width: 520px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    background: var(--accent);
    color: var(--navy);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--transition-standard);
    box-shadow: 0 0 0 rgba(37,177,202,0);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px var(--accent-glow-strong);
    background: #2ec8e4;
}

/* ===== SECTIONS ===== */

section {
    padding: 120px 10%;
    border-top: 1px solid var(--border-subtle);
    user-select: none;
    -webkit-user-select: none;
}

section input,
section textarea {
    user-select: text;
    -webkit-user-select: text;
}

section:nth-child(even) {
    background-color: var(--section-dark);
}

section:nth-child(odd) {
    background-color: var(--section-light);
}

section h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    color: var(--white);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

section p {
    color: var(--gray);
}

/* ===== LAYOUT FIX ===== */

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.text-content {
    max-width: 550px;
}

.text-content p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--gray);
    max-width: 560px;
}

/* ===== STEPS ===== */

.steps-zigzag {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Vertical connecting line */
.steps-zigzag::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    border-left: 2px dashed rgba(37,177,202,0.3);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 44px;
    text-align: left;
    transition: var(--transition-standard);
}

.step:last-child {
    padding-bottom: 0;
}

.step:hover .circle {
    box-shadow: 0 0 32px var(--accent-glow-strong);
    transform: scale(1.08);
}

.step:hover .step-content {
    color: var(--white);
}

.circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 20px var(--accent-glow);
    position: relative;
    z-index: 1;
    transition: var(--transition-standard);
}

.step-content {
    padding-top: 14px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== MANIFEST ===== */

.manifest-inner {
    max-width: 780px;
    margin: 0 auto;
}

.manifest-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.manifest-lead {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    color: var(--white) !important;
    line-height: 1.9;
    font-style: italic;
}

.manifest-body p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.85;
}

.manifest-quote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    background: var(--card-bg);
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
}

.manifest-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--white) !important;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 100px;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
}

/* ===== VALUES ===== */

.values-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.values-intro {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 24px;
    transition: var(--transition-standard);
}

.value-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.value-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.75;
}

/* ===== CONTACT ===== */

.contact-inner {
    max-width: 680px;
    margin: 0 auto;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px 28px;
    transition: var(--transition-standard);
}

.contact-card:hover {
    border-color: var(--border-accent);
    background: var(--card-hover-bg);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(37,177,202,0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-value:hover {
    color: var(--accent);
}

/* ===== ORDER / FORM ===== */

.order-inner {
    max-width: 640px;
    margin: 0 auto;
}

.order-lead {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.8;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-submit {
    align-self: flex-start;
    padding: 14px 36px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.form-status.success {
    display: block;
    background: rgba(37,177,202,0.08);
    border: 1px solid var(--border-accent);
    color: var(--accent);
}

.form-status.error {
    display: block;
    background: rgba(255,77,90,0.08);
    border: 1px solid rgba(255,77,90,0.4);
    color: #ff6b75;
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ===== BACK TO TOP ===== */

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-standard);
    box-shadow: 0 4px 16px var(--accent-glow);
}

#backToTop.show {
    opacity: 1;
}

#backToTop:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px var(--accent-glow-strong);
}

/* ===== SCROLL ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.65s ease forwards;
}

.animate-on-scroll.visible .value-card:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll.visible .value-card:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll.visible .value-card:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll.visible .contact-card:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll.visible .contact-card:nth-child(2) { animation-delay: 0.2s; }

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(11,31,58,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: 0.4s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    section {
        padding: 70px 6%;
    }

    section h2 {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .section-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .steps-zigzag {
        margin: 50px auto 0;
        max-width: 300px;
        width: 100%;
    }

    .step {
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 10px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card:hover {
        transform: none;
    }

    .contact-card:hover {
        transform: none;
    }

    .btn-submit {
        align-self: stretch;
        text-align: center;
    }
}
