:root {
  --accent: #A78BFA;
  --accent-light: #E9D5FF;
  --accent-deep: #6D28D9;
  --glass: rgba(255,255,255,0.045);
  --glass-border: rgba(255,255,255,0.12);
  --glass-blur: 26px;
  --orb: radial-gradient(circle at 30% 24%, #FFFFFF 0%, #E9D5FF 18%, #A78BFA 48%, #6D28D9 78%, #2E1065 100%);
  --grad-btn: linear-gradient(135deg, #E9D5FF 0%, #A78BFA 45%, #6D28D9 100%);
  --btn-txt: #FFFFFF;
  --dscale: 0.7;
  --orb-blur: 0px;
  --orb-shadow: 0 0 60px color-mix(in srgb, var(--accent) 55%, transparent), 0 34px 100px rgba(0,0,0,0.8);
  --txt: #FFFFFF;
  --txt-soft: rgba(255,255,255,0.72);
  --txt-mute: rgba(255,255,255,0.48);
  --font: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; background: #0f0d14; }

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 42% 30% at 14% 4%, rgba(196,181,253,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 34% 26% at 88% 18%, rgba(167,139,250,0.07) 0%, transparent 72%),
    linear-gradient(158deg, #201d2b 0%, #16141d 34%, #0f0e14 66%, #0a090d 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

.page { position: relative; overflow: hidden; }

/* ---------- glass ---------- */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  transition: background 400ms ease, border-color 400ms ease, backdrop-filter 400ms ease;
}

/* ---------- layout helpers ---------- */
.wrapc { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

.section { position: relative; }

.pad-hero      { padding-top: calc(44px * var(--dscale)); padding-bottom: calc(56px * var(--dscale)); }
.pad-benefits  { padding-top: calc(20px * var(--dscale)); padding-bottom: calc(8px  * var(--dscale)); }
.pad-marquee   { padding-top: calc(34px * var(--dscale)); padding-bottom: calc(22px * var(--dscale)); }
.pad-faq       { padding-top: calc(22px * var(--dscale)); padding-bottom: calc(8px  * var(--dscale)); }
.pad-final     { padding-top: calc(34px * var(--dscale)); padding-bottom: calc(40px * var(--dscale)); }

/* ---------- orbs ---------- */
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.sphere {
  background: var(--orb);
  box-shadow: var(--orb-shadow);
  filter: blur(var(--orb-blur));
  transition: background 500ms ease, box-shadow 500ms ease, filter 500ms ease;
}
.torus {
  background: var(--orb) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(calc(0.4px + var(--orb-blur)));
  transition: background 500ms ease, filter 500ms ease;
}

@keyframes float1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(24px,-34px) rotate(8deg); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-28px,28px) rotate(-10deg); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(16px,22px) scale(1.06); } }
.f1 { animation: float1 16s ease-in-out infinite; }
.f2 { animation: float2 20s ease-in-out infinite; }
.f3 { animation: float3 13s ease-in-out infinite; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 7px 16px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.1em;
  color: var(--txt); text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-light); box-shadow: 0 0 10px var(--accent);
}

/* ---------- buttons ---------- */
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; border-radius: 999px;
  color: var(--btn-txt); background: var(--grad-btn);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, background 400ms ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.wa-btn:hover, .wa-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255,255,255,0.35), 0 14px 38px rgba(0,0,0,0.6);
}
.wa-btn-lg { font-size: 16px; padding: 17px 36px; }
.wa-btn-sm { font-size: 13px; padding: 10px 22px; }

.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 0 18px rgba(37,211,102,0.35), 0 10px 26px rgba(0,0,0,0.5);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fab:hover, .fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(37,211,102,0.6), 0 14px 34px rgba(0,0,0,0.55);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 14px; z-index: 40; margin: 14px auto 0;
}
.hdr-pill {
  border-radius: 999px; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px 11px 20px;
}
.wordmark { display: flex; align-items: baseline; gap: 7px; flex-shrink: 0; white-space: nowrap; }
.wordmark-name { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; color: #fff; white-space: nowrap; }
.wordmark-year { font-weight: 700; font-size: 13px; color: var(--accent); white-space: nowrap; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.navlink { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--txt-soft); }

/* ---------- hero ---------- */
.hero-card { padding: 56px 52px; border-radius: 28px; text-align: center; }
.hero-lead {
  display: block; font-weight: 800; color: #fff; letter-spacing: -0.015em;
  line-height: 1.05; font-size: 46px;
  text-shadow: 0 0 34px color-mix(in srgb, var(--accent) 30%, transparent);
}
h1 { margin: 22px 0 0; }
.hero-logo-wrap {
  position: relative; display: block; width: fit-content; margin: 10px auto 0;
}
.hero-logo-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 145%; height: 160%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse at 46% 42%, color-mix(in srgb, var(--accent) 26%, transparent) 0%, color-mix(in srgb, var(--accent) 10%, transparent) 38%, transparent 74%);
  filter: blur(8px);
}
.hero-feria {
  position: relative; display: block; width: auto; height: 150px; max-width: 100%;
  filter: drop-shadow(0 0 30px color-mix(in srgb, var(--accent) 45%, transparent)) drop-shadow(0 12px 26px rgba(0,0,0,0.6));
}
.hero-sub {
  font-size: 17px; color: var(--txt-soft); margin: 20px auto 0; max-width: 560px; line-height: 1.55;
}
.hero-photo {
  position: relative; margin: 26px auto 0; max-width: 640px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px color-mix(in srgb, var(--accent) 22%, transparent), 0 22px 60px rgba(0,0,0,0.6);
}
.hero-photo img { display: block; width: 100%; height: auto; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(15,13,20,0.18) 0%, transparent 30%, rgba(15,13,20,0.55) 100%);
}
.hero-cta { margin-top: 28px; }
.hero-trust { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72); margin-top: 14px; }

/* ---------- section headings ---------- */
.h2 { font-weight: 800; color: #fff; letter-spacing: -0.02em; font-size: 36px; margin: 14px 0 0; }
.h2-sm { font-weight: 800; color: #fff; letter-spacing: -0.02em; font-size: 32px; margin: 14px 0 0; }
.section-head { text-align: center; margin-bottom: 26px; }

/* ---------- benefits ---------- */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 14px;
}
.feat {
  border-radius: 18px; padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: box-shadow 260ms ease, border-color 260ms ease, transform 260ms ease, background 260ms ease;
}
.feat:hover, .feat.lit {
  border-color: var(--accent-light) !important;
  background: color-mix(in srgb, var(--accent) 16%, transparent) !important;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-light) 50%, transparent), 0 0 22px color-mix(in srgb, var(--accent) 55%, transparent), 0 0 52px color-mix(in srgb, var(--accent) 35%, transparent), inset 0 0 26px color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translateY(-3px);
}
.feat:hover .feat-dot, .feat.lit .feat-dot { box-shadow: 0 0 16px var(--accent-light); }
.feat:hover .feat-txt, .feat.lit .feat-txt { color: #fff; text-shadow: 0 0 14px color-mix(in srgb, var(--accent-light) 55%, transparent); }
.feat-dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-btn); display: flex; align-items: center; justify-content: center;
  color: var(--btn-txt); font-size: 13px; font-weight: 800;
  transition: box-shadow 260ms ease, background 400ms ease;
}
.feat-txt { font-size: 15px; color: var(--txt-soft); line-height: 1.5; transition: color 260ms ease, text-shadow 260ms ease; }
.section-cta { text-align: center; margin-top: 26px; }

/* ---------- marquee ---------- */
.marquee-wrap { overflow: hidden; width: 100%; position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 14px; width: max-content; padding: 0 18px; animation: marquee 32s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testi-card {
  border-radius: 18px; padding: 20px; width: 270px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.testi-top { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  color: var(--btn-txt); font-weight: 700; font-size: 13px;
}
.testi-name { font-weight: 700; font-size: 13px; color: #fff; }
.testi-handle { font-size: 11px; color: var(--txt-mute); }
.testi-quote { font-size: 13px; color: var(--txt-soft); line-height: 1.5; margin: 0; }

/* ---------- FAQ ---------- */
.faq-card { padding: 10px 30px; border-radius: 24px; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.10); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 16px; color: #fff; padding: 0;
}
.faq-mark { flex-shrink: 0; font-size: 22px; color: var(--accent-light); transition: transform 220ms ease; }
.faq-item.open .faq-mark { transform: rotate(45deg); }
.faq-a {
  margin: 11px 0 0; font-size: 14px; color: var(--txt-soft); line-height: 1.6;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ---------- final CTA ---------- */
.cta-card { padding: 52px 44px; border-radius: 28px; text-align: center; }
.cta-sub { font-size: 15px; color: var(--txt-soft); margin: 0 0 24px; }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 2; padding: 22px 0 60px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--txt-mute); }
.footer-top { font-size: 13px; color: var(--txt-soft); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .wrapc { padding: 0 18px; }
  .hero-lead { font-size: 32px; }
  .hero-feria { height: 108px !important; }
  .hero-card { padding: 32px 22px; border-radius: 22px; }
  .cta-card { padding: 34px 22px; border-radius: 22px; }
  .faq-card { padding: 6px 18px; border-radius: 18px; }
  .h2 { font-size: 26px; }
  .h2-sm { font-size: 24px; }
  .navlink { display: none; }
  .feat { padding: 18px !important; }
  .wa-btn-lg {
    white-space: normal !important;
    width: 100%; max-width: 100%;
    justify-content: center;
    padding: 15px 20px !important;
    font-size: 15px !important;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .hero-feria { height: 84px !important; }
  .hero-lead { font-size: 26px; }
}
@media (max-width: 360px) {
  .hdr-pill { padding: 10px 10px !important; }
  .hdr-pill .wa-btn-sm { padding: 9px 14px !important; }
}
