:root {
  color-scheme: dark;
  --background: #08090c;
  --surface: #111318;
  --surface-light: #191c22;
  --accent: #ff2d55;
  --accent-light: #ff5d7a;
  --text: #f7f7f8;
  --muted: #9a9da7;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 96px);
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--background);
  background-size: 72px 72px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(to top, rgba(255, 45, 85, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow--one {
  top: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: rgba(255, 45, 85, 0.18);
}

.glow--two {
  bottom: -30%;
  left: 20%;
  width: 440px;
  height: 440px;
  background: rgba(115, 23, 52, 0.18);
}

.navbar {
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__logo {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 45, 85, 0.2);
}

.navbar__link {
  padding: 10px 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d9dae0;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.navbar__link:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero__content {
  display: grid;
  width: 100%;
  max-width: 1240px;
  flex: 1;
  margin: 0 auto;
  padding: clamp(32px, 6vh, 72px) 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 93, 122, 0.22);
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: rgba(255, 45, 85, 0.07);
  color: #ff8ca2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 45, 85, 0.12);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6.3vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 span {
  color: var(--accent-light);
}

.hero__description {
  max-width: 590px;
  margin: 28px 0 34px;
  color: #bbbcc3;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  background: var(--accent);
  box-shadow: 0 12px 32px rgba(255, 45, 85, 0.28);
  color: #fff;
}

.button--primary:hover {
  background: #ff4266;
  box-shadow: 0 16px 38px rgba(255, 45, 85, 0.38);
  transform: translateY(-2px);
}

.hero__note {
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.logo-card {
  position: relative;
  width: min(30vw, 355px);
  min-width: 270px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28%;
  box-shadow:
    0 45px 80px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(255, 45, 85, 0.2);
  transform: rotate(3deg);
  animation: float 5s ease-in-out infinite;
}

.logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-card__shine {
  position: absolute;
  z-index: 1;
  top: -30%;
  left: -65%;
  width: 55%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(25deg);
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit--outer {
  width: 510px;
  height: 510px;
}

.orbit--inner {
  width: 420px;
  height: 420px;
  border-color: rgba(255, 45, 85, 0.13);
}

.floating-pill {
  position: absolute;
  display: flex;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: rgba(17, 19, 24, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  color: #d9dae0;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.floating-pill--top {
  top: 15%;
  right: -2%;
}

.floating-pill--bottom {
  bottom: 13%;
  left: -2%;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37d67a;
  box-shadow: 0 0 0 5px rgba(55, 214, 122, 0.11);
}

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 8px;
  text-indent: 1px;
}

.hero__footer {
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid var(--border);
  align-items: center;
  gap: 17px;
  color: #777a84;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #454750;
}

@keyframes float {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}

@keyframes shine {
  0%, 45% { left: -65%; }
  70%, 100% { left: 125%; }
}

@media (max-width: 900px) {
  .hero__content {
    padding-top: 50px;
    padding-bottom: 50px;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 420px;
  }

  .logo-card {
    width: min(58vw, 330px);
  }

  .floating-pill--top { right: 12%; }
  .floating-pill--bottom { left: 12%; }
}

@media (max-width: 560px) {
  .hero {
    padding: 0 20px;
    background-size: 52px 52px;
  }

  .navbar {
    padding-top: 18px;
  }

  .navbar__link {
    padding: 9px 13px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .hero__description {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 13px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 355px;
  }

  .logo-card {
    width: min(68vw, 280px);
    min-width: 220px;
  }

  .orbit--outer { width: 360px; height: 360px; }
  .orbit--inner { width: 300px; height: 300px; }

  .floating-pill {
    padding: 10px 13px;
    font-size: 10px;
  }

  .floating-pill--top { top: 8%; right: 0; }
  .floating-pill--bottom { bottom: 7%; left: 0; }

  .hero__footer {
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared navigation */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__privacy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.navbar__privacy:hover,
.navbar__privacy[aria-current="page"] {
  color: var(--text);
}

/* Privacy policy */
.privacy-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 3%, rgba(255, 45, 85, 0.12), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--background);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.privacy-navbar {
  padding-right: clamp(24px, 6vw, 96px);
  padding-left: clamp(24px, 6vw, 96px);
}

.privacy-shell {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0 96px;
}

.privacy-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.privacy-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 9px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-kicker::before {
  width: 22px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.privacy-intro h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
}

.privacy-intro__lead {
  max-width: 700px;
  margin: 0;
  color: #bbbcc3;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.privacy-meta {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #5d606a;
}

.policy-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(17, 19, 24, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.policy-section {
  padding: 34px clamp(24px, 5vw, 48px);
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  letter-spacing: -0.035em;
}

.policy-section h3 {
  margin: 24px 0 8px;
  color: #e5e5e8;
  font-size: 15px;
}

.policy-section p,
.policy-section li {
  color: #adafb7;
  font-size: 15px;
  line-height: 1.75;
}

.policy-section p {
  margin: 0 0 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 9px;
}

.policy-section strong {
  color: #e5e5e8;
  font-weight: 600;
}

.policy-section a {
  color: #ff8ca2;
  text-decoration: underline;
  text-decoration-color: rgba(255, 140, 162, 0.35);
  text-underline-offset: 3px;
}

.policy-note {
  margin-top: 20px !important;
  padding: 15px 17px;
  border: 1px solid rgba(255, 93, 122, 0.16);
  border-radius: 12px;
  background: rgba(255, 45, 85, 0.06);
}

.privacy-footer {
  display: flex;
  padding: 28px 0 0;
  justify-content: space-between;
  gap: 20px;
  color: #777a84;
  font-size: 12px;
}

.privacy-footer a:hover {
  color: var(--text);
}

@media (max-width: 560px) {
  .navbar__actions {
    gap: 12px;
  }

  .navbar__privacy {
    display: none;
  }

  .privacy-navbar {
    padding-right: 20px;
    padding-left: 20px;
  }

  .privacy-navbar .navbar__privacy {
    display: inline;
  }

  .privacy-shell {
    width: min(100% - 40px, 900px);
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .privacy-intro {
    margin-bottom: 32px;
  }

  .privacy-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-meta i {
    display: none;
  }

  .policy-card {
    border-radius: 18px;
  }

  .policy-section {
    padding: 27px 21px;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
