:root {
--bg: #071018;
--bg-soft: #0e1b26;
--panel: #102333;
--panel-light: #f4f7f9;
--text: #e9f1f6;
--muted: #b6c3cc;
--ink: #14202a;
--ink-muted: #5d6b76;
--line: rgba(255,255,255,0.12);
--brand: #48c7d8;
--brand-2: #88e6bd;
--white: #ffffff;
--radius: 22px;
--shadow: 0 24px 60px rgba(0,0,0,.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: var(--ink);
background: #ffffff;
line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
position: sticky;
top: 0;
z-index: 10;
background: rgba(7,16,24,.92);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-weight: 700; letter-spacing: .03em; }
.brand-mark { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #061016; font-weight: 900; }
.brand-text strong { color: var(--brand); }
.menu { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0; align-items: center; }
.menu a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px; }
.menu a:hover { color: var(--white); }
.nav-toggle { display: none; }
.hero {
color: var(--text);
background:
radial-gradient(circle at 20% 10%, rgba(72,199,216,.25), transparent 30%),
radial-gradient(circle at 80% 20%, rgba(136,230,189,.18), transparent 28%),
linear-gradient(135deg, #071018 0%, #0a1b29 48%, #112c3a 100%);
padding: 96px 0 84px;
overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--brand); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -.04em; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; }
h3 { font-size: 22px; letter-spacing: -.02em; }
.lead { font-size: 20px; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; text-decoration: none; font-weight: 800; border: 1px solid transparent; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #061016; }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.28); }
.hero-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.metric { display: grid; grid-template-columns: 52px 1fr; gap: 10px 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: 0; }
.metric span { grid-row: span 2; width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: rgba(72,199,216,.14); color: var(--brand); font-weight: 900; }
.metric strong { color: var(--white); font-size: 18px; }
.metric small { color: var(--muted); }
.section { padding: 82px 0; }
.logos-strip { padding: 24px 0; background: var(--bg-soft); color: var(--muted); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.section-head { max-width: 860px; margin-bottom: 34px; }
.section-head p:not(.eyebrow) { color: var(--ink-muted); font-size: 18px; }
.section-head.narrow { max-width: 650px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--panel-light); border: 1px solid #e1e8ee; border-radius: var(--radius); padding: 26px; min-height: 250px; }
.card p { color: var(--ink-muted); }
.alt { background: #f3f7fa; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.two-col p { color: var(--ink-muted); font-size: 18px; }
.list-panel { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 16px 36px rgba(15, 32, 43, .08); }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 650; }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #dff7ef; color: #0e6b51; font-size: 13px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline div { border-left: 1px solid #d9e4ea; padding: 6px 20px 0; }
.timeline span { display: inline-flex; width: 36px; height: 36px; border-radius: 12px; align-items: center; justify-content: center; background: var(--bg); color: var(--brand); font-weight: 900; margin-bottom: 16px; }
.timeline p { color: var(--ink-muted); }
.cta { background: var(--bg); color: var(--text); }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; border: 1px solid var(--line); border-radius: 30px; padding: 42px; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.cta p { color: var(--muted); }
.site-footer { background: #061016; color: var(--muted); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
.footer-brand { color: var(--white); font-weight: 900; letter-spacing: .08em; }
.site-footer h3 { color: var(--white); font-size: 16px; }
.site-footer ul { margin: 12px 0 0; padding-left: 18px; }
.site-footer a { color: var(--brand); }
.small { font-size: 13px; color: #8ea0ab; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: #81919b; }
.page-hero { background: var(--bg); color: var(--text); padding: 76px 0 56px; }
.content-wrap { max-width: 860px; font-size: 18px; }
.content-wrap h2 { font-size: 34px; margin-top: 34px; }
.content-wrap p, .content-wrap li { color: var(--ink-muted); }
.post-list { display: grid; gap: 18px; }
.post-card { border: 1px solid #e1e8ee; border-radius: var(--radius); padding: 26px; }
.post-card a { text-decoration: none; color: var(--ink); }
@media (max-width: 920px) {
.hero-grid, .two-col, .cta-box, .footer-grid { grid-template-columns: 1fr; }
.cards, .timeline { grid-template-columns: repeat(2, 1fr); }
.strip-grid { grid-template-columns: repeat(2, 1fr); }
.footer-bottom { flex-direction: column; }
}
@media (max-width: 680px) {
.container { width: min(100% - 28px, 1160px); }
.nav-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.24); background: transparent; color: var(--white); border-radius: 999px; padding: 9px 14px; }
.primary-nav { display: none; position: absolute; left: 14px; right: 14px; top: 68px; background: #08131c; border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.primary-nav.is-open { display: block; }
.menu { flex-direction: column; align-items: flex-start; gap: 14px; }
.hero { padding: 68px 0; }
.section { padding: 58px 0; }
.cards, .timeline, .strip-grid { grid-template-columns: 1fr; }
.cta-box { padding: 28px; }
}