:root {
  color-scheme: dark;
  --bg: #070708;
  --panel: #151518;
  --panel-soft: #202026;
  --line: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.42);
  --gold: #ffc052;
  --orange: #ff8b22;
  --pink: #ff4f8e;
  --cyan: #43e1df;
  --green: #9cf24c;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 5%, rgba(67, 225, 223, 0.16), transparent 30rem),
    radial-gradient(circle at 8% 10%, rgba(255, 139, 34, 0.17), transparent 26rem),
    linear-gradient(180deg, #0c0d0e 0%, var(--bg) 52%, #030303 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow: 0 38px 130px rgba(255, 192, 82, 0.16), 0 30px 110px rgba(0, 0, 0, 0.55);
  }
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.nav-pill {
  color: #1c1304;
  background: var(--gold);
  border-radius: 999px;
}

.nav-pill:hover {
  color: #1c1304;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  max-width: 1220px;
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.hero-copy {
  max-width: 670px;
  animation: pageReveal 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7.4vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-text,
.split-copy p,
.cta-section p,
.legal-page p,
.support-card p,
.support-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 1000;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 139, 34, 0.18);
}

.button.primary {
  color: #201303;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.trust-row {
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.trust-row span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-art {
  position: relative;
  min-height: 620px;
  animation: pageReveal 760ms 90ms ease both;
}

.phone-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 500px);
  aspect-ratio: 864 / 975;
  margin-left: auto;
  background:
    radial-gradient(circle at 50% 25%, rgba(156, 242, 76, 0.18), transparent 18rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 44px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.55);
  animation: gentleGlow 6s ease-in-out infinite;
}

.phone-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 16px 18px;
  background: rgba(18, 18, 21, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  animation: softFloat 5.2s ease-in-out infinite;
}

.floating-stat strong {
  font-size: 36px;
  line-height: 1;
}

.floating-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.floating-stat.one {
  top: 9%;
  left: 0;
}

.floating-stat.two {
  right: -8px;
  bottom: 16%;
  animation-delay: -2.4s;
}

.feature-band,
.widgets-section,
.split-section,
.cta-section,
.legal-page,
.support-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 192, 82, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  background: rgba(255, 192, 82, 0.16);
  border-radius: 15px;
  font-size: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.visual-panel {
  overflow: hidden;
  max-height: 720px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 40px;
}

.visual-panel img {
  width: 100%;
}

.split-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 15px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 900;
}

.widget-carousel {
  position: relative;
}

.mood-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 18px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 192, 82, 0.55) rgba(255, 255, 255, 0.08);
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
}

.mood-strip.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  touch-action: pan-y;
  user-select: none;
}

.mood-strip::-webkit-scrollbar {
  height: 10px;
}

.mood-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.mood-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 999px;
}

.mood-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(260px, 28vw, 360px);
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  scroll-snap-align: start;
  transition: transform 220ms ease, filter 220ms ease;
  -webkit-user-select: none;
  user-select: none;
}

.mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0.72;
  pointer-events: none;
}

.mood-card:hover {
  transform: translateY(-6px) scale(1.01);
  filter: saturate(1.08);
}

.mood-card img {
  width: min(210px, 78%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
  transition: transform 220ms ease;
  z-index: 1;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.mood-card:hover img {
  transform: translateY(-4px) scale(1.04);
}

.mood-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 1000;
  z-index: 2;
}

.mood-card.orange {
  background: linear-gradient(145deg, #ff7b00, #ffc548);
}

.mood-card.blue {
  background: linear-gradient(145deg, #2563eb, #51e6ff);
}

.mood-card.green {
  background: linear-gradient(145deg, #0e8f63, #b8ff3d);
}

.mood-card.red {
  background: linear-gradient(145deg, #870909, #ff8c1a);
}

.mood-card.violet {
  background: linear-gradient(145deg, #5b21b6, #fb4fa0);
}

.mood-card.frost {
  background: linear-gradient(145deg, #134e6f, #a5f3fc);
}

.mood-card.night {
  background: linear-gradient(145deg, #15162a, #5d67ff);
}

.mood-card.lime {
  background: linear-gradient(145deg, #16803d, #dbff4a);
}

.mood-card.plum {
  background: linear-gradient(145deg, #2e1065, #c084fc);
}

.mood-card.coral {
  background: linear-gradient(145deg, #be123c, #ffb86b);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--text);
  background: rgba(16, 16, 18, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  background: rgba(255, 192, 82, 0.95);
  color: #1c1304;
  transform: translateY(-50%) scale(1.06);
}

.carousel-button.previous {
  left: -18px;
}

.carousel-button.next {
  right: -18px;
}

.cta-section {
  text-align: center;
}

.cta-section img {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 28px;
}

.cta-section p {
  max-width: 660px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 20px 42px;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.legal-page,
.support-page {
  max-width: 940px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page a {
  color: var(--gold);
}

.support-card {
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 36px;
}

.support-card img {
  width: 132px;
  margin-bottom: 26px;
}

.support-card h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.support-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.support-grid h2 {
  font-size: 22px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: auto;
  }

  .phone-card {
    margin: 0 auto;
  }

  .floating-stat {
    display: none;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-text,
  .split-copy p,
  .cta-section p,
  .legal-page p,
  .support-card p,
  .support-grid p {
    font-size: 16px;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .icon {
    margin-bottom: 22px;
  }

  .mood-card {
    flex-basis: min(82vw, 330px);
    min-height: 230px;
  }

  .reveal {
    transform: translateY(32px) scale(0.98);
    transition-duration: 720ms;
  }

  .carousel-button {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
