/* ===== Elayne — CSS ===== */
@font-face {
  font-family: "Manrope-Light";
  src: url("fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope-Regular";
  src: url("fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope-Bold";
  src: url("fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-purple: #A57CED;
  --brand-purple-deep: #1F1A24;
  --brand-purple-ink: #0D0B0F;
  --brand-gold: #E6C277;
  --brand-gold-bright: #F3D98A;
  --brand-gold-deep: #A07A2E;
  --brand-aqua: #4AB5B3;

  --background: var(--brand-purple-ink);
  --foreground: #F5EFE4;
  --muted-fg: #BFB0E0;
  --border: rgba(230, 194, 119, 0.18);

  --gradient-hero:
    radial-gradient(ellipse at 50% -10%, rgba(107, 79, 187, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(230, 194, 119, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(111, 224, 203, 0.10), transparent 50%),
    linear-gradient(180deg, #150C2E 0%, #0C0720 100%);
  --gradient-gold: linear-gradient(135deg, #F3D98A 0%, #E6C277 40%, #A07A2E 100%);
  --gradient-purple: linear-gradient(135deg, #8B6FE0 0%, #6B4FBB 50%, #3D2879 100%);

  --shadow-gold: 0 0 10px 0px rgba(230, 194, 119, 0.45);
  --shadow-gold-low: 0 0 12px -6px rgba(230, 194, 119, 0.45);
  --shadow-glow: 0 0 10px -5px rgba(107, 79, 187, 0.6);

  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope-Light", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: "Manrope-Light", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gradient-hero);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.01em; margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.muted { color: var(--muted-fg); line-height: 1.7; margin-top: 1.5rem; }
.muted.small { font-size: 0.85rem; margin-top: 0.5rem; }
.center { text-align: center; }
.gold-bright { color: var(--brand-gold-bright); }

.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hairline-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold) 50%, transparent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; transition: transform .2s ease, background .2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; margin-top: 2rem; }
.btn-gold { background: linear-gradient(90deg, #A07A2E, #F3D98A, #E6C277, #F3D98A, #A07A2E);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite; color: var(--brand-purple-deep); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: scale(1.03); }
.btn-ghost {
  border-color: rgba(230, 194, 119, 0.4);
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  box-shadow: var(--shadow-gold-low);
  /*padding: 0.85rem 1.5rem;*/
}
.btn-ghost:hover { background: rgba(230, 194, 119, 0.1); -webkit-background-clip: text; background-clip: text; color: var(--brand-gold-bright); box-shadow: var(--shadow-gold); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  /*background: rgba(21, 12, 46, 0.25);*/
  background: transparent;
  /*border-bottom: 1px solid var(--border);*/
  box-shadow: var(--shadow-gold-low);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.nav-inner {
  max-width: 1152px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-lily { height: 36px; object-fit: contain; }
.brand-word { height: 36px; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em; font-weight: 200; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--brand-gold); }
@media (max-width: 1050px) { .nav-links { display: none; } }
@media (max-width: 180px) { .nav .btn-sm { display: none; } }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 20%, rgba(230,194,119,0.15), transparent 60%);
}
.hero-inner {
  position: relative; max-width: 960px; margin: 0 auto;
  padding: 4rem 1.5rem 6rem; text-align: center;
}
.hero-lily {
  margin: 0 auto; width: 225px;
  filter: drop-shadow(0 20px 60px rgba(230,194,119,0.35));
}
.hero-word { margin: -2.5rem auto 0; height: 100px; object-fit: contain; }
.hero-tagline {
  margin-top: 1.5rem; font-family: var(--font-body);
  font-style: italic; font-size: 1.5rem;
  color: rgba(243, 217, 138, 0.9);
}
.hero-desc {
  margin: 1.5rem auto 0; max-width: 640px;
  color: var(--muted-fg); font-size: 1rem; line-height: 1.7;
}
.hero-desc strong { color: var(--foreground); font-weight: 600; }
.hero-ctas {
  margin-top: 2.5rem; display: flex; gap: 1rem;
  justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero-rule { margin: 3rem auto 0; max-width: 220px; }

@media (min-width: 768px) {
  .hero-lily { width: 288px; }
  .hero-word { height: 125px; }
  .hero-tagline { font-size: 1.875rem; }
  .hero-desc { font-size: 1.125rem; }
}

/* ===== Highlights ===== */
.highlights {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow-gold-low);
}
.highlights-inner {
  max-width: 1152px; margin: 0 auto; padding: 2rem 1.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 768px) { .highlights-inner { grid-template-columns: repeat(4, 1fr); } }
.highlight { text-align: center; }
.hl-k {
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(230, 194, 119, 0.8);
}
.hl-v { margin-top: 0.25rem; font-size: 0.9rem; color: var(--muted-fg) }

/* ===== Sections ===== */
.section { position: relative; padding: 5rem 0; }
.section.bordered { border-top: 1px solid var(--border); box-shadow: var(--shadow-gold-low); }
.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 880px; }
.two-col { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

.section-title { max-width: 640px; margin: 0 auto; text-align: center; }
.section-title.left { margin: 0; text-align: left; }
.section-title h2 { margin-top: 0.75rem; font-size: 1.9rem; line-height: 1.2; }
.eyebrow {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(230, 194, 119, 0.8);
}
.section-rule { margin: 1.25rem auto 0; max-width: 120px; }
.section-rule.left { margin-left: 0; }
@media (min-width: 768px) { .section-title h2 { font-size: 2.25rem; } }

/* ===== Features grid ===== */
.features-grid {
  margin-top: 3.5rem;
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  position: relative; overflow: hidden;
  padding: 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  transition: border-color .3s;
  box-shadow: var(--shadow-gold-low);
}
.feature:hover { border-color: rgba(230, 194, 119, 0.6); box-shadow: var(--shadow-gold); }
.feature::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 192px; height: 192px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,194,119,0.18), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.feature:hover::before { opacity: 1; }
/*.feature-icon { font-size: 1.875rem; margin-bottom: 1rem; }*/
.feature h3 { font-size: 1.25rem; font-weight: 900; text-align: center; /*background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;*/ }
.feature p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; text-align: justify; }

/* ===== Listen list ===== */
.check-list { margin-top: 2rem; display: grid; gap: 0.75rem; font-size: 0.9rem; }
.check-list li { display: flex; gap: 0.75rem; color: var(--muted-fg) }
.diamond { background: linear-gradient(90deg, #A07A2E, #F3D98A, #E6C277, #F3D98A, #A07A2E); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 6s linear infinite; margin-top: 0px; }

/* ===== Video ===== */
.video-frame {
  position: relative; margin-top: 3rem; aspect-ratio: 16/9;
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(230, 194, 119, 0.3);
  box-shadow: var(--shadow-glow);
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}
.video-tint { position: absolute; inset: 0; opacity: 0.5; background: var(--gradient-purple); }
.video-cta { position: relative; text-align: center; padding: 1.5rem; }
.play-circle {
  margin: 0 auto; width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-gold); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.video-label {
  margin-top: 1.5rem; color: var(--brand-gold-bright);
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem;
}

/* ===== Screenshots ===== */
.screenshots-scroller {
  margin-top: 3rem; display: flex; gap: 1.25rem;
  overflow-x: auto; padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-scroller::-webkit-scrollbar {
  display: none;
}

/* ===== Phone frame ===== */
.phone {
  scroll-snap-align: center;
  flex-shrink: 0;
}
.phone-wrap .phone { max-width: 300px; margin: 0 auto; width: 100%; }
.phone-screen {
  position: relative; aspect-ratio: 9/19;
  border-radius: 2.2rem; overflow: hidden;
  border: 6px solid var(--brand-purple-deep);
  box-shadow: var(--shadow-glow);
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px; border-radius: 999px; background: rgba(0,0,0,0.7);
}
.phone-content {
  position: absolute; inset: 0; padding: 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.phone-content img { width: 120px; opacity: 0.8; }
.phone-eyebrow {
  margin-top: 0.75rem; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.22em; color: rgba(243, 217, 138, 0.8);
}
.phone-label { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(245, 239, 228, 0.9); font-weight: 500; }
.phone-compact { min-width: 230px; width: 230px; }

/* ===== Sync pills ===== */
.cloud-pills { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.pill {
  padding: 0.6rem 1.25rem; border-radius: 999px;
  border: 1px solid rgba(230, 194, 119, 0.4);
  background: rgba(230, 194, 119, 0.06);
  font-size: 1.2rem; color: var(--brand-gold-bright);
  box-shadow: var(--shadow-gold-low);
}

/* ===== CTA ===== */
.cta { padding: 7rem 0; }
.cta-lily { margin: 0 auto; width: 250px; opacity: 1; }
.cta h2 { margin-top: 1.5rem; font-size: 2.25rem; }
@media (min-width: 768px) { .cta h2 { font-size: 3rem; } }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); margin-top: auto; }
.footer-inner {
  max-width: 1152px; margin: 0 auto; padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-lily { height: 52px; object-fit: contain; }
.footer-word { height: 32px; object-fit: contain; }
.footer-copy { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-fg); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.8rem;}
.footer-links a { color: var(--muted-fg); transition: color .2s; }
.footer-links a:hover { color: var(--brand-gold); }

/* ===== Animations ===== */
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float { animation: float-soft 6s ease-in-out infinite; }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fade-up 0.8s ease-out both; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.shimmer-gold {
  background: linear-gradient(90deg, #A07A2E, #F3D98A, #E6C277, #F3D98A, #A07A2E);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}

/*PRIVACY POLICY AND FEATURES NAV*/
.nav-inner-2 {
  max-width: 1152px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.section-2 { position: relative; padding: 2rem 0; }
@media (max-width: 768px) { .nav-inner-2 h2 { font-size: 1.0rem; } }
@media (max-width: 768px) { .nav-inner { height: 48px; } }
@media (max-width: 768px) { .nav-inner-2 { height: 48px; } }
@media (max-width: 768px) { .brand-lily { height: 24px; } }
@media (max-width: 768px) { .brand-word { height: 24px; } }
@media (max-width: 768px) { .btn-sm { font-size: 0.75rem; padding: 0.25rem 0.75rem; } }
@media (max-width: 768px) { .nav { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } }