:root {
    --bg-dark: #111827;
    --text-muted: #94a3b8;
    --text-light: #e5e7eb;
    --white: #ffffff;
    --ice-glow: #00f2ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
}

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

/* Header */
.header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--ice-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

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

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

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

.badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    color: var(--ice-glow);
    margin-bottom: 1.5rem;
    display: block;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.ice-decoration {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, rgba(17, 24, 39, 0) 70%);
    pointer-events: none;
}

/* Buttons */
.btn-glow {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--ice-glow);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-glow:hover {
    background: var(--ice-glow);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.btn-glow-small {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--ice-glow);
    color: var(--ice-glow);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

/* Grid Editorial */
.philosophy {
    padding: 8rem 0;
}

.grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    height: 100%;
    transition: transform 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
}

.card-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    opacity: 0.2;
    margin-bottom: 1rem;
}

/* Product Showcase */
.product-showcase {
    padding: 8rem 0;
    background: rgba(0,0,0,0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.ice-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, rgba(17, 24, 39, 0) 60%);
    border-radius: 50%;
}

.product-image img {
    max-width: 100%;
    filter: grayscale(0.2) contrast(1.1);
    border-radius: 4px;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
}

.price {
    font-size: 2rem;
    color: var(--white);
    margin: 1rem 0;
}

/* Added content */
.ritual-section {
    padding: 7rem 0;
}

.ritual-header {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ritual-card,
.journal-note {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
}

.ritual-card h3 {
    margin-bottom: 1rem;
}

.ritual-card p,
.journal-copy p,
.journal-note p {
    color: var(--text-muted);
}

.journal-section {
    padding: 0 0 7rem;
}

.journal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.journal-copy {
    max-width: 620px;
}

.journal-copy h2 {
    margin-bottom: 1.5rem;
}

.journal-copy p {
    margin-bottom: 1rem;
}

.journal-notes {
    display: grid;
    gap: 1rem;
}

.journal-note strong {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--ice-glow);
}

/* Form */
.order-form-section {
    padding: 8rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.main-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--ice-glow);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 4rem;
}

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

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    font-size: 0.7rem;
    color: #4b5563;
    text-align: center;
}

@media (max-width: 768px) {
    .grid-editorial, .product-grid, .footer-grid, .ritual-grid, .journal-layout {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    h1 {
        font-size: 3rem;
    }
}
