
html {
  font-size: 16px;
  background: radial-gradient(circle at top right, rgba(58, 128, 255, 0.35), transparent 45%), radial-gradient(circle at bottom left, rgba(228, 73, 145, 0.45), transparent 50%), linear-gradient(120deg, #181a42 0%, #29174d 50%, #0b0f24 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  background: rgba(7, 9, 25, 0.65);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(6, 12, 34, 0.45);
  padding: 20px;
}

.site-header {
  display: flex;
  margin-bottom: 20px;
}

.logo-cont {
  border-radius: 10px;
  padding: 10px;
  a {
    display: flex;
    width: 300px;
  }
  img {
  max-height: 150px;
  }
  .logo-link {
    max-width: 228px;
  }
  .logo-animate {
    animation: rotate-logo 1s 1s;
    max-width: 50px;
    display: inline-flex;
  }
  .logo-main {
    max-width: 180px;
    margin-left: 5px;
    display: inline-flex;
  }
}
.logo-cont:hover {
  transform: translateY(-2px);
}

@keyframes rotate-logo {
  0% {
    transform: rotate(-90deg);
  }
  50% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0);
  }
}

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

img {
  display: block;
  max-width: 100%;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cards-block {
  display: flex;
  flex-direction: column;
/*  gap: 1.8rem;*/
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 620px;
}

.section-heading__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(228, 239, 255, 0.72);
}

.section-heading__title {
  margin: 0;
  font-size: 1.4rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: #f8faff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(18, 18, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(8, 12, 32, 0.35);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.info-card > * {
  position: relative;
  z-index: 1;
}

.info-card--primary {
  background: linear-gradient(135deg, rgba(103, 89, 255, 0.45), rgba(228, 73, 145, 0.35));
  border-color: rgba(255, 255, 255, 0.18);
}

.info-card__icon {
  font-size: 2rem;
}

.info-card__title {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.4rem;
}
.info-card ul {
  margin: 2px;
  padding: 0 0 0 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-size: 0.98rem;
}

.info-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-size: 0.98rem;
}

.info-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.btn--primary {
  background: linear-gradient(135deg, #6759ff 0%, #e44991 100%);
  box-shadow: 0 16px 30px rgba(103, 89, 255, 0.35);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(103, 89, 255, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f2f4ff;
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn--dense {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
}

.info-card__cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.info-card__cta::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.info-card:hover,
.info-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(28, 30, 57, 0.85);
}

.info-card:hover::before,
.info-card:focus-visible::before {
  opacity: 1;
}

.info-card:hover .info-card__cta::after,
.info-card:focus-visible .info-card__cta::after {
  transform: translateX(4px);
}

.connectivity {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connectivity__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.connectivity-card {
  background: rgba(18, 18, 35, 0.72);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 24px 60px rgba(8, 12, 32, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.connectivity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.connectivity-card__header h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.connectivity-card__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-size: 0.98rem;
}
.connectivity-card__header ul {
  margin: 2px;
  padding: 0 0 0 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-size: 0.98rem;
}
.connectivity-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pill-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.pill-link:hover,
.pill-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.social-links {
  display: grid;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.social-link svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.social-link span {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1080px) {
  .connectivity__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    padding: 1.2rem;
  }

  .page-shell {
    border-radius: 24px;
    padding: 1.8rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border: none;
    padding-bottom: 0;
    gap: 1rem;
  }

  .site-main {
    gap: 2.2rem;
  }
}

@media (max-width: 620px) {
  body {
    padding: 1rem;
  }

  .page-shell {
    padding: 1.4rem;
  }
  .section-heading__title {
    font-size: 1.2rem;
  }

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