:root {
  --blue-950: #05245a;
  --blue-900: #062d73;
  --blue-800: #08358a;
  --blue-700: #0b55d9;
  --blue-500: #2f7fff;
  --blue-200: #d9e9ff;
  --blue-100: #edf6ff;
  --ink: #10213d;
  --muted: #53627a;
  --line: #dde8f7;
  --white: #ffffff;
  --shadow: 0 26px 60px rgba(10, 45, 105, 0.10);
  --shadow-soft: 0 12px 35px rgba(7, 53, 138, 0.09);
  --container: 1500px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #f7fbff; }
body {
  margin: 0;
  min-height: 100%;
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 43%, rgba(47,127,255,.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 72%, #f2f8ff 100%);
}

a { color: inherit; text-decoration: none; }

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.site-header {
  min-height: 108px;
  padding: 0 clamp(28px, 5.5vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__icon { width: 55px; height: 55px; object-fit: contain; }
.brand__name {
  font-size: clamp(24px, 2.05vw, 35px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--blue-900);
}

.site-nav a {
  font-size: 20px;
  font-weight: 550;
  color: var(--blue-950);
  transition: color .18s ease, opacity .18s ease;
}
.site-nav a:hover { color: var(--blue-700); }

.hero {
  width: min(var(--container), calc(100% - clamp(44px, 10vw, 180px)));
  margin: 0 auto;
  padding: clamp(66px, 8vh, 115px) 0 64px;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(50px, 6vw, 104px);
  align-items: center;
  position: relative;
}

.hero__copy { position: relative; z-index: 2; max-width: 680px; }

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 21px 10px 17px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8f2ff 0%, #dceaff 100%);
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(47,127,255,.08);
}
.status-badge span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #66a4ff, #0b55d9);
  box-shadow: 0 0 0 7px rgba(47,127,255,.12);
}

h1 {
  margin: 38px 0 22px;
  color: var(--blue-900);
  font-size: clamp(46px, 4.9vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__lead {
  margin: 0 0 34px;
  color: #075bed;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.25;
  font-weight: 680;
  letter-spacing: -0.035em;
}
.hero__text {
  margin: 0;
  max-width: 590px;
  color: #293b5b;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.hero__actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 36px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  font-weight: 720;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button--primary {
  color: var(--white);
  background: linear-gradient(180deg, #093a91 0%, #06276a 100%);
}
.button--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(8, 52, 138, .21); }
.button svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-700);
  font-size: 22px;
  font-weight: 650;
}
.button-link span { font-size: 30px; line-height: 0; transform: translateY(-1px); }

.hero__visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 4% 0 0 8%;
  background-image:
    linear-gradient(rgba(10,85,217,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,85,217,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.42), transparent 70%);
  z-index: -3;
}

.hero-logo-card {
  width: min(530px, 72%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.86), rgba(239,247,255,.60) 62%, rgba(226,239,255,.36) 100%);
  box-shadow: inset 0 0 0 1px rgba(47,127,255,.04);
  position: relative;
}
.hero-logo-card img {
  width: 70%;
  max-width: 410px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(7,45,112,.08));
}

.visual-orbit { position: absolute; inset: 0; z-index: -1; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(47,127,255,.18); }
.orbit--one { width: 74%; aspect-ratio: 1; left: 12%; top: 4%; }
.orbit--two { width: 58%; aspect-ratio: 1; left: 20%; top: 14%; border-color: rgba(47,127,255,.10); }
.dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #4f91ff; box-shadow: 0 0 0 8px rgba(79,145,255,.06); }
.dot--one { left: 21%; top: 21%; }
.dot--two { left: 7%; bottom: 32%; }
.dot--three { right: 7%; top: 25%; }
.dot-grid {
  position: absolute;
  left: 5%;
  top: 45%;
  width: 112px;
  height: 88px;
  background-image: radial-gradient(#6aa8ff 1.8px, transparent 1.8px);
  background-size: 16px 16px;
  opacity: .72;
}

.mini-card {
  position: absolute;
  border: 1px solid rgba(11,85,217,.09);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.mini-card--line {
  width: 180px;
  height: 118px;
  left: 11%;
  top: 21%;
  padding: 24px 20px 16px;
}
.mini-card--line span {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #d9e8ff;
  margin-bottom: 8px;
}
.mini-card--line span + span { width: 22px; opacity: .7; }
.mini-card--line svg { width: 100%; height: 54px; overflow: visible; }
.mini-card--line path { fill: none; stroke: #4d8dff; stroke-width: 6; stroke-linecap: round; }
.mini-card--bars {
  right: 8%;
  bottom: 28%;
  width: 122px;
  height: 112px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 26px 22px 24px;
}
.mini-card--bars i {
  width: 14px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #79adff, #3d7ff0);
}
.mini-card--bars i:nth-child(1) { height: 42%; opacity: .7; }
.mini-card--bars i:nth-child(2) { height: 70%; }
.mini-card--bars i:nth-child(3) { height: 34%; opacity: .55; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 78px;
  padding: 22px clamp(24px, 5vw, 80px);
  background: #071326;
  color: #ffffff;
}

.footer-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-powered img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
}

.footer-powered p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.4;
}


@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }
  .hero__copy { max-width: 780px; }
  .hero__visual { min-height: 520px; }
  .hero-logo-card { width: min(500px, 70%); }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 86px;
    padding-inline: 20px;
  }
  .brand__icon { width: 42px; height: 42px; }
  .brand__name { font-size: 25px; }
  .site-nav a { font-size: 17px; }
  .hero {
    width: calc(100% - 40px);
    padding: 45px 0 52px;
    gap: 36px;
  }
  .status-badge { font-size: 13px; padding: 9px 16px 9px 13px; }
  h1 { margin-top: 28px; font-size: clamp(40px, 12.5vw, 58px); letter-spacing: -0.05em; }
  .hero__lead { font-size: 22px; }
  .hero__text { font-size: 17px; }
  .hero__actions { margin-top: 34px; gap: 18px; }
  .button { min-height: 62px; width: 100%; padding-inline: 22px; font-size: 18px; }
  .button-link { font-size: 19px; }
  .hero__visual { min-height: 390px; }
  .hero-logo-card { width: min(330px, 83%); }
  .mini-card--line { width: 135px; height: 90px; left: 0; top: 12%; }
  .mini-card--bars { width: 88px; height: 82px; right: 0; bottom: 18%; }
  .dot-grid { transform: scale(.75); transform-origin: left top; }
  .site-footer { min-height: 86px; padding-inline: 20px; }
  .footer-powered p { font-size: 13px; }
}
