:root {
  --bg: #070b1d;
  --bg-soft: #0f1739;
  --panel: rgba(19, 28, 67, 0.88);
  --panel-light: rgba(255,255,255,0.08);
  --text: #f4f7ff;
  --muted: #b9c2ea;
  --line: rgba(159, 175, 255, 0.18);
  --primary: #5bc0ff;
  --secondary: #7a5cff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top left, #17245e 0%, #0a1030 28%, #050813 60%, #04070f 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 29, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; letter-spacing: 0.02em; }
.brand img { width: 46px; height: 46px; border-radius: 14px; box-shadow: var(--shadow); }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 500; }
nav a:hover { color: var(--text); }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; padding: 64px 0 30px; align-items: center; }
.eyebrow { display: inline-flex; margin-bottom: 14px; color: #95d6ff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; }
h1, h2, h3 { margin: 0 0 14px; line-height: 1.05; }
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; color: var(--muted); line-height: 1.65; }
.hero-copy p { max-width: 62ch; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: var(--shadow); }
.button.secondary { border: 1px solid rgba(161, 179, 255, 0.22); background: rgba(255,255,255,0.04); }
.feature-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--text); }
.feature-points li::before {
  content: ""; width: 10px; height: 10px; display: inline-block; border-radius: 50%; margin-right: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary)); vertical-align: middle;
}
.card {
  background: linear-gradient(180deg, rgba(22,31,76,0.95), rgba(13,19,48,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-visual { padding: 18px; }
.feature-graphic { border-radius: 22px; width: 100%; }
.section { padding: 42px 0; }
.section-heading { margin-bottom: 22px; }
.app-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; margin-bottom: 26px; }
.info-card, .company-card, .contact-panel, .privacy-card { padding: 28px; }
.app-badge { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.app-badge img { width: 82px; height: 82px; border-radius: 24px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag-row span {
  padding: 10px 14px; border-radius: 999px; font-size: .94rem; color: white;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: var(--text); }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #8fe2ff; font-weight: 700;
}
.screen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.screen { overflow: hidden; }
.screen.tall img { aspect-ratio: 9 / 19.5; object-fit: cover; width: 100%; }
.screen figcaption { padding: 14px 16px 18px; color: var(--muted); font-weight: 600; }
.company-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.detail-row { display: grid; gap: 8px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.detail-row:last-child { border-bottom: 0; }
.detail-row span { color: #95a0d1; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.detail-row strong, .detail-row a { color: white; line-height: 1.6; }
.contact-panel { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 28px 0 40px; }
.footer-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding-top: 18px; color: var(--muted); flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; }
.privacy-page { padding-top: 52px; }
.privacy-card h2 { margin-top: 26px; font-size: 1.25rem; }
.privacy-contact { color: var(--muted); line-height: 1.8; }
.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.45; z-index: -1;
}
.orb-1 { width: 300px; height: 300px; background: rgba(91,192,255,.22); top: 60px; left: -90px; }
.orb-2 { width: 360px; height: 360px; background: rgba(122,92,255,.16); right: -120px; top: 220px; }
@media (max-width: 980px) {
  .hero, .app-grid, .company-layout, .contact-panel { grid-template-columns: 1fr; display: grid; }
  .screen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .nav-wrap { align-items: flex-start; }
  nav { gap: 14px; }
  h1 { font-size: 2.3rem; }
  .screen-grid { grid-template-columns: 1fr; }
  .app-badge { align-items: flex-start; }
  .contact-panel { display: block; }
  .contact-actions { margin-top: 18px; }
}
