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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s;
}

.cta-button:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Section styles */
.section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

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

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s;
}

.app-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.app-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.app-card h3 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.app-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.company-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.company-name {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.company-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  margin-bottom: 2px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat-number {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.contact-email {
  font-family: "Bricolage Grotesque", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact-email:hover {
  border-color: #fff;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-left .logo {
  font-size: 16px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-right a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    flex-direction: row;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 8px;
  }
}
