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

body {
  font-family: 'Outfit', sans-serif;
  background: #F5F4F1;
  color: #1A1918;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 64px;
  background: #FFFFFF;
  box-shadow: 0 1px 8px rgba(26, 25, 24, 0.03);
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #1A1918;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #6D6C6A;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #1A1918;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #3D8A5A;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #347a4e;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 64px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(26, 25, 24, 0.06);
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 16px;
  color: #6D6C6A;
  line-height: 1.6;
  text-align: center;
  max-width: 500px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #C8F0D8;
  border-radius: 100px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #3D8A5A;
  border-radius: 50%;
}

.status-text {
  font-size: 13px;
  font-weight: 500;
  color: #3D8A5A;
}

/* Links Section */
.links-section {
  padding: 0 64px 60px 64px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1A1918;
}

.links-grid {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26, 25, 24, 0.03);
  transition: box-shadow 0.2s;
}

.link-card:hover {
  box-shadow: 0 4px 20px rgba(26, 25, 24, 0.08);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.link-icon i,
.link-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
  stroke: #FFFFFF;
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.link-name {
  font-size: 15px;
  font-weight: 600;
  color: #1A1918;
}

.link-desc {
  font-size: 12px;
  color: #9C9B99;
}

.link-arrow {
  width: 18px;
  height: 18px;
  color: #9C9B99;
  flex-shrink: 0;
}

/* Apps Section */
.apps-section {
  padding: 0 64px 80px 64px;
}

.apps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apps-count {
  font-size: 13px;
  font-weight: 500;
  color: #9C9B99;
}

.apps-grid {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.apps-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.app-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 25, 24, 0.03);
  transition: box-shadow 0.2s;
}

.app-card:hover {
  box-shadow: 0 4px 20px rgba(26, 25, 24, 0.08);
}

.app-card {
  display: block;
  color: inherit;
}

.app-img {
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.app-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.app-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
}

.badge-green {
  background: #C8F0D8;
  color: #3D8A5A;
}

.badge-gray {
  background: #EDECEA;
  color: #6D6C6A;
}

.app-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.app-desc {
  font-size: 14px;
  color: #6D6C6A;
  line-height: 1.5;
}

.app-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  background: #EDECEA;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: #6D6C6A;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 64px;
  background: #FFFFFF;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  color: #9C9B99;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: #6D6C6A;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #1A1918;
}

.footer-copy {
  font-size: 12px;
  color: #9C9B99;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 0 24px;
  }

  .nav {
    gap: 16px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    padding: 48px 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .links-section,
  .apps-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .links-grid {
    flex-direction: column;
  }

  .apps-grid {
    flex-direction: column;
  }

  .footer {
    padding: 32px 24px;
  }
}
