@font-face {
  font-family: "Borna";
  src: url("/assets/fonts/Borna-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Borna";
  src: url("/assets/fonts/Borna-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Borna";
  src: url("/assets/fonts/Borna-Semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  color-scheme: dark;
  --bg: #050806;
  --bg-elevated: #0b100c;
  --card: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --muted: rgba(255, 255, 255, 0.6);
  --muted-soft: rgba(255, 255, 255, 0.42);
  --green: #52c05d;
  --green-bright: #83ff90;
  --shell: 1240px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: #fff;
  font-family: "Borna", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: #fff;
  color: #000;
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 6, 0.34);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 128px;
  height: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.contact-arrow:focus-visible,
.scroll-cue:focus-visible,
.brand:focus-visible,
.contact-copy a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 21px;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.035);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-primary {
  background: var(--green);
  color: #061008;
}

.button-primary:hover {
  background: var(--green-bright);
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 80% 25%, rgba(82, 192, 93, 0.08), transparent 25%),
    linear-gradient(180deg, #050806 0%, #040605 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -45%;
  left: -10%;
  height: 65%;
  border: 1px solid rgba(131, 255, 144, 0.25);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(82, 192, 93, 0.12),
    transparent 54%
  );
  box-shadow: 0 -18px 80px rgba(82, 192, 93, 0.08);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 92%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -220px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(82, 192, 93, 0.16), transparent 68%);
}

.hero-glow-two {
  bottom: 40px;
  left: -280px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(49, 110, 55, 0.12), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 70px;
  padding-block: 160px 116px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--green);
}

.status-pill {
  display: none;
}

.hero h1 {
  max-width: 700px;
  margin: 28px 0 24px;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  margin-top: 14px;
  background: linear-gradient(100deg, #52c05d 0%, #83ff90 48%, #d7ffdb 100%);
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 21px;
  line-height: 1.45;
}

.regulatory-callout {
  display: grid;
  max-width: 580px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 38px;
  border: 1px solid rgba(131, 255, 144, 0.28);
  border-radius: 14px;
  padding: 20px 22px;
  background: linear-gradient(120deg, rgba(82, 192, 93, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.regulatory-callout svg {
  width: 24px;
  margin-top: 2px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.regulatory-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.regulatory-callout strong {
  color: #fff;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.globe {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 58px;
  width: min(100%, 552px);
  opacity: 0.7;
  filter: sepia(1) saturate(2.1) hue-rotate(72deg) drop-shadow(0 0 38px rgba(82, 192, 93, 0.18));
  mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
}

.globe-halo {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: 95px;
  width: 430px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 192, 93, 0.14), transparent 63%);
}

.orbit {
  position: absolute;
  z-index: 4;
  right: -1%;
  bottom: 104px;
  width: 530px;
  height: 180px;
  transform: rotate(-7deg);
  border: 1px solid rgba(131, 255, 144, 0.26);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 14px var(--green-bright);
  content: "";
}

.orbit-inner {
  right: 7%;
  bottom: 120px;
  width: 440px;
  height: 132px;
  transform: rotate(12deg);
  opacity: 0.65;
}

.visual-floor {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 48px;
  width: 480px;
  height: 92px;
  border: 1px solid rgba(131, 255, 144, 0.18);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(82, 192, 93, 0.12), transparent 62%);
  box-shadow:
    0 0 0 14px rgba(82, 192, 93, 0.018),
    0 0 0 30px rgba(82, 192, 93, 0.012);
}

.visual-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 14px 9px 9px;
  background: rgba(7, 12, 8, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.visual-chip span:not(.pulse) {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(82, 192, 93, 0.16);
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 600;
}

.chip-hk {
  top: 130px;
  left: 20px;
}

.chip-status {
  right: -10px;
  top: 250px;
  padding: 13px 17px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(131, 255, 144, 0.09);
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 34px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--muted-soft);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.consulting {
  position: relative;
  padding-block: 132px;
  background:
    radial-gradient(circle at 85% 45%, rgba(82, 192, 93, 0.05), transparent 26%),
    var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  justify-content: space-between;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: var(--card);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 192, 93, 0.09), transparent 70%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: rgba(82, 192, 93, 0.06);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 1;
}

.icon-wrap {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(131, 255, 144, 0.2);
  border-radius: 50%;
  background: rgba(82, 192, 93, 0.08);
}

.icon-wrap svg {
  width: 23px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.card-number {
  position: absolute;
  top: 33px;
  right: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 64px 0 20px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.service-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.contact {
  padding-block: 0 124px;
  background: var(--bg);
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(131, 255, 144, 0.2);
  border-radius: 20px;
  padding: 46px 52px;
  background:
    radial-gradient(circle at 8% 50%, rgba(82, 192, 93, 0.1), transparent 28%),
    linear-gradient(120deg, rgba(82, 192, 93, 0.05), rgba(255, 255, 255, 0.025));
}

.contact-card::before {
  position: absolute;
  top: -220px;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(131, 255, 144, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-orb {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(131, 255, 144, 0.28);
  border-radius: 50%;
  background: rgba(82, 192, 93, 0.1);
}

.contact-orb svg {
  width: 31px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  margin-top: 12px;
  font-size: 40px;
}

.contact-copy > p:not(.section-label) {
  margin: 10px 0 4px;
  color: var(--muted);
}

.contact-copy a {
  color: var(--green-bright);
  font-size: 18px;
}

.contact-copy a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-arrow:hover {
  transform: translate(2px, -2px);
  border-color: var(--green);
  background: rgba(82, 192, 93, 0.1);
}

.contact-arrow svg {
  width: 22px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #030504;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 100px;
  padding-block: 70px 58px;
}

.footer-company img {
  width: 112px;
  height: auto;
  margin-bottom: 30px;
}

.footer-company p,
.footer-title {
  margin: 0 0 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.footer-company span,
.footer-notice > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer-notice {
  padding-left: 55px;
  border-left: 1px solid var(--line);
}

.footer-notice > p:last-child {
  max-width: 680px;
  margin: 10px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  padding-block: 24px 30px;
  color: var(--muted-soft);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--green-bright);
}

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 24px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .orbit {
    right: -28%;
  }

  .globe {
    right: -28%;
    width: 520px;
  }

  .globe-halo,
  .visual-floor {
    right: -20%;
  }

  .chip-status {
    right: -18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 350px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 106px;
    height: auto;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 980px;
  }

  .hero::after {
    right: -45%;
    bottom: -18%;
    left: -45%;
    height: 43%;
  }

  .hero-grid {
    background-size: 50px 50px;
  }

  .hero-inner {
    display: block;
    min-height: 980px;
    padding-block: 128px 72px;
  }

  .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    border: 1px solid rgba(131, 255, 144, 0.22);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(82, 192, 93, 0.08);
    color: var(--green-bright);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .status-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(50px, 16vw, 70px);
  }

  .hero-intro {
    font-size: 18px;
  }

  .regulatory-callout {
    margin-top: 28px;
    padding: 17px;
  }

  .hero-visual {
    min-height: 380px;
    margin-top: 20px;
  }

  .globe {
    right: 50%;
    bottom: 24px;
    width: min(132%, 500px);
    transform: translateX(50%);
  }

  .globe-halo {
    right: 50%;
    bottom: 10px;
    width: 340px;
    transform: translateX(50%);
  }

  .orbit {
    right: 50%;
    bottom: 58px;
    width: 430px;
    transform: translateX(50%) rotate(-7deg);
  }

  .orbit-inner {
    right: 50%;
    bottom: 76px;
    width: 330px;
    transform: translateX(50%) rotate(12deg);
  }

  .visual-floor {
    right: 50%;
    bottom: 9px;
    width: 360px;
    transform: translateX(50%);
  }

  .chip-hk {
    top: 100px;
    left: -6px;
  }

  .chip-status {
    top: 190px;
    right: -4px;
  }

  .scroll-cue {
    display: none;
  }

  .consulting {
    padding-block: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }

  .section-heading h2 {
    font-size: 44px;
  }

  .section-heading > p {
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .contact {
    padding-bottom: 84px;
  }

  .contact-card {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 30px 24px;
  }

  .contact-orb {
    width: 58px;
    height: 58px;
  }

  .contact-copy h2 {
    font-size: 34px;
  }

  .contact-copy a {
    font-size: 15px;
  }

  .contact-arrow {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 54px 44px;
  }

  .footer-notice {
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px 28px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .globe {
    animation: globe-float 7s ease-in-out infinite;
  }

  .orbit-outer {
    animation: orbit-drift 9s ease-in-out infinite;
  }

  .pulse {
    animation: pulse 2s ease-out infinite;
  }

  .scroll-cue svg {
    animation: scroll-bob 1.7s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes globe-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes orbit-drift {
  0%,
  100% {
    scale: 1;
    opacity: 1;
  }
  50% {
    scale: 1.025;
    opacity: 0.72;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(131, 255, 144, 0.25);
  }
  75%,
  100% {
    box-shadow: 0 0 0 9px rgba(131, 255, 144, 0);
  }
}

@keyframes scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
