:root {
  --bg: #080608;
  --panel: rgba(18, 11, 15, 0.94);
  --panel-border: rgba(255, 255, 255, 0.11);
  --pink: #e92b72;
  --pink-light: #ff4f91;
  --ink: #171117;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.page-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px 22px 34px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 14%, rgba(91, 16, 39, 0.38), transparent 31%),
    radial-gradient(circle at 17% 88%, rgba(77, 18, 37, 0.26), transparent 32%),
    linear-gradient(135deg, #070608 0%, #0d080b 54%, #11080d 100%);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(192, 28, 79, 0.08);
  filter: blur(90px);
  pointer-events: none;
}
.ambient-one { top: -170px; left: 9%; }
.ambient-two { right: 5%; bottom: -190px; }

.landing-card {
  width: min(100%, 620px);
  border: 1px solid var(--panel-border);
  border-radius: 30px;
  background: var(--panel);
  padding: 29px 30px 23px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.brand-header { text-align: center; }
.logo-wrap {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 15px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(233, 43, 114, 0.72);
  border-radius: 50%;
  background: #1d0d13;
  box-shadow: 0 0 0 7px rgba(233, 43, 114, 0.07), 0 9px 28px rgba(0, 0, 0, 0.48);
}
.logo-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-kicker {
  margin: 0 0 8px;
  color: var(--pink-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
h1 {
  margin: 0;
  font-size: clamp(30px, 5.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.intro {
  max-width: 495px;
  margin: 16px auto 0;
  color: #cfc6ca;
  font-size: 15px;
  line-height: 1.55;
}
.intro strong { color: #fff; font-weight: 700; }

.product-list { display: grid; gap: 13px; margin-top: 25px; }
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 40px;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  background: #f8f5f7;
  padding: 10px 12px 10px 10px;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.product-card.featured {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(233, 43, 114, 0.17), 0 12px 30px rgba(0, 0, 0, 0.16);
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}
.product-card:focus-visible { outline: 3px solid rgba(255, 79, 145, 0.34); outline-offset: 3px; }
.product-cover {
  display: block;
  width: 74px;
  height: 98px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(24, 8, 14, 0.22);
}
.product-copy { display: block; min-width: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: #c41e5b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
}
.dot { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--pink); }
.product-title {
  display: block;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.product-description {
  display: block;
  margin-top: 6px;
  color: #6f646b;
  font-size: 12px;
  line-height: 1.35;
}
.arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #191117;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease;
}
.product-card:hover .arrow,
.product-card:focus-visible .arrow { transform: translateX(2px); background: var(--pink); }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 17px 0 0;
  color: #8d8187;
  font-size: 10px;
}
.secure-note svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--pink-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

footer {
  position: absolute;
  bottom: 13px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: calc(100% - 28px);
  transform: translateX(-50%);
  color: #675d62;
  font-size: 9px;
}
footer strong { color: #85777e; font-weight: 650; }
footer span + span::before,
footer strong + span::before { content: "·"; margin-right: 6px; }

@media (max-width: 620px) {
  .page-shell { min-height: 100svh; align-items: flex-start; padding: 17px 12px 40px; }
  .landing-card { border-radius: 24px; padding: 21px 14px 17px; }
  .logo-wrap { width: 70px; height: 70px; margin-bottom: 12px; }
  .brand-kicker { margin-bottom: 7px; font-size: 8px; letter-spacing: 0.12em; }
  h1 { font-size: 29px; }
  .intro { margin-top: 12px; font-size: 13px; line-height: 1.48; }
  .product-list { gap: 10px; margin-top: 18px; }
  .product-card {
    grid-template-columns: 61px minmax(0, 1fr) 32px;
    min-height: 104px;
    gap: 10px;
    border-radius: 17px;
    padding: 9px 9px 9px 8px;
  }
  .product-cover { width: 61px; height: 86px; border-radius: 7px; }
  .eyebrow { gap: 5px; margin-bottom: 3px; font-size: 8px; letter-spacing: 0.04em; }
  .dot { width: 5px; height: 5px; }
  .product-title { font-size: 15px; }
  .product-description { margin-top: 4px; font-size: 10px; line-height: 1.3; }
  .arrow { width: 32px; height: 32px; font-size: 16px; }
  .secure-note { margin-top: 13px; font-size: 8px; }
  footer { bottom: 10px; font-size: 8px; }
}

@media (max-width: 350px) {
  .product-card { grid-template-columns: 55px minmax(0, 1fr) 29px; gap: 8px; }
  .product-cover { width: 55px; height: 80px; }
  .product-description { font-size: 9.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
