/* =========================================================
   Eyla landing — Moonly-style design system
   Fonts: Roobert / Recoleta are used if installed locally
   (licensed), otherwise Manrope / Fraunces (Google Fonts).
   ========================================================= */

@font-face { font-family: "EylaSans"; src: local("Roobert SemiBold"), local("Roobert-SemiBold"); font-weight: 600; }
@font-face { font-family: "EylaSans"; src: local("Roobert Medium"), local("Roobert-Medium"); font-weight: 500; }
@font-face { font-family: "EylaSans"; src: local("Roobert Regular"), local("Roobert-Regular"); font-weight: 400; }
@font-face { font-family: "EylaSerif"; src: local("Recoleta Bold"), local("Recoleta-Bold"); font-weight: 700; }

:root {
  --bg: #16181D;
  --bg-deep: #111317;
  --card: #222428;
  --card-2: #2A2C31;
  --card-3: #1C1E23;
  --line: rgba(255, 255, 255, 0.08);
  --cream: #F3ECE3;
  --white: #FFFFFF;
  --gray: #828282;
  --gray-2: #5E6066;
  --gold: #F7B64D;
  --terra: #D3774D;
  --violet: #8437F1;
  --violet-2: #6C4CF5;
  --indigo: #4F46E5;
  --tarot: #6B5CE7;
  --pink: #F48BC4;

  --sans: "EylaSans", "Manrope", system-ui, sans-serif;
  --serif: "EylaSerif", "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--cream);
  font-family: var(--sans); font-weight: 600; font-size: 18px; line-height: 1.25;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }
.serif { font-family: var(--serif); font-weight: 700; font-variation-settings: "SOFT" 100, "WONK" 1; letter-spacing: -0.01em; }

/* ---------- Type ---------- */
.h1 { font-size: clamp(38px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 600; }
.h2 { font-size: clamp(32px, 3vw, 42px); line-height: 1; letter-spacing: -0.02em; font-weight: 600; text-align: center; }
.h3 { font-size: clamp(28px, 2.6vw, 36px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.lead { color: var(--gray); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.25; font-weight: 600; }
.eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }
.center { text-align: center; margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: #16181D; font-size: 18px; font-weight: 600;
  height: 50px; padding: 0 32px; border-radius: 999px; transition: transform .2s ease, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--gold); }

.section { padding: 110px 0 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin-top: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; z-index: 100; top: 20px; left: 50%; transform: translateX(-50%);
  width: min(1000px, calc(100% - 24px)); height: 70px; padding: 0 10px 0 20px;
  display: flex; align-items: center; gap: 24px; border-radius: 999px;
  background: rgba(22, 24, 29, .9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 34px; letter-spacing: -0.045em; font-weight: 600; color: #fff; line-height: 1; }
.logo svg { width: 38px; height: 26px; }
.nav-links { display: flex; gap: 30px; margin-left: auto; margin-right: auto; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.nav-links a { color: #fff; opacity: .92; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 10px; padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .14); height: 50px; }
.nav-right .label { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; margin-right: 10px; color: #fff; }
.store-dot { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: #16181D; }
.store-dot svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero-wrap { padding: 10px; }
.hero {
  position: relative; min-height: calc(100svh - 20px); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center;
  padding: 140px 20px 120px; isolation: isolate;
}
.hero-bg { position: absolute; inset: -4%; z-index: -2; background: center 30% / cover no-repeat; animation: slowzoom 30s ease-in-out infinite alternate; }
@keyframes slowzoom { to { transform: scale(1.08) translateY(-1.5%); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,24,29,.25) 0%, rgba(22,24,29,0) 30%, rgba(22,24,29,.35) 60%, rgba(22,24,29,.92) 100%); }
.hero .h1 { max-width: 760px; color: var(--cream); }
.hero .lead { color: rgba(243, 236, 227, .82); max-width: 460px; margin: 16px auto 26px; font-size: 18px; }
.hero-badges {
  position: absolute; left: 28px; right: 28px; bottom: 26px;
  display: flex; align-items: center; justify-content: space-between; color: #fff;
}
.badge-row { display: flex; align-items: center; gap: 22px; }
.badge { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; line-height: 1.05; }
.badge b { font-size: 30px; letter-spacing: -0.02em; }
.badge .sep { width: 1px; height: 28px; background: rgba(255,255,255,.25); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }

/* ---------- Goal cards row ---------- */
.goals { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.goal {
  position: relative; height: 184px; border-radius: 22px; padding: 16px;
  background: linear-gradient(180deg, #2A2B30 0%, #1D1E22 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 0 -1px 0 rgba(247,182,77,.35), inset 0 0 0 1px rgba(247,182,77,.12);
  font-size: 16px; line-height: 1.25; color: #fff; transition: transform .25s ease;
}
.goal:hover { transform: translateY(-4px); }
.goal .ico { position: absolute; left: 10px; bottom: 10px; width: 66px; height: 66px; }
.goal .arrow { position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px; border-radius: 50%; background: #16181D; border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; }
.goal .arrow svg { width: 10px; height: 10px; }

/* 3D-like icons */
.orb { border-radius: 50%; position: relative; }
.orb.violet { background: radial-gradient(circle at 32% 28%, #F1E6FF 0%, #BFA0FF 22%, #8A5CF6 52%, #5A2BC9 78%, #34177F 100%); box-shadow: 0 12px 26px rgba(132,55,241,.45), inset -6px -8px 16px rgba(30,10,80,.35); }
.orb.pink   { background: radial-gradient(circle at 32% 28%, #FFF0F7 0%, #FFB3DA 22%, #F27BBB 52%, #C9458F 80%, #7E2359 100%); box-shadow: 0 12px 26px rgba(242,123,187,.4), inset -6px -8px 16px rgba(90,20,60,.3); }
.orb.gold   { background: radial-gradient(circle at 32% 28%, #FFF8E6 0%, #FFE09A 22%, #F7B64D 55%, #D98A2B 80%, #9A5A17 100%); box-shadow: 0 12px 26px rgba(247,182,77,.45), inset -6px -8px 16px rgba(110,60,10,.3); }
.orb.terra  { background: radial-gradient(circle at 32% 28%, #FFE7DA 0%, #FFB08A 25%, #E3794A 55%, #B24E27 80%, #6E2B12 100%); box-shadow: 0 12px 26px rgba(211,119,77,.45), inset -6px -8px 16px rgba(80,25,5,.3); }
.orb.blue   { background: radial-gradient(circle at 32% 28%, #E8F7FF 0%, #9ED8FF 22%, #4AA3E8 52%, #2566B5 80%, #133A73 100%); box-shadow: 0 12px 26px rgba(74,163,232,.4), inset -6px -8px 16px rgba(10,30,70,.35); }
.orb.moon   { background: radial-gradient(circle at 32% 28%, #FFFFFF 0%, #EEEAF3 30%, #C9C4D2 62%, #8E899A 100%); box-shadow: 0 12px 26px rgba(255,255,255,.12), inset -6px -8px 16px rgba(40,35,55,.35); }
.orb.green  { background: radial-gradient(circle at 32% 28%, #EFFFF6 0%, #A6F0C6 25%, #4CC38A 55%, #23875A 80%, #0F4D31 100%); box-shadow: 0 12px 26px rgba(76,195,138,.35), inset -6px -8px 16px rgba(10,50,30,.35); }
.orb.ring::before {
  content: ""; position: absolute; left: -26%; right: -26%; top: 40%; height: 22%; border-radius: 50%;
  border: 4px solid rgba(236, 222, 255, .9); border-top-color: transparent; transform: rotate(-16deg); z-index: 2;
}
.orb.craters::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(0,0,0,.12) 0 9%, transparent 10%), radial-gradient(circle at 35% 65%, rgba(0,0,0,.1) 0 7%, transparent 8%), radial-gradient(circle at 70% 70%, rgba(0,0,0,.08) 0 5%, transparent 6%);
}
.heart3d { position: relative; transform: rotate(-8deg); }
.heart3d::before, .heart3d::after {
  content: ""; position: absolute; top: 12%; width: 52%; height: 76%; border-radius: 50% 50% 0 0;
  background: linear-gradient(160deg, #F6E6FF, #C9A6FF 40%, #9A6BFF);
  box-shadow: inset -4px -6px 12px rgba(80,30,160,.35);
}
.heart3d::before { left: 50%; transform: rotate(-45deg); transform-origin: 0 100%; }
.heart3d::after { left: -2%; transform: rotate(45deg); transform-origin: 100% 100%; }

/* ---------- Feature showcase cards (Moonly grid) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stack { display: grid; gap: 10px; }

.tile { text-align: center; }
.tile-media {
  position: relative; border-radius: 20px; overflow: hidden; background: var(--card);
  display: flex; justify-content: center; align-items: center; padding: 44px 16px;
}
.tile-media.tall { height: 520px; }
.tile-media.purple { background: #33306B; }
.tile-media.indigo { background: #2A2C8C; }
.tile-media.photo { background: center / cover no-repeat; }
.tile-copy { padding: 22px 16px 0; max-width: 460px; margin: 0 auto; }
.tile-copy .eyebrow { margin-bottom: 10px; }
.tile-copy h3 { font-size: 24px; letter-spacing: -0.01em; font-weight: 600; line-height: 1.05; color: var(--cream); }
.tile-copy p { color: var(--gray); font-size: 18px; line-height: 1.22; margin-top: 10px; }
.tile-copy .btn { margin-top: 22px; }

/* Wide split card (text + phone) */
.split {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  border-radius: 20px; overflow: hidden; min-height: 560px; background: var(--card);
}
.split.photo { background: center / cover no-repeat; }
.split .split-media { position: relative; display: flex; justify-content: center; align-items: center; padding: 56px 0; }
.split .split-copy { padding: 40px 60px 40px 20px; display: flex; flex-direction: column; justify-content: center; }
.split .split-copy .h3 { margin: 14px 0 22px; color: var(--cream); }
.split .split-copy .lead { color: rgba(243,236,227,.7); max-width: 380px; }
.split .split-copy .btn { align-self: flex-start; margin-top: 28px; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { padding: 40px 20px 40px 60px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; max-width: 420px; }
.pill {
  font-size: 13px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(243,236,227,.72);
  transition: background .35s, color .35s, transform .35s;
}
.pill.on { background: #fff; color: #16181D; transform: translateY(-1px); }

/* ---------- iPhone ---------- */
.phone {
  --w: 300px;
  position: relative; width: var(--w); height: calc(var(--w) * 2.05); flex: none;
  border-radius: calc(var(--w) * .17); padding: calc(var(--w) * .035); background: #0A0B0D;
  box-shadow: 0 0 0 1.5px #3A3C42, 0 0 0 4px #121316, 0 30px 70px rgba(0,0,0,.45);
}
.phone .screen {
  position: relative; width: 100%; height: 100%; border-radius: calc(var(--w) * .135); overflow: hidden;
  background: #16181D; color: #fff; font-size: 12px; line-height: 1.25; text-align: left;
}
.phone .island { position: absolute; z-index: 20; top: 11px; left: 50%; transform: translateX(-50%); width: 92px; height: 27px; border-radius: 20px; background: #000; }
.phone .sb { position: absolute; z-index: 19; top: 0; left: 0; right: 0; height: 48px; padding: 15px 26px 0 30px; display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; }
.phone .sb.dark { color: #111; }
.sb .sig { display: flex; gap: 5px; align-items: center; }
.sb .sig i { display: block; width: 3px; border-radius: 1px; background: currentColor; }
.sb .batt { width: 22px; height: 11px; border-radius: 3px; border: 1.3px solid currentColor; opacity: .95; position: relative; }
.sb .batt::after { content: ""; position: absolute; inset: 1.5px 3px 1.5px 1.5px; border-radius: 1px; background: currentColor; }
.in-tile { margin: 0; }
.phone.sm { --w: 250px; }
.phone.md { --w: 272px; }

/* App UI atoms */
.topbar { position: absolute; z-index: 10; top: 48px; left: 0; right: 0; height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; }
.topbar .title { text-align: center; font-size: 12px; line-height: 1.2; }
.topbar .title small { display: block; font-size: 8px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 2px; }
.topbar .title small b { color: var(--gold); font-weight: 600; }
.circle-btn { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; font-size: 11px; }
.circle-btn.light { background: rgba(0,0,0,.06); color: #111; }
.ui-label { font-size: 7.5px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; }
.ui-card { background: #23252A; border-radius: 14px; padding: 12px; }
.seg { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.12); }
.seg span { font-size: 9.5px; padding: 5px 9px; border-radius: 999px; color: rgba(255,255,255,.7); transition: background .3s, color .3s; white-space: nowrap; }
.seg span.on { background: #fff; color: #16181D; }
.tabbar { position: absolute; z-index: 12; left: 0; right: 0; bottom: 0; height: 64px; padding: 8px 18px 0; display: flex; justify-content: space-between; background: linear-gradient(180deg, rgba(22,24,29,0), #16181D 35%); }
.tabbar span { display: grid; justify-items: center; gap: 3px; font-size: 8px; color: rgba(255,255,255,.45); }
.tabbar span i { width: 19px; height: 19px; display: block; background: currentColor; -webkit-mask: var(--tab-icon) center / contain no-repeat; mask: var(--tab-icon) center / contain no-repeat; filter: drop-shadow(0 2px 5px rgba(0,0,0,.25)); }
.tabbar span:nth-child(1) i { --tab-icon: url(../icons/eyla/nav-today.svg); }
.tabbar span:nth-child(2) i { --tab-icon: url(../icons/eyla/nav-love.svg); }
.tabbar span:nth-child(3) i { --tab-icon: url(../icons/eyla/nav-eyla.svg); }
.tabbar span:nth-child(4) i { --tab-icon: url(../icons/eyla/nav-readings.svg); }
.tabbar span:nth-child(5) i { --tab-icon: url(../icons/eyla/nav-you.svg); }
.tabbar span.on { color: var(--gold); }

/* screen transitions (auto-playing "video") */
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transform: translateX(18px); transition: opacity .6s ease, transform .6s ease; }
.slide.on { opacity: 1; transform: none; }

/* image hero inside screen */
.scr-hero { position: absolute; inset: 0; background: center / cover no-repeat; }
.scr-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.15) 55%, rgba(16,17,21,.95) 88%); }
.scr-bottom { position: absolute; z-index: 5; left: 16px; right: 16px; bottom: 76px; }
.scr-title { font-family: var(--serif); font-weight: 700; font-variation-settings: "SOFT" 100, "WONK" 1; font-size: 25px; line-height: 1.02; letter-spacing: -0.01em; color: #fff; }
.scr-text { font-size: 11px; line-height: 1.38; color: rgba(255,255,255,.82); margin-top: 8px; font-weight: 500; }

/* type-on text */
.typed::after { content: "▍"; color: var(--gold); animation: blink 1s steps(1) infinite; margin-left: 1px; }
.typed.done::after { content: ""; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Chat (light, Moonly-like) ---------- */
.phone .screen.chat-scr { background: #fff; color: #1B1B22; }
.chat-head { position: absolute; z-index: 10; top: 48px; left: 0; right: 0; height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid #F0EFF4; background: #fff; }
.chat-head .who { text-align: center; }
.chat-head .who b { font-size: 12px; display: block; }
.chat-head .who small { font-size: 7.5px; letter-spacing: .07em; text-transform: uppercase; color: #8C8C99; }
.chat-av { width: 26px; height: 26px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFF4DA, #F7B64D 45%, #D3774D 80%); box-shadow: 0 0 0 2px #fff, 0 0 0 3px #EDE6FF; }
.chat-list { position: absolute; top: 104px; left: 0; right: 0; bottom: 58px; padding: 10px 12px; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; overflow: hidden; }
.bub { max-width: 84%; padding: 9px 11px; border-radius: 14px; font-size: 10.5px; line-height: 1.38; font-weight: 500; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.bub.show { opacity: 1; transform: none; }
.bub.me { align-self: flex-end; background: #7B3FF2; color: #fff; border-bottom-right-radius: 4px; }
.bub.her { align-self: flex-start; background: #F1EBFF; color: #4A2A9C; border-bottom-left-radius: 4px; }
.bub.her b { color: #2E1778; }
.bub .mini-card { display: flex; align-items: center; gap: 8px; margin-top: 7px; padding: 6px; border-radius: 10px; background: #fff; }
.bub .mini-card i { width: 22px; height: 32px; border-radius: 4px; background: linear-gradient(160deg, #8C7BFF, #5B45E0); flex: none; }
.bub.typing { display: flex; gap: 3px; padding: 11px 12px; }
.bub.typing span { width: 5px; height: 5px; border-radius: 50%; background: #9F7BFF; animation: dots 1s infinite; }
.bub.typing span:nth-child(2) { animation-delay: .15s; }
.bub.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes dots { 50% { opacity: .35; transform: translateY(-2px); } }
.chat-input { position: absolute; left: 10px; right: 10px; bottom: 14px; height: 34px; border-radius: 999px; background: #F4F3F8; display: flex; align-items: center; justify-content: space-between; padding: 0 4px 0 14px; font-size: 10.5px; color: #9A9AA6; font-weight: 500; }
.chat-input i { width: 26px; height: 26px; border-radius: 50%; background: #7B3FF2; display: grid; place-items: center; color: #fff; font-style: normal; font-size: 12px; }
.suggest { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
.suggest span { font-size: 9px; padding: 5px 8px; border-radius: 999px; border: 1px solid #E4DAFF; color: #6B3FE0; }

/* ---------- Floating 3D decorations around phones ---------- */
.float { position: absolute; z-index: 30; animation: bob 6s ease-in-out infinite; }
.float.d2 { animation-delay: -2s; }
.float.d3 { animation-delay: -4s; }
@keyframes bob { 50% { transform: translateY(-12px) rotate(3deg); } }
.bubble-3d {
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.95), rgba(255,255,255,0) 30%), conic-gradient(from 200deg, #9EE7FF, #F6B7FF, #FFD7A0, #B7F5D8, #9EE7FF);
  box-shadow: inset 0 0 18px rgba(255,255,255,.6), 0 10px 30px rgba(160,120,255,.35); opacity: .95;
}
.card-3d {
  width: 70px; height: 104px; border-radius: 10px; background: linear-gradient(160deg, #8C7BFF, #5B45E0);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 16px 30px rgba(40,20,120,.45);
  display: grid; place-items: center; color: rgba(255,255,255,.75); font-size: 26px;
}

/* ---------- Soulmate report ---------- */
.sketch-paper { position: absolute; left: 14px; right: 14px; top: 100px; height: 250px; border-radius: 16px; overflow: hidden; background: #F4EFE6; }
.sketch-img { position: absolute; inset: 0; background: center 30% / cover no-repeat; filter: grayscale(1) contrast(1.55) brightness(1.18) sepia(.25); mix-blend-mode: multiply; clip-path: inset(0 0 100% 0); }
.sketch-lines { position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(60,50,40,.07) 0 1px, transparent 1px 5px); mix-blend-mode: multiply; }
.sketch-pencil { position: absolute; left: 0; right: 0; height: 2px; top: 0; background: linear-gradient(90deg, transparent, #7B5B3A, transparent); opacity: 0; }
.drawing .sketch-img { animation: draw 3.2s ease-in-out forwards; }
.drawing .sketch-pencil { animation: pencil 3.2s ease-in-out forwards; }
@keyframes draw { to { clip-path: inset(0 0 0 0); } }
@keyframes pencil { 0% { top: 0; opacity: 1; } 95% { top: 100%; opacity: 1; } 100% { top: 100%; opacity: 0; } }
.sketch-tag { position: absolute; left: 10px; bottom: 10px; padding: 5px 9px; border-radius: 999px; background: rgba(22,24,29,.85); font-size: 9px; color: #fff; }
.report { position: absolute; left: 14px; right: 14px; top: 362px; bottom: 0; overflow: hidden; }
.report-inner { transition: transform .8s cubic-bezier(.3,.7,.2,1); }
.rrow { display: flex; align-items: center; gap: 10px; padding: 9px 10px; margin-bottom: 6px; border-radius: 12px; background: #23252A; opacity: .35; transition: opacity .4s, background .4s; }
.rrow.on { opacity: 1; background: #2B2640; }
.rrow i { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; font-style: normal; font-size: 13px; background: rgba(255,255,255,.08); }
.rrow .ui-label { display: block; margin-bottom: 2px; }
.rrow b { font-size: 11px; font-weight: 600; }

/* ---------- Compatibility ---------- */
.duo { position: relative; height: 150px; margin-top: 104px; }
.duo .av { position: absolute; top: 18px; width: 98px; height: 98px; border-radius: 50%; background: center / cover; box-shadow: 0 0 0 3px #16181D, 0 0 0 5px rgba(160,120,255,.7), 0 0 40px rgba(140,90,255,.55); }
.duo .av.l { left: 38px; }
.duo .av.r { right: 38px; }
.duo .pct { position: absolute; left: 50%; top: 88px; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; background: radial-gradient(circle at 35% 30%, #B79BFF, #6D3FE6); box-shadow: 0 0 0 3px #16181D; z-index: 2; }
.bars { padding: 0 14px; display: grid; gap: 7px; }
.barrow { display: flex; align-items: center; gap: 10px; background: #23252A; border-radius: 12px; padding: 8px 10px; }
.barrow i { width: 24px; height: 24px; border-radius: 50%; flex: none; }
.barrow div { flex: 1; }
.barrow .ui-label { display: flex; justify-content: space-between; color: rgba(255,255,255,.7); }
.barrow .metric-icon { position: relative; display: block; overflow: hidden; box-shadow: 0 7px 18px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.18); }
.barrow .metric-icon::after { content: ""; position: absolute; inset: 5px; background: rgba(255,255,255,.95); -webkit-mask: var(--metric-icon) center / contain no-repeat; mask: var(--metric-icon) center / contain no-repeat; }
.metric-icon.romance { --metric-icon: url(../icons/eyla/metric-romance.svg); background: linear-gradient(145deg,#FFB8DA,#C4418B); }
.metric-icon.support { --metric-icon: url(../icons/eyla/metric-support.svg); background: linear-gradient(145deg,#FFD990,#D88722); }
.metric-icon.communication { --metric-icon: url(../icons/eyla/metric-communication.svg); background: linear-gradient(145deg,#9CDBFF,#286DB9); }
.metric-icon.destiny { --metric-icon: url(../icons/eyla/metric-destiny.svg); background: linear-gradient(145deg,#C4ABFF,#6333D0); }
.karmic-icon { position: relative; width: 28px; height: 28px; flex: none; border-radius: 50%; background: linear-gradient(145deg,#FFE2A3,#CB7F1D); box-shadow: 0 8px 18px rgba(215,145,42,.28); }
.karmic-icon::after { content: ""; position: absolute; inset: 6px; background: #fff9ea; -webkit-mask: url(../icons/eyla/karmic-bond.svg) center / contain no-repeat; mask: url(../icons/eyla/karmic-bond.svg) center / contain no-repeat; }
.track { height: 4px; border-radius: 3px; background: rgba(255,255,255,.1); margin-top: 6px; overflow: hidden; }
.track b { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--terra), var(--gold)); transition: width 1.3s cubic-bezier(.2,.8,.2,1); }

/* ---------- Tarot ---------- */
.phone .screen.tarot-scr { background: linear-gradient(180deg, #3B32A8 0%, #2E2878 55%, #1D1B45 100%); }
.tcard { position: absolute; width: 96px; height: 150px; left: 50%; top: 250px; margin-left: -48px; perspective: 700px; }
.tcard .in { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 1s cubic-bezier(.3,.7,.2,1); }
.tcard.flip .in { transform: rotateY(180deg); }
.tcard .face { position: absolute; inset: 0; border-radius: 10px; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: grid; place-items: center; }
.tcard .back { background: linear-gradient(160deg, #8C7BFF, #5B45E0); box-shadow: inset 0 0 0 2px rgba(255,255,255,.25); font-size: 30px; color: rgba(255,255,255,.8); }
.tcard .front { transform: rotateY(180deg); background: linear-gradient(180deg, #F9E7C4, #E9B870); color: #3A2410; box-shadow: inset 0 0 0 3px #fff6, 0 10px 30px rgba(247,182,77,.35); text-align: center; font-size: 9px; padding: 10px 6px; align-content: space-between; }
.tcard .front .sun { width: 50px; height: 50px; margin: 0 auto; }
.tcard .front b { font-family: var(--serif); font-size: 13px; font-variation-settings: "SOFT" 100; }

/* ---------- Moon calendar ---------- */
.moon-img { position: absolute; left: 50%; top: 92px; width: 150px; height: 150px; margin-left: -75px; border-radius: 50%; background: center / cover; box-shadow: 0 0 60px rgba(255,255,255,.25); animation: moonglow 5s ease-in-out infinite; }
@keyframes moonglow { 50% { box-shadow: 0 0 90px rgba(255,255,255,.4); } }
.moon-shadow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at var(--sx, 20%) 50%, transparent 48%, rgba(10,11,14,.93) 50%); transition: --sx 1s; }
.cal { position: absolute; left: 12px; right: 12px; top: 300px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal span { height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 10px; color: rgba(255,255,255,.7); background: #1F2126; position: relative; transition: background .3s, color .3s, box-shadow .3s; }
.cal span.h { color: rgba(255,255,255,.35); background: transparent; font-size: 8px; height: 16px; }
.cal span.good::after { content: ""; position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: #56D39A; }
.cal span.bad::after { content: ""; position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: #F27B7B; }
.cal span.sel { background: var(--gold); color: #16181D; box-shadow: 0 0 18px rgba(247,182,77,.5); }

/* ---------- Do / Don't ---------- */
.dd { position: absolute; left: 12px; right: 12px; top: 100px; display: grid; gap: 8px; }
.dd-card { border-radius: 16px; padding: 12px; }
.dd-card.do { background: linear-gradient(160deg, #1F3A2E, #1C2A25); }
.dd-card.dont { background: linear-gradient(160deg, #3F2328, #2A1E21); }
.dd-card h6 { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.dd-item { display: flex; gap: 8px; align-items: flex-start; font-size: 10.5px; line-height: 1.35; font-weight: 500; padding: 5px 0; opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .4s; }
.dd-item.show { opacity: 1; transform: none; }
.dd-item i { flex: none; width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 9px; font-weight: 700; }
.do .dd-item i { background: #56D39A; color: #10281D; }
.dont .dd-item i { background: #F27B7B; color: #3A1414; }

/* ---------- Affirmation ---------- */
.aff { position: absolute; inset: 0; background: linear-gradient(180deg, #F7C98B 0%, #E78E6B 45%, #8E4A8F 100%); }
.aff .orb { position: absolute; left: 50%; top: 150px; width: 120px; height: 120px; margin-left: -60px; animation: breathe 4s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.12); } }
.aff-text { position: absolute; left: 22px; right: 22px; top: 320px; text-align: center; font-family: var(--serif); font-weight: 700; font-variation-settings: "SOFT" 100, "WONK" 1; font-size: 24px; line-height: 1.12; color: #fff; text-shadow: 0 2px 20px rgba(90,30,60,.3); }
.aff-sub { position: absolute; left: 0; right: 0; top: 460px; text-align: center; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ---------- Horoscope energy chips ---------- */
.energy { position: absolute; z-index: 6; left: 14px; right: 14px; bottom: 76px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.energy div { background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border-radius: 12px; padding: 7px 8px; }
.energy b { display: block; font-size: 14px; margin-top: 2px; }

/* ---------- Profile form ---------- */
.form { position: absolute; left: 14px; right: 14px; top: 110px; }
.form h5 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
.field { background: #23252A; border-radius: 12px; padding: 9px 12px; margin-bottom: 7px; border: 1px solid transparent; transition: border-color .3s; }
.field.focus { border-color: var(--gold); }
.field .val { font-size: 13px; min-height: 17px; margin-top: 2px; }
.form .form-cta { margin-top: 12px; height: 38px; border-radius: 999px; background: #fff; color: #16181D; display: grid; place-items: center; font-size: 12px; transition: transform .2s, background .3s; }
.form .form-cta.press { transform: scale(.95); background: var(--gold); }
.chart-ready { position: absolute; inset: 0; background: #16181D; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .5s; pointer-events: none; }
.chart-ready.show { opacity: 1; }
.chart-ready .wheel { width: 180px; height: 180px; }
.chart-ready h5 { font-family: var(--serif); font-variation-settings: "SOFT" 100, "WONK" 1; font-size: 22px; margin-top: 16px; }
.chart-ready p { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ---------- Birth chart wheel ---------- */
.wheel-spin { animation: spin 60s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
.planet-pulse { animation: ppulse 3s ease-in-out infinite; }
@keyframes ppulse { 50% { opacity: .55; } }

/* ---------- Numerology matrix ---------- */
.matrix line { stroke: rgba(255,255,255,.35); stroke-width: 1; stroke-dasharray: 200; stroke-dashoffset: 200; }
.matrix.play line { animation: dash 2.4s ease forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.matrix circle.node { transform-box: fill-box; transform-origin: center; transform: scale(0); }
.matrix.play circle.node { animation: pop .5s cubic-bezier(.3,1.6,.5,1) forwards; }
.matrix text { font-size: 8px; font-weight: 700; fill: #16181D; opacity: 0; }
.matrix.play text { animation: fadein .3s forwards; }
@keyframes pop { to { transform: scale(1); } }
@keyframes fadein { to { opacity: 1; } }

/* ---------- Finance ---------- */
.fin-head { position: absolute; inset: 0 0 auto 0; height: 220px; overflow: hidden; background: linear-gradient(180deg, #E8A93F 0%, #B8742A 60%, #16181D 100%); }
.coin { position: absolute; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFF3B8, #F5C542 45%, #C98E13 90%); box-shadow: inset -3px -4px 8px rgba(120,70,0,.35), 0 8px 18px rgba(0,0,0,.25); display: grid; place-items: center; color: #9A6A0A; font-size: 20px; font-weight: 700; }
.coin.fall { animation: coinfall 3.2s ease-in infinite; }
@keyframes coinfall { 0% { transform: translateY(-50px) rotateY(0); opacity: 0; } 12% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(190px) rotateY(540deg); opacity: 0; } }
.fin-chart path.line { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; }
.fin-chart.play path.line { animation: dash2 2.5s ease forwards; }
@keyframes dash2 { to { stroke-dashoffset: 0; } }

/* ---------- Astro map ---------- */
.map-dots { position: absolute; left: 0; right: 0; top: 96px; height: 250px; }
.map-line { fill: none; stroke-width: 1.6; stroke-dasharray: 500; stroke-dashoffset: 500; }
.map-play .map-line { animation: dash3 3s ease forwards; }
.map-play .map-line.l2 { animation-delay: .5s; }
.map-play .map-line.l3 { animation-delay: 1s; }
.map-play .map-line.l4 { animation-delay: 1.5s; }
@keyframes dash3 { to { stroke-dashoffset: 0; } }
.city { position: absolute; z-index: 3; display: flex; align-items: center; gap: 5px; font-size: 9px; padding: 4px 7px 4px 4px; border-radius: 999px; background: rgba(22,24,29,.9); opacity: 0; transform: scale(.8); transition: opacity .4s, transform .4s; }
.city.show { opacity: 1; transform: none; }
.city i { width: 12px; height: 12px; border-radius: 50%; }

/* ---------- Past life ---------- */
.pastlife { position: absolute; inset: 0; background: radial-gradient(120% 70% at 50% 20%, #5C4632 0%, #2B2119 55%, #16181D 100%); }
.era { position: absolute; left: 50%; top: 104px; width: 200px; height: 230px; margin-left: -100px; border-radius: 100px 100px 16px 16px; overflow: hidden; background: linear-gradient(180deg, #E7C99A, #B98A55); }
.era img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0; transform: scale(1.06); transition: opacity 1.4s, transform 2.4s ease; }
.era.show img { opacity: 1; transform: none; }
.era-year { position: absolute; left: 0; right: 0; top: 352px; text-align: center; font-family: var(--serif); font-variation-settings: "SOFT" 100, "WONK" 1; font-size: 30px; color: #F3D9A8; }

/* ---------- Aura ---------- */
.phone .screen.aura-scr { background: #0F1014; }
.aura-blob { position: absolute; left: 50%; top: 110px; width: 210px; height: 210px; margin-left: -105px; border-radius: 50%; filter: blur(18px); background: conic-gradient(from 0deg, #FF9ECF, #B38CFF, #7FD7FF, #9CF2C0, #FFE08A, #FF9ECF); animation: auraspin 8s linear infinite, aurabreath 4s ease-in-out infinite; }
@keyframes auraspin { to { rotate: 360deg; } }
@keyframes aurabreath { 50% { scale: 1.12; } }
.aura-core { position: absolute; left: 50%; top: 165px; width: 100px; height: 100px; margin-left: -50px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, rgba(255,255,255,.3) 55%, transparent 70%); }
.aura-name { position: absolute; left: 16px; right: 16px; top: 350px; text-align: center; }

/* ---------- Palmistry ---------- */
.palm-svg path.pl { fill: none; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 260; stroke-dashoffset: 260; }
.palm-play path.pl { animation: dash4 1.6s ease forwards; }
.palm-play path.pl.l2 { animation-delay: .8s; }
.palm-play path.pl.l3 { animation-delay: 1.6s; }
.palm-play path.pl.l4 { animation-delay: 2.4s; }
@keyframes dash4 { to { stroke-dashoffset: 0; } }
.scan { position: absolute; left: 20px; right: 20px; height: 40px; top: 110px; background: linear-gradient(180deg, transparent, rgba(247,182,77,.35), transparent); animation: scan 2.6s ease-in-out infinite; }
@keyframes scan { 50% { top: 330px; } }

/* ---------- StarSong ---------- */
.phone .screen.song-scr { background: radial-gradient(120% 80% at 50% 0%, #3C2C8F 0%, #1E1A4A 55%, #121318 100%); }
.constel { position: absolute; left: 0; right: 0; top: 96px; height: 220px; }
.constel line { stroke: rgba(255,255,255,.5); stroke-width: 1; stroke-dasharray: 100; stroke-dashoffset: 100; }
.constel.play line { animation: dash 3s ease forwards; }
.eq { position: absolute; left: 22px; right: 22px; top: 390px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.eq i { width: 4px; border-radius: 3px; background: linear-gradient(180deg, #FFD48A, #B38CFF); height: 20%; animation: eq 1s ease-in-out infinite; }
@keyframes eq { 50% { height: 100%; } }
.player { position: absolute; left: 16px; right: 16px; top: 466px; }
.player .prog { height: 3px; border-radius: 2px; background: rgba(255,255,255,.15); overflow: hidden; }
.player .prog b { display: block; height: 100%; width: 0; background: #fff; animation: prog 12s linear infinite; }
@keyframes prog { to { width: 100%; } }
.player .ctrls { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 10px; }
.player .play-btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #16181D; display: grid; place-items: center; font-size: 14px; }

/* ---------- Cancel / Support flows ---------- */
.settings { position: absolute; left: 12px; right: 12px; top: 100px; }
.set-row { display: flex; justify-content: space-between; align-items: center; background: #23252A; padding: 11px 12px; font-size: 11.5px; border-bottom: 1px solid rgba(255,255,255,.05); transition: background .3s; }
.set-row:first-child { border-radius: 12px 12px 0 0; }
.set-row:last-child { border-radius: 0 0 12px 12px; border: 0; }
.set-row.hl { background: #34363D; }
.set-row em { font-style: normal; color: rgba(255,255,255,.45); }
.sheet { position: absolute; z-index: 15; left: 0; right: 0; bottom: 0; padding: 18px 16px 26px; border-radius: 22px 22px 0 0; background: #23252A; transform: translateY(105%); transition: transform .5s cubic-bezier(.3,.8,.2,1); text-align: center; }
.sheet.up { transform: none; }
.sheet h6 { font-size: 15px; font-weight: 600; margin: 8px 0 4px; }
.sheet p { font-size: 10.5px; color: rgba(255,255,255,.6); font-weight: 500; }
.sheet .b1, .sheet .b2 { height: 36px; border-radius: 999px; display: grid; place-items: center; font-size: 12px; margin-top: 10px; transition: transform .2s; }
.sheet .b1 { background: #fff; color: #16181D; }
.sheet .b2 { background: rgba(255,255,255,.08); color: #F27B7B; }
.sheet .b2.press { transform: scale(.95); }
.done-toast { position: absolute; z-index: 16; left: 16px; right: 16px; top: 250px; padding: 16px; border-radius: 16px; background: #1F3A2E; text-align: center; font-size: 12px; opacity: 0; transform: scale(.9); transition: opacity .4s, transform .4s; }
.done-toast.show { opacity: 1; transform: none; }
.tap { position: absolute; z-index: 40; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.35); border: 2px solid rgba(255,255,255,.7); opacity: 0; transform: scale(.6); transition: opacity .2s, transform .2s, left .6s ease, top .6s ease; pointer-events: none; }
.tap.show { opacity: 1; transform: scale(1); }

/* ---------- Reviews ---------- */
.reviews { columns: 4 280px; column-gap: 10px; }
.review { break-inside: avoid; margin-bottom: 10px; border-radius: 20px; padding: 16px 16px 20px; border: 1px solid rgba(255,255,255,.08); background: #191B20; }
.review .who { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review .who b { font-size: 16px; display: block; color: #fff; }
.review .who small { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); }
.review p { font-size: 20px; line-height: 1.2; color: #fff; letter-spacing: -0.005em; }
.review .stars { font-size: 14px; margin-bottom: 10px; }

/* ---------- Pricing ---------- */
.price-card {
  position: relative; border-radius: 20px; overflow: hidden; padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  background: radial-gradient(70% 90% at 0% 100%, rgba(132,55,241,.55), transparent 70%), radial-gradient(60% 70% at 100% 0%, rgba(247,182,77,.25), transparent 70%), #25206A;
}
.price-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 26px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; color: rgba(243,236,227,.9); }
.price-list li::before { content: "✓"; flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: #16181D; display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-top: 1px; }
.plan { background: #fff; color: #16181D; border-radius: 20px; padding: 30px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.plan .tag { display: inline-block; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; background: #F1EBFF; color: #6B3FE0; padding: 6px 12px; border-radius: 999px; }
.plan .big { font-size: 72px; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 4px; }
.plan .big sup { font-size: 32px; vertical-align: 28px; margin-right: 2px; }
.plan .then { color: #6E6E78; font-size: 16px; }
.plan .then b { color: #16181D; }
.plan .btn { width: 100%; margin-top: 22px; background: #7B3FF2; color: #fff; height: 56px; font-size: 19px; }
.plan .fine { color: #8C8C96; font-size: 13px; margin-top: 12px; line-height: 1.35; }
.plan .timeline { display: flex; justify-content: space-between; margin: 22px 0 0; text-align: left; position: relative; }
.plan .timeline::before { content: ""; position: absolute; left: 6px; right: 6px; top: 6px; height: 2px; background: linear-gradient(90deg, #7B3FF2, #F7B64D); }
.plan .timeline div { position: relative; font-size: 11px; color: #6E6E78; max-width: 33%; }
.plan .timeline div:nth-child(2) { text-align: center; }
.plan .timeline div:last-child { text-align: right; }
.plan .timeline div::before { content: ""; display: block; width: 14px; height: 14px; border-radius: 50%; background: #7B3FF2; margin-bottom: 8px; box-shadow: 0 0 0 3px #fff; }
.plan .timeline div:nth-child(2)::before { margin-inline: auto; background: #B67BD0; }
.plan .timeline div:last-child::before { margin-left: auto; background: var(--gold); }
.plan .timeline b { display: block; color: #16181D; font-size: 12px; }

/* ---------- FAQ ---------- */
.faq { max-width: 1240px; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq summary { list-style: none; cursor: pointer; display: flex; gap: 16px; align-items: center; padding: 26px 12px; font-size: 20px; color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; font-size: 26px; font-weight: 400; color: var(--gray); width: 16px; transition: transform .3s; }
.faq details[open] summary::before { transform: rotate(45deg); }
.faq details p { padding: 0 12px 26px 44px; color: var(--gray); font-size: 18px; line-height: 1.35; max-width: 820px; }

/* ---------- Final CTA ---------- */
.cta-wrap { padding: 120px 10px 0; }
.cta {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 640px; isolation: isolate;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px 100px;
}
.cta .bg { position: absolute; inset: 0; z-index: -2; background: center / cover no-repeat; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 50% 50%, rgba(16,17,22,.35), rgba(16,17,22,.7)); }
.cta .count { font-size: 20px; padding: 10px 16px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 999px; margin-bottom: 70px; }
.cta .h1 { max-width: 560px; font-size: clamp(34px, 3.2vw, 44px); }
.cta .lead { color: rgba(255,255,255,.85); max-width: 480px; margin: 18px auto 40px; }
.try {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: min(490px, 100%); height: 78px; padding: 0 12px 0 24px; border-radius: 999px;
  background: rgba(255,255,255,.22); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); color: #fff; font-size: 20px;
}
.try .dots { display: flex; gap: 10px; }
.cta .stars { font-size: 30px; margin-top: 18px; letter-spacing: 4px; }
.cta small { font-size: 15px; color: #fff; }

/* ---------- Footer ---------- */
footer { padding: 90px 0 40px; }
.foot-grid { display: grid; grid-template-columns: repeat(3, 1fr) 280px; gap: 30px; }
.foot-grid h6 { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--gray); margin-bottom: 26px; font-weight: 600; }
.foot-grid a:not(.store-btn) { display: block; color: #fff; font-size: 20px; margin-bottom: 22px; }
.foot-grid a:hover { color: var(--gold); }
.store-btn { display: flex; align-items: center; gap: 14px; height: 72px; padding: 0 20px; border: 1px solid rgba(255,255,255,.9); border-radius: 14px; margin-bottom: 10px; color: #fff; }
.store-btn svg { width: 26px; height: 26px; }
.store-btn small { display: block; font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.store-btn b { font-size: 20px; line-height: 1; }
.wordmark { margin: 80px 0 30px; }
.wordmark text { font-family: var(--sans); font-weight: 600; letter-spacing: -0.05em; }
.store-btn span { display: block; }
.legal { display: flex; gap: 24px; color: var(--gray); font-size: 20px; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .goals { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .price-card { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 800px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split .split-copy, .split.reverse .split-copy { order: -1; padding: 36px 24px 0; align-items: center; text-align: center; }
  .split .split-copy .btn { align-self: center; }
  .split .split-copy .lead { margin-inline: auto; }
  .pills { justify-content: center; margin-inline: auto; }
  .split .split-media { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { display: none; }
  .price-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .goals { grid-template-columns: repeat(2, 1fr); }
  .nav { height: 58px; top: 12px; }
  .logo { font-size: 28px; }
  .nav-right .label { display: none; }
  .nav-right { border: 0; padding: 0; }
  .store-dot { width: 42px; height: 42px; }
  .price-card { padding: 20px; }
  .plan { padding: 24px 18px; }
  .foot-grid { grid-template-columns: 1fr; }
  .faq summary { font-size: 17px; }
  .try { height: 64px; font-size: 17px; }
  .try .store-dot { width: 42px; height: 42px; }
  .float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
}

.block-gap { margin-top: 70px !important; }
.coin.fall { z-index: 1; }

/* ================= v2 additions ================= */

/* Hero: sunset sky (v0 look) inside rounded Moonly container */
.hero-sky {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(60% 45% at 50% 38%, rgba(247,182,77,.55), transparent 70%),
    linear-gradient(180deg, #5E7C84 0%, #8C8A7A 28%, #C9864C 52%, #8E4A2C 74%, #16181D 100%);
}
.hero-sun {
  position: absolute; left: 50%; top: 36%; width: min(42vw, 440px); aspect-ratio: 1; z-index: -2;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #FFF1D2 0%, #FFD08A 30%, #F7B64D 55%, #D3774D 100%);
  box-shadow: 0 0 120px 40px rgba(247,182,77,.45), 0 0 300px 120px rgba(211,119,77,.25);
  animation: sunbreathe 9s ease-in-out infinite;
}
@keyframes sunbreathe { 50% { transform: translate(-50%, -52%) scale(1.04); } }
.hero-clouds span { position: absolute; z-index: -1; border-radius: 50%; filter: blur(40px); background: rgba(255,226,190,.35); animation: drift 40s linear infinite alternate; }
@keyframes drift { to { transform: translateX(120px); } }
#stars { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.hero::after { background: linear-gradient(180deg, rgba(22,24,29,0) 45%, rgba(22,24,29,.55) 80%, rgba(22,24,29,.9) 100%); }
.hero .eyebrow { margin-bottom: 18px; color: #fff; padding: 8px 14px; border-radius: 999px; background: rgba(22,24,29,.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero .h1 { text-shadow: 0 2px 30px rgba(80,30,10,.25); }

/* Chart -> Explore more -> chat */
.big-btn { position: absolute; left: 14px; right: 14px; height: 40px; border-radius: 999px; background: #fff; color: #16181D; display: grid; place-items: center; font-size: 12.5px; transition: transform .2s, background .2s; }
.big-btn.press { transform: scale(.94); background: var(--gold); }
.big-btn.ghost { background: rgba(255,255,255,.1); color: #fff; }
.big-btn.violet { background: #7B3FF2; color: #fff; }
.big-btn.red { background: rgba(242,123,123,.14); color: #F27B7B; }
.big-btn.red.press { background: #F27B7B; color: #fff; }
.trio { position: absolute; left: 12px; right: 12px; display: grid; gap: 6px; }
.trio .ui-card { display: flex; align-items: center; gap: 10px; padding: 9px 11px; }
.trio .ui-card div { flex: 1; }
.trio b { font-size: 12px; font-weight: 600; display: block; margin-top: 2px; }
.trio .orb { width: 28px; height: 28px; flex: none; }

/* Voice message + GIF bubbles */
.voice { display: flex; align-items: center; gap: 8px; min-width: 170px; }
.voice .pbtn { width: 26px; height: 26px; border-radius: 50%; background: #7B3FF2; color: #fff; display: grid; place-items: center; font-size: 9px; flex: none; }
.voice .wave { display: flex; align-items: center; gap: 2px; height: 22px; flex: 1; }
.voice .wave i { width: 2.5px; border-radius: 2px; background: #C9B6FF; transition: background .2s; }
.voice .wave i.on { background: #6B3FE0; }
.voice small { font-size: 9px; color: #7E6BB8; font-weight: 600; }
.voice-note { font-size: 8.5px; color: #8C7BC0; margin-top: 4px; }
.gif { position: relative; width: 150px; height: 118px; border-radius: 14px; overflow: hidden; align-self: flex-start; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.gif.show { opacity: 1; transform: none; }
.gif .frame { position: absolute; inset: 0; background: center / cover no-repeat; animation: gifzoom 1.2s ease-in-out infinite alternate; }
.gif .frame.f2 { animation: gifzoom 1.2s ease-in-out infinite alternate, gifswap 2.4s steps(1) infinite; }
@keyframes gifzoom { to { transform: scale(1.12) rotate(-2deg); } }
@keyframes gifswap { 0% { opacity: 0; } 50% { opacity: 1; } }
.gif .cap { position: absolute; left: 4px; right: 4px; bottom: 5px; text-align: center; font: 900 11px/1.05 Impact, "Arial Black", sans-serif; color: #fff; text-transform: uppercase; -webkit-text-stroke: 1px #000; paint-order: stroke fill; letter-spacing: .02em; }
.gif .badge-gif { position: absolute; left: 6px; top: 6px; font-size: 8px; font-weight: 700; padding: 2px 5px; border-radius: 4px; background: rgba(0,0,0,.6); color: #fff; }

/* Love: era groups */
.era-head { text-align: center; margin: 100px auto 34px; max-width: 640px; }
.era-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.07); color: var(--gold); margin-bottom: 18px; }
.era-chip i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.era-head .lead { margin-top: 14px; }
.love-tab-list { position: absolute; left: 12px; right: 12px; top: 212px; display: grid; gap: 6px; }
.love-tab-list .ui-card { display: flex; align-items: center; gap: 10px; padding: 11px; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.love-tab-list .ui-card.show { opacity: 1; transform: none; }
.love-tab-list .ui-card div { flex: 1; }
.love-tab-list .ui-card b { display: block; font-size: 12px; font-weight: 600; margin-top: 2px; }
.era-banner { position: absolute; left: 12px; right: 12px; top: 100px; height: 100px; border-radius: 16px; padding: 14px; overflow: hidden; transition: background .5s; }
.era-banner small { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.era-banner .scr-title { font-size: 21px; margin-top: 4px; }
.vintage { position: absolute; top: 100px; width: 104px; height: 134px; border-radius: 52px 52px 10px 10px; background: center 30% / cover no-repeat; filter: sepia(1) contrast(1.05) brightness(.95); box-shadow: 0 0 0 4px #3A2C1E, 0 0 0 5px #C9A36B; }

/* Cancel flow slides */
.flow { position: absolute; inset: 0; }
.flow .slide { background: #16181D; }
.plan-card { position: absolute; left: 12px; right: 12px; top: 100px; border-radius: 18px; padding: 16px; background: linear-gradient(160deg, #3B2C8F, #6A3FD6 60%, #B85FA8); }
.plan-card .status { display: inline-block; font-size: 8.5px; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; border-radius: 999px; background: rgba(86,211,154,.25); color: #9BF0C4; }
.plan-card h6 { font-size: 20px; font-weight: 600; margin: 8px 0 2px; }
.plan-card p { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 500; }
.perk { display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 500; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.perk::before { content: "✓"; width: 16px; height: 16px; border-radius: 50%; background: rgba(247,182,77,.18); color: var(--gold); display: grid; place-items: center; font-size: 9px; flex: none; }
.success-ring { position: absolute; left: 50%; top: 170px; width: 96px; height: 96px; margin-left: -48px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #9BF0C4, #3FB57F); display: grid; place-items: center; color: #0F2A1D; font-size: 44px; box-shadow: 0 0 0 10px rgba(86,211,154,.12), 0 0 0 22px rgba(86,211,154,.06); transform: scale(.4); opacity: 0; transition: transform .6s cubic-bezier(.3,1.6,.5,1), opacity .3s; }
.slide.on .success-ring { transform: scale(1); opacity: 1; }
.flow-crumb { position: absolute; z-index: 30; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 5px; }
.flow-crumb i { width: 6px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.25); transition: width .3s, background .3s; }
.flow-crumb i.on { width: 18px; background: var(--gold); }
.step-label { position: absolute; z-index: 30; left: 50%; top: 58px; transform: translateX(-50%); }

.slide.chat-scr { color: #1B1B22; }
.sb { transition: color .4s; }

/* ================= Meet Eyla ================= */
.eyla-stage { position: relative; min-height: 660px; border-radius: 20px; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: 1fr 1fr; }
.eyla-bg { position: absolute; inset: -6%; z-index: -2; background: center / cover no-repeat; transform: translate3d(var(--bx, 0), var(--by, 0), 0) scale(1.04); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.eyla-stage::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14,16,28,.88) 0%, rgba(14,16,28,.6) 38%, rgba(14,16,28,0) 62%), linear-gradient(0deg, rgba(14,16,28,.55), transparent 30%); }
.eyla-copy { padding: 64px 20px 64px 64px; display: flex; flex-direction: column; justify-content: center; }
.eyla-copy .h3 { margin: 14px 0 20px; color: var(--cream); }
.eyla-copy .lead { color: rgba(243,236,227,.75); max-width: 440px; }
.eyla-traits { list-style: none; display: grid; gap: 12px; margin: 26px 0 30px; }
.eyla-traits li { display: flex; align-items: center; gap: 14px; }
.eyla-traits .orb { width: 34px; height: 34px; flex: none; }
.eyla-traits b { display: block; font-size: 17px; color: #fff; }
.eyla-traits small { display: block; font-size: 14px; color: rgba(243,236,227,.6); margin-top: 2px; }
.eyla-copy .btn { align-self: flex-start; }
.eyla-figure { position: relative; transform: translate3d(var(--fx, 0), 0, 0); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.eyla-person { position: absolute; bottom: 0; right: 4%; height: 96%; aspect-ratio: 1145 / 1374; }
.eyla-talisman { position: absolute; top: 7%; left: -4%; width: 150px; height: 150px; filter: drop-shadow(0 18px 30px rgba(20,10,60,.5)); animation: talisman 9s ease-in-out infinite; }
.say { position: absolute; z-index: 3; opacity: 0; transform: translateY(14px) scale(.92); transition: opacity .6s ease, transform .6s cubic-bezier(.3,1.4,.5,1); }
.say.show { opacity: 1; transform: none; }
.say span { display: block; padding: 14px 18px; border-radius: 22px 22px 22px 6px; font-size: 16px; line-height: 1.25; color: #fff; background: linear-gradient(160deg, #8B5CF6, #6D3FE6); box-shadow: 0 16px 40px rgba(60,20,160,.45), inset 0 1px 0 rgba(255,255,255,.25); }
.say.light span { background: linear-gradient(160deg, #FFFFFF, #EFE7FF); color: #5B2BD6; border-radius: 22px 22px 6px 22px; box-shadow: 0 16px 40px rgba(20,10,60,.35); }
.say-1 { left: -16%; top: 40%; }
.say-2 { right: 2%; top: 14%; }
.say-3 { left: 2%; bottom: 12%; }
.mini-voice { display: flex !important; align-items: center; gap: 10px; font-size: 13px !important; }
.mini-voice i { font-style: normal; width: 28px; height: 28px; border-radius: 50%; background: #fff; color: #6D3FE6; display: grid; place-items: center; font-size: 10px; }
.mini-voice em { width: 96px; height: 18px; border-radius: 3px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.9) 0 3px, transparent 3px 6px); animation: voicepulse 1.1s ease-in-out infinite; }
@keyframes voicepulse { 50% { transform: scaleY(.55); } }
.eyla-av { background: center / cover no-repeat url(../img/eyla/eyla-avatar-v2.png) !important; }
.cta-talisman { width: 120px; height: 120px; margin-bottom: 18px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.45)); animation: talisman 9s ease-in-out infinite; }
.cta .count { margin-bottom: 50px; }

@media (max-width: 900px) {
  .eyla-stage { grid-template-columns: 1fr; }
  .eyla-stage::before { background: linear-gradient(180deg, rgba(14,16,28,.85) 0%, rgba(14,16,28,.55) 45%, rgba(14,16,28,0) 70%); }
  .eyla-copy { padding: 40px 24px 10px; text-align: center; align-items: center; }
  .eyla-copy .btn { align-self: center; }
  .eyla-traits li { text-align: left; }
  .eyla-figure { height: 520px; }
  .eyla-person { right: 50%; transform: translateX(50%); height: 100%; }
  .say span { font-size: 14px; }
  .say-1 { left: 2%; top: 30%; }
  .eyla-talisman { width: 100px; height: 100px; left: 4%; top: 2%; }
}

/* ================= Eyla: smooth "alive" motion (CSS, GPU-only) ================= */
.eyla-drift, .eyla-sway, .eyla-breathe { will-change: transform; }
.eyla-drift { position: absolute; inset: 0; animation: eylaDrift 9s cubic-bezier(.45,.05,.55,.95) infinite alternate; }
.eyla-sway { position: absolute; inset: 0; transform-origin: 50% 100%; animation: eylaSway 13s cubic-bezier(.45,.05,.55,.95) infinite alternate; }
.eyla-breathe { position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; transform-origin: 50% 88%; animation: eylaBreathe 5.2s cubic-bezier(.37,0,.63,1) infinite alternate; filter: drop-shadow(0 30px 60px rgba(0,0,0,.35)); }
.eyla-glow { position: absolute; left: 12%; right: 12%; top: 2%; height: 60%; border-radius: 50%; background: radial-gradient(circle, rgba(255,214,150,.45), rgba(247,182,77,.12) 45%, transparent 70%); filter: blur(10px); animation: eylaGlow 6.5s ease-in-out infinite alternate; }
@keyframes eylaDrift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, -10px, 0); } }
@keyframes eylaSway { from { transform: rotate(-.6deg); } to { transform: rotate(.6deg); } }
@keyframes eylaBreathe { from { transform: scale(1, 1); } to { transform: scale(1.006, 1.014); } }
@keyframes eylaGlow { from { opacity: .55; transform: scale(.96); } to { opacity: 1; transform: scale(1.04); } }
@keyframes talisman { 0% { transform: translate3d(0,0,0) rotate(-3deg); } 50% { transform: translate3d(0,-14px,0) rotate(3deg); } 100% { transform: translate3d(0,0,0) rotate(-3deg); } }
[data-parallax] { transition: none; }
[data-parallax] > .eyla-drift, [data-parallax] > .eyla-glow { translate: var(--px, 0) var(--py, 0); }

/* ================= Hero with Eyla ================= */
.hero { align-items: stretch; text-align: left; padding: 140px 0 130px; }
.hero-copy { position: relative; width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.hero-copy .h1 { max-width: 620px; }
.hero-copy .lead { margin: 16px 0 28px; max-width: 470px; }
.hero-copy .eyebrow { display: inline-block; }
.hero-sun { left: 70%; top: 38%; width: min(38vw, 520px); }
.hero-eyla { position: absolute; z-index: -1; bottom: 0; right: 7%; height: 90%; aspect-ratio: 1145 / 1374; }
.hero-eyla .eyla-glow { top: 6%; }
.hero-sky::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,24,29,.55) 0%, rgba(22,24,29,.25) 35%, transparent 55%); }
.hero .rv { transition-duration: 1.1s; }
.hero-eyla { animation: eylaEnter 1.6s cubic-bezier(.2,.8,.2,1) both; }
@keyframes eylaEnter { from { opacity: 0; transform: translate3d(0, 40px, 0); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero { justify-content: flex-start; padding: 120px 0 0; text-align: center; min-height: 900px; }
  .hero-copy { width: calc(100% - 32px); }
  .hero-copy .h1, .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-eyla { right: 50%; margin-right: calc(-0.5 * 52vh * 1145 / 1374); height: 52vh; max-height: 480px; }
  .hero-sun { left: 50%; top: 66%; width: 70vw; }
  .hero-sky::after { background: linear-gradient(180deg, rgba(22,24,29,.5) 0%, rgba(22,24,29,.2) 40%, transparent 60%); }
}
@media (prefers-reduced-motion: reduce) {
  .eyla-drift, .eyla-sway, .eyla-breathe, .eyla-glow, .eyla-talisman, .cta-talisman, .hero-eyla { animation: none !important; }
}

@media (max-width: 560px) { .hero-copy .h1 br { display: none; } }

/* ================= Hero = the one Eyla block ================= */
.hero-traits { list-style: none; display: grid; gap: 10px; margin: 0 0 30px; }
.hero-traits li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #fff; }
.hero-traits .orb { width: 26px; height: 26px; flex: none; }
.hero-copy .lead { max-width: 500px; margin: 16px 0 24px; }
.hero-eyla .say-1 { left: -30%; top: 36%; }
.hero-eyla .say-2 { right: -8%; top: 12%; }
.hero-eyla .say-3 { left: -12%; bottom: 20%; }
.hero-eyla .say { translate: var(--px, 0) var(--py, 0); }
@media (max-width: 900px) {
  .hero { min-height: 1080px; }
  .hero-traits { justify-items: center; }
  .hero-traits li { font-size: 14px; }
  .hero-eyla .say-1 { left: -22%; top: 34%; }
  .hero-eyla .say-2 { right: -18%; top: 6%; }
  .hero-eyla .say-3 { left: -10%; bottom: 16%; }
  .hero-eyla .say span { font-size: 12.5px; padding: 10px 13px; }
}
@media (max-width: 560px) { .hero-eyla .say-1 { left: -8%; } .hero-eyla .say-2 { right: -6%; } }
@media (max-width: 900px) {
  .hero { min-height: 0; padding-bottom: min(52vh, 480px); }
  .hero-eyla .say-1 { left: -4%; top: 38%; }
  .hero-eyla .say-2 { right: -4%; top: 4%; }
  .hero-eyla .say-3 { left: 0; bottom: 14%; }
}
@media (min-width: 901px) {
  .hero-eyla .say-1 { left: auto; right: -12%; top: 50%; }
  .hero-eyla .say-1 span { border-radius: 22px 22px 6px 22px; }
  .hero-eyla .say-3 { left: -6%; bottom: 24%; }
}

/* Social proof aligned with hero copy */
.hero-proof { display: flex; align-items: center; gap: 20px; margin-top: 34px; color: #fff; flex-wrap: wrap; }
.hero-proof .sep { width: 1px; height: 28px; background: rgba(255,255,255,.25); }
.hero-proof .badge span:last-child { text-align: left; }
.hero { padding-bottom: 90px; }
@media (max-width: 900px) {
  .hero-proof { justify-content: center; gap: 14px; margin-top: 26px; }
  .hero-proof .badge b { font-size: 24px; }
  .hero-proof .stars { font-size: 14px; }
  .hero { padding-bottom: min(52vh, 480px); }
}

/* ================= Generated assets ================= */
.talis, .talis-lg { filter: drop-shadow(0 12px 22px rgba(20,10,60,.45)); animation: talisman 8s ease-in-out infinite; }
.goal .talis { animation-duration: 9s; }
.goal:nth-child(6) .talis { animation-delay: -3s; }
.sketch-img.soft { filter: contrast(1.05); mix-blend-mode: multiply; background-position: center 18%; }
.fin-talis { position: absolute; z-index: 5; left: 50%; top: 92px; width: 118px; height: 118px; margin-left: -59px; }
.fin-head { background: radial-gradient(60% 70% at 50% 45%, rgba(255,214,140,.55), transparent 70%), linear-gradient(180deg, #C98A33 0%, #7A4A1C 60%, #16181D 100%); }
.aura-halo { position: absolute; left: 50%; top: 150px; width: 220px; height: 220px; margin-left: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(179,140,255,.45), rgba(255,158,207,.18) 45%, transparent 70%); filter: blur(12px); animation: eylaGlow 4.5s ease-in-out infinite alternate; }
.aura-visual { position: absolute; left: 50%; top: 96px; width: 156px; height: 234px; margin-left: -78px; object-fit: contain; transform-origin: 50% 60%; animation: auraPulse 5s cubic-bezier(.37,0,.63,1) infinite alternate; transition: filter 1.2s; }
@keyframes auraPulse { from { transform: scale(.97); filter: drop-shadow(0 0 10px rgba(179,140,255,.35)) brightness(.95); } to { transform: scale(1.03); filter: drop-shadow(0 0 28px rgba(255,180,220,.6)) brightness(1.08); } }
@media (prefers-reduced-motion: reduce) { .talis, .talis-lg, .aura-visual, .aura-halo { animation: none !important; } }

@media (min-width: 901px) { .hero-eyla .say-3 { left: -18%; bottom: 5%; } }
