:root {
    --primary-color: #2d3436;
    --accent-color: #636e72;
    --background: #ffffff;
    --text-color: #2d3436;
    --zen-accent: #b2bec3;
    --spacing: 2rem;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    position: relative;
}

.zen-circle {
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100vw;
    height: 100vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178,190,195,0.1) 0%, rgba(178,190,195,0) 70%);
    z-index: -1;
}

header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.dot-com {
    font-weight: 300;
    opacity: 0.7;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-top: 1rem;
}

.brush-stroke {
    width: 100px;
    height: 2px;
    background: var(--zen-accent);
    margin: 2rem auto;
    position: relative;
    transform: scaleX(0);
    animation: brushStroke 1.5s ease forwards;
}

@keyframes brushStroke {
    to {
        transform: scaleX(1);
    }
}

section {
    padding: 8rem 0;
    position: relative;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.essence-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.essence-item:hover {
    transform: translateY(-10px);
}

.kanji {
    font-size: 4rem;
    color: var(--zen-accent);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.essence-item h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.possibility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--zen-accent);
    transition: height 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
    height: 100%;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.acquisition {
    background: linear-gradient(135deg, rgba(45,52,54,0.02) 0%, rgba(99,110,114,0.05) 100%);
}

.zen-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 1px solid var(--zen-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-link:hover .contact-label {
    color: var(--zen-accent);
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .brand {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-link {
        width: 100%;
    }
}