* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Segoe UI",
    Roboto,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    sans-serif;
}

body {
  line-height: 1.6;
  color: #2b2b2b;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./photo-1610465299996-30f240ac2b1c.avif");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: -2;
}

.bg-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 140, 0, 0.25) 0%,
    rgba(255, 200, 20, 0.3) 100%
  );
  backdrop-filter: blur(3px);
  z-index: -1;
}

.content-wrapper {
  position: relative;
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); 
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 2rem 2rem 0 0;
  padding: 0 40px 40px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 16px 0;
  border-bottom: 1px solid rgba(255, 140, 0, 0.3);
  flex-wrap: wrap;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #ff7e1e, #f9b42a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 6px rgba(255, 120, 0, 0.3));
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f85f0e, #f9d71c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #3a2c1b;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
}

.nav-links a:hover {
  border-bottom-color: #ff9900;
  color: #c45300;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(145deg, #dd6b00, #f9b81b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  border-left: 8px solid #ff9900;
  padding-left: 20px;
}

.banner {
  padding: 60px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.banner-left {
  flex: 1 1 350px;
}

.banner-left h1 {
  font-size: 4rem;
  line-height: 1.1;
  background: linear-gradient(to right, #cc5200, #e68a00, #f5b41a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.banner-left .tagline {
  font-size: 2rem;
  font-weight: 300;
  color: #5a3e1b;
  margin-bottom: 20px;
}

.banner-left .description {
  font-size: 1.25rem;
  color: #2f2a24;
  max-width: 600px;
  background: rgba(255, 245, 225, 0.6);
  border-radius: 30px;
  padding: 24px 30px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 200, 120, 0.7);
}

.banner-right {
  flex: 0 0 300px;
  margin: 0 auto;
}

.banner-right .mock-screenshot {
  width: 280px;
  height: 560px;
  background: rgba(255, 215, 140, 0.5);
  border-radius: 48px;
  border: 6px solid rgba(255, 255, 240, 0.8);
  box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7b5200;
  font-weight: 600;
  background-image: url("https://images.unsplash.com/photo-1627404953902-ef9bcd22b9fc?w=400&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  position: relative;
}

.mock-screenshot .screen-overlay {
  background: rgba(255, 235, 190, 0.2);
  border-radius: 42px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  text-shadow: 0 2px 10px black;
  backdrop-filter: brightness(1.1) blur(2px);
}

.intro-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0 20px;
}

.card {
  flex: 1 1 240px;
  max-width: 280px;
  background: rgba(255, 255, 245, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 48px 48px 40px 40px;
  padding: 30px 20px 30px 20px;
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 220, 140, 0.8);
  transition: 0.25s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 250, 0.85);
  border-color: #fbaa3a;
}

.card .screen-mini {
  width: 160px;
  height: 280px;
  margin: 0 auto 25px auto;
  border-radius: 32px;
  background-size: cover;
  background-position: top;
  border: 4px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(145deg, #c55403, #eba031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.card p {
  color: #3d2f1b;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 8px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 70px 0;
}

.feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 240, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 70px;
  padding: 30px 30px;
  border: 1px solid rgba(255, 200, 100, 0.7);
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 300px;
  padding: 20px;
}

.feature-text h2 {
  font-size: 2.2rem;
  background: linear-gradient(145deg, #c55403, #eba031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 1.2rem;
  color: #2f2a24;
  max-width: 500px;
}

.feature-screenshot {
  flex: 0 0 240px;
  height: 480px;
  background-size: cover;
  background-position: center 20%;
  border-radius: 50px;
  box-shadow: 0 30px 25px -10px rgba(100, 50, 0, 0.3);
  border: 6px solid rgba(255, 255, 245, 0.8);
  transition: 0.2s;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.screenshot-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 50px 0;
}

.screenshot-item {
  flex: 0 0 180px;
  height: 380px;
  border-radius: 40px;
  background-size: cover;
  background-position: top;
  border: 5px solid rgba(255, 255, 230, 0.9);
  box-shadow: 0 20px 30px -8px #b26b2e80;
  transition: 0.3s;
}

.screenshot-item:hover {
  transform: scale(1.02) rotate(1deg);
  border-color: #ffb852;
}

.footer {
  margin-top: 70px;
  padding: 35px 20px 20px;
  border-top: 2px solid rgba(255, 140, 0, 0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 240, 210, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 60px 60px 20px 20px;
}

.footer-left p {
  font-size: 1.2rem;
  color: #3d2b12;
}

.footer-left i {
  color: #d76602;
  margin-right: 8px;
}

.footer-right {
  font-size: 1rem;
  color: #523f26;
}

a {
  color: #c96207;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.anchor {
  scroll-margin-top: 30px;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: start;
  }
  .banner-left h1 {
    font-size: 3rem;
  }
  .content-wrapper {
    padding: 0 20px 20px;
  }
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
  }
}
