:root {
  --bg: #070b18;
  --bg-soft: #0c1224;
  --surface: rgba(18, 26, 50, 0.82);
  --surface-strong: #111a32;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f6f8ff;
  --muted: #a9b3cc;
  --primary: #5d7cff;
  --primary-2: #8c5cff;
  --accent: #25d2ff;
  --success: #38d996;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 24, 0.78);
  backdrop-filter: blur(18px);
}
.header-content { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center;
  font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(93, 124, 255, 0.3);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 1.08rem; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.68rem; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--muted); font-size: 0.92rem; font-weight: 600; transition: .2s ease; }
.main-nav a:hover { color: var(--text); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--text); }

.hero { position: relative; overflow: hidden; padding: 108px 0 86px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .28; pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; background: var(--primary); top: -120px; left: -100px; }
.hero-glow-two { width: 360px; height: 360px; background: var(--primary-2); right: -120px; bottom: -100px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--accent); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.45rem); line-height: .98; letter-spacing: -.065em; }
h1 span { display: block; background: linear-gradient(90deg, #7da0ff, #b06cff, #54dfff); -webkit-background-clip: text; color: transparent; }
.hero-copy > p { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 52px; padding: 0 22px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; transition: transform .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 14px 34px rgba(93, 124, 255, .25); }
.button-secondary { border: 1px solid var(--border); background: rgba(255,255,255,.035); }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.35rem; }
.hero-stats span { color: var(--muted); font-size: .77rem; }

.hero-panel { padding: 22px; border: 1px solid var(--border); border-radius: 30px; background: linear-gradient(145deg, rgba(23,34,66,.9), rgba(10,15,30,.9)); box-shadow: var(--shadow); transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.panel-header { display: flex; align-items: center; gap: 9px; padding: 0 4px 18px; color: var(--muted); font-size: .82rem; border-bottom: 1px solid var(--border); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px var(--success); }
.panel-feature { display: flex; align-items: center; gap: 16px; padding: 24px 0; }
.feature-icon, .solution-icon { display: grid; place-items: center; flex: 0 0 auto; background: linear-gradient(135deg, rgba(93,124,255,.24), rgba(140,92,255,.28)); border: 1px solid rgba(143,159,255,.25); color: #cfd7ff; font-weight: 800; }
.feature-icon { width: 58px; height: 58px; border-radius: 18px; }
.panel-feature div { display: flex; flex-direction: column; }
.panel-feature small { color: var(--muted); }
.panel-feature strong { font-size: 1.04rem; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-grid article { min-height: 128px; padding: 18px; border-radius: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.035); display: flex; flex-direction: column; }
.mini-grid span { color: var(--accent); font-size: .72rem; font-weight: 800; }
.mini-grid strong { margin-top: auto; }
.mini-grid small { color: var(--muted); }

.section { padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 18px; }
.section-heading p, .about-copy p, .contact-card p { color: var(--muted); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { min-height: 260px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(104,130,255,.38); background: var(--surface-strong); }
.solution-card.featured { grid-column: span 2; background: radial-gradient(circle at top right, rgba(93,124,255,.18), transparent 38%), var(--surface); }
.solution-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.solution-icon { width: 46px; height: 46px; border-radius: 14px; }
.badge, .soon { font-size: .7rem; font-weight: 700; color: #b9c7ff; }
.badge { padding: 7px 10px; border: 1px solid rgba(93,124,255,.3); border-radius: 999px; background: rgba(93,124,255,.1); }
.solution-card h3 { margin: 26px 0 9px; font-size: 1.28rem; }
.solution-card p { color: var(--muted); font-size: .9rem; }
.solution-card a, .soon { margin-top: auto; }
.solution-card a { color: #b8c7ff; font-weight: 700; font-size: .86rem; }

.about { border-block: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-copy p { font-size: 1.03rem; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.values span { padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; color: #dbe2f7; background: rgba(255,255,255,.025); font-size: .85rem; }

.contact-card { padding: 48px; border: 1px solid var(--border); border-radius: 30px; background: radial-gradient(circle at right, rgba(140,92,255,.22), transparent 32%), var(--surface); display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: var(--shadow); }
.contact-card h2 { max-width: 700px; font-size: clamp(2rem, 4vw, 3.2rem); }
.site-footer { padding: 28px 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand.compact .brand-mark { width: 39px; height: 39px; border-radius: 12px; }
.footer-content p { margin: 0; color: var(--muted); font-size: .78rem; }

@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { transform: none; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card.featured { grid-column: span 2; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-content { min-height: 72px; }
  .brand-copy small { display: none; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: #0d1427; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 6px; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 11px 8px; }
  .hero { padding: 78px 0 64px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .hero-stats { gap: 20px; overflow-x: auto; padding-bottom: 4px; }
  .hero-stats div { min-width: 120px; }
  .mini-grid, .solutions-grid, .values { grid-template-columns: 1fr; }
  .solution-card.featured { grid-column: auto; }
  .section { padding: 72px 0; }
  .contact-card { padding: 30px 24px; }
  .footer-content { align-items: flex-start; flex-direction: column; }
}
