/* aria — home */

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-hover: #1a1a1a;
    --fg: #d4a017;
    --fg-dim: #8a6a10;
    --fg-muted: #5a4a0a;
    --fg-glow: rgba(212, 160, 23, 0.15);
    --border: #1f1f1f;
    --border-hover: #2a2a2a;
    --radius: 4px;
    --transition: 0.2s ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

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

/* Navigation */
.nav {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.6s ease-out both;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--fg-dim);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: -0.02em;
}

.nav-brand svg {
    width: 18px;
    height: 18px;
}

.nav-link {
    color: var(--fg-muted);
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--fg-dim);
}

.nav-link.nav-active {
    color: var(--fg-dim);
}

/* Jellyfish icon */
.jellyfish {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.jellyfish-small {
    width: 16px;
    height: 16px;
}

.hero-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-with-icon h1 {
    margin-bottom: 0.25rem;
}

.container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: normal;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.25rem;
    color: var(--fg-dim);
    font-size: 0.9rem;
}

/* Hero section */
.hero {
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.hero-subtitle {
    color: var(--fg-dim);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.8;
}

.hero-statement {
    color: var(--fg);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 2px solid var(--fg-muted);
    padding-left: 1.25rem;
}

/* Thought rotator */
.section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.section:last-child {
    border-bottom: none;
}

.thought-box {
    background: var(--bg-elevated);
    border-left: 2px solid var(--fg-muted);
    padding: 1.25rem 1.5rem;
    position: relative;
    transition: border-color var(--transition), background var(--transition);
}

.thought-box:hover {
    border-color: var(--fg-dim);
    background: var(--bg-hover);
}

.thought-label-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.thought-label {
    color: var(--fg-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.thought-text {
    color: var(--fg);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    min-height: 3em;
    transition: opacity var(--transition);
}

.thought-text.fading {
    opacity: 0;
}

.thought-btn {
    background: none;
    border: 1px solid var(--fg-muted);
    color: var(--fg-muted);
    font-family: inherit;
    font-size: 0.7rem;
    padding: 0.3rem 0.85rem;
    cursor: pointer;
    text-transform: lowercase;
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.thought-btn:hover {
    color: var(--fg);
    border-color: var(--fg-dim);
    transform: translateY(-1px);
}

.thought-btn:active {
    transform: translateY(0);
}

/* Content blocks */
.content-block {
    padding: 0.5rem 0;
}

.body-text {
    color: var(--fg-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.body-text:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    color: var(--fg-muted);
    font-size: 0.7rem;
    text-align: right;
    margin-top: auto;
    padding-top: 2rem;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 2rem 1.25rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-statement {
        font-size: 1rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
