:root {
  --ink: #0B1020;
  --ink-2: #141C2E;
  --muted: #5B6678;
  --muted-2: #788397;
  --line: rgba(11,16,32,.10);
  --line-soft: rgba(11,16,32,.065);
  --paper: #FFFFFF;
  --wash: #F6F8FB;
  --panel: #0B1020;
  --panel-2: #101827;
  --blue: #2F80EC;
  --cyan: #33BAFE;
  --green: #28B35F;
  --yellow: #FED400;
  --red: #EA5757;
  --radius: 28px;
  --shadow-sm: 0 10px 30px rgba(11,16,32,.06);
  --shadow-md: 0 24px 80px rgba(11,16,32,.10);
  --shadow-dark: 0 34px 90px rgba(11,16,32,.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(51,186,254,.055), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(254,212,0,.06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #F8FAFD 50%, #fff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(47,128,236,.36);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 168px;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(11,16,32,.72);
  font-size: 14px;
  font-weight: 760;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.main-wrap { overflow: clip; }

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(50px, 6.35vw, 84px);
  line-height: .98;
  letter-spacing: -0.062em;
  font-weight: 880;
}
.hero-copy {
  margin: 28px 0 0;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(11,16,32,.20);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.brand-panel {
  position: relative;
  min-height: 430px;
  border-radius: 36px;
  background: linear-gradient(145deg, #0D1424 0%, #151F32 52%, #0B1020 100%);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(47,128,236,.24), transparent 28%),
    radial-gradient(circle at 72% 22%, rgba(254,212,0,.18), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(234,87,87,.14), transparent 26%);
}
.brand-panel::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
}
.brand-panel-inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: 34px;
}
.panel-logo {
  display: flex;
  justify-content: center;
  padding-top: 58px;
}
.panel-logo img {
  width: min(246px, 72%);
  height: auto;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,.24));
}
.panel-details {
  display: grid;
  gap: 12px;
}
.panel-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.panel-line strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.section-header { max-width: 760px; }
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.054em;
  font-weight: 860;
}
.section-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.cap-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.cap-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--blue);
}
.cap-card.green::before { background: var(--green); }
.cap-card.blue::before { background: var(--blue); }
.cap-card.red::before { background: var(--red); }
.cap-number {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--ink);
}
.cap-card.green .cap-number { background: linear-gradient(135deg, var(--green), #34C75F); }
.cap-card.blue .cap-number { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.cap-card.red .cap-number { background: linear-gradient(135deg, var(--red), #DA3E21); }
.cap-card h3 {
  margin: 28px 0 0;
  font-size: 23px;
  letter-spacing: -.03em;
}
.cap-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.products-panel {
  margin-top: 38px;
  border-radius: 34px;
  background: var(--panel);
  color: #fff;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.products-inner {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  min-height: 430px;
}
.products-copy {
  padding: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.00));
}
.products-copy h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.products-copy p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 17px;
}
.status-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.status-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 18px;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.105);
  font-weight: 800;
  font-size: 14px;
}
.status-pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34C75F;
  flex: 0 0 auto;
}
.products-art {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 35% 30%, rgba(47,128,236,.30), transparent 26%),
    radial-gradient(circle at 74% 27%, rgba(254,212,0,.20), transparent 28%),
    radial-gradient(circle at 64% 80%, rgba(234,87,87,.20), transparent 30%),
    #131C2C;
}
.products-art::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
}
.private-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, calc(100% - 80px));
  transform: translate(-50%, -50%);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 28px 66px rgba(0,0,0,.28);
}
.private-card img {
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 20px;
}
.private-card strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.02em;
}
.private-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.contact-panel {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 20px;
  align-items: start;
}
.form-card,
.contact-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
.form-grid { display: grid; gap: 15px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 15px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 820;
  font-size: 14px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(11,16,32,.13);
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 15px;
  box-shadow: 0 6px 18px rgba(11,16,32,.035);
}
textarea { min-height: 150px; resize: vertical; }
.hidden-field { display: none !important; }
.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.form-status a { color: var(--blue); font-weight: 900; }
.contact-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.02em;
}
.contact-card p {
  color: var(--muted);
  line-height: 1.58;
}
.email-list { display: grid; gap: 12px; margin-top: 20px; }
.email-card {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.email-card strong { display: block; font-size: 13px; margin-bottom: 7px; color: var(--muted); }
.email-card a { color: var(--blue); font-weight: 900; word-break: break-word; }

.site-footer {
  margin-top: 54px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--ink); font-weight: 800; }

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 52px);
}
.legal-card h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-top: 16px;
}
.legal-card h2 {
  margin-top: 34px;
  font-size: 24px;
  letter-spacing: -.02em;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}
.legal-card a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 42px;
  }
  .brand-panel { max-width: 520px; min-height: 380px; }
  .brand-panel-inner { min-height: 380px; }
  .capability-grid,
  .products-inner,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .section,
  .footer-inner,
  .legal-page {
    width: min(100% - 28px, 1120px);
  }
  .nav { min-height: 74px; }
  .brand img { width: 144px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { min-height: 46px; padding: 0 18px; }
  .hero { padding-top: 48px; padding-bottom: 46px; }
  .eyebrow { font-size: 11px; margin-bottom: 18px; }
  h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }
  .hero-copy { font-size: 17px; line-height: 1.6; }
  .hero-actions { gap: 12px; }
  .btn { min-height: 50px; padding: 0 18px; font-size: 14px; }
  .brand-panel { min-height: 330px; border-radius: 30px; }
  .brand-panel-inner { min-height: 330px; padding: 24px; }
  .brand-panel::after { inset: 16px; border-radius: 22px; }
  .panel-logo { padding-top: 40px; }
  .panel-logo img { width: min(190px, 62%); }
  .panel-line { font-size: 12px; }
  .section { padding: 58px 0; }
  h2 { font-size: clamp(32px, 9.6vw, 46px); }
  .section-lead { font-size: 17px; }
  .cap-card,
  .products-copy,
  .products-art,
  .form-card,
  .contact-card {
    padding: 24px;
  }
  .products-panel { border-radius: 28px; }
  .products-inner { min-height: 0; }
  .products-art { min-height: 300px; }
  .products-art::before { inset: 24px; border-radius: 24px; }
  .private-card { width: calc(100% - 54px); padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 90px;
  }
}
