:root {
  --bg: #050812;
  --panel: rgba(12, 18, 33, .78);
  --panel-strong: #0b1220;
  --ink: #f8fbff;
  --muted: #aab7ca;
  --line: rgba(255,255,255,.13);
  --blue: #4f8cff;
  --cyan: #22d3ee;
  --violet: #9b7cff;
  --silver: #dce7f5;
  --gold: #f6c56f;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(79,140,255,.22), transparent 28%),
    radial-gradient(circle at 78% 2%, rgba(155,124,255,.18), transparent 24%),
    linear-gradient(180deg, #050812 0%, #090e1b 48%, #050812 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(5, 8, 18, .72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #d8e7ff);
  color: #07111f;
  font-weight: 900;
}
.brand strong, .brand small, .footer strong, .footer span { display: block; }
.brand small { color: var(--muted); margin-top: 2px; }

.nav { justify-self: center; display: flex; gap: 6px; }
.nav a, .dashboard-link {
  text-decoration: none;
  color: #d8e3f5;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 14px;
}
.nav a:hover, .dashboard-link:hover { border-color: var(--line); background: rgba(255,255,255,.06); }
.dashboard-link { border-color: rgba(79,140,255,.38); background: rgba(79,140,255,.12); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 64px) 38px;
}
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(34,211,238,.32);
  background: rgba(34,211,238,.08);
  color: #9af4ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
  margin-bottom: 22px;
  max-width: 880px;
}
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.04; margin-bottom: 0; }
h3 { font-size: 20px; margin-bottom: 10px; }
.hero p, .split p, .contact p {
  color: #d0dbec;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button, .contact-form button {
  min-height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 850;
}
.button.primary, .contact-form button {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101d;
  border: 0;
}
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.06); }

.hero-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 36px 90px rgba(0,0,0,.46);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 520px; }
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,18,.1), transparent 48%, rgba(5,8,18,.28));
  pointer-events: none;
}

.trust-strip {
  margin: 0 clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.trust-strip span { padding: 18px; color: var(--silver); border-right: 1px solid var(--line); font-weight: 760; }
.trust-strip span:last-child { border-right: 0; }

.section { padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 64px); }
.split { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr); gap: clamp(26px, 6vw, 86px); align-items: start; }
.section-head { max-width: 920px; margin-bottom: 28px; }
.section-kicker { margin-bottom: 16px; }

.division-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.division-card, .value-grid div, .vision-panel, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
}
.division-card {
  min-height: 240px;
  padding: 22px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.division-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,211,238,.46);
  background: linear-gradient(180deg, rgba(79,140,255,.15), rgba(255,255,255,.04));
}
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(34,211,238,.12);
  color: var(--cyan);
  font-weight: 900;
}
.division-card p, .value-grid span { color: var(--muted); line-height: 1.55; }

.why { background: rgba(255,255,255,.025); border-block: 1px solid var(--line); }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid div { padding: 22px; }
.value-grid strong { display: block; margin-bottom: 8px; font-size: 18px; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.05);
}
.steps span { color: var(--gold); font-weight: 900; display: block; margin-bottom: 18px; }
.vision-panel { padding: clamp(26px, 4vw, 46px); }
.vision-panel p { font-size: clamp(24px, 4vw, 46px); line-height: 1.1; margin: 0; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.contact-form { padding: 22px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: #d6e0f0; font-size: 13px; font-weight: 760; }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(5,8,18,.68);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}
.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form button { cursor: pointer; width: 100%; font: inherit; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer nav { display: flex; gap: 14px; flex-wrap: wrap; }
.footer a { text-decoration: none; color: #d8e3f5; }

@media (max-width: 1080px) {
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .division-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { grid-column: 1 / -1; justify-self: start; overflow-x: auto; width: 100%; }
  .dashboard-link { justify-self: end; }
  .hero-visual { min-height: 280px; }
  .hero-visual img { min-height: 320px; }
  .division-grid, .value-grid, .steps, .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer { grid-template-columns: 1fr; }
}
