/* ============================================================
   Urgent Rishta — Luxury landing (venture-startup meets Pakistani
   wedding). Self-contained: its own tokens so the app pages are
   untouched. Palette is the brief's, exactly.
   ============================================================ */
:root {
  --pink: #FF2D55;
  --pink-light: #FF6B8A;
  --bg: #FFF8FA;
  --bg-alt: #FFF5F7;
  --white: #FFFFFF;
  --dark: #111827;
  --muted: #6B7280;
  --border: #F1F5F9;
  --grad: linear-gradient(135deg, #FF2D55 0%, #FF6B8A 100%);
  --grad-soft: linear-gradient(135deg, #FFF1F4 0%, #FFE8EF 100%);
  --shadow-card: 0 10px 40px rgba(17,24,39,.05);
  --shadow-float: 0 20px 60px rgba(17,24,39,.08);
  --shadow-btn: 0 20px 40px rgba(255,45,85,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--dark);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.55;
}
h1, h2, h3, h4, .serif { font-family: "Fraunces", Georgia, serif; letter-spacing: -.02em; color: var(--dark); }
.text-muted-2 { color: var(--muted); }
a { text-decoration: none; }

.container-lux { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- Buttons ---------- */
.btn-lux {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 56px; padding: 0 2rem; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 1rem; background: var(--grad); color: #fff;
  box-shadow: var(--shadow-btn); transition: transform .16s ease, box-shadow .16s ease;
}
.btn-lux:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 26px 50px rgba(255,45,85,.32); }
.btn-lux:active { transform: translateY(0); }
.btn-lux-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 56px; padding: 0 2rem; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: 1rem; background: var(--white); color: var(--pink);
  border: 1.5px solid #FFD3DD; transition: border-color .16s, transform .16s, box-shadow .16s;
}
.btn-lux-ghost:hover { color: var(--pink); border-color: var(--pink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,45,85,.12); }
.btn-sm-lux { height: 44px; padding: 0 1.3rem; font-size: .92rem; }

/* ---------- Header ---------- */
.lux-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,250,.8); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.lux-header .inner { display: flex; align-items: center; height: 76px; }
.lux-brand { display: inline-flex; align-items: center; gap: .55rem; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.4rem; color: var(--dark); }
.lux-brand .mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; color: #fff; box-shadow: 0 6px 16px -6px rgba(255,45,85,.5); }
.lux-brand .b { color: var(--pink); }
.lux-nav { display: flex; gap: .3rem; margin: 0 auto; }
.lux-nav a { color: var(--dark); font-weight: 600; font-size: .95rem; padding: .5rem .9rem; border-radius: 10px; transition: background .15s, color .15s; }
.lux-nav a:hover { background: var(--grad-soft); color: var(--pink); }
.lux-nav a.active { color: var(--pink); }

/* ---------- Hero ---------- */
.lux-hero { position: relative; min-height: 750px; overflow: hidden; background:
  radial-gradient(60% 55% at 78% 18%, #FFE4EC 0%, rgba(255,244,247,0) 60%),
  radial-gradient(50% 60% at 8% 90%, #FFEDF2 0%, rgba(255,248,250,0) 55%),
  linear-gradient(160deg, #FFF8FA 0%, #FFFFFF 45%, #FFF3F6 100%);
}
/* floating petals + bokeh live in an SVG layer; these are the soft blur orbs */
.lux-bokeh { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; pointer-events: none; }
.lux-hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 40% 60%; gap: 2rem; align-items: center; min-height: 750px; padding: 3rem 0; }

.lux-pill { display: inline-flex; align-items: center; gap: .5rem; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1rem; font-size: .85rem; font-weight: 600; box-shadow: var(--shadow-card); }
.lux-pill i { color: var(--pink); }

.lux-h1 { font-size: 72px; font-weight: 800; line-height: 1.02; margin: 1.25rem 0 1.25rem; letter-spacing: -.03em; }
.lux-h1 .hl { color: var(--pink); }
.lux-sub { font-size: 1.2rem; color: var(--muted); max-width: 30rem; margin-bottom: 2rem; }

.lux-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.lux-trust span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }

/* Hero visual + photo slot */
.lux-hero-visual { position: relative; }
.lux-photo-slot {
  aspect-ratio: 4/3.4; border-radius: 32px; overflow: hidden; position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(255,255,255,0)),
    linear-gradient(160deg, #FFE9EF 0%, #FCEEF2 55%, #FFF6F8 100%);
  box-shadow: var(--shadow-float); border: 1px solid rgba(255,255,255,.7);
  display: grid; place-items: center; text-align: center;
}
.lux-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.lux-photo-hint { color: #C98CA0; padding: 2rem; }
.lux-photo-hint i { font-size: 3rem; display: block; margin-bottom: .75rem; opacity: .7; }

/* Glassmorphism floating cards */
.lux-glass {
  position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(20px);
  border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 1px solid rgba(255,255,255,.8);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .75rem;
}
.lux-glass .ic { width: 44px; height: 44px; border-radius: 13px; background: var(--grad-soft); color: var(--pink); display: grid; place-items: center; font-size: 1.3rem; flex: none; }
.lux-glass .big { font-size: 1.25rem; font-weight: 800; line-height: 1; font-family: "Fraunces", serif; }
.lux-glass .lbl { font-size: .74rem; color: var(--muted); }

/* ---------- Sections ---------- */
.sec { padding: 5.5rem 0; }
.sec-bg { background: var(--bg); }
.sec-white { background: var(--white); }
.sec-pink { background: var(--bg-alt); }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); }
.sec-title { font-size: 2.4rem; font-weight: 600; margin: .5rem 0 0; }
.sec-title-sm { font-size: 1.9rem; font-weight: 600; }

/* Stat band */
.lux-stat { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-card); }
.lux-stat .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem; flex: none; }
.lux-stat .num { font-size: 1.8rem; font-weight: 800; font-family: "Fraunces", serif; line-height: 1; }
.lux-stat .lbl { color: var(--muted); font-size: .88rem; }

/* Feature cards */
.lux-feature { background: var(--white); border-radius: 24px; box-shadow: var(--shadow-card); padding: 32px; text-align: center; height: 100%; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.lux-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.lux-feature .ic { width: 60px; height: 60px; border-radius: 18px; border: 2px solid #FFD3DD; color: var(--pink); display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 1.25rem; }
.lux-feature h5 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.lux-feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Member cards */
.lux-member { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; height: 100%; }
.lux-member:hover { transform: translateY(-8px); box-shadow: var(--shadow-float); }
.lux-member .photo { aspect-ratio: 4/5; border-radius: 24px 24px 0 0; overflow: hidden; position: relative; background: var(--grad); display: grid; place-items: center; }
.lux-member .photo img { width: 100%; height: 100%; object-fit: cover; }
.lux-member .photo .initial { color: #fff; font-family: "Fraunces", serif; font-size: 3rem; font-weight: 600; }
.lux-member .vtag { position: absolute; top: .7rem; left: .7rem; background: rgba(255,255,255,.95); color: #15884b; font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .3rem; }

/* Steps */
.lux-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.1rem; flex: none; box-shadow: 0 10px 24px -8px rgba(255,45,85,.5); }

/* Testimonials */
.lux-quote { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; height: 100%; box-shadow: var(--shadow-card); }
.lux-star { color: #F5B301; }

/* App panel */
.lux-app { background: var(--grad); color: #fff; border-radius: 28px; padding: 2.5rem; position: relative; overflow: hidden; height: 100%; }
.lux-app::after { content: "\F4D3"; font-family: "bootstrap-icons"; position: absolute; right: -20px; bottom: -30px; font-size: 10rem; opacity: .12; }

/* Plans */
.lux-plan { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 2rem; height: 100%; box-shadow: var(--shadow-card); position: relative; }
.lux-plan.popular { border: 2px solid var(--pink); box-shadow: var(--shadow-float); }
.lux-plan-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .74rem; font-weight: 700; padding: .3rem 1rem; border-radius: 999px; }
.lux-plan .price { font-family: "Fraunces", serif; font-size: 2rem; font-weight: 600; }
.lux-plan ul { list-style: none; padding: 0; margin: 1.25rem 0; }
.lux-plan li { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: .92rem; }
.lux-plan li i { color: #15884b; }

/* CTA band */
.lux-cta { background: var(--grad); color: #fff; padding: 3.5rem 0; }

/* Footer */
.lux-footer { background: var(--white); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.lux-footer a { color: var(--muted); font-size: .92rem; display: block; padding: .2rem 0; }
.lux-footer a:hover { color: var(--pink); }

/* Motion */
.rise { opacity: 0; transform: translateY(14px); animation: riseIn .6s ease forwards; }
@keyframes riseIn { to { opacity: 1; transform: none; } }
.float-anim { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes petalfall { 0% { transform: translateY(-40px) rotate(0); opacity: 0 } 10% { opacity: .7 } 100% { transform: translateY(760px) rotate(320deg); opacity: 0 } }

@media (prefers-reduced-motion: reduce) {
  .rise, .float-anim { animation: none; opacity: 1; transform: none; }
  .petal { display: none; }
}

/* Responsive */
@media (max-width: 991px) {
  .lux-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lux-h1 { font-size: 48px; }
  .lux-nav { display: none; }
  .sec { padding: 3.5rem 0; }
}
