:root {
  color-scheme: dark;
  --ink: #fff7ef;
  --muted: rgba(255, 247, 239, 0.72);
  --quiet: rgba(255, 247, 239, 0.52);
  --red: #ef352c;
  --green: #9be2b1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #020202;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(100vw, 390px);
  min-height: 100vh;
  overflow: hidden;
  background: #030303;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

.photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #030303;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 0%;
  filter: saturate(0.84) contrast(1.08) brightness(0.78);
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.14) 26%, rgba(0,0,0,0.58) 52%, rgba(3,3,3,0.97) 73%, #030303 100%),
    radial-gradient(circle at 56% 31%, rgba(239, 53, 44, 0.3), transparent 14rem),
    linear-gradient(90deg, rgba(0,0,0,0.54), transparent 45%, rgba(0,0,0,0.18));
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 247, 239, 0.84);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 0;
}

.record-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 53, 44, 0.95);
}

.chapter {
  color: rgba(255, 247, 239, 0.56);
  white-space: nowrap;
}

.story-space {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 345px;
}

.chat {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 18px;
  transform: rotate(-1.2deg);
}

.bubble {
  position: relative;
  margin-left: auto;
  max-width: 292px;
  padding: 13px 14px 12px;
  border-radius: 18px 18px 5px 18px;
  background: rgba(18, 19, 22, 0.82);
  box-shadow:
    0 22px 58px rgba(0,0,0,0.66),
    0 0 34px rgba(239, 53, 44, 0.18);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.11);
}

.bubble-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: rgba(255, 247, 239, 0.96);
  font-size: 12px;
  font-weight: 760;
}

.bubble-time {
  color: rgba(255, 247, 239, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.bubble-text {
  color: rgba(255, 247, 239, 0.92);
  font-size: 15px;
  line-height: 1.22;
  font-weight: 640;
}

.warning {
  position: absolute;
  left: 0;
  top: -31px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffe8e6;
  background: linear-gradient(180deg, rgba(239, 53, 44, 0.92), rgba(128, 17, 18, 0.92));
  box-shadow: 0 14px 34px rgba(239, 53, 44, 0.28);
  font-size: 10px;
  line-height: 1;
  font-weight: 860;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copy {
  position: relative;
  z-index: 3;
  padding-top: 2px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: rgba(255, 247, 239, 0.7);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(239, 53, 44, 0.86);
}

h1 {
  margin: 0;
  max-width: 350px;
  color: var(--ink);
  font-size: clamp(41px, 11.2vw, 47px);
  line-height: 0.94;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.72);
}

.break {
  display: block;
  height: 12px;
}

.money,
.telegram {
  color: #ff6157;
}

.sub {
  margin: 13px 0 0;
  color: rgba(255, 247, 239, 0.8);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 560;
  text-shadow: 0 3px 18px rgba(0,0,0,0.7);
}

.bottom {
  position: relative;
  z-index: 3;
  margin-top: 17px;
  display: grid;
  gap: 12px;
}

.trust {
  display: grid;
  gap: 7px;
  color: rgba(255, 247, 239, 0.84);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 620;
}

.trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-item {
  min-height: 46px;
  padding: 10px 7px;
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
  color: rgba(255, 247, 239, 0.88);
  text-align: center;
  font-size: 11px;
  line-height: 1.14;
}

.proof-item strong {
  display: block;
  color: rgba(255, 247, 239, 0.94);
  font-size: 12px;
  line-height: 1.12;
  font-weight: 720;
}

.cta {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff7f4;
  background:
    linear-gradient(180deg, #ff4138 0%, #c12022 50%, #630b0d 100%);
  box-shadow:
    0 20px 54px rgba(239, 53, 44, 0.34),
    inset 0 1px rgba(255,255,255,0.22);
  font-size: 13px;
  font-weight: 890;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta:focus-visible {
  outline: 2px solid #fff7ef;
  outline-offset: 3px;
}

.below {
  padding: 28px 20px 36px;
  background: #030303;
}

.below h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 820;
  letter-spacing: 0;
}

.below p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.rules {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.rule {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.rule strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.rule span {
  color: rgba(255, 247, 239, 0.64);
  font-size: 13px;
  line-height: 1.35;
}

.cta-bottom {
  margin-top: 4px;
}

@media (min-width: 720px) {
  .phone {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 32px 120px rgba(0,0,0,0.7);
  }
}
