:root {
  --bg: #170a08;
  --bg2: #231007;
  --card: #2a1310;
  --card-border: #3f1f16;
  --red: #ff4757;
  --red-deep: #e0243a;
  --amber: #ffb84d;
  --text: #fbe9e4;
  --text-dim: #d1a89f;
  --text-mute: #8f6a62;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: radial-gradient(ellipse at top, var(--bg2), var(--bg) 60%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

.agebar {
  background: #0a0504;
  color: var(--text-mute);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-bottom: 1px solid #331912;
}
.agebar b {
  color: var(--amber);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(255, 71, 87, 0.22),
    transparent 65%
  );
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 71, 87, 0.12);
  border: 1px solid rgba(255, 71, 87, 0.35);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
h1.headline {
  font-size: clamp(32px, 5.6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 840px;
  margin: 0 auto 20px;
}
h1.headline .accent {
  background: linear-gradient(90deg, var(--red), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub {
  font-size: clamp(16px, 2.1vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 34px;
  font-weight: 500;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 38px;
  border-radius: 14px;
  box-shadow: 0 14px 34px -10px rgba(224, 36, 58, 0.55);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(224, 36, 58, 0.65);
}
.cta.big {
  font-size: 19px;
  padding: 20px 44px;
}
.microcopy {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 14px;
}

.trustrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}
.trustrow span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.section {
  padding: 54px 0;
}
.section-title {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 15px;
}

/* Map-style radar visual */
.radar {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 71, 87, 0.14),
    transparent 70%
  );
  border: 1px solid var(--card-border);
}
.radar .ring {
  position: absolute;
  border: 1px solid rgba(255, 71, 87, 0.25);
  border-radius: 50%;
}
.radar .r1 {
  inset: 20px;
}
.radar .r2 {
  inset: 60px;
}
.radar .r3 {
  inset: 100px;
}
.radar .sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 71, 87, 0.5),
    transparent 40%
  );
  animation: spin 3.5s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.radar .you {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
}
.radar .ping {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.ping1 {
  top: 30%;
  left: 60%;
}
.ping2 {
  top: 65%;
  left: 35%;
}
.ping3 {
  top: 45%;
  left: 78%;
}
.ping4 {
  top: 72%;
  left: 68%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.pcard {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.pcard .photo {
  aspect-ratio: 6/5;
  position: relative;
  filter: blur(2.5px) saturate(1.05);
  overflow: hidden;
}
.pcard .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pcard .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 8, 0) 35%,
    rgba(10, 5, 8, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.online-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #0a0504cc;
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}
.lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  opacity: 0.9;
}
.pcard .info {
  padding: 14px 16px 16px;
}
.pcard .name {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.pcard .dist {
  color: var(--text-mute);
  font-weight: 500;
  font-size: 12.5px;
}
.pcard .msg {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
  filter: blur(3px);
  user-select: none;
  line-height: 1.4;
}

.grid-cta {
  text-align: center;
  margin-top: 34px;
}

.props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .props {
    grid-template-columns: 1fr;
  }
}
.prop {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 26px 22px;
}
.prop .icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.prop h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}
.prop p {
  font-size: 13.5px;
  color: var(--text-dim);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 700px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}
.quote {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 24px;
  font-size: 14px;
  color: var(--text-dim);
}
.quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.quote .stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 10px;
}
.quote .who {
  margin-top: 12px;
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}

.final {
  text-align: center;
  padding: 60px 0 70px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 71, 87, 0.08)
  );
  border-top: 1px solid var(--card-border);
}
.final h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 14px;
}
.final p {
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 30px;
  font-size: 15px;
}

footer {
  border-top: 1px solid var(--card-border);
  padding: 30px 0 46px;
  font-size: 11.5px;
  color: var(--text-mute);
  line-height: 1.7;
}
footer .legal {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
footer a {
  color: var(--text-dim);
  text-decoration: underline;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.offer-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 4, 0.82);
  backdrop-filter: blur(6px);
}
.offer-modal__dialog {
  position: relative;
  width: min(100%, 440px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 36px) clamp(22px, 4vw, 32px)
    clamp(26px, 4vw, 32px);
  box-shadow: 0 28px 80px -20px rgba(0, 0, 0, 0.65);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}
.offer-modal.is-open .offer-modal__dialog {
  transform: translateY(0) scale(1);
}
.offer-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: rgba(10, 5, 4, 0.55);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}
.offer-modal__close:hover {
  color: var(--text);
  border-color: rgba(255, 71, 87, 0.45);
}
.offer-modal__close:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.offer-modal__stage {
  display: none;
  text-align: center;
}
.offer-modal__stage.is-active {
  display: block;
}
.offer-modal__radar {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 71, 87, 0.16),
    transparent 70%
  );
  border: 1px solid var(--card-border);
}
.offer-modal__radar .ring {
  position: absolute;
  border: 1px solid rgba(255, 71, 87, 0.25);
  border-radius: 50%;
}
.offer-modal__radar .r1 {
  inset: 16px;
}
.offer-modal__radar .r2 {
  inset: 44px;
}
.offer-modal__radar .r3 {
  inset: 72px;
}
.offer-modal__radar .sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 71, 87, 0.55),
    transparent 42%
  );
  animation: spin 2.8s linear infinite;
}
.offer-modal__radar .you {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
  z-index: 2;
}
.offer-modal__radar .ping {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: modalPing 1.4s ease-in-out infinite;
}
.offer-modal__radar .ping1 {
  top: 28%;
  left: 62%;
  animation-delay: 0s;
}
.offer-modal__radar .ping2 {
  top: 64%;
  left: 34%;
  animation-delay: 0.35s;
}
.offer-modal__radar .ping3 {
  top: 44%;
  left: 76%;
  animation-delay: 0.7s;
}
@keyframes modalPing {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
.offer-modal__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 3.6vw, 22px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.offer-modal__status {
  font-size: 14px;
  color: var(--text-dim);
  min-height: 42px;
  transition: opacity 0.2s ease;
}
.offer-modal__status.is-fading {
  opacity: 0.35;
}
.offer-modal__progress {
  margin-top: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.offer-modal__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--amber));
  border-radius: 999px;
  transition: width 0.35s ease;
}
.offer-modal__count {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.offer-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offer-modal__text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 22px;
}
.offer-modal__form {
  text-align: left;
}
.offer-modal__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.offer-modal__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: #0a0504;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.offer-modal__input::placeholder {
  color: var(--text-mute);
}
.offer-modal__input:focus {
  outline: none;
  border-color: rgba(255, 71, 87, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}
.offer-modal__submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 24px;
}
.offer-modal__fine {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--text-mute);
  text-align: center;
}
.offer-modal__success .offer-modal__title {
  margin-bottom: 12px;
}
.offer-modal__success p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .offer-modal__radar .sweep {
    animation: none;
  }
  .offer-modal__radar .ping {
    animation: none;
    opacity: 0.8;
  }
  .offer-modal__dialog {
    transition: none;
  }
  .offer-modal {
    transition: none;
  }
}
