:root {
  --bg: #07111f;
  --panel: #0e1a2c;
  --panel-2: #111f34;
  --text: #eef6ff;
  --muted: #a9bdd5;
  --line: rgba(255,255,255,0.14);
  --brand: #29d6ff;
  --brand-2: #35f0a0;
  --gold: #f3d26b;
  --danger: #ffcf66;
  --shadow: 0 18px 55px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(41,214,255,0.12), transparent 35%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7,17,31,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #06101c;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 26px rgba(41,214,255,0.28);
}
.brand-logo { width: 168px; height: auto; display: block; }
.brand small { display:block; color:var(--muted); font-size: 12px; margin-top: -2px; }
.top-nav { display:flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.top-nav a {
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s ease;
}
.top-nav a:hover, .top-nav .active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.hero {
  min-height: 560px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 90px clamp(20px, 6vw, 72px);
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(7,17,31,0.95) 0%, rgba(7,17,31,0.82) 42%, rgba(7,17,31,0.34) 100%), url('../media/hero-slide-director.webp');
  background-size: cover;
  background-position: center right;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 790px; }
.eyebrow, .section-kicker {
  color: var(--brand-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin: 0 0 10px;
}
h1 { font-size: clamp(42px, 8vw, 86px); line-height: 0.96; margin: 0 0 22px; letter-spacing: -0.05em; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; margin: 0 0 14px; letter-spacing: -0.03em; }
h3 { margin: 0 0 10px; line-height: 1.15; }
.lead { font-size: clamp(18px, 2vw, 23px); color: #dcecff; max-width: 720px; margin: 0 0 28px; }
.hero-actions { display:flex; flex-wrap: wrap; gap: 14px; }
.btn, .download-btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--line);
}
.btn-primary, .download-btn {
  color: #06101c;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 0;
  box-shadow: 0 12px 34px rgba(41,214,255,0.18);
}
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--text); }

.trust-strip {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.trust-strip div { background: rgba(14,26,44,0.9); padding: 18px clamp(20px, 4vw, 56px); color: #d8eaff; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.intro {
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 76px 0 40px;
}
.intro p, .muted { color: var(--muted); }
.service-card, .software-card, .package-card, .disclaimer {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.service-card { padding: 28px; }
.service-card a { color: var(--brand-2); font-weight: 800; text-decoration: none; }

.downloads-section { padding: 44px 0 50px; }
.software-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.software-card {
  min-height: 265px;
  padding: 24px;
  display:flex;
  flex-direction: column;
  align-items: flex-start;
}
.software-card.featured {
  background: linear-gradient(135deg, rgba(41,214,255,0.18), rgba(53,240,160,0.10));
  border-color: rgba(53,240,160,0.36);
}
.software-card p { color: var(--muted); margin-bottom: auto; }
.tag {
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #07111f;
  background: var(--gold);
  margin-bottom: 14px;
}
.download-btn { margin-top: 20px; width: 100%; }

.packages { padding: 36px 0 70px; }
.package-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.package-card { padding: 26px; }
.package-card p, .package-card li { color: var(--muted); }
ul { padding-left: 20px; margin-bottom: 0; }

.disclaimer {
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 76px;
  border-color: rgba(255,207,102,0.36);
  background: linear-gradient(135deg, rgba(255,207,102,0.10), rgba(255,255,255,0.035));
}
.disclaimer h2 { color: var(--danger); }
.disclaimer p { color: #d5e2f2; }
.site-footer {
  display:flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  background: #050b14;
  border-top: 1px solid var(--line);
}
.site-footer p { color: var(--muted); margin: 6px 0 0; }
.footer-actions { display:flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-actions a { color: var(--brand-2); text-decoration: none; font-weight: 700; }

@media (max-width: 900px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .top-nav { justify-content: flex-start; }
  .hero { min-height: 640px; background-position: center; }
  .intro, .trust-strip, .software-grid, .package-grid { grid-template-columns: 1fr; }
  .footer-actions { align-items: flex-start; }
}
@media (max-width: 560px) {
  .brand small { display:none; }
  .hero { padding-top: 72px; }
  .software-card { min-height: auto; }
}
