@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;500;800&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    --void-black: #050505;
    --nuclear-cyan: #00F5FF;
    --aurora-plasma: linear-gradient(135deg, #00F5FF, #7000FF);
    --ghost-white: #F8FAFC;
    --deep-ice: #0A1921;
    --accent-glow: rgba(0, 245, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--void-black);
    color: var(--ghost-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
.kinetic-text {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}


/* Hero: Aurora Aperture */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #0A1921 0%, #050505 100%);
}

.ice-displacement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
    object-fit: cover;
    /* Removed filters for maximum clarity */
}

.aperture-container {
    position: relative;
    z-index: 10;
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aperture-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 50%;
    animation: rotate 80s linear infinite;
}

.aperture-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--nuclear-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--nuclear-cyan);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.search-core {
    width: 520px;
    height: 520px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(30px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nuclear-cyan);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.15);
    padding: 3.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-core:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(0, 245, 255, 0.25);
}

.hero-tag {
    font-size: 0.85rem;
    color: var(--nuclear-cyan);
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
}

/* Functional Widget Elements */
.widget-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-wrap {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-wrap label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--nuclear-cyan);
    font-weight: 700;
    opacity: 0.8;
}

.kinetic-select,
.kinetic-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.kinetic-select:hover,
.kinetic-input:focus {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--nuclear-cyan);
}

/* Kinetic Grid */
.kinetic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Simple Cards - Animation Removed */
.card-3d-wrap {
    perspective: none;
}

.card-3d {
    background: var(--deep-ice);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2rem;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card-3d:hover {
    border-color: var(--nuclear-cyan);
}

.card-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(0, 245, 255, 0.15), transparent 70%);
    pointer-events: none;
}

/* Utility: Glacial Shapes */
.poly-shape {
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    background: var(--deep-ice);
    padding: 4rem;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.btn-kinetic {
    background: var(--aurora-plasma);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: letter-spacing 0.3s;
}

.btn-kinetic:hover {
    letter-spacing: 0.2em;
}

.btn-kinetic span {
    position: relative;
    z-index: 2;
}