:root {
  --bg: #070708;
  --bg-elev: #111114;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f6;
  --mute: #b3b3b8;
  --pink: #ff104f;
  --pink-2: #ff3d6e;
  --w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(var(--w), calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(#070708, rgba(7, 7, 8, 0.92));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 64px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 28px; width: auto; }
.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}
.nav a:hover { color: #fff; }
.header-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header-cta:hover { background: var(--pink-2); }

.hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070708 0%, rgba(7, 7, 8, 0.88) 38%, rgba(7, 7, 8, 0.28) 70%, transparent 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.15) 0%, rgba(7, 7, 8, 0.35) 55%, #070708 100%),
    url("./hero.jpg") center 28% / cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: 72px 0 56px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.hero-kicker img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  border: 0;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-2); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.hero-meta {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--mute);
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sec { padding: 52px 0; }
.sec-tight { padding-top: 8px; }
.sec-head { max-width: 640px; margin-bottom: 24px; }
.channels { margin-top: 22px; }
.premium-lead { color: var(--mute); line-height: 1.55; margin: 10px 0 0; }
.eyebrow {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.sec-head p { color: var(--mute); line-height: 1.6; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "ico title"
    "txt txt";
  column-gap: 12px;
  row-gap: 8px;
  align-items: center;
  min-height: 100%;
  padding: 16px 14px 16px;
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 16, 79, 0.08), transparent 42%),
    linear-gradient(180deg, #17171c, #101014);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), rgba(255, 16, 79, 0.05) 55%, transparent);
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 16, 79, 0.35);
  box-shadow: 0 16px 34px rgba(255, 16, 79, 0.12), 0 12px 28px rgba(0, 0, 0, 0.28);
}
.feature-ico {
  grid-area: ico;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--pink), #b40d3a);
  box-shadow: 0 8px 18px rgba(255, 16, 79, 0.28);
}
.feature-ico svg { width: 20px; height: 20px; }
.feature h3 {
  grid-area: title;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.feature p {
  grid-area: txt;
  margin: 0;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.45;
}

.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #151518;
  font-size: 13px;
  font-weight: 700;
}
.chip:hover { border-color: var(--pink); color: #fff; }

.app-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.app-intro h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.app-intro-actions .checklist { margin: 0 0 18px; }

.showcase {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(520px 180px at 50% 0%, rgba(255, 16, 79, 0.2), transparent 70%),
    linear-gradient(180deg, #141418, #0a0a0c);
  overflow: hidden;
}
.showcase-glow {
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 16, 79, 0.18), transparent 70%);
  pointer-events: none;
}
.showcase-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: clamp(260px, 38vw, 400px);
}
.shot {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.shot-focus {
  flex: 1.35 1 0;
  border-color: rgba(255, 16, 79, 0.35);
  box-shadow: 0 20px 44px rgba(255, 16, 79, 0.18), 0 16px 36px rgba(0, 0, 0, 0.4);
}
.shot:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 16, 79, 0.55);
  z-index: 2;
}
.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #050505;
}
.card-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.premium {
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(255, 16, 79, 0.22), transparent 60%),
    #0d0d10;
  border-block: 1px solid var(--line);
}
.premium-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.premium-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.checklist { list-style: none; display: grid; gap: 12px; margin: 22px 0 28px; }
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mute);
  line-height: 1.45;
}
.checklist i {
  flex: 0 0 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--pink);
  position: relative;
}
.checklist i::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer {
  padding: 36px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand img { height: 22px; width: auto; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: #fff; }

.mobile-dl {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 8, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mobile-dl.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-dl .btn { width: 100%; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .premium-grid, .app-intro { grid-template-columns: 1fr; }
  .showcase { padding: 14px; }
  .showcase-row { height: clamp(220px, 42vw, 320px); gap: 10px; }
  .hero {
    min-height: min(78vh, 720px);
    align-items: flex-end;
  }
  .hero-bg {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.28) 0%, rgba(7, 7, 8, 0.08) 26%, rgba(7, 7, 8, 0.35) 52%, rgba(7, 7, 8, 0.9) 82%, #070708 100%),
      url("./hero-mobile.jpg") center top / cover no-repeat;
  }
  .hero-content { padding: 88px 0 40px; }
}
@media (max-width: 720px) {
  .wrap { width: min(var(--w), calc(100% - 32px)); }
  .header-inner { gap: 12px; }
  .brand img { height: 34px; }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-bg {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.3) 0%, rgba(7, 7, 8, 0.06) 22%, rgba(7, 7, 8, 0.25) 48%, rgba(7, 7, 8, 0.78) 74%, #070708 100%),
      url("./hero-mobile.jpg") center top / cover no-repeat;
    transform-origin: center top;
    animation: hero-mobile-pan 18s ease-in-out infinite alternate;
  }
  .hero .wrap {
    width: 100%;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .hero-content {
    width: 100%;
    padding: 96px 0 calc(56px + env(safe-area-inset-bottom));
  }
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px); }
  .hero-lead {
    font-size: 15px;
    color: rgba(245, 245, 246, 0.86);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .feature {
    padding: 14px 12px;
    border-radius: 12px;
    row-gap: 6px;
    column-gap: 10px;
  }
  .feature-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .feature-ico svg { width: 17px; height: 17px; }
  .feature h3 { font-size: 13px; }
  .feature p { font-size: 11.5px; line-height: 1.4; }
  .showcase {
    padding: 10px;
    margin: 0 -4px;
  }
  .showcase-row {
    height: 210px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .shot {
    flex: 0 0 58%;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .shot-focus { flex: 0 0 68%; }
  .card-label { font-size: 11px; left: 8px; bottom: 8px; padding: 4px 8px; }
  .mobile-dl { display: block; }
  .header-cta { font-size: 12px; padding: 0 12px; }
}

@keyframes hero-mobile-pan {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1%, 0.8%, 0); }
}
