@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --midnight: #120a1b;
  --deep-plum: #271233;
  --plum: #3a1b49;
  --coral: #ff5f6d;
  --coral-dark: #e84a5a;
  --orchid: #aa67f5;
  --orchid-soft: #eadcff;
  --blush: #ffd5d0;
  --canvas: #fffaf6;
  --ink: #211728;
  --muted: #756c7c;
  --line: rgba(58, 27, 73, 0.12);
  --surface: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(39, 18, 51, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 95, 109, 0.17), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgba(170, 103, 245, 0.16), transparent 28rem),
    var(--canvas);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(39, 18, 51, 0.16) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a { color: var(--coral-dark); text-decoration: none; }
a:hover { color: var(--orchid); }
button, input, textarea { font: inherit; }

nav {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.78);
  box-shadow: 0 12px 36px rgba(39, 18, 51, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-plum);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo:hover { color: var(--deep-plum); }

.logo::before {
  content: '∞';
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  font-size: 25px;
  background: linear-gradient(135deg, var(--coral), var(--orchid));
  box-shadow: 0 8px 20px rgba(255, 95, 109, 0.28);
}

.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.nav-links a {
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--deep-plum); background: rgba(255, 95, 109, 0.1); }

.lang-switch, .menu-toggle {
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--deep-plum);
  background: white;
  cursor: pointer;
  font-weight: 800;
}
.menu-toggle { display: none; font-size: 20px; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 690px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 95, 109, 0.2);
  border-radius: 999px;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--deep-plum);
  font-size: clamp(3.4rem, 7.2vw, 6.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.hero h1 em { display: block; color: var(--coral); font-family: 'Playfair Display', serif; letter-spacing: -0.045em; }
.hero-copy > p { max-width: 610px; margin-bottom: 32px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 0;
  border-radius: 17px;
  color: white !important;
  background: linear-gradient(135deg, var(--coral), var(--orchid));
  box-shadow: 0 14px 30px rgba(255, 95, 109, 0.28);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255, 95, 109, 0.34); }
.btn-secondary { color: var(--deep-plum) !important; border: 1px solid var(--line); background: white; box-shadow: none; }

.micro-proof { margin-top: 28px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; font-weight: 600; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; margin-left: -8px; display: grid; place-items: center;
  border: 3px solid var(--canvas); border-radius: 50%; color: white;
  background: linear-gradient(135deg, var(--coral), var(--orchid)); font-size: 11px; font-weight: 800;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.orbit { position: absolute; width: 530px; height: 530px; border: 1px solid rgba(170, 103, 245, 0.18); border-radius: 50%; animation: breathe 6s ease-in-out infinite; }
.orbit::before, .orbit::after { content: ''; position: absolute; border-radius: 50%; }
.orbit::before { inset: 64px; border: 1px dashed rgba(255, 95, 109, 0.22); }
.orbit::after { inset: 130px; background: radial-gradient(circle, rgba(255, 213, 208, 0.9), rgba(234, 220, 255, 0.35) 68%, transparent 69%); }

.phone {
  position: relative; z-index: 2; width: 285px; height: 570px; padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9); border-radius: 46px;
  background: var(--midnight); box-shadow: 0 35px 80px rgba(39, 18, 51, 0.28); transform: rotate(4deg);
}
.phone-screen { height: 100%; overflow: hidden; border-radius: 37px; background: linear-gradient(180deg, #392047, var(--midnight)); }
.phone-top { padding: 25px 22px 14px; display: flex; justify-content: space-between; color: white; font-size: 18px; font-weight: 800; }
.phone-top span:last-child { color: var(--coral); }
.profile-card {
  height: 405px; margin: 0 15px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 30px; color: white;
  background: linear-gradient(to top, rgba(18, 10, 27, 0.96), rgba(18, 10, 27, 0.05) 58%), radial-gradient(circle at 48% 24%, #ffd5d0 0 18%, transparent 19%), linear-gradient(145deg, #ff9b9d, #a86bf5 72%);
}
.profile-card::before { content: 'L'; align-self: center; margin: auto 0; color: rgba(255,255,255,.92); font-size: 7rem; font-weight: 800; line-height: 1; }
.profile-card h3 { font-size: 26px; letter-spacing: -0.04em; }
.profile-card p { color: rgba(255,255,255,.78); font-size: 13px; }
.phone-actions { padding: 18px 35px; display: flex; justify-content: space-between; }
.phone-actions span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 18px; color: white; background: rgba(255,255,255,.08); font-size: 22px; }
.phone-actions .like { background: linear-gradient(135deg, var(--coral), var(--orchid)); }

.floating-note { position: absolute; z-index: 3; padding: 13px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; color: var(--deep-plum); background: rgba(255,255,255,.88); box-shadow: 0 16px 35px rgba(39,18,51,.12); font-size: 13px; font-weight: 800; }
.floating-note.one { top: 95px; left: -18px; }
.floating-note.two { right: -5px; bottom: 120px; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 92px 0; }
.section-head { max-width: 690px; margin-bottom: 40px; }
.section-head span { color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { margin-top: 10px; color: var(--deep-plum); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.05em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 230px; padding: 28px; border: 1px solid rgba(58,27,73,.09); border-radius: var(--radius-md); background: var(--surface); box-shadow: 0 14px 45px rgba(39,18,51,.07); }
.feature-icon { width: 52px; height: 52px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 17px; color: white; background: linear-gradient(135deg, var(--coral), var(--orchid)); font-size: 22px; }
.feature-card h3 { margin-bottom: 8px; color: var(--deep-plum); font-size: 1.2rem; }
.feature-card p { color: var(--muted); font-size: .95rem; }

.trust-banner { overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; border-radius: var(--radius-lg); color: white; background: var(--deep-plum); box-shadow: var(--shadow); }
.trust-copy { padding: clamp(34px, 6vw, 70px); }
.trust-copy h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.05em; }
.trust-copy p { max-width: 600px; color: rgba(255,255,255,.7); }
.trust-points { padding: 40px; display: grid; align-content: center; gap: 12px; background: linear-gradient(145deg, rgba(255,95,109,.28), rgba(170,103,245,.32)); }
.trust-points div { padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.08); font-weight: 700; }

.download-card { padding: clamp(36px, 7vw, 80px); border: 1px solid rgba(255,95,109,.16); border-radius: var(--radius-lg); text-align: center; background: radial-gradient(circle at 50% 0, rgba(255,213,208,.8), transparent 55%), white; box-shadow: var(--shadow); }
.download-card h2 { margin-bottom: 12px; color: var(--deep-plum); font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.download-card p { max-width: 620px; margin: 0 auto 28px; color: var(--muted); }

.page-container { width: min(900px, calc(100% - 32px)); margin: 64px auto 80px; padding: clamp(28px, 5vw, 60px); border: 1px solid rgba(255,255,255,.85); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.page-container::before { content: 'Luvii · luvii.space'; display: block; margin-bottom: 14px; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-container h1 { margin-bottom: 10px; color: var(--deep-plum); font-size: clamp(2.1rem, 5vw, 3.7rem); line-height: 1.08; letter-spacing: -.055em; }
.page-container .meta { margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.page-container h2 { margin: 34px 0 12px; color: var(--deep-plum); font-size: 1.35rem; line-height: 1.3; }
.page-container p, .page-container ul { margin-bottom: 16px; color: #594f60; font-size: 1rem; }
.page-container ul { padding-left: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--deep-plum); font-size: .9rem; font-weight: 800; }
.form-control { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: rgba(255,255,255,.86); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-control:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,95,109,.1); }
.deletion-form { margin-top: 30px; }
.full-width { width: 100%; }
.form-note { margin-top: 20px; border-bottom: 0 !important; }
.legal-spaced { margin-top: 20px; }

footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 34px 0 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-weight: 700; }

@keyframes breathe { 0%,100% { transform: scale(.98); opacity: .75; } 50% { transform: scale(1.02); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } }

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .nav-links { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; padding: 12px; flex-direction: column; align-items: stretch; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,250,246,.97); box-shadow: var(--shadow); }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .micro-proof { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-visual { min-height: 620px; }
  .feature-grid, .trust-banner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { top: 8px; width: calc(100% - 20px); margin-top: 8px; }
  .hero, .section, footer { width: calc(100% - 24px); }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 520px; transform: scale(.84); margin: -42px 0; }
  .orbit { width: 470px; height: 470px; }
  .floating-note.one { left: -35px; }
  .floating-note.two { right: -35px; }
  .section { padding: 70px 0; }
  .page-container { width: calc(100% - 20px); margin-top: 36px; }
  footer { align-items: flex-start; flex-direction: column; }
}
