/* ============================================================
   PAGE: SKY HAWK (/sky-hawk)
   ============================================================ */

/* Hero Section */
.hawk-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: #08060e;
}

.hawk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Abstract Hawk Silhouette using CSS radial gradients or SVG background */
.hawk-silhouette {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(40px);
    z-index: 1;
    /* In a real scenario, this would be an SVG of a hawk */
}

.hawk-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #08060e 90%);
    z-index: 2;
}

.hawk-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hawk-logo-hero {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, 0.3);
    margin-bottom: 32px;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.hawk-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hawk-hero__subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-style: italic;
    letter-spacing: 0.05em;
}

.play-manifesto-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.play-manifesto-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
}

.play-icon {
    font-size: 0.8rem;
}

.play-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

/* Philosophy Section */
.hawk-philosophy {
    padding: 120px 0;
    background: linear-gradient(to bottom, #08060e, #13101d);
}

.hawk-philo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.philo-block {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.philo-block:hover {
    opacity: 1;
}

.philo-block.center {
    text-align: center;
    opacity: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.philo-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.philo-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Ecosystem Wheel Section */
.hawk-ecosystem {
    padding: 100px 0 150px;
    background: #13101d;
    overflow: hidden;
}

.ecosystem-wheel {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 60px auto 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Center Logo */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #08060e;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.wheel-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.8;
}

/* Petals positioning */
.wheel-petal {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 5;
}

/* Calculate positions around circle (approximate) */
.wheel-petal.p1 {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wheel-petal.p2 {
    top: 30%;
    right: 0%;
    transform: translate(50%, -50%);
}

.wheel-petal.p3 {
    bottom: 10%;
    right: 10%;
    transform: translate(0, 0);
}

.wheel-petal.p4 {
    bottom: 10%;
    left: 10%;
    transform: translate(0, 0);
}

.wheel-petal.p5 {
    top: 30%;
    left: 0%;
    transform: translate(-50%, -50%);
}

.petal-icon {
    font-size: 2.5rem;
    background: var(--bg-card);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.petal-title {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.petal-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effects */
.wheel-petal:hover .petal-icon,
.wheel-petal.active .petal-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.wheel-petal:hover .petal-desc,
.wheel-petal.active .petal-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Connector Lines (Pseudo elements could be used here for visual lines) */

/* Values Section */
.hawk-values {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.val-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.val-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.val-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.val-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Products Section */
.hawk-products {
    padding: 100px 0;
    background: #0f0c18;
}

.products-scroll {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.prod-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform var(--transition);
}

.prod-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.prod-card.available {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #1d1929, #151221);
}

.prod-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prod-status.active {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
}

.prod-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.prod-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.link-arr {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: margin-left 0.3s ease;
}

.link-arr:hover {
    margin-left: 5px;
}

/* Partners Section */
.hawk-partners {
    padding: 100px 0;
    background: var(--bg-section);
}

.partners-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 24px;
}

.partners-txt {
    max-width: 600px;
    margin: 0 auto 32px;
}

.partners-txt p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.partners-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.partners-list li {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Media Social Proof */
.hawk-media {
    padding: 60px 0 100px;
    background: var(--bg-section);
}

.media-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.media-item {
    text-align: center;
    max-width: 250px;
}

.media-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.media-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* CTA */
.hawk-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1d1929, #08060e);
    text-align: center;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

/* Responsive Sky Hawk */
@media (max-width: 1024px) {
    .hawk-philo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ecosystem-wheel {
        width: 100%;
        height: auto;
        border: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 40px;
    }

    .wheel-center {
        display: none;
    }

    .wheel-petal {
        position: static;
        transform: none;
        width: auto;
        height: auto;
    }

    .wheel-petal.p1,
    .wheel-petal.p2,
    .wheel-petal.p3,
    .wheel-petal.p4,
    .wheel-petal.p5 {
        position: static;
        transform: none;
    }

    .petal-desc {
        opacity: 1;
        transform: none;
        white-space: normal;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hawk-hero__title {
        font-size: 3rem;
    }

    .ecosystem-wheel {
        grid-template-columns: 1fr;
    }

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

    .partners-content {
        padding: 40px 20px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}