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

:root {
  --brand-blue: #2f5bff;
  --brand-blue-hover: #2448d8;
  --brand-blue-soft: rgba(47, 91, 255, 0.18);
  --brand-pink: #de4fd2;
  --brand-pink-soft: rgba(222, 79, 210, 0.16);
  --brand-coral: #ff6b4a;
  --brand-coral-soft: rgba(255, 107, 74, 0.18);
  --brand-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-pink) 58%, var(--brand-coral) 100%);
  --brand-gradient-soft: linear-gradient(180deg, rgba(18, 20, 30, 0.96), rgba(10, 10, 16, 0.96));
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 48px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, var(--brand-blue-soft), transparent 58%),
    radial-gradient(circle at bottom right, var(--brand-pink-soft), transparent 42%),
    var(--brand-gradient-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.logo-mark svg {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-sub {
  margin-top: 3px;
  color: #8d96a5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #8d96a5;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: #f0f0f0;
}

.nav-cta,
.cta-primary {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  background: var(--brand-blue);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  box-shadow: 0 16px 32px rgba(47, 91, 255, 0.24);
}

.nav-cta:hover,
.cta-primary:hover {
  background: var(--brand-blue-hover);
}

.nav-cta {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 24px 60px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid rgba(47, 91, 255, 0.28);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-pink-soft));
  color: #c6d3ff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
}

h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 span {
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 480px;
  color: #888;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.cta-primary {
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(47, 91, 255, 0.28);
}

.cta-primary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screenshot-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 160px;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.screenshot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid #1e1e1e;
  background: #161616;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.url-bar {
  flex: 1;
  margin: 0 12px;
  padding: 4px 12px;
  border-radius: 5px;
  background: #0f0f0f;
  color: #555;
  font-size: 11px;
}

.screenshot-frame img {
  width: 100%;
  display: block;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 100px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-shot {
  order: 1;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-copy h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.feature-copy p {
  color: #8d96a5;
  font-size: 17px;
  line-height: 1.7;
  max-width: 470px;
}

.feature-shot {
  overflow: hidden;
  position: relative;
  border: 1px solid #1e1e1e;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.feature-shot:not(.feature-shot-report) {
  aspect-ratio: 16 / 10;
}

.feature-shot img {
  width: 100%;
  display: block;
}

.feature-shot:not(.feature-shot-report) img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-shot-report {
  width: 100%;
  max-width: 460px;
  margin-left: 0;
  padding: 22px;
  background:
    radial-gradient(circle at top right, var(--brand-pink-soft), transparent 34%),
    radial-gradient(circle at bottom left, var(--brand-coral-soft), transparent 36%),
    linear-gradient(180deg, #151525, #0d0d14);
}

.feature-shot-report .report-primary {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.feature-shot-report .report-secondary {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(36%, 220px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

footer {
  padding: 24px;
  border-top: 1px solid #111;
  color: #444;
  font-size: 12px;
  text-align: center;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #888;
}

@media (max-width: 720px) {
  nav {
    align-items: flex-start;
    padding: 20px 20px 0;
  }

  .nav-left {
    gap: 10px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 12px;
  }

  .logo-mark svg {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 15px;
  }

  .nav-cta {
    display: none;
  }

  .features {
    gap: 56px;
    padding: 16px 20px 72px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-shot {
    order: initial;
  }

  .feature-copy h2 {
    font-size: 30px;
  }

  .feature-copy p {
    font-size: 16px;
  }

  .feature-shot-report {
    max-width: none;
    padding: 18px;
  }

  .feature-shot-report .report-secondary {
    right: 12px;
    bottom: 12px;
    width: 44%;
  }
}
