:root {
  --bg: #0f1115;
  --bg-secondary: #171a21;

  --text: #f3f4f6;
  --text-muted: #9ca3af;

  --accent: #c6a15b;
  --accent-hover: #d4b06a;

  --border: #2b2f3a;

  --radius: 14px;
}

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


body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 35%),
    var(--bg);
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

section {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 4rem;
    font-size: 1.05rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.manifesto-block h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.manifesto-block p,
.manifesto-block li {
    color: var(--text-muted);
}

.manifesto-block ul {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.quote {
    margin-top: 3rem;
    padding: 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 0 18px 18px 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.step {
    padding: 2rem;
    border-radius: 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.step-number {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-muted);
}

.cta-section {
    text-align: center;
    padding-bottom: 8rem;
}

.cta-box {
    background: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    max-width: 700px;
    margin: auto;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    transition: 0.25s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.08);
}

footer {
    padding: 2rem 0 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 860px) {
    .manifesto {
    grid-template-columns: 1fr;
    }

    .hero {
    padding: 6rem 0;
    }

    h1 {
    font-size: 3.4rem;
    }

    .section-title {
    font-size: 2rem;
    }
}