* {
  box-sizing: border-box;
}

:root {
  --bg: #070a12;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #f6f8ff;
  --muted: #aab4cc;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #58a6ff;
  --cyan: #6ee7f9;
  --purple: #a78bfa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(88, 166, 255, 0.15), transparent 32rem),
    radial-gradient(circle at 90% 0%, rgba(167, 139, 250, 0.18), transparent 35rem),
    var(--bg);
  color: var(--text);
}

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

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.orb {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(5rem);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  left: -8rem;
  top: 22rem;
  background: var(--blue);
}

.orb-two {
  right: -10rem;
  bottom: 10rem;
  background: var(--purple);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 10, 18, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.navbar nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.navbar nav a:hover {
  color: var(--text);
}

.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  color: #c9d4eb;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.hero-text,
.section-header p,
.contact p,
.content-card p,
.company-card p,
.service-card p,
.timeline-item p,
.profile-body p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16px;
}

.hero-text {
  max-width: 720px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  max-width: 690px;
}

.stat,
.profile-card,
.content-card,
.company-card,
.service-card,
.timeline-item,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.stat {
  padding: 18px;
  border-radius: 22px;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.profile-card {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(88, 166, 255, 0.18), transparent 45%),
    linear-gradient(315deg, rgba(167, 139, 250, 0.2), transparent 52%);
  pointer-events: none;
}

.profile-top,
.profile-body,
.tag-list {
  position: relative;
  z-index: 1;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 800;
  font-size: 24px;
}

.profile-top h2 {
  margin: 0 0 5px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.profile-top p {
  margin: 0;
  color: var(--muted);
}

.profile-body {
  margin-bottom: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe6ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.content-card {
  padding: 32px;
  border-radius: 30px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 36px;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.company-card {
  padding: 32px;
  border-radius: 30px;
}

.company-card.large {
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.12), rgba(167, 139, 250, 0.09));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--card-strong);
}

.number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: 28px;
}

.timeline-item span {
  color: var(--cyan);
  font-weight: 800;
  font-size: 24px;
}

.timeline-item p {
  margin-bottom: 0;
}

.social-impact .content-card {
  background: linear-gradient(135deg, rgba(110, 231, 249, 0.12), rgba(167, 139, 250, 0.1));
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
}

.contact-card a,
.contact-card span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8efff;
  font-weight: 700;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .navbar {
    border-radius: 28px;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .navbar nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .two-column,
  .company-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

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

@media (max-width: 620px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 62px 0;
  }

  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 14px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
  }
}
