/* ============================================
   Template 07 - Geometric Pulse
   ============================================ */

.template-geometric {
    background: #0f0f14;
}

/* Logo */
.geometric-logo {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.geometric-icon {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
}

/* Geometric Heading */
.geometric-heading {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.text-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px #8b5cf6;
    text-stroke: 2px #8b5cf6;
}

.text-filled {
    display: block;
    color: white;
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin: 0.5rem 0;
}

.text-gradient-geometric {
    display: block;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Geometric Countdown */
.geometric-countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.geometric-item {
    text-align: center;
}

.geometric-shape {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hexagon {
    background: rgba(139, 92, 246, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0f0f14;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.geometric-item .countdown-value {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b5cf6;
    background: none;
    -webkit-text-fill-color: #8b5cf6;
}

/* Geometric Form */
.geometric-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.geometric-input {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 0;
}

.geometric-input:focus {
    border-color: #8b5cf6;
    box-shadow: none;
}

.btn-geometric {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    border-radius: 0;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-geometric:hover {
    background: #8b5cf6;
    color: white;
}

/* Geometric Features */
.geometric-features {
    margin-top: 2rem;
}

.geometric-card {
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0;
}

.geometric-card:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.geometric-feature-icon {
    background: transparent;
    border: 2px solid #8b5cf6;
    border-radius: 0;
    color: #8b5cf6;
}

/* Geometric Social */
.geometric-social-link {
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0;
    color: #8b5cf6;
}

.geometric-social-link:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}
