/* namu.farm - Isometric Agritech */
/* Colors: #F4EDE4, #1A2A30, #FFFFFF, #7AA8B8, #5A8A6A, #B8A88C, #E07860, #7A8A8E */
/* Fonts: Space Grotesk, DM Sans, JetBrains Mono */

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

body {
    font-family: 'DM Sans', sans-serif;
    color: #1A2A30;
    background: linear-gradient(180deg, #E8F0F4 0%, #F4EDE4 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.island {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 140px;
}

.island--hero {
    text-align: center;
    padding-top: 160px;
    margin-bottom: 160px;
}

.island--diagram {
    text-align: center;
    margin-bottom: 180px;
}

.island--footer {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(122, 168, 184, 0.2);
}

.island__content {
    max-width: 560px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1A2A30;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.5s forwards;
}

.hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #7A8A8E;
    margin-top: 16px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.iso-tree {
    width: 300px;
    height: 400px;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.5s forwards;
}

.data-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #7AA8B8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1A2A30;
    margin-bottom: 20px;
}

.body-text {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    color: #1A2A30;
    opacity: 0.8;
    margin-bottom: 24px;
}

.data-readout {
    background: #FFFFFF;
    border: 1px solid rgba(122, 168, 184, 0.2);
    border-radius: 6px;
    padding: 20px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
}

.data-row:last-child { border-bottom: none; }

.data-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #7A8A8E;
}

.data-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #5A8A6A;
    font-weight: 400;
}

.footer-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #7A8A8E;
    opacity: 0.5;
}

.island-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.island-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 600px) {
    .island { margin-bottom: 80px; }
    .island--hero { padding-top: 100px; margin-bottom: 100px; }
}
