* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
}

body {
  background: #1a1a1a;
  color: #1e1e1e;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

/* background image with overlay */
.page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./image_368719990044613.png")
    center/cover no-repeat;
  z-index: -2;
  filter: brightness(0.95);
}

.page::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1px);
  z-index: -1;
}

.container {
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* header / nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0 1.2rem;
  border-bottom: 1px solid rgba(200, 140, 60, 0.2);
  flex-wrap: wrap;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(145deg, #f9a825, #e65100);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(230, 81, 0, 0.15);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1rem;
  transition: 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #d84315;
  border-bottom-color: #d84315;
}

/* sections */
section {
  padding: 3.6rem 0 3rem;
  scroll-margin-top: 2rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #f9a825, #e65100);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* banner */
.banner-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0.8rem 0 1.5rem;
  flex-wrap: wrap;
}

.banner-text {
  flex: 1 1 45%;
}

.banner-text h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(145deg, #f9a825, #e65100);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.banner-text .subhead {
  font-size: 1.2rem;
  color: #2c2c2c;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.banner-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.4s;
  cursor: default;
}

.banner-image img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.35s;
  display: block;
}

.banner-image:hover img {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 28px 48px -12px rgba(180, 80, 20, 0.5);
}

/* introduce & features & screenshot – left-right layout */
.split-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 45%;
}

.split-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1f1f1f;
  background: rgba(255, 255, 240, 0.5);
  padding: 1.2rem 1.8rem;
  border-radius: 28px;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-left: 4px solid #f9a825;
}

.split-text p + p {
  margin-top: 1rem;
}

.split-media {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}

.split-media img {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  width: 200px;
  height: auto;
}

/* screenshot specific (extra) */
.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.screenshot-grid img {
  width: 150px;
  border-radius: 28px;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}

.screenshot-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px -10px #d84315;
}

/* features list */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.5rem;
  padding: 0.5rem 0;
}

.feature-item {
  flex: 1 1 180px;
  background: rgba(255, 245, 230, 0.5);
  backdrop-filter: blur(2px);
  padding: 1.2rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  color: #1f1f1f;
  border: 1px solid rgba(230, 81, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
  transition: 0.2s;
}

.feature-item:hover {
  background: rgba(249, 168, 37, 0.15);
  border-color: #f9a825;
}

.feature-item strong {
  color: #d84315;
}

/* footer / contact */
.footer {
  border-top: 1px solid rgba(200, 140, 60, 0.2);
  padding: 2.4rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-email {
  font-size: 1.1rem;
  background: rgba(255, 235, 210, 0.5);
  padding: 0.4rem 1.4rem;
  border-radius: 40px;
  backdrop-filter: blur(2px);
}

.footer-email a {
  color: #bf360c;
  text-decoration: none;
  font-weight: 500;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #3d2b1a;
  opacity: 0.7;
  font-size: 0.95rem;
}

/* responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .banner-wrap {
    flex-direction: column;
    text-align: center;
  }
  .banner-text h1 {
    font-size: 2.6rem;
  }
  .split-row,
  .split-row.reverse {
    flex-direction: column;
    text-align: left;
  }
  .split-text p {
    padding: 1rem;
  }
  .split-media img {
    width: 160px;
  }
  .footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .banner-image img {
    max-width: 170px;
  }
  .screenshot-grid img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 2rem;
  }
  .logo {
    font-size: 1.6rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
}
