:root {
  --navy: #0b2440;
  --blue: #075aa8;
  --blue-2: #0b73ce;
  --cyan: #00a9d6;
  --magenta: #e50070;
  --yellow: #ffb600;
  --ink: #142338;
  --muted: #5f6f80;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --line: #dfe7ef;
  --shadow: 0 30px 90px rgba(11, 36, 64, .13);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI Variable", "Segoe UI", Aptos, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.page::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 760px;
  content: "";
  background:
    radial-gradient(circle at 79% 17%, rgba(0, 169, 214, .14), transparent 26rem),
    radial-gradient(circle at 16% 18%, rgba(229, 0, 112, .08), transparent 21rem),
    linear-gradient(180deg, #f8fbfe 0%, #fff 100%);
}

.page::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(42vw, 640px);
  height: 760px;
  content: "";
  opacity: .55;
  background-image:
    linear-gradient(rgba(7, 90, 168, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 90, 168, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to left, #000, transparent 95%);
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 106px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img { display: block; width: 300px; height: auto; max-width: 100%; image-rendering: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.official {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.official::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #21a366;
  box-shadow: 0 0 0 5px rgba(33, 163, 102, .1);
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 750;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.top-link:hover {
  border-color: rgba(7, 90, 168, .35);
  box-shadow: 0 12px 30px rgba(11, 36, 64, .08);
  transform: translateY(-2px);
}

.top-link svg { width: 17px; height: 17px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  min-height: 650px;
  padding: 66px 0 102px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 5.1vw, 4.8rem);
  font-weight: 760;
  line-height: .99;
  letter-spacing: 0;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

h1 span::after {
  position: absolute;
  right: 0;
  bottom: -.08em;
  left: .02em;
  height: .1em;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transform: scaleX(.94);
  transform-origin: left;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 24px;
  font-weight: 800;
  border-radius: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(7, 90, 168, .22);
}

.button-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 20px 42px rgba(7, 90, 168, .28);
  transform: translateY(-3px);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.button-secondary:hover {
  box-shadow: 0 14px 34px rgba(11, 36, 64, .09);
  transform: translateY(-3px);
}

.button svg { width: 19px; height: 19px; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: #708092;
  font-size: .88rem;
  font-weight: 650;
}

.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 17px; height: 17px; color: var(--blue); }

.visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 530px;
}

.orbit {
  position: relative;
  width: min(100%, 515px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 30%, transparent 30.5%),
    conic-gradient(from 208deg,
      var(--cyan) 0 17%,
      transparent 17% 22%,
      var(--blue) 22% 50%,
      transparent 50% 56%,
      var(--magenta) 56% 76%,
      transparent 76% 82%,
      var(--yellow) 82% 100%);
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
  animation: enter-orbit .8s cubic-bezier(.2,.75,.25,1) both;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before {
  inset: 11%;
  border: 18px solid rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(11,36,64,.05);
}

.orbit::after {
  inset: -22px;
  border: 1px solid rgba(7,90,168,.12);
  box-shadow:
    0 0 0 24px rgba(7,90,168,.035),
    0 0 0 49px rgba(7,90,168,.022);
}

.visual-card {
  position: absolute;
  z-index: 3;
  width: min(72%, 355px);
  padding: 31px;
  border: 1px solid rgba(223,231,239,.92);
  border-radius: 25px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 70px rgba(11,36,64,.2);
  backdrop-filter: blur(18px);
  transform: translateY(4px);
}

.visual-card .mini-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 13px;
  background:
    conic-gradient(from 210deg, var(--cyan), var(--blue) 35%, var(--magenta) 66%, var(--yellow));
  box-shadow: inset 0 0 0 9px #fff;
}

.visual-card small {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.visual-card p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

.pill {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 36px rgba(11,36,64,.12);
}

.pill::before { width: 8px; height: 8px; content: ""; border-radius: 50%; }
.pill-one { top: 60px; right: 8px; }
.pill-one::before { background: var(--cyan); }
.pill-two { right: 28px; bottom: 75px; }
.pill-two::before { background: var(--magenta); }
.pill-three { bottom: 38px; left: 0; }
.pill-three::before { background: var(--yellow); }

.social-section {
  position: relative;
  padding: 78px 0 84px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.social-section::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,169,214,.26), transparent 68%);
}

.social-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.social-head p {
  margin: 0 0 10px;
  color: #6bcff0;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.social-head h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: .005em;
}

.social-head .intro {
  max-width: 400px;
  margin: 0;
  color: #b5c4d3;
  font-size: 1rem;
  line-height: 1.65;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin-inline: auto;
}

.social-link--blog { --accent: #ffb600; }
.social-link--youtube { --accent: #ff0033; }
.social-link--instagram { --accent: #e50070; }
.social-link--facebook { --accent: #2b8bd7; }
.social-link--x { --accent: #00a9d6; }

.social-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 178px;
  padding: 20px 15px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  overflow: hidden;
}

.social-link::before {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.social-link:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.075);
  transform: translateY(-4px);
}

.social-link:hover::before { transform: scaleX(1); }

.social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 23px;
  background: color-mix(in srgb, var(--accent) 20%, rgba(255,255,255,.055));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 12px 28px rgba(0,0,0,.14);
  transition: transform .2s ease, background .2s ease;
}

.social-link:hover .social-icon {
  background: color-mix(in srgb, var(--accent) 30%, rgba(255,255,255,.07));
  transform: scale(1.05);
}

.social-icon svg {
  width: 50px;
  height: 50px;
  margin: auto;
}

.social-link strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.social-description {
  display: block;
  max-width: 170px;
  color: #aebdca;
  font-size: .82rem;
  line-height: 1.4;
}

.social-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.62);
  transition: transform .2s ease, color .2s ease;
}

.social-link:hover .social-arrow {
  color: #fff;
  transform: translate(3px,-3px);
}

.footer {
  padding: 24px 0;
  color: #8195a8;
  background: #071a2e;
  font-size: .85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer a { color: #d4dee7; }

a:focus-visible {
  outline: 3px solid rgba(255,182,0,.8);
  outline-offset: 4px;
}

@keyframes enter-orbit {
  from { opacity: 0; transform: translateY(30px) rotate(-12deg) scale(.95); }
  to { opacity: 1; transform: translateY(0) rotate(-7deg) scale(1); }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-copy { max-width: 850px; }
  .visual { min-height: 580px; }
  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header { min-height: 86px; }
  .brand img { width: 220px; }
  .official { display: none; }
  .top-link { min-height: 42px; padding: 0 14px; font-size: .88rem; }
  .hero { gap: 28px; min-height: auto; padding: 52px 0 76px; }
  h1 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .lead { font-size: 1.06rem; }
  .actions { display: grid; }
  .button { width: 100%; }
  .trust { gap: 13px 20px; }
  .visual { min-height: 430px; }
  .orbit { width: min(88vw, 420px); }
  .visual-card { width: min(72%, 310px); padding: 24px; }
  .pill-one { top: 34px; right: 0; }
  .pill-two { right: 0; bottom: 45px; }
  .pill-three { left: 0; bottom: 18px; }
  .social-section { padding: 66px 0 70px; }
  .social-head { display: block; }
  .social-head .intro { margin-top: 18px; }
  .social-grid { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .social-link { min-height: 174px; }
  .social-link:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
  .footer-inner { display: block; }
  .footer-inner span + span { display: block; margin-top: 7px; }
}

@media (max-width: 460px) {
  .brand img { width: 180px; }
  .top-link span { display: none; }
  .top-link { width: 43px; padding: 0; border-radius: 50%; }
  .eyebrow { font-size: .72rem; letter-spacing: .11em; }
  .trust { display: grid; }
  .visual { min-height: 390px; }
  .visual-card { width: 76%; padding: 21px; }
  .visual-card p { font-size: .9rem; }
  .pill { min-height: 36px; padding: 0 12px; font-size: .72rem; }
  .pill-one { top: 14px; }
  .pill-two { bottom: 35px; }
  .pill-three { bottom: 0; }
  .social-grid { grid-template-columns: 1fr; max-width: 330px; }
  .social-link { min-height: 158px; padding-top: 18px; }
  .social-link:last-child { grid-column: auto; width: 100%; }
  .social-icon { width: 82px; height: 82px; margin-bottom: 13px; }
  .social-icon svg { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
