:root {
    --bg: #0b1220;
    --bg-strong: #020814;
    --panel: rgba(15, 23, 42, 0.9);
    --panel-border: rgba(148, 163, 184, 0.35);
    --text-main: #e5e7eb;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --accent-strong: #0ea271;
    --accent-soft: rgba(16, 185, 129, 0.12);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 10% 20%, rgba(56,189,248,0.12), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(16,185,129,0.18), transparent 40%),
        radial-gradient(circle at 50% 70%, rgba(59,130,246,0.12), transparent 45%),
        linear-gradient(160deg, #0b1220 0%, #020814 60%, #030712 100%);
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(2, 8, 20, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f8fafc;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, #10b981, #0ea5e9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #021018;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

nav {
    margin-left: auto;
    display: flex;
    gap: 14px;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 9px 12px;
    border-radius: 12px;
    transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

nav a:hover,
nav a.active {
    color: #f8fafc;
    background: rgba(148, 163, 184, 0.12);
    transform: translateY(-1px);
}

.content {
    max-width: 1100px;
    width: 100%;
    margin: 32px auto 48px;
    padding: 0 18px;
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(16, 185, 129, 0.14));
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
}

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

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
}

.hero .subtitle {
    margin: 8px 0 14px;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

.hero p {
    margin: 0;
    line-height: 1.7;
    color: #d9e3f0;
}

.hero .actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--panel-border);
    background: rgba(148, 163, 184, 0.08);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    color: #021018;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-ghost {
    color: #f8fafc;
    border-color: var(--panel-border);
    background: rgba(148, 163, 184, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.55);
    transform: translateY(-1px);
}

.panel-grid {
    margin-top: 26px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.panel h3 {
    margin: 0 0 8px;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #bfe5d5;
}

.panel p {
    margin: 0 0 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.panel .link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c7f5e7;
    text-decoration: none;
    font-weight: 600;
    margin-top: 6px;
}

.section {
    margin-top: 26px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.section h2 {
    margin: 0 0 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1rem;
    color: #bfe5d5;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.list li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 10px;
}

.list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-card {
    display: grid;
    gap: 10px;
    color: var(--text-muted);
}

.contact-card strong {
    color: #f8fafc;
}

footer {
    text-align: center;
    padding: 18px 10px 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--panel-border);
    color: #dbeafe;
    font-size: 0.9rem;
}

.cards {
    display: grid;
    gap: 14px;
}

.card {
    display: grid;
    gap: 8px;
}

.card-title {
    font-weight: 700;
    color: #f8fafc;
}

.card-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.avatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #021018;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

.stacked {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.stacked .text {
    flex: 1;
}

.tagline {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
