/* css/style.css */
/* --- CSS VARIABLES & GLOBAL STYLES --- */
:root {
    --bg-color: #0A0A0A;
    --primary-card-color: #141414;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #F5F5F7;
    --text-secondary: #A3A3A3;
    --accent-red: #DC2626;
    --accent-purple: #9333EA;
    --accent-blue: #2563EB;
    --accent-green: #16A34A;
    --font-main: 'Inter', sans-serif;

    /* Default Accent Color */
    --accent-color: var(--accent-blue);
}

/* --- THEME ACCENT COLORS --- */
[data-accent="blue"] {
    --accent-color: var(--accent-blue);
}

[data-accent="red"] {
    --accent-color: var(--accent-red);
}

[data-accent="green"] {
    --accent-color: var(--accent-green);
}

[data-accent="purple"] {
    --accent-color: var(--accent-purple);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- HEADER / NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -5px;
}

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

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.hamburger {
    display: none;
}

/* --- HERO SECTION & 3D ORB --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 50%);
    animation: pulse-aurora 10s infinite alternate;
}

@keyframes pulse-aurora {
    from {
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.orb {
    width: 200px;
    height: 200px;
    background:
        radial-gradient(circle at 20% 20%, #9333EA, transparent 40%),
        radial-gradient(circle at 80% 70%, #2563EB, transparent 40%),
        radial-gradient(circle at 50% 50%, #0A0A0A 30%, transparent 60%);
    border-radius: 50%;
    margin: -80px auto 40px;
    animation: rotate-orb 20s infinite linear;
    position: relative;
}

.orb::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 90deg at 50% 50%, #FFFFFF00 0%, #FFFFFF33 50%, #FFFFFF00 100%);
    animation: rotate-highlight 5s infinite linear;
}

@keyframes rotate-orb {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-highlight {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.1;
    background: linear-gradient(90deg, #b3c0d7, #f5f5f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 20px auto 30px auto;
    line-height: 1.6;
}

.powered-by {
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* --- BENTO GRID SECTION --- */
.bento-section {
    padding: 100px 40px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    background-color: var(--primary-card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bento-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Grid item sizing */
#bento-unstoppable {
    grid-column: span 2;
}

#bento-dts {
    grid-column: span 2;
}

#bento-status {
    grid-column: span 1;
}

#bento-harmony {
    grid-column: span 2;
}

#bento-fotd {
    grid-column: span 1;
}

#bento-founder {
    grid-column: span 2;
}

#bento-shop {
    grid-column: span 2;
}

/* Bento card specific styles */
.bento-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    transform: translate(10%, 10%) rotate(-15deg);
}

.bento-card:hover img {
    opacity: 1;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.status-indicator {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 20px;
}

.status-indicator.online {
    color: #16A34A;
    background-color: rgba(22, 163, 74, 0.1);
}

#bento-founder p {
    font-style: italic;
}

/* --- SCROLL-SNAPPING SECTIONS --- */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.brand-section {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}

.brand-section.is-visible .section-background {
    transform: scale(1);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brand-content {
    z-index: 2;
    position: relative;
}

.brand-content h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -3px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #000;
    color: var(--text-secondary);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.signup-form {
    display: flex;
    gap: 10px;
}

.signup-form input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--primary-card-color);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.signup-form button {
    padding: 12px 18px;
    border: none;
    background-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #1D4ED8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    gap: 20px;
}

/* --- ANIMATIONS & RESPONSIVE DESIGN --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #bento-unstoppable,
    #bento-dts,
    #bento-harmony,
    #bento-founder,
    #bento-shop {
        grid-column: span 2;
    }

    #bento-status,
    #bento-fotd {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: calc(100vh - 64px);
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding-top: 20px;
    }

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

    .nav-links li {
        padding: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--text-primary);
        transition: all 0.3s ease-in-out;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .bento-section {
        padding: 80px 20px;
    }

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

    #bento-unstoppable,
    #bento-dts,
    #bento-harmony,
    #bento-founder,
    #bento-shop,
    #bento-status,
    #bento-fotd {
        grid-column: span 1;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
.status-indicator.down { color: #a3a316; background-color: rgba(22, 163, 74, 0.1); }
.nav-logo{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -5.5px;
}
