/* ════════════════════════════════════════════════════════════════
   Circl — Landing page · dark neon nightlife
   ════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/PlusJakartaSans-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Righteous";
  src: url("assets/Righteous-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg: #0d0614;
  --bg-deep: #08030f;
  --card: #1a1222;
  --elevated: #16101c;
  --accent: #ff3366;
  --yellow: #f5e960;
  --peri: #a8b4e8;
  --text: #f0ebf2;
  --muted: #8b7a8f;
  --go: #34d399;
  --hair: rgba(255,255,255,0.08);
  --hair-strong: rgba(255,255,255,0.15);
  --ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Righteous", system-ui, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ui);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: rgba(255,51,102,0.32); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── shared layout ──────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.sec-pad { padding: clamp(80px, 11vw, 160px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: clamp(12px, 1.3vw, 15px); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow.y { color: var(--yellow); }
.eyebrow.g { color: var(--go); }
.eyebrow.p { color: var(--peri); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 99px; background: currentColor; box-shadow: 0 0 12px currentColor; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.03; letter-spacing: 0.004em; }
h2.title { font-size: clamp(34px, 5.2vw, 68px); margin-top: 20px; }
.lead { color: var(--peri); font-weight: 500; line-height: 1.5; }
.muted { color: var(--muted); }

/* ── buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ui); font-weight: 700; font-size: 17px;
  padding: 16px 28px; border-radius: 99px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), opacity .2s, background .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 0 34px rgba(255,51,102,0.45); }
.btn-accent:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 6px 44px rgba(255,51,102,0.6); }
.btn-accent:active { transform: scale(.97); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--hair-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── sticky nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,3,15,0.72); backdrop-filter: blur(16px); border-bottom-color: var(--hair); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav .btn { padding: 11px 22px; font-size: 15px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ── neon glow blobs (parallax) ─────────────────────────────────── */
.glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; will-change: transform; }
.glow-pink { background: radial-gradient(circle, rgba(255,51,102,0.4), transparent 70%); }
.glow-peri { background: radial-gradient(circle, rgba(168,180,232,0.28), transparent 70%); }
.glow-yellow { background: radial-gradient(circle, rgba(245,233,96,0.26), transparent 70%); }
.glow-go { background: radial-gradient(circle, rgba(52,211,153,0.3), transparent 70%); }

/* ── reveal animation primitives ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }
.reveal-scale { opacity: 0; transform: scale(.92) translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--hair);
  border-radius: 22px; box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card.hov:hover { transform: translateY(-4px); border-color: rgba(255,51,102,0.35); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }

.icon-tile {
  width: 56px; height: 56px; border-radius: 16px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,51,102,0.14); color: var(--accent);
}
.icon-tile.go { background: rgba(52,211,153,0.14); color: var(--go); }
.icon-tile.peri { background: rgba(168,180,232,0.14); color: var(--peri); }
.icon-tile.yellow { background: rgba(245,233,96,0.14); color: var(--yellow); }
.icon-tile svg { width: 28px; height: 28px; }
svg.ic { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 99px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--hair-strong);
  font-size: 15px; font-weight: 600; color: var(--peri);
}

/* ════════ HERO ════════ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 74px; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; text-align: center; width: 100%; }
.hero-wordmark { height: clamp(70px, 11vw, 132px); width: auto; margin: 0 auto 38px; filter: drop-shadow(0 0 30px rgba(255,51,102,0.4)); }
.hero h1 { font-size: clamp(52px, 11vw, 132px); text-shadow: 0 0 44px rgba(255,51,102,0.32); }
.hero .sub { font-size: clamp(19px, 2.6vw, 30px); margin: 24px auto 0; max-width: 620px; }
.hero-verbs { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-verbs .chip { font-size: clamp(15px, 2vw, 19px); padding: 11px 24px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.scroll-cue.gone { opacity: 0; transform: translate(-50%, 16px); pointer-events: none; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--hair-strong); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 2px; background: var(--accent); transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue .mouse::after { animation: none; } }
@media (max-height: 760px) { .scroll-cue { display: none; } }

/* ════ PROBLEMA ════ */
.problem-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.pain-list { display: flex; flex-direction: column; gap: 22px; }
.pain { display: flex; align-items: center; gap: 18px; font-weight: 600; font-size: clamp(20px, 2.6vw, 30px); }
.pain .xc { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 99px; display: flex; align-items: center; justify-content: center; background: rgba(244,96,122,0.16); color: #f4607a; }
.pain.struck .txt { position: relative; }
.pain.struck .txt::after { content: ""; position: absolute; left: 0; top: 54%; height: 3px; background: #f4607a; border-radius: 2px; width: 0; transition: width .7s var(--ease) .2s; }
.pain.struck.in .txt::after { width: 100%; }
.loss-card { padding: 36px; }
.loss-card .lh { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--muted); }
.loss-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; font-weight: 600; font-size: clamp(18px,2.2vw,22px); }
.problem-closer { margin-top: 64px; font-family: var(--display); font-size: clamp(30px, 5vw, 60px); }
.problem-closer .pre { font-family: var(--ui); font-weight: 500; color: var(--muted); font-size: clamp(18px,2.4vw,26px); display: block; margin-bottom: 8px; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ════ SOLUCIÓN ════ */
.sol-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.verb-list { display: flex; flex-direction: column; gap: 16px; margin-top: 38px; }
.verb { display: flex; align-items: center; gap: 20px; padding: 22px 26px; }
.verb h3 { font-family: var(--ui); font-weight: 800; font-size: 23px; }
.verb .vd { font-size: 17px; color: var(--peri); margin-top: 3px; }
@media (max-width: 880px) { .sol-grid { grid-template-columns: 1fr; gap: 48px; } .phone-stage { order: -1; } }

/* ── phone mockup ── */
.phone-stage[data-rise] { opacity: 0; will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) { .phone-stage[data-rise] { opacity: 1 !important; transform: none !important; } }
.phone-stage { display: flex; justify-content: center; perspective: 1400px; }
.phone {
  position: relative; width: 320px; height: 668px; border-radius: 46px;
  background: var(--bg); border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 11px #0a0710; overflow: hidden;
}
.phone .glow-ring { position: absolute; inset: -40px; border-radius: 80px; background: radial-gradient(circle, rgba(255,51,102,0.28), transparent 70%); filter: blur(34px); z-index: -1; }
.phone .notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 118px; height: 27px; background: #0a0710; border-radius: 0 0 16px 16px; z-index: 8; }
.phone-screen { position: absolute; inset: 0; overflow: hidden; }
.btn-primary { display: flex; width: 100%; align-items: center; justify-content: center; gap: 9px; border-radius: 13px; background: var(--accent); color: #fff; font-weight: 800; box-shadow: 0 5px 16px rgba(255,51,102,0.32); }

/* ════ FEATURES (alternating rows) ════ */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; margin-top: 84px; }
.feat-row:first-of-type { margin-top: 56px; }
.feat-row.flip .feat-visual { order: 2; }
.feat-num { font-family: var(--display); font-size: 22px; color: var(--accent); border: 1px solid rgba(255,51,102,0.4); background: rgba(255,255,255,0.04); border-radius: 12px; padding: 6px 14px; }
.feat-text h3 { font-family: var(--display); font-size: clamp(28px, 3.6vw, 46px); margin-top: 22px; }
.feat-text .fd { font-size: clamp(17px, 2vw, 21px); color: var(--peri); margin-top: 16px; max-width: 480px; }
.feat-points { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.feat-points li { display: flex; align-items: flex-start; gap: 12px; list-style: none; font-size: clamp(15px,1.9vw,18px); color: var(--text); }
.feat-points li svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 1px; color: var(--accent); }
.feat-row.go .feat-num { color: var(--go); border-color: rgba(52,211,153,0.4); }
.feat-row.go .feat-points li svg { color: var(--go); }
@media (max-width: 880px) { .feat-row, .feat-row.flip { grid-template-columns: 1fr; gap: 36px; } .feat-row .feat-visual, .feat-row.flip .feat-visual { order: -1; } }
/* ── features section: mobile fit ── */
.feat-visual, .win { max-width: 100%; }
@media (max-width: 560px) {
  .feat-visual > .card { right: 2px !important; top: -18px !important; padding: 10px 14px !important; }
  .kgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .kpi { padding: 13px 14px; }
  .kpi .v { font-size: 20px; }
  .win .win-url { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* mock window */
.win { position: relative; border-radius: 16px; overflow: hidden; background: var(--bg); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.win-bar { height: 42px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: #0b0d12; border-bottom: 1px solid rgba(255,255,255,0.08); }
.win-bar .d { width: 11px; height: 11px; border-radius: 99px; }
.win-url { margin-left: 12px; padding: 4px 13px; border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--muted); font-size: 12px; }
.field { height: 46px; display: flex; align-items: center; padding: 0 14px; border-radius: 11px; background: var(--elevated); border: 1px solid rgba(255,255,255,0.12); font-weight: 500; font-size: 15px; }
.field.filled { border-color: rgba(255,51,102,0.4); }
.field-label { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.kpi { padding: 16px 18px; border-radius: 15px; background: var(--elevated); border: 1px solid var(--hair); }
.kpi .l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 7px; }
.kpi .v { font-weight: 800; font-size: clamp(22px,2.5vw,27px); font-variant-numeric: tabular-nums; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 150px; }
.bar { flex: 1; border-radius: 7px 7px 0 0; background: rgba(255,51,102,0.35); transform-origin: bottom; transform: scaleY(0); transition: transform .42s var(--ease); }
.bar.last { background: var(--accent); box-shadow: 0 0 16px rgba(255,51,102,0.6); }
.in .bar { transform: scaleY(1); }
.in .bars .bar:nth-child(1) { transition-delay: .04s; }
.in .bars .bar:nth-child(2) { transition-delay: .09s; }
.in .bars .bar:nth-child(3) { transition-delay: .14s; }
.in .bars .bar:nth-child(4) { transition-delay: .19s; }
.in .bars .bar:nth-child(5) { transition-delay: .24s; }
.in .bars .bar:nth-child(6) { transition-delay: .29s; }
.in .bars .bar:nth-child(7) { transition-delay: .34s; }
.in .bars .bar:nth-child(8) { transition-delay: .39s; }
.in .bars .bar:nth-child(9) { transition-delay: .44s; }
.in .bars .bar:nth-child(10) { transition-delay: .49s; }
.in .bars .bar:nth-child(11) { transition-delay: .54s; }
.in .bars .bar:nth-child(12) { transition-delay: .59s; }
@media (prefers-reduced-motion: reduce) { .bar { transform: scaleY(1); transition: none; } }

.scan-screen { position: absolute; inset: 0; background: #059669; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; }

/* ════ HOW IT WORKS ════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.step { padding: 36px 32px; }
.step .sh { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.step .sn { font-family: var(--display); font-size: 44px; color: var(--accent); }
.step h3 { font-family: var(--ui); font-weight: 800; font-size: 25px; margin-bottom: 10px; }
.step .sd { color: var(--peri); font-size: 18px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ════ MERCADO ════ */
.opp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.opp { padding: 34px 32px; }
.opp h3 { font-family: var(--ui); font-weight: 800; font-size: 23px; margin: 22px 0 10px; }
.opp .od { color: var(--peri); font-size: 18px; }
@media (max-width: 820px) { .opp-grid { grid-template-columns: 1fr; } }

/* ════ PRICING ════ */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.price-card { padding: 46px 46px; }
.price-card .pct { font-family: var(--display); font-size: clamp(80px, 11vw, 128px); line-height: 0.88; color: var(--accent); text-shadow: 0 0 44px rgba(255,51,102,0.4); }
.price-card.peri .pct { color: var(--peri); text-shadow: 0 0 44px rgba(168,180,232,0.35); }
.price-card .who { font-weight: 700; font-size: clamp(22px,2.6vw,28px); margin-left: 18px; }
.price-card .pd { color: var(--peri); font-size: clamp(18px,2.1vw,21px); margin-top: 20px; }
.price-closer { text-align: center; margin-top: 56px; }
.price-closer .pc1 { font-weight: 700; font-size: clamp(24px,3.4vw,38px); }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }

/* ════ CTA / FOOTER ════ */
.cta-final { text-align: center; overflow: hidden; }
.cta-final h2 { font-size: clamp(46px, 9vw, 110px); text-shadow: 0 0 36px rgba(255,51,102,0.3); }
.cta-final .sub { font-size: clamp(19px,2.6vw,30px); margin-top: 18px; }
.foot-contact { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 40px; font-weight: 600; font-size: 19px; color: var(--muted); }
.foot-contact .sep { color: rgba(255,255,255,0.2); }
.foot-contact a { transition: color .2s; }
.foot-contact a:hover { color: var(--accent); }
footer.site { border-top: 1px solid var(--hair); padding: 36px 0; }
footer.site .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer.site img { height: 20px; opacity: 0.7; }
footer.site .fnote { font-size: 14px; color: var(--muted); }

/* floating tag chips on solucion phone hero */
.tag-sm { display: inline-flex; padding: 4px 11px; border-radius: 99px; background: rgba(255,255,255,0.12); color: var(--peri); font-size: 12px; font-weight: 500; }
