:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --accent: #ff6600;
  --text: #ffffff;
  --muted: #a69a9a;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}







.main {
  position: relative;
}

.app {
  display: flex;
}


.side {
  width: 38%;
  padding: 40px;
}

.profile {
  position: sticky;
  top: 40px;
  height: calc(100vh - 80px);
  border-radius: 28px;
  overflow: hidden;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.15));
}

.profile-info {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

.profile-info h1 {
  font-size: 44px;
}

.profile-info span {
  color: var(--accent);
}

.profile-info p {
  margin-top: 8px;
  font-size: 20px;
  color: var(--accent);
  transition: opacity .3s ease;
}


.content {
  width: 62%;
  padding: 80px;
}

.hero h2 {
  font-size: 42px;
  line-height: 1.2;
}

.hero span {
  color: var(--accent);
}

.media {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.media div {
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  max-width: 640px;
  margin: 120px 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.about p + p {
  margin-top: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 140px;
}

.card {
  height: 420px;
  padding: 40px;
  border-radius: 26px;
  background: linear-gradient(180deg, #0e0e0e, #090909);
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: .45s ease;
}

.card:hover {
  transform: translateY(-14px);
}

.icon {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  max-width: 80%;
}

.circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #2aa9e0;
}

.circle img {
  width: 120px;
}

.tilted img {
  transform: rotate(-18deg);
}

.card span {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
}

.card h3 {
  font-size: 26px;
}


.cta {
  padding: 160px 40px;
  text-align: center;
  background-color: #050505;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
}

.cta p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}

.cta a {
  display: inline-block;
  margin-top: 36px;
  padding: 18px 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}



@media (max-width: 900px) {


  .app {
    flex-direction: column;
  }

  .side,
  .content {
    width: 100%;
  }

  .side {
    padding: 0;
  }

  .profile {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    margin-bottom: 32px;
  }

  .profile-info {
    left: 20px;
    bottom: 20px;
  }

  .profile-info h1 {
    font-size: 30px;
  }

  .profile-info p {
    font-size: 16px;
  }


  .content {
    padding: 32px 20px 64px;
  }

  .hero h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .media {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media div {
    height: 200px;
  }

  .about {
    margin: 64px 0;
    font-size: 16px;
    line-height: 1.7;
  }


  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
  }

  .card {
    height: auto;
    padding: 28px 24px 32px;
    border-radius: 22px;
    transform: none !important;
  }

  .icon {
    height: auto;
    margin-bottom: 24px;
  }

  .circle {
    width: 160px;
    height: 160px;
  }

  .circle img {
    width: 80px;
  }

  .icon img {
    max-width: 140px;
  }

  .card span {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .card h3 {
    font-size: 22px;
  }

  .cta {
    padding: 100px 24px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 16px;
  }
}
