:root {
    --base: #0e0811;
    --shadow: #1a1018;
    --velvet: #241620;
    --gold: #c9a875;
    --ember: #d4a045;
    --crimson: #8b3e5f;
    --bone: #f0e4d0;
    --parchment: #a59685;
    --hairline: rgba(201, 168, 117, 0.18);
}

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

html {
    background: var(--base);
}

body {
    background:
        radial-gradient(ellipse at top, rgba(212, 160, 69, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--velvet) 0%, var(--shadow) 40%, var(--base) 100%);
    background-attachment: fixed;
    color: var(--bone);
    font-family: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
    font-weight: 300;
    line-height: 1.75;
    min-height: 100vh;
    padding: 2rem 1.5rem 4rem;
    -webkit-font-smoothing: antialiased;
}

.lang-toggle {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--parchment);
    letter-spacing: 0.03em;
}
.lang-toggle a {
    color: var(--gold);
    text-decoration: none;
    margin-left: 0.5rem;
}
.lang-toggle a.active {
    color: var(--bone);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.1rem;
}

main {
    max-width: 640px;
    margin: 0 auto;
}

header.brand-header {
    text-align: center;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.brand {
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-rule {
    width: 70px;
    height: 0.5px;
    background: var(--gold);
    opacity: 0.7;
    margin: 1rem auto;
}

.brand-tagline {
    font-style: italic;
    color: var(--parchment);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--bone);
    margin-bottom: 0.5rem;
    text-align: center;
    font-style: italic;
    letter-spacing: -0.01em;
}

.last-updated {
    color: var(--parchment);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-top: 2.8rem;
    margin-bottom: 0.9rem;
    letter-spacing: -0.005em;
}

p, li {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--bone);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0.5rem 0 1.2rem 1.4rem;
}

li {
    margin-bottom: 0.55rem;
}

a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-decoration-thickness: 0.5px;
}
a:hover {
    color: var(--ember);
}

strong {
    font-weight: 500;
    font-style: normal;
    color: var(--bone);
}

footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
    color: var(--parchment);
    font-size: 0.9rem;
    font-style: italic;
}

footer nav a {
    margin: 0 0.6rem;
    color: var(--parchment);
    text-decoration: none;
}
footer nav a:hover {
    color: var(--gold);
}

footer .credit {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--parchment);
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* Marketing home */
.hero {
    text-align: center;
    padding: 3rem 0 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--bone);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.app-store-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(180deg, var(--ember) 0%, var(--gold) 100%);
    color: var(--base);
    font-weight: 500;
    font-style: normal;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 32px rgba(201, 168, 117, 0.2);
    transition: transform 0.2s ease;
}
.app-store-button:hover {
    transform: translateY(-1px);
    color: var(--base);
}

.feature-grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.feature {
    border-top: 1px solid var(--hairline);
    padding-top: 1.5rem;
    text-align: center;
}

.feature h3 {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1.05rem;
    color: var(--bone);
}

@media (max-width: 480px) {
    body { padding: 1.5rem 1rem 3rem; }
    .brand { font-size: 3rem; }
    h1 { font-size: 1.8rem; }
    .hero p { font-size: 1.15rem; }
}
