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

:root {
    --deep-navy: #0a1628;
    --warm-slate: #1e293b;
    --soft-blue: #3b82f6;
    --warm-amber: #f59e0b;
    --soft-white: #f8fafc;
    --muted-gray: #94a3b8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--deep-navy);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--deep-navy), transparent);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--soft-blue), var(--warm-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.35rem;
    color: var(--muted-gray);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--soft-blue), #2563eb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.cta-secondary {
    color: var(--soft-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--soft-white);
}

.philosophy p {
    font-size: 1.15rem;
    color: var(--muted-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.philosophy p strong {
    color: var(--soft-white);
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 6rem 4rem;
    background: var(--warm-slate);
}

.products-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--soft-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--deep-navy);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
    }
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-info p {
    color: var(--muted-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.product-link {
    color: var(--soft-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 0.75rem;
}

.product-visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 12px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.product-visual::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.visual-icon {
    font-size: 3rem;
    z-index: 1;
}

/* Team Section */
.team {
    padding: 8rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.founder {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.founder h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.founder .role {
    color: var(--soft-blue);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.founder p {
    color: var(--muted-gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 4rem;
    background: var(--warm-slate);
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--muted-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-email {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--soft-blue);
    padding-bottom: 0.25rem;
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-color: var(--warm-amber);
}

/* Footer */
footer {
    padding: 3rem 4rem;
    text-align: center;
    color: var(--muted-gray);
    font-size: 0.85rem;
}

footer a {
    color: var(--muted-gray);
    text-decoration: none;
}

footer a:hover {
    color: var(--soft-white);
}
