/* ============================================================
   rap yoga — one-screen responsive landing
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100dvh;
  overflow: hidden;
  background: #e14892;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #3a0f22 0%, #1a0a12 65%, #0a0509 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 9, 0.55) 0%,
    rgba(10, 5, 9, 0.45) 45%,
    rgba(10, 5, 9, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, 92vw);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.6vh, 22px);
  padding: max(env(safe-area-inset-top), 14px) 0 max(env(safe-area-inset-bottom), 14px);
  text-align: center;
}

.hero-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(62px, 12vh, 104px);
  height: clamp(62px, 12vh, 104px);
  padding: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.hero-logo:hover,
.hero-logo:focus-visible {
  transform: scale(1.04);
}

.hero-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0a12;
  border: 3px solid #1a0a12;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  font-size: clamp(24px, 6vh, 46px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(18px, 4.6vh, 26px);
  }
}

.hero-desc {
  margin: 0;
  width: 100%;
  max-width: 46ch;
  align-self: center;
  font-size: clamp(13px, 2.1vh, 16.5px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

/* ---------------- Highlights ---------------- */

.highlights {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 4vw, 30px);
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: clamp(64px, 11vh, 88px);
}

.highlight-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  transition: transform 0.15s ease;
}

.highlight-link:hover,
.highlight-link:focus-visible {
  transform: translateY(-2px);
}

.highlight-ring {
  width: clamp(52px, 9vh, 74px);
  height: clamp(52px, 9vh, 74px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  background: linear-gradient(45deg, #ffdb7d 0%, #f75f36 22%, #ee2a7b 48%, #a13ee0 72%, #6228d7 100%);
}

.highlight--soon .highlight-ring {
  background: linear-gradient(45deg, #c9c9c9, #f2f2f2, #c9c9c9);
}

.highlight-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1a0a12;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1a0a12;
}

.highlight-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-fallback {
  font-size: clamp(16px, 3vh, 22px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.highlight-label {
  font-size: clamp(10.5px, 1.7vh, 12.5px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------------- CTA button ---------------- */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  gap: 9px;
  margin-top: clamp(8px, 2.4vh, 20px);
  padding: clamp(10px, 1.8vh, 15px) clamp(20px, 4vw, 34px);
  border-radius: 999px;
  background: #27a7e7;
  color: #fff;
  font-size: clamp(14px, 2vh, 17px);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(39, 167, 231, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cta-button:hover,
.cta-button:focus-visible {
  background-color: #2eb6fa;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(39, 167, 231, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

/* ---------------- Scam warning note (chat-message style) ---------------- */

.hero-note {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  width: 100%;
  max-width: 400px;
  margin-top: clamp(-2px, 0.4vh, 4px);
}

.hero-note-avatar {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.35);
}

.hero-note-bubble {
  flex: 0 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px 14px 14px 3px;
  padding: 7px 11px 8px;
  text-align: left;
}

.hero-note-name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #ff9fc7;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.hero-note-text {
  margin: 0;
  font-size: clamp(9.5px, 1.5vh, 11.5px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------------- Very short screens ---------------- */

@media (max-height: 560px) {
  .hero-content {
    gap: clamp(6px, 1.8vh, 14px);
  }
  .cta-button {
    margin-top: clamp(6px, 1.6vh, 14px);
  }
  .hero-note-text {
    font-size: 9px;
    line-height: 1.25;
  }
}

/* ---------------- Reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  .cta-button {
    transition: none;
  }
}
