:root {
    --bg-dark: #1f2937;
    --accent-orange: #f97316;
    --accent-rose: #fb7185;
    --accent-yellow: #fde68a;
    --glow-blue: #60a5fa; /* Additional for ice effect */
    --text-light: #f3f4f6;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.summitselfVisionAtlas-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(251, 113, 133, 0.2);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.summitselfVisionAtlas-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.summitselfVisionAtlas-hero {
    padding: 150px 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(251, 113, 133, 0.1), transparent);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
}

.glitch-text {
    color: var(--accent-yellow);
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #9ca3af;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-glow {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.6); /* Blue glow on hover */
    background-color: var(--glow-blue);
}

/* Ice Decoration */
.ice-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--accent-rose), var(--accent-orange));
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

/* Grid Sections */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 100px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(251, 113, 133, 0.1);
}

.info-card.highlight {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, rgba(253, 230, 138, 0.05), transparent);
}

.info-card h2, .info-card h3 {
    margin-bottom: 20px;
    color: var(--accent-rose);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Benefits */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 40px;
    background: #111827;
    border-left: 5px solid var(--accent-orange);
    transition: var(--transition);
}

.benefit-item:hover {
    background: #374151;
    transform: scale(1.02);
}

.benefit-item .icon {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.2;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

/* Form */
.summitselfVisionAtlas-form-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(251, 113, 133, 0.05));
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.8);
    padding: 50px;
    border: 2px solid var(--accent-rose);
    box-shadow: 0 0 30px rgba(251, 113, 133, 0.2);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--accent-rose);
    color: white;
}

/* Footer */
.summitselfVisionAtlas-footer {
    padding: 80px 0 40px;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .footer-links {
        text-align: left;
    }
}