:root {
  --blush:    #f7c5d0;
  --rose:     #e8849a;
  --hot:      #d63f6b;
  --cream:    #fdf6f0;
  --gold:     #c9a84c;
  --charcoal: #1a1a2e;
  --smoke:    #3d3d5c;
  --white:    #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='20' font-size='20'>💅</text></svg>") 12 12, auto;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: .5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(253,246,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,130,150,0.2);
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--hot);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--hot); }

.nav-badge {
  background: var(--hot);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 3rem;
  padding-top: 5rem;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle.c1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(247,197,208,0.45) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: drift 8s ease-in-out infinite alternate;
}
.hero-bg-circle.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  bottom: 50px; left: -60px;
  animation: drift 11s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.05); }
}

.hero-text { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--hot);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

h1 em {
  font-style: italic;
  color: var(--hot);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b5245e;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

.btn-primary {
  background: var(--hot);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(214,63,107,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214,63,107,0.45);
}

.btn-ghost {
  color: #b5245e;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 0.7rem; }

/* ── HERO CARD ── */
.hero-card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeLeft 0.8s 0.4s forwards;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.stock-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 340px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.12), 0 4px 16px rgba(214,63,107,0.08);
  position: relative;
}

.stock-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(247,197,208,0.6), rgba(201,168,76,0.2), transparent);
  z-index: -1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.ticker-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
}

.ticker-sub {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.15rem;
}

.vibe-badge {
  background: #fff0f3;
  border: 1px solid var(--blush);
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.card-change {
  font-size: 0.85rem;
  color: #2ecc71;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* Mini sparkline */
.sparkline {
  width: 100%;
  height: 60px;
  margin-bottom: 1.2rem;
}

.card-serena-quote {
  background: #fdf6f0;
  border-left: 3px solid var(--rose);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--smoke);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.card-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.meter-item label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.3rem;
}

.meter-bar {
  height: 4px;
  background: #f0e8ee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.meter-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose), var(--hot));
}

.meter-val {
  font-size: 0.72rem;
  color: var(--smoke);
  font-weight: 500;
}

/* floating pill */
.float-pill {
  position: absolute;
  background: var(--charcoal);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.float-pill.fp1 {
  top: -20px; left: -30px;
  animation: bob 3.5s ease-in-out infinite;
}

.float-pill.fp2 {
  bottom: -18px; right: -20px;
  animation: bob 4.2s 0.8s ease-in-out infinite;
}

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

/* ── FEATURES ── */
.features {
  padding: 7rem 3rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 160px;
  background: var(--cream);
  border-radius: 0 0 50% 50%;
}

.section-kicker {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--blush); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  transition: background 0.3s, transform 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ── TICKER TAPE ── */
.ticker-tape {
  background: var(--hot);
  color: white;
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-tape.ticker-dark {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ticker-inner {
  display: inline-block;
  animation: tape 28s linear infinite;
}

.ticker-inner span {
  margin: 0 3rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@keyframes tape {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 3rem;
  background: var(--cream);
}

.testimonials .section-title { color: var(--charcoal); }
.testimonials .section-title em { color: var(--hot); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.test-card {
  background: white;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26,26,46,0.07);
  position: relative;
}

.test-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--blush);
  position: absolute;
  top: -0.5rem;
  left: 1.2rem;
  line-height: 1;
}

.test-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--smoke);
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
}

.test-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--hot);
  letter-spacing: 0.06em;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.4);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--rose);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose); }

.footer-disclaimer {
  font-size: 0.72rem;
  max-width: 400px;
  text-align: right;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
  .hero-card-wrap { display: none; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .features, .testimonials { padding: 5rem 1.5rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-disclaimer { text-align: center; }
}
