
:root {
    --bg: #050816;
    --card: #090f24;
    --accent: #f7c65c;
    --accent-soft: rgba(247,198,92,0.12);
    --text-main: #f5f6ff;
    --text-soft: #a6b0d8;
    --border-soft: rgba(255,255,255,0.06);
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.7);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0b1530 0, #030511 55%, #02030a 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
.page {
    min-height: 100vh;
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shell {
    width: 100%;
    max-width: 1120px;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(247,198,92,0.35);
    object-fit: cover;
}
.brand-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-title {
    font-weight: 620;
    letter-spacing: 0.06em;
    font-size: 12px;
    text-transform: uppercase;
}
.brand-sub {
    font-size: 11px;
    color: var(--text-soft);
}
nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
nav a {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-soft);
    background: rgba(3,7,23,0.6);
    backdrop-filter: blur(14px);
    cursor: pointer;
}
nav a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.hero {
    background: radial-gradient(circle at top left, rgba(247,198,92,0.22), transparent 55%), 
                radial-gradient(circle at bottom right, rgba(98,139,255,0.18), transparent 60%),
                linear-gradient(135deg, #05091a, #050816 38%, #030511 100%);
    border-radius: var(--radius-lg);
    padding: 26px 20px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    margin-bottom: 26px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(5,10,32,0.9);
    border: 1px solid rgba(235,199,120,0.45);
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74,222,128,0.25);
}
.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 18px;
    align-items: center;
}
@media (max-width: 780px) {
    .hero-main {
        grid-template-columns: minmax(0, 1fr);
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        justify-content: flex-start;
    }
}
.hero h1 {
    font-size: clamp(26px, 4vw, 32px);
    line-height: 1.05;
    margin: 0 0 10px;
}
.hero h1 span.highlight {
    color: var(--accent);
}
.hero-desc {
    font-size: 14px;
    color: var(--text-soft);
    max-width: 440px;
    line-height: 1.6;
}
.hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-primary {
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7c65c, #f59e0b);
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #1a1205;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.btn-secondary {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(5,8,30,0.7);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
    color: var(--text-soft);
    cursor: pointer;
}
.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    font-size: 11px;
    color: var(--text-soft);
    margin-top: 18px;
}
.hero-meta-item {
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(2,6,23,0.9);
    border: 1px solid rgba(148,163,184,0.25);
}
.hero-meta-item div:first-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5f5;
    margin-bottom: 3px;
}
.hero-meta-item div:last-child {
    font-size: 12px;
    font-weight: 500;
}
.hero-panel {
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.24);
    background: radial-gradient(circle at top, rgba(15,23,42,0.85), rgba(15,23,42,0.96));
    padding: 16px 14px;
}
.hero-panel-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    margin-bottom: 6px;
}
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.pill {
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(15,23,42,0.9);
    color: #e5e7f9;
}
.pill.gold {
    border-color: rgba(247,198,92,0.85);
    background: radial-gradient(circle at top left, rgba(249,250,251,0.05), rgba(15,23,42,0.98));
    color: var(--accent);
}
section {
    margin-bottom: 26px;
}
.section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 17px;
    margin: 0;
}
.section-title p {
    margin: 0;
    font-size: 12px;
    color: var(--text-soft);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}
.card {
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(7,11,35,0.96), rgba(7,11,30,0.96));
    border: 1px solid rgba(148,163,184,0.3);
    padding: 14px 14px 13px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.72);
}
.card h3 {
    margin: 0 0 6px;
    font-size: 15px;
}
.card p {
    margin: 0 0 9px;
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
}
.card ul {
    margin: 0 0 8px 16px;
    padding: 0;
    color: var(--text-soft);
    font-size: 12px;
}
.card ul li {
    margin-bottom: 3px;
}
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px;
}
.tag {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.45);
    color: #e5e7f9;
}
.tag.soft {
    background: rgba(15,23,42,0.6);
    border-style: dashed;
}
.tag.accent {
    border-color: rgba(247,198,92,0.9);
    color: var(--accent);
    background: var(--accent-soft);
}
.columns-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 14px;
}
@media (max-width: 780px) {
    .columns-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}
.contact-card {
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(7,11,35,0.96), rgba(7,11,30,0.96));
    border: 1px solid rgba(148,163,184,0.3);
    padding: 14px;
    font-size: 12px;
    color: var(--text-soft);
}
.contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #cbd5f5;
}
footer {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,0.35);
    font-size: 11px;
    color: var(--text-soft);
    text-align: center;
}
