:root {
    --ink: #1B1B1B;
    --ink-hover: #3A3A3A;
    --gold: #F6C878;
    --cream: #FFF8EC;
    --muted: #7A6A50;
    --border: #E4B36B;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

h1, h2, h3 {
    line-height: 1.15;
    text-wrap: balance;
    margin: 0;
}

/* --- header --- */

.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: 34px;
    border-radius: 50%;
}

.brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:not(.nav-cta):hover {
    text-decoration: underline;
}

.nav-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--ink-hover);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.lang-link {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lang-link:hover {
    text-decoration: underline;
}

.lang-link-active {
    color: var(--ink);
}

/* --- buttons --- */

.button {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.button-primary {
    background: var(--ink);
    color: var(--cream);
}

.button-primary:hover {
    background: var(--ink-hover);
}

.button-ghost {
    border-color: var(--ink);
    color: var(--ink);
}

.button-ghost:hover {
    background: rgba(27, 27, 27, 0.06);
}

/* --- hero --- */

.hero {
    background: var(--gold);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    letter-spacing: -0.02em;
}

.hero-sub {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    max-width: 46ch;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-screenshot {
    width: 100%;
    max-width: 560px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(27, 27, 27, 0.25);
    border: 1px solid rgba(27, 27, 27, 0.15);
}

/* --- explainer --- */

.explainer {
    background: var(--cream);
}

.explainer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 84px 24px;
    text-align: center;
}

.explainer-inner h2 {
    font-size: 1.9rem;
    letter-spacing: -0.01em;
}

.explainer-steps {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.explainer-steps li {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.explainer-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

/* --- features --- */

.features {
    background: var(--gold);
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 84px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature {
    background: var(--cream);
    border-radius: 12px;
    padding: 28px 26px;
    border: 1px solid rgba(27, 27, 27, 0.08);
}

.feature h3 {
    font-size: 1.15rem;
}

.feature p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

/* --- closing cta --- */

.closing-cta {
    background: var(--cream);
}

.closing-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: center;
}

.closing-cta-inner h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

.closing-cta-inner .button {
    margin-top: 28px;
}

/* --- footer --- */

.site-footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer a {
    text-decoration: underline;
}

/* --- responsive --- */

@media (max-width: 820px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    .hero-visual {
        order: -1;
    }

    .explainer-steps,
    .features-inner {
        grid-template-columns: 1fr;
    }

    .explainer-inner,
    .features-inner,
    .closing-cta-inner {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

