:root {
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-narrow: "Archivo Narrow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --profile-gap: 40px;
  --color-bg: #030716;
  --color-bg-alt: #050b1f;
  --color-card: #071021;
  --color-card-soft: rgba(7, 16, 33, 0.85);
  --color-accent: #ff3358;
  --color-accent-soft: rgba(255, 51, 88, 0.7);
  --color-accent-blue: #36e0ff;
  --color-text: #f9fafb;
  --color-text-soft: #cbd5f5;
  --color-text-muted: #7b87a7;
  --color-border-soft: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.78);
  --radius-xl: 999px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container-width: 1180px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  font-size: 1.05rem;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.page-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at top left, #101e4a 0, transparent 55%),
    radial-gradient(circle at bottom right, #1b1230 0, transparent 55%),
    linear-gradient(135deg, #020617, #020617 40%, #020314 100%);
}

.page-background__radial {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

.page-background__radial--left {
  left: -160px;
  top: 40%;
  background: radial-gradient(circle, rgba(255, 51, 88, 0.55), transparent 65%);
}

.page-background__radial--right {
  right: -120px;
  top: 5%;
  background: radial-gradient(circle, rgba(255, 51, 88, 0.35), transparent 60%);
}

.page-background__c-mark {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 5%;
  /* border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 51, 88, 0.4),
    0 0 50px rgba(255, 51, 88, 0.5), 0 0 120px rgba(255, 51, 88, 0.3);
  border: 2px solid rgba(255, 51, 88, 0.45);
  mask-image: radial-gradient(circle at center, transparent 54%, black 54%); */
  opacity: 0.35;
  background: url(../images/bg_logo.svg) no-repeat center center / cover;
  filter: blur(12px);
}

.site-header {
  padding: 26px 24px 0;
}

.site-header__inner {
  max-width: min(80vw, 1400px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.logo {
  margin-block-end: 3rem;
  svg {
    min-width: 15rem;
  }
}

.layout {
  max-width: min(80vw, 1400px);
  margin: 0 auto;
  padding: 40px 24px 72px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.1fr);
  grid-template-areas:
    "hero hero"
    "sidebar services";
  column-gap: 72px;
  row-gap: 56px;
  align-items: flex-start;
}

.layout__hero {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 4px;
  padding-bottom: 12px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy__title {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 4px 0 26px;
}

.hero-copy__title-line {
  display: block;
}

@media (min-width: 981px) {
  .hero-copy__title-line {
    white-space: nowrap;
  }
}

.hero-copy__quote {
  margin: 0;
  font-size: 1.98rem;
  color: var(--color-text-soft);
  font-weight: 400;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    var(--color-card-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(24px);
  /* cursor: pointer; */
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 51, 88, 0.6),
    rgba(255, 51, 88, 0.12)
  );
  opacity: 0;
  transition: opacity 180ms ease-out;
  pointer-events: none;
}

.service-card--accent::before,
.service-card--active::before {
  opacity: 1;
}

.service-card--accent {
  background: radial-gradient(circle at top left, rgba(255, 51, 88, 0.24), transparent 65%),
    var(--color-card);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card--active {
  box-shadow: 0 26px 65px rgba(255, 51, 88, 0.65);
}

.service-card__content {
  position: relative;
  z-index: 1;
}

.service-card__title {
  font-size: 1.26rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.service-card__subtitle {
  margin: 0;
  font-size: 0.96rem;
  color: var(--color-text-muted);
}

.service-card__subtitle a {
  color: var(--color-accent-blue);
}

.service-card__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 60px;
}

.service-card__icon,
.service-card__icon-dot {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.12), transparent 72%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7), 0 14px 28px rgba(0, 0, 0, 0.7);
  position: relative;
}

.service-card__icon-dot::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 60%);
}

.service-card__icon--stack::before,
.service-card__icon--network::before,
.service-card__icon--checklist::before,
.service-card__icon--chat::before,
.service-card__icon--funds::before,
.service-card__icon--spark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0.9;
}

.service-card__icon--stack::after {
  content: "";
  position: absolute;
  inset: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
}

.service-card__icon--network::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.service-card__icon--checklist::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 10px;
  top: 9px;
  height: 2px;
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.95),
    0 8px 0 rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.95);
}

.service-card__icon--chat::after {
  content: "";
  position: absolute;
  inset: 7px 8px 9px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 2px;
}

.service-card__icon--funds::after {
  content: "";
  position: absolute;
  inset: 6px 7px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.9);
}

.service-card__icon--spark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.layout__sidebar {
  grid-area: sidebar;
  display: flex;
  justify-content: flex-start;
}

.layout__services {
  grid-area: services;
  display: flex;
  flex-direction: column;
}

.profile {
  position: sticky;
  top: 32px;
  align-self: flex-start;
  padding: 0 0 10px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.profile__photo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--profile-gap);
}

.profile__photo-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid transparent;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 78%) padding-box,
    conic-gradient(
      from 0turn,
      #badaff 0turn,
      #ffffff 0.12turn,
      #e28786 0.5turn,
      #ffffff 0.7turn,
      #badaff 1turn
    )
      border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 80px rgba(255, 255, 255, 0.35),
    0 0 56px rgba(226, 135, 134, 0.9),
    0 0 40px rgba(186, 218, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.45) inset;
}

.profile__photo {
  position: relative;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.9),
    0 0 22px rgba(15, 23, 42, 0.9) inset,
    0 0 26px rgba(248, 250, 252, 0.45);
}

.profile__text {
  margin-bottom: var(--profile-gap);
}

.profile__name-line {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    background 150ms ease-out,
    color 150ms ease-out;
}

.btn--linkedin {
  margin-top: 0;
  margin-bottom: var(--profile-gap);
  padding-inline: 22px;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  color: #ffffff;
  border: 1px solid rgba(248, 250, 252, 0.9);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 26px rgba(148, 163, 184, 0.75),
    0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn--linkedin:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 36px rgba(248, 250, 252, 0.9),
    0 22px 52px rgba(0, 0, 0, 0.95);
}

.btn__icon {
  display: none;
}

.btn__label {
  letter-spacing: 0.02em;
}

.btn__label-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  padding: 0 3px;
  min-width: 26px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  background: #ffffff;
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.95em;
}

.profile__contacts-toggle {
  display: none;
  width: 100%;
  margin: 4px 0 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  color: var(--color-text-soft);
  font-size: 0.8rem;
  cursor: pointer;
}

.profile__contacts-toggle:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.profile__contacts {
  margin-top: 2px;
  font-size: 1.02rem;
  color: var(--color-text-soft);
  text-align: left;
  font-family: var(--font-narrow);
}

.profile__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.profile__list li {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.profile__label {
  font-weight: 700;
  min-width: 18px;
}

.profile__list a {
  color: var(--color-text-soft);
}

.profile__company {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  margin-top: 0;
  text-align: left;
  font-family: var(--font-narrow);
}

.profile__company p {
  margin: 0;
}

.profile__company p:first-child {
  margin-bottom: 4px;
}

.profile__company p:nth-child(2) {
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "sidebar"
      "services";
    column-gap: 0;
    row-gap: 40px;
  }

  .layout__sidebar {
    order: 0;
    justify-content: center;
  }

  .profile {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 18px;
  }

  .layout {
    padding-inline: 18px;
  }

  .hero-copy__title {
    font-size: 2.2rem;
  }

  .services {
    gap: 18px;
  }

  .service-card {
    padding: 21px 24px;
    gap: 16px;
  }

  .service-card__title {
    font-size: 0.98rem;
  }

  .service-card__subtitle {
    font-size: 0.78rem;
  }

  .service-card__icons {
    min-width: auto;
  }

  .profile__contacts-toggle {
    display: inline-block;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero-copy__title {
    font-size: 1.7rem;
  }
}

