.kit-simple {
  min-width: 320px;
  background: #070707;
}

.kit-simple .site-header {
  position: relative;
  border: 0;
  background: transparent;
}

.kit-simple .nav {
  min-height: 76px;
}

.kit-simple .nav-links,
.kit-simple .nav-actions,
.kit-simple .kit-program,
.kit-simple .footer-links {
  display: none;
}

.kit-simple .kit-capture-page {
  padding: 0;
}

.kit-simple .kit-capture-hero {
  min-height: calc(100svh - 142px);
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 70px) 0;
}

.kit-simple .kit-capture-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.kit-simple .kit-capture-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, .16);
  border-radius: 6px;
  background: #111110;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .38);
}

.kit-simple .kit-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 14px;
  border: 1px solid rgba(213, 26, 55, .74);
  border-radius: 999px;
  background: rgba(200, 16, 46, .24);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.kit-simple .kit-capture-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.kit-simple .kit-capture-content {
  max-width: 570px;
  padding: 0;
}

.kit-simple .kit-capture-content h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.6vw, 7.1rem);
  font-weight: 400;
  line-height: .84;
}

.kit-simple .kit-capture-content h1.compact-title {
  font-size: 5.4rem;
}

.kit-simple .kit-capture-content h1 span {
  color: var(--red);
}

.kit-simple .kit-capture-subtitle {
  max-width: 540px;
  margin: 21px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.kit-simple .kit-capture-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 22px;
}

.kit-simple .kit-capture-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  font-size: .95rem;
  line-height: 1.45;
}

.kit-simple .kit-capture-list li::before {
  content: "✓";
  position: absolute;
  top: .725em;
  left: 0;
  line-height: 1;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 900;
}

.kit-simple .kit-capture-list strong {
  color: var(--ink);
}

.kit-simple .kit-usage-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.4;
}

.kit-simple .kit-usage-proof svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--red);
}

.kit-simple .kit-capture-button {
  min-height: 62px;
  padding: 16px 30px;
  border-color: var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
}

.kit-simple .kit-capture-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.kit-simple .kit-capture-note span {
  color: var(--red);
  font-weight: 900;
}

@keyframes kitCaptureCascadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .kit-simple .kit-capture-visual,
  .kit-simple .kit-capture-content h1,
  .kit-simple .kit-capture-subtitle,
  .kit-simple .kit-capture-list li,
  .kit-simple .kit-usage-proof,
  .kit-simple .kit-capture-button,
  .kit-simple .kit-capture-note {
    animation: kitCaptureCascadeIn .56s cubic-bezier(.16, 1, .3, 1) backwards;
  }

  .kit-simple .kit-capture-visual { animation-delay: .06s; }
  .kit-simple .kit-capture-content h1 { animation-delay: .14s; }
  .kit-simple .kit-capture-subtitle { animation-delay: .22s; }
  .kit-simple .kit-capture-list li:nth-child(1) { animation-delay: .30s; }
  .kit-simple .kit-capture-list li:nth-child(2) { animation-delay: .36s; }
  .kit-simple .kit-capture-list li:nth-child(3) { animation-delay: .42s; }
  .kit-simple .kit-capture-list li:nth-child(4) { animation-delay: .48s; }
  .kit-simple .kit-capture-list li:nth-child(5) { animation-delay: .54s; }
  .kit-simple .kit-usage-proof { animation-delay: .62s; }
  .kit-simple .kit-capture-button { animation-delay: .70s; }
  .kit-simple .kit-capture-note { animation-delay: .78s; }
}

.kit-simple .site-footer {
  border: 0;
}

.kit-simple .foot {
  min-height: 66px;
  border-top: 1px solid rgba(244, 240, 232, .13);
  color: var(--muted);
  font-size: .76rem;
}

@media (max-width: 900px) {
  .kit-simple .kit-capture-hero {
    min-height: 0;
    padding: 22px 0 54px;
  }

  .kit-simple .kit-capture-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .kit-simple .kit-capture-content {
    max-width: 650px;
  }

  .kit-simple .kit-capture-content h1.compact-title {
    font-size: 4.8rem;
  }
}

@media (max-width: 560px) {
  .kit-simple .nav {
    min-height: 64px;
  }

  .kit-simple .kit-capture-content h1 {
    font-size: clamp(4rem, 19vw, 5.4rem);
  }

  .kit-simple .kit-capture-content h1.compact-title {
    font-size: 3.35rem;
  }

  .kit-simple .kit-image-badge {
    top: 14px;
    left: 14px;
  }

  .kit-simple .kit-capture-subtitle {
    margin-top: 16px;
  }

  .kit-simple .kit-capture-button {
    width: 100%;
    min-height: 64px;
  }
}
