@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Inter", sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #191919;
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  display: block;
  margin: 0;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: #191919;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 14px;
  opacity: 1;
}

/* Hero */
.hero {
  margin-top: 40px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero-logo {
  width: clamp(70px, 9vw, 180px);
  height: auto;
  border-radius: 20px;
}

.hero-eyebrow {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #9c8160;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 1200px;
}

.hero-subheadline {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #6e6e73;
  margin-bottom: 30px;
  max-width: 980px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-size: 17px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 980px;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #9c8160;
  color: #ffffff;
}

.btn-primary:hover {
  background: #8a7052;
}

.btn-secondary {
  background: transparent;
  color: #9c8160;
  border-color: #9c8160;
}

.btn-secondary:hover {
  background: #9c8160;
  color: #ffffff;
}

/* Section */
.section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 110px 0;
}

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 48px;
  text-align: center;
}

.section-subheadline {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: #6e6e73;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* App cards */
.category-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.category-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid #e8e8ed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.app-link {
  display: block;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #9c8160;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.app-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
}

.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.logo-frame img {
  display: block;
}

.logo-frame--nav {
  padding: 0;
  margin: 0;
  border-radius: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
}

.logo-frame--hero {
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  margin-bottom: 24px;
}

.logo-frame--app {
  padding: 6px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.category-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 17px;
  line-height: 1.5;
  color: #6e6e73;
}

/* Footer */
.footer {
  background: #191919;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-links a {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-legal {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.6;
  margin: 0;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .section-wrapper {
    padding: 80px 0;
  }
}
