@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-page: #F7F8FC;
  --bg-card: #FFFFFF;
  --text-main: #1A1C2E;
  --text-muted: #5A607F;
  --primary: #3D357A;
  --accent-green: #00E599;
  --accent-blue: #00A3FF;
  --border: #E2E5F1;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(61, 53, 122, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg-page); color: var(--text-main); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700; line-height: 1.15; color: var(--text-main); }
p, li, span, a, td, th, div, section, article, main, header, footer { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
img, svg, video { max-width: 100%; height: auto; display: block; }

.container { width: min(92%, 1240px); margin-inline: auto; }

.site-header { background: var(--bg-card); border-top: 3px solid var(--primary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; padding-block: 0.8rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--primary); display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; background: var(--primary); border-radius: 8px; display: grid; place-items: center; }
.logo-mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; flex: 1 1 auto; justify-content: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1.35rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #FFFFFF; }
.btn-primary:hover { background: #4A3E82; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-secondary:hover { background: #F0F1F8; }
.btn-accent { background: var(--accent-green); color: #0A2218; }
.btn-accent:hover { background: #00C988; transform: translateY(-2px); }

.hero { padding-block: clamp(4.5rem, 9vw, 8rem) 2rem; background: radial-gradient(circle at 85% 15%, rgba(0, 163, 255, 0.07) 0%, transparent 55%), linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 840px; }
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent-blue); background: rgba(0, 163, 255, 0.1); padding: 0.35rem 0.8rem; border-radius: 99px; margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 1.25rem; letter-spacing: -0.025em; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--text-muted); margin-bottom: 2.25rem; max-width: 620px; line-height: 1.55; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.image { background: #F0F1F8; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; aspect-ratio: 16/9; display: grid; place-items: center; color: #8A90A5; font-size: 0.9rem; }

.section-wrapper { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-heading { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin-bottom: 1rem; }
.lead-paragraph { font-size: 1.125rem; color: var(--text-muted); max-width: 680px; margin-bottom: 2.75rem; line-height: 1.6; }
.body-text { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; display: flex; flex-direction: column; gap: 0.85rem; min-width: 0; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(61, 53, 122, 0.1); border-color: var(--accent-green); }
.card-title { font-size: 1.3rem; margin-bottom: 0.15rem; }
.card-body { color: var(--text-muted); font-size: 0.96rem; flex-grow: 1; }

.site-footer { background: #11121A; color: #A0A5B8; padding-block: 3.5rem; border-top: 1px solid #2A2D3A; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.35rem; color: #FFFFFF; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.88rem; color: #6B7084; }
.footer-links { list-style: none; display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { color: #A0A5B8; font-size: 0.92rem; font-weight: 500; }
.footer-links a:hover { color: var(--accent-green); }
.copyright { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid #2A2D3A; font-size: 0.82rem; text-align: center; color: #5A607F; }

@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .nav-links { order: 3; width: 100%; justify-content: center; padding-top: 0.75rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
  .hero-inner { text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
