/* ============================================================
   reveu.me — Coming Soon
   Brand tokens
   ============================================================ */
:root {
  --bg:            #0b0a1a;
  --bg-soft:       #12102a;
  --ink:           #f5f4ff;
  --ink-muted:     #b6b2d4;
  --ink-faint:     #807aa0;

  --coral:         #ff7a59;
  --pink:          #ff4d8d;
  --violet:        #a855f7;
  --gold:          #ffc24b;

  --grad:          linear-gradient(100deg, #ff7a59 0%, #ff4d8d 45%, #a855f7 100%);

  --card:          rgba(255, 255, 255, 0.04);
  --card-border:   rgba(255, 255, 255, 0.10);
  --radius:        20px;
  --radius-lg:     28px;

  --shadow:        0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --maxw:          1120px;

  --font-display:  "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:     "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ============================================================
   Animated aurora background
   ============================================================ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(255, 77, 141, 0.16), transparent 60%),
    var(--bg);
}

.blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.blob--1 { top: -14%; left: -8%;  background: var(--coral);  animation: drift1 18s ease-in-out infinite; }
.blob--2 { top: 6%;  right: -12%; background: var(--violet); animation: drift2 22s ease-in-out infinite; }
.blob--3 { bottom: -20%; left: 30%; background: var(--pink); animation: drift3 26s ease-in-out infinite; opacity: 0.4; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-7%, 5%) scale(1.12); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%, -6%) scale(1.05); } }

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-grid; place-items: center; filter: drop-shadow(0 4px 12px rgba(255, 77, 141, 0.4)); }
.brand__mark svg { animation: spin-slow 14s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand__tld {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 8px 14px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--card);
  backdrop-filter: blur(8px);
}
.header-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #36e08b;
  box-shadow: 0 0 0 0 rgba(54, 224, 139, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(54, 224, 139, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(54, 224, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 224, 139, 0); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 28px 40px;
  position: relative;
}
.hero__inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 22px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 28px;
}

/* Stars motif */
.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 36px;
  font-size: 1.4rem;
  color: var(--gold);
}
.stars .star {
  opacity: 0;
  transform: translateY(6px) scale(0.6);
  animation: pop 0.5s cubic-bezier(.2,.9,.3,1.4) forwards;
}
.stars .star:nth-child(1) { animation-delay: 0.1s; }
.stars .star:nth-child(2) { animation-delay: 0.2s; }
.stars .star:nth-child(3) { animation-delay: 0.3s; }
.stars .star:nth-child(4) { animation-delay: 0.4s; }
.stars .star:nth-child(5) { animation-delay: 0.5s; }
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }
.stars__label {
  margin-left: 12px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-family: var(--font-body);
}

/* Notify form */
.notify { max-width: 520px; }
.notify__field {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.notify__field:focus-within {
  border-color: rgba(255, 122, 89, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 77, 141, 0.12);
}
.notify input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  padding: 12px 18px;
  font-family: var(--font-body);
}
.notify input::placeholder { color: var(--ink-faint); }
.notify input:focus { outline: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.2s;
}
.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 24px -8px rgba(255, 77, 141, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--primary:active { transform: translateY(0); }

.notify__hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding-left: 6px;
  transition: color 0.2s;
}
.notify__hint.is-error { color: #ff8095; }
.notify__hint.is-success { color: #4be1a0; }

/* Floating review cards */
.float-cards { position: absolute; inset: 0; pointer-events: none; }
.rcard {
  position: absolute;
  width: 240px;
  padding: 18px 20px;
  background: rgba(20, 16, 42, 0.7);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.rcard__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 8px; }
.rcard p { font-size: 0.92rem; color: var(--ink); margin-bottom: 10px; }
.rcard__who { font-size: 0.8rem; color: var(--ink-faint); }
.rcard--a { top: 40px; right: -10px; animation: floaty 7s ease-in-out infinite; }
.rcard--b { bottom: 40px; right: 90px; animation: floaty 9s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-16px) rotate(1.5deg); } }

/* ============================================================
   "More products" section
   ============================================================ */
.more {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 56px 28px 0;
  border-top: 1px solid var(--card-border);
}
.more__kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.more__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 520px;
}
.more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ptile {
  position: relative;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s;
}
.ptile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 89, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.ptile__icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 1.2rem;
  color: #fff;
  background: var(--grad);
  margin-bottom: 16px;
}
.ptile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.ptile p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 16px; }
.ptile__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 5px 10px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
}
.ptile__tag--soon {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  max-width: var(--maxw);
  margin: 72px auto 0;
  padding: 32px 28px 40px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-footer__brand p { font-size: 0.84rem; color: var(--ink-faint); margin-top: 4px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.9rem; }
.site-footer__links a { color: var(--ink-muted); transition: color 0.2s; }
.site-footer__links a:hover { color: var(--ink); }
.site-footer__links a[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .float-cards { display: none; }
  .more__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header-badge { display: none; }
  .hero { padding-top: 40px; }
  .notify__field { flex-direction: column; border-radius: var(--radius); }
  .btn--primary { justify-content: center; }
  .stars { flex-wrap: wrap; }
}

/* Reveal-on-load + reduced motion */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .stars .star { opacity: 1; transform: none; }
}
