:root {
  color-scheme: light;
  --gold: #c89a3d;
  --gold-deep: #8f671d;
  --ink: #08090b;
  --muted: #626a73;
  --soft: #f7f6f2;
  --line: rgba(8, 9, 11, 0.1);
  --glass: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(247, 246, 242, 0.74) 100%),
    radial-gradient(circle at 80% 18%, rgba(200, 154, 61, 0.18), transparent 30%),
    var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  overflow: hidden;
  padding: 34px clamp(22px, 5vw, 72px);
  position: relative;
}

.network-map {
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.network-map::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(200, 154, 61, 0.18) 46%, transparent 72%),
    linear-gradient(rgba(8, 9, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 11, 0.035) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  content: "";
  inset: -72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  position: absolute;
}

.arc {
  border: 1px solid rgba(200, 154, 61, 0.18);
  border-radius: 50%;
  position: absolute;
}

.arc-one {
  height: 760px;
  right: -80px;
  top: 26px;
  width: 760px;
}

.arc-two {
  height: 560px;
  right: 74px;
  top: 126px;
  width: 560px;
}

.arc-three {
  height: 360px;
  right: 210px;
  top: 230px;
  width: 360px;
}

.node {
  animation: pulse 2.8s ease-in-out infinite;
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(200, 154, 61, 0.25), 0 14px 40px rgba(200, 154, 61, 0.22);
  height: 15px;
  position: absolute;
  width: 15px;
}

.node-a {
  right: 520px;
  top: 178px;
}

.node-b {
  animation-delay: 0.3s;
  right: 360px;
  top: 128px;
}

.node-c {
  animation-delay: 0.6s;
  right: 255px;
  top: 330px;
}

.node-d {
  animation-delay: 0.9s;
  right: 620px;
  top: 460px;
}

.node-e {
  animation-delay: 1.2s;
  right: 130px;
  top: 500px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 34px);
  min-height: calc(100vh - 68px);
  position: relative;
  z-index: 1;
}

.brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
}

.logo {
  height: auto;
  max-width: min(276px, 58vw);
}

.company-contact {
  color: #424952;
  display: grid;
  font-size: 0.86rem;
  font-style: normal;
  gap: 8px;
  line-height: 1.35;
  max-width: min(360px, 72vw);
}

.location-line,
.mail-line,
.phone-line {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 720;
  gap: 8px;
}

.location-line svg,
.mail-line svg,
.phone-line svg {
  color: var(--gold);
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 16px;
}

.mail-line,
.phone-line {
  color: #2f353d;
  font-size: 0.84rem;
  font-weight: 520;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 0.78fr);
  margin-block: 0 auto;
  position: relative;
}

.hero-grid::after {
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.96) 0%, rgba(247, 246, 242, 0.42) 30%, rgba(247, 246, 242, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.76) 100%),
    url("network-globe-bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: min(960px, 66vw) auto;
  content: "";
  filter: saturate(0.92) contrast(0.94);
  inset: -255px -72px -92px 34%;
  mask-image: radial-gradient(circle at 78% 22%, #000 0%, #000 48%, rgba(0, 0, 0, 0.74) 62%, transparent 82%);
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.copy {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 900px;
}

h1::after {
  color: var(--gold);
  content: ".";
}

.support {
  color: #343941;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 690px;
}

.notice {
  align-items: flex-start;
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
  padding-left: 18px;
}

.notice strong {
  font-size: 1rem;
}

.notice span {
  color: var(--muted);
  line-height: 1.55;
}

.solution-spotlight {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(200, 154, 61, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(8, 9, 11, 0.08);
  border-top: 1px solid rgba(8, 9, 11, 0.08);
  display: block;
  margin-top: 42px;
  max-width: 820px;
  min-height: 390px;
  overflow: hidden;
  padding: 28px 188px 28px 28px;
  position: relative;
}

.solution-spotlight::before {
  background: var(--gold);
  content: "";
  height: calc(100% - 44px);
  left: 0;
  position: absolute;
  top: 22px;
  width: 3px;
}

.solution-visual {
  aspect-ratio: auto;
  inset: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.solution-visual::after {
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.78) 0%, rgba(247, 246, 242, 0.48) 46%, rgba(247, 246, 242, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.4));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.solution-visual img {
  display: block;
  filter: saturate(1.02) contrast(1.02);
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  width: 100%;
}

.solution-content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.spotlight-kicker {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: -12px 0 24px;
  text-transform: uppercase;
}

.solution-spotlight h2 {
  font-size: clamp(1.24rem, 1.75vw, 1.58rem);
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
}

.solution-spotlight h2::after {
  color: var(--gold);
  content: ".";
}

.solution-copy {
  margin-top: 12px;
  max-width: 590px;
}

.solution-copy p {
  color: #343941;
  font-size: clamp(0.66rem, 0.72vw, 0.78rem);
  line-height: 1.42;
  margin: 0;
}

.solution-copy p + p {
  margin-top: 0.56rem;
}

.spotlight-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  bottom: 30px;
  position: absolute;
  right: 28px;
  z-index: 2;
}

.spotlight-controls button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-deep);
  cursor: pointer;
  display: flex;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.15rem;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 26px;
}

.spotlight-controls button:hover {
  color: var(--ink);
}

.spotlight-dots {
  display: flex;
  gap: 7px;
}

.spotlight-dots span {
  background: rgba(143, 103, 29, 0.24);
  height: 6px;
  width: 18px;
}

.spotlight-dots span.active {
  background: var(--gold);
}

.services-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.audience-strip {
  align-self: end;
  border-left: 2px solid rgba(200, 154, 61, 0.74);
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  min-height: 88px;
  padding: 3px 0 18px 18px;
}

.audience-strip p {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.audience-strip span {
  color: #252b33;
  display: block;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-weight: 560;
  line-height: 1.62;
  max-width: 590px;
}

.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 9, 11, 0.08);
  box-shadow: 0 18px 64px rgba(8, 9, 11, 0.055);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
  padding: 24px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(200, 154, 61, 0.34);
  box-shadow: 0 22px 76px rgba(8, 9, 11, 0.08);
  transform: translateY(-2px);
}

.service-head {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 38px minmax(0, 1fr);
}

.service-head svg {
  color: var(--gold);
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  width: 34px;
}

.service-head p {
  font-size: 1.03rem;
  font-weight: 760;
  line-height: 1.25;
  margin: 0;
}

.service-card small {
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-top: 22px;
}

.metrics {
  border-top: 1px solid var(--line);
  display: grid;
  column-gap: clamp(46px, 6vw, 118px);
  grid-template-columns: max-content max-content max-content max-content;
  justify-content: space-between;
  padding-top: 28px;
}

.metrics div {
  min-width: 0;
}

.metrics strong {
  display: block;
  font-size: clamp(1.78rem, 2.45vw, 2.5rem);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.metrics span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  margin-top: 8px;
}

.legal-line {
  border-top: 1px solid rgba(8, 9, 11, 0.08);
  color: #69717a;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 18px 0 0;
  padding-top: 14px;
  text-align: center;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 920px) {
  .hero-grid {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .services-grid {
    max-width: 660px;
  }
}

@media (max-width: 700px) {
  .page {
    padding: 18px 14px 24px;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    max-width: min(218px, 76vw);
  }

  .company-contact {
    font-size: 0.78rem;
    gap: 5px;
    max-width: 100%;
  }

  .location-line,
  .mail-line,
  .phone-line {
    gap: 6px;
  }

  .location-line svg,
  .mail-line svg,
  .phone-line svg {
    height: 14px;
    width: 14px;
  }

  .mail-line,
  .phone-line {
    font-size: 0.78rem;
  }

  .hero {
    gap: 24px;
    min-height: calc(100vh - 54px);
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-grid::after {
    background-size: 680px auto;
    inset: -148px -230px -36px 4%;
    opacity: 0.28;
  }

  h1 {
    font-size: clamp(2.32rem, 13vw, 3.15rem);
    line-height: 0.99;
    max-width: 100%;
  }

  .support {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 18px;
  }

  .solution-spotlight {
    align-items: flex-start;
    margin-top: 24px;
    max-width: 100%;
    min-height: auto;
    padding: 22px 18px 68px;
  }

  .solution-visual {
    max-width: none;
    width: auto;
  }

  .solution-visual::after {
    background:
      linear-gradient(90deg, rgba(247, 246, 242, 0.92) 0%, rgba(247, 246, 242, 0.72) 54%, rgba(247, 246, 242, 0.52) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.46));
  }

  .solution-visual img {
    opacity: 0.72;
  }

  .spotlight-controls {
    bottom: 22px;
    left: 18px;
    right: auto;
  }

  .spotlight-controls {
    justify-content: space-between;
    width: calc(100% - 36px);
  }

  .spotlight-controls button {
    font-size: 1.08rem;
    height: 34px;
    width: 30px;
  }

  .spotlight-dots span {
    height: 5px;
    width: 16px;
  }

  .spotlight-kicker {
    font-size: 0.7rem;
    line-height: 1.2;
    margin: -4px 0 16px;
  }

  .solution-spotlight h2 {
    font-size: clamp(1.08rem, 4.8vw, 1.36rem);
    line-height: 1.18;
  }

  .solution-copy {
    max-width: none;
  }

  .solution-copy p {
    font-size: 0.75rem;
    line-height: 1.48;
  }

  .solution-copy p + p {
    margin-top: 0.58rem;
  }

  .services-grid {
    gap: 10px;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .audience-strip {
    gap: 7px;
    min-height: auto;
    padding: 2px 0 16px 14px;
  }

  .audience-strip p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .audience-strip span {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
  }

  .service-head {
    gap: 12px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .service-head svg {
    height: 28px;
    width: 28px;
  }

  .service-head p {
    font-size: 0.98rem;
  }

  .service-card small {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 12px;
  }

  .metrics {
    column-gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 24px;
    row-gap: 20px;
  }

  .metrics strong {
    font-size: clamp(1.25rem, 6vw, 1.62rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .metrics span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .legal-line {
    font-size: 0.68rem;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 30rem;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .page {
    padding-inline: 13px;
  }

  .logo {
    max-width: min(204px, 78vw);
  }

  h1 {
    font-size: clamp(2.12rem, 12.5vw, 2.85rem);
  }

  .support {
    font-size: 0.92rem;
  }

  .solution-spotlight {
    padding: 20px 16px 66px;
  }

  .solution-copy p {
    font-size: 0.72rem;
  }

  .spotlight-controls {
    left: 16px;
    width: calc(100% - 32px);
  }

  .metrics {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

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