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

html {
  scroll-behavior: smooth;
}

body {
  background: #05060a;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.hero {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.22), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 61, 129, 0.22), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(155, 92, 255, 0.22), transparent 35%),
    linear-gradient(135deg, #05060a, #10111d 55%, #070711);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00e5ff, #9b5cff, #ff3d81);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.28);
}

.nav-button {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-button:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 130px 0 90px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge,
.mini-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.09);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: #98f4ff;
  font-weight: 700;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffffff, #a7f6ff, #d0b5ff, #ff9abf);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -2px;
}

.hero-text {
  max-width: 820px;
  margin: 0 auto 34px;
  color: #cfd3df;
  font-size: 21px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-button {
  background: linear-gradient(90deg, #00e5ff, #9b5cff, #ff3d81);
  box-shadow: 0 0 34px rgba(155, 92, 255, 0.36);
}

.primary-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 48px rgba(255, 61, 129, 0.42);
}

.secondary-button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.secondary-button:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #b9bfce;
  font-weight: 700;
}

.section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.section h2,
.section-heading h2,
.showcase h2,
.steps-section h2,
.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section p,
.section-heading p {
  color: #c5cad7;
  font-size: 20px;
}

.intro {
  padding-top: 100px;
}

.screenshots-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 24px 110px;
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 42px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.screenshot-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
  transition: 0.25s ease;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.38);
  box-shadow: 0 34px 100px rgba(0, 229, 255, 0.13);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.featured-shot {
  grid-column: span 2;
}

.featured-shot img {
  aspect-ratio: 16 / 7.2;
}

.shot-content {
  padding: 22px;
}

.shot-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.shot-content p {
  color: #bfc5d4;
}

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 229, 255, 0.38);
  box-shadow: 0 24px 80px rgba(0, 229, 255, 0.12);
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #bfc5d4;
}

.showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.showcase-text p {
  color: #c5cad7;
  font-size: 19px;
  margin-bottom: 24px;
}

.showcase-text ul {
  list-style: none;
}

.showcase-text li {
  margin-bottom: 13px;
  padding-left: 32px;
  position: relative;
  color: #dce1ee;
  font-size: 18px;
}

.showcase-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00e5ff;
  font-weight: 900;
}

.mockup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 30px 100px rgba(155, 92, 255, 0.22);
}

.mockup-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.mockup-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

.mockup-screen {
  min-height: 360px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 61, 129, 0.25), transparent 35%),
    linear-gradient(145deg, #10111d, #07070d);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.mockup-title {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 24px;
}

.mockup-line {
  height: 14px;
  width: 60%;
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  margin-bottom: 18px;
}

.mockup-line.wide {
  width: 85%;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.mockup-grid div {
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(155,92,255,0.18));
  border: 1px solid rgba(255,255,255,0.1);
}

.mockup-button {
  width: 170px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00e5ff, #9b5cff);
  box-shadow: 0 0 30px rgba(0,229,255,0.22);
}

.dark-section {
  max-width: 1180px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(0,229,255,0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,61,129,0.14), transparent 35%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
}

.use-cases {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.use-cases span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: #dfe6f5;
  font-weight: 700;
}

.steps-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 28px;
}

.step span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00e5ff, #9b5cff);
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: #bfc5d4;
}

.faq {
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 36px;
}

.faq-box {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-box h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-box p {
  color: #bfc5d4;
  font-size: 17px;
}

.cta {
  margin: 40px auto 100px;
  max-width: 1050px;
  padding: 80px 24px;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,229,255,0.22), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,61,129,0.18), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.13);
}

.cta p {
  color: #c5cad7;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 28px;
}

footer {
  padding: 42px 24px;
  text-align: center;
  background: #030407;
  color: #8f96a8;
}

.footer-small {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 950px) {
  .features,
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-shot {
    grid-column: span 2;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    padding: 82px 0 70px;
  }

  .features,
  .screenshot-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .featured-shot {
    grid-column: span 1;
  }

  .hero-text {
    font-size: 18px;
  }

  .section,
  .screenshots-section,
  .showcase {
    padding-left: 20px;
    padding-right: 20px;
  }

  .screenshot-card img,
  .featured-shot img {
    aspect-ratio: 16 / 10;
  }

  .mockup-screen {
    min-height: 300px;
  }
}
