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

:root {
    --bg: #ffffff;
    --bg-subtle: #fafafa;
    --bg-muted: #f5f5f7;
    --text: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #ababab;
    --accent: #000000;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Remove grain for clean look */
.grain {
    display: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 4rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-x {
    display: flex;
    align-items: center;
}

.nav-x svg {
    transition: transform 0.2s ease;
}

.nav-x:hover svg {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, 2%); }
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 700;
    color: var(--text);
    opacity: 0.08;
    white-space: nowrap;
    letter-spacing: -0.03em;
    user-select: none;
    cursor: default;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.hero-bg-text:hover {
    opacity: 1;
}

.hero-bg-text:hover + .hero-content h1 {
    opacity: 0.05;
}


.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
    position: relative;
    transition: opacity 0.4s ease;
}

.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Remove glitch for clean startup look */
.glitch {
    animation: none;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text);
    margin-top: 10rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contract-address {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.875rem 1.25rem;
    border: 3px solid var(--text);
    background: var(--bg);
}

.contract-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

.contract-value {
    font-size: 0.875rem;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-tertiary);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* Sections */
.section {
    padding: 8rem 4rem;
    position: relative;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg);
    background: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    color: var(--text);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.philosophy-text p:not(.large-text) {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.circle-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.c1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotate 30s linear infinite;
    border: 1px dashed rgba(102, 126, 234, 0.3);
}

.c2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: rotate 20s linear infinite reverse;
    border: 1px dashed rgba(118, 75, 162, 0.3);
}

.c3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: var(--accent-gradient);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.15; }
}

/* Quote Section */
.quote-section {
    background: var(--bg-muted);
    text-align: center;
}

blockquote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    font-style: normal;
    color: var(--text);
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.quote-mark {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    font-family: Georgia, serif;
}

/* Moments Section */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.moment-card {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.moment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.moment-card::before {
    display: none;
}

.moment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px;
}

.moment-icon svg {
    width: 100%;
    height: 100%;
}

.moment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.moment-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Embrace Section */
.embrace {
    background: var(--bg-subtle);
}

.manifesto {
    max-width: 560px;
}

.manifesto p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.manifesto p:nth-child(1) { animation-delay: 0.1s; }
.manifesto p:nth-child(2) { animation-delay: 0.2s; }
.manifesto p:nth-child(3) { animation-delay: 0.3s; }
.manifesto p:nth-child(4) { animation-delay: 0.4s; }
.manifesto p:nth-child(5) { animation-delay: 0.5s; }
.manifesto p:nth-child(6) { animation-delay: 0.6s; }

.manifesto p.highlight {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    letter-spacing: -0.02em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta {
    text-align: center;
    background: var(--bg);
}

.cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text);
    border: none;
    color: var(--bg);
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #333;
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.cta-button::before {
    display: none;
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* Footer */
footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
    background: var(--bg-subtle);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.footer-line {
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .moments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .circle-container {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .large-text {
        font-size: 1.25rem;
    }

    .manifesto p {
        font-size: 1.0625rem;
    }

    .manifesto p.highlight {
        font-size: 1.25rem;
    }
}

/* Selection */
::selection {
    background: rgba(102, 126, 234, 0.2);
    color: var(--text);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

