/* Zeduno — pricing page. Consumes landing.css + landing-fx.css. */
.pg-hero { padding: 168px 0 26px; text-align: center; }
.pg-hero .lp-eyebrow { justify-content: center; }
.pg-mark { width: 68px; height: 68px; border-radius: 19px; margin: 0 auto 30px; }
.pg-mark svg { height: 31px; }
.pg-hero .lp-container { display: flex; flex-direction: column; align-items: center; }
.pg-h1 { margin: 0 auto 18px; max-width: 720px; }
.pg-lead { margin: 0 auto; max-width: 560px; }
.bill-wrap { position: relative; display: inline-flex; margin-top: 58px; }
.bill-toggle { position: relative; z-index: 1; display: inline-flex; gap: 4px; padding: 4px; background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-pill); }
.bill-thumb { position: absolute; left: 0; top: 4px; bottom: 4px; width: 0; border-radius: var(--radius-pill); background: var(--gradient-cta); box-shadow: var(--glow-violet), inset 0 1px 0 rgba(255,255,255,.28); }
@media (prefers-reduced-motion: no-preference) {
  .bill-thumb { transition: transform .5s cubic-bezier(.34, .9, .3, 1.04), width .5s cubic-bezier(.34, .9, .3, 1.04); }
}
.bill-opt { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--muted); background: none; border: 0; border-radius: var(--radius-pill); padding: 8px 18px; cursor: pointer; transition: color .35s var(--ease-out); }
.bill-opt:hover { color: var(--ink-soft); }
.bill-opt.on { color: #fff; }
.bill-opt:active { transform: scale(.97); }
/* "2 months free" — aurora tag; two placements (tweak): beside = slides up when Yearly picked, above = floating tag */
.bill-note { position: absolute; pointer-events: none; white-space: nowrap; }
.mode-above .bill-note { bottom: calc(100% + 13px); left: 75%; transform: translateX(-50%) scale(0); transform-origin: 50% calc(100% + 10px); transition: transform .6s cubic-bezier(.34, 1.65, .4, 1) .55s; }
.mode-above.is-in .bill-note { transform: translateX(-50%) scale(1); }
/* beside mode: tag lives BEHIND the pill; peeks out at its right edge on Monthly, slides fully out on Yearly */
.mode-beside .bill-note { left: 100%; top: 50%; z-index: 0; opacity: .92; filter: saturate(.72) brightness(.82); transform: translate(-101%, -50%); transition: transform .6s cubic-bezier(.34, 1.56, .4, 1), filter .4s var(--ease-out), opacity .4s var(--ease-out); }
.mode-beside.is-in .bill-note { transform: translate(calc(-100% + 30px), -50%); }
.mode-beside.is-in .bill-note.lit { transform: translate(14px, -50%); filter: none; opacity: 1; }
.mode-beside .bn-in::after { display: none; }
.mode-beside .bn-star { order: 2; margin: 0 0 0 7px; }
.bn-in { position: relative; display: inline-flex; align-items: center; border: 1px solid transparent; border-radius: var(--radius-pill); padding: 6px 13px 6px 11px; background: linear-gradient(var(--surface-2), var(--surface-2)) padding-box, linear-gradient(100deg, #8B82F0, #AC92E7 45%, #5BB8E8) border-box; box-shadow: 0 6px 22px rgba(124, 92, 200, .28), 0 0 30px rgba(139, 130, 240, .14); transition: background .45s, box-shadow .45s; }
.bn-in::after { content: ""; position: absolute; top: 100%; left: 50%; width: 1.5px; height: 12px; transform: translateX(-50%); border-radius: 1px; background: linear-gradient(180deg, #AC92E7, rgba(172, 146, 231, 0)); filter: drop-shadow(0 0 4px rgba(172, 146, 231, .8)); transition: background .45s; }
.bn-star { font-style: normal; font-size: 10px; line-height: 1; margin-right: 7px; color: #AC92E7; text-shadow: 0 0 8px rgba(172, 146, 231, .9); transition: color .45s; }
.bn-txt { font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; background: linear-gradient(100deg, #C9B7F0 30%, #FFFFFF 50%, #C9B7F0 70%) 130% 0 / 260% 100% no-repeat, linear-gradient(#C9B7F0, #C9B7F0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bill-wrap.is-in .bill-note { }
.bill-note.lit .bn-in { background: linear-gradient(#152A21, #152A21) padding-box, linear-gradient(100deg, #4ED99A, #7CE8B8 45%, #5BE0FF) border-box; box-shadow: 0 6px 22px rgba(78, 217, 154, .3), 0 0 36px rgba(78, 217, 154, .18); }
.bill-note.lit .bn-in::after { background: linear-gradient(180deg, #4ED99A, rgba(78, 217, 154, 0)); filter: drop-shadow(0 0 4px rgba(78, 217, 154, .8)); }
.bill-note.lit .bn-star { color: #7CE8B8; text-shadow: 0 0 10px rgba(124, 232, 184, .95); }
.bill-note.lit .bn-txt { background: linear-gradient(100deg, #9BEECB 30%, #FFFFFF 50%, #9BEECB 70%) 130% 0 / 260% 100% no-repeat, linear-gradient(#9BEECB, #9BEECB); -webkit-background-clip: text; background-clip: text; }
@media (prefers-reduced-motion: no-preference) {
  .mode-above.is-in .bn-in { animation: bn-float 5.5s var(--ease-in-out) 1.5s infinite; }
  .bill-wrap.is-in .bn-txt { animation: bn-shimmer 4.2s var(--ease-in-out) 1.8s infinite; }
  .bill-wrap.is-in .bn-star { animation: bn-twinkle 4.2s var(--ease-in-out) 1.8s infinite; }
  .mode-above .bill-note.lit .bn-in { animation: bn-pop .55s cubic-bezier(.34, 1.65, .4, 1), bn-float 5.5s var(--ease-in-out) 1.5s infinite; }
  .mode-beside .bill-note.lit .bn-in { animation: bn-pop .55s cubic-bezier(.34, 1.65, .4, 1) .1s backwards, bn-float 5.5s var(--ease-in-out) 1.5s infinite; }
}
@keyframes bn-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes bn-shimmer { 0%, 55% { background-position: 130% 0, 0 0; } 90%, 100% { background-position: -130% 0, 0 0; } }
@keyframes bn-twinkle { 0%, 52%, 100% { transform: scale(1) rotate(0deg); opacity: 1; } 62% { transform: scale(1.35) rotate(40deg); opacity: .85; } 72% { transform: scale(1) rotate(0deg); } }
@keyframes bn-pop { 0% { transform: scale(.7); } 55% { transform: scale(1.14); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .mode-above .bill-note { transform: translateX(-50%) scale(1); transition: none; }
  .mode-beside .bill-note, .mode-beside.is-in .bill-note { transition: none; }
}

.pg-plans { padding: 34px 0 40px; }
.plan-cat { margin: 0 0 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--violet-200); display: flex; align-items: center; gap: 12px; }
.plan-cat::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-violet), transparent); }
.ent-cat { margin-top: 44px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px 24px; transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s; }
.plan:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.plan.hot { background: linear-gradient(180deg, rgba(124,92,200,.15), rgba(124,92,200,.03) 55%), var(--surface-1); border-color: var(--border-violet); box-shadow: 0 0 44px rgba(124,92,200,.14); }
.plan.hot:hover { box-shadow: 0 0 54px rgba(124,92,200,.22); }
.plan-flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: #fff; background: var(--gradient-cta); border-radius: var(--radius-pill); padding: 5px 12px; box-shadow: var(--glow-violet); white-space: nowrap; }
.plan-name { font-size: 17px; margin: 0 0 6px; }
.plan-blurb { margin: 0 0 20px; font-size: 12.5px; line-height: 1.5; color: var(--muted); min-height: 38px; }
.plan-pricebox { display: flex; align-items: baseline; gap: 4px; perspective: 420px; }
.plan-price { font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--ink); transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.plan-price.pe { font-size: 26px; }
/* odometer roll — each character tumbles in sequence */
.plan-price .ch, .plan-per .ch { display: inline-block; backface-visibility: hidden; transform-origin: 50% 62%; will-change: transform, opacity, filter; }
.roll-out .ch { animation: ch-out .24s var(--ease-out) both; animation-delay: calc(var(--ci) * 14ms); }
.roll-in .ch { animation: ch-in .58s cubic-bezier(.22, 1.18, .34, 1) both; animation-delay: calc(var(--ci) * 30ms); }
@keyframes ch-out { to { transform: translateY(calc(-.55em * var(--dir, 1))) rotateX(calc(78deg * var(--dir, 1))); opacity: 0; filter: blur(3px); } }
@keyframes ch-in { 0% { transform: translateY(calc(.72em * var(--dir, 1))) rotateX(calc(-86deg * var(--dir, 1))); opacity: 0; filter: blur(5px); } 60% { filter: blur(0); } 100% { transform: none; opacity: 1; filter: none; } }
@media (prefers-reduced-motion: reduce) { .roll-in .ch, .roll-out .ch { animation: none; } }
.plan-sub { margin: 6px 0 0; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); min-height: 14px; }
.plan-per { font-family: var(--font-mono); font-size: 12px; color: var(--faint); }
.plan-cta { margin: 18px 0 20px; justify-content: center; width: 100%; }
.plan-feats { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }
.plan-feats li .zdi { flex: none; margin-top: 1.5px; color: var(--success); }
.plan-feats li .zdi[data-icon="sparkle"], .plan-feats li svg.zdi-sparkle { color: var(--brand-light); }
.plan-feats li.no { color: var(--faint); }
.feat-dash { flex: none; width: 13px; height: 13px; position: relative; margin-top: 1.5px; }
.feat-dash::before { content: ""; position: absolute; left: 1px; right: 1px; top: 6px; height: 1.5px; border-radius: 1px; background: var(--faint); }
.pg-fine { margin: 22px 0 0; text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--faint); }
/* enterprise band — the flagship card */
.ent { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr 1.15fr auto; gap: 40px; align-items: center; background: linear-gradient(120deg, rgba(124,92,200,.16), rgba(139,130,240,.05) 55%, rgba(91,184,232,.07)), var(--surface-1); border: 1px solid var(--border-violet); border-radius: var(--radius-xl); padding: 44px 46px; transition: border-color .4s, box-shadow .4s; }
.ent:hover { border-color: rgba(172, 146, 231, .6); box-shadow: 0 0 60px rgba(124, 92, 200, .16); }
.ent-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 95% at 84% 4%, rgba(124, 92, 200, calc(.2 * var(--glowk, 1))), rgba(124, 92, 200, 0) 68%); }
.ent-name { font-size: 26px; margin-bottom: 10px; }
.ent-blurb { min-height: 0; margin-bottom: 22px; font-size: 13.5px; max-width: 340px; }
.ent-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.ent-price .plan-price { font-size: 30px; }
.ent-price .plan-sub { margin: 0; }
.ent-kicker { margin: 0 0 14px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--brand-light); }
.ent-feats { border-top: 0; padding-top: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; }
.ent-feats li:last-child { grid-column: 1 / -1; }
.ent-ctas { display: flex; flex-direction: column; gap: 10px; position: relative; }
.ent-cta { white-space: nowrap; justify-content: center; }
@media (max-width: 1060px) { .ent { grid-template-columns: 1fr; gap: 26px; padding: 34px 30px; } .ent-ctas { flex-direction: row; flex-wrap: wrap; } }
@media (max-width: 620px) { .ent { padding: 26px 20px; } .ent-feats { grid-template-columns: 1fr; } .ent-ctas { flex-direction: column; } }

.pg-compare { padding: 72px 0 30px; }
.pg-compare .lp-eyebrow { margin-bottom: 18px; }
.pg-compare .lp-h2 { margin: 0 0 34px; }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.015); }
.cmp { width: 100%; min-width: 860px; border-collapse: collapse; }
.cmp th, .cmp td { text-align: left; vertical-align: top; padding: 15px 18px; font-size: 13px; line-height: 1.5; border-bottom: 1px solid var(--border); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp thead th { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--ink); padding-top: 18px; padding-bottom: 14px; }
.cmp tbody th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); font-weight: 500; width: 172px; padding-top: 17px; }
.cmp td { color: var(--ink-soft); }
.cmp td.dim { color: var(--faint); }
.cmp .hi { background: var(--brand-tint); }
.cmp thead th.hi { border-top: 2px solid var(--violet-400); color: var(--violet-100); }
.cmp-flag { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--brand-light); font-weight: 500; }
.cmp tbody tr { transition: background .25s; }
.cmp tbody tr:hover { background: rgba(255,255,255,.025); }

.pg-cta { padding: 84px 0 96px; }

/* Book a call — popup modal (reuses .dm-* field/success styling from demo.css) */
.bc-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.bc-modal.is-open { display: flex; }
.bc-overlay { position: absolute; inset: 0; background: rgba(10,8,18,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.bc-dialog { position: relative; width: 100%; max-width: 420px; animation: bc-in 0.32s var(--ease-out) both; }
.bc-dialog .dm-card, .bc-dialog .dm-form { border-radius: var(--radius-xl); border: 1px solid var(--border-strong); background: #17121f; backdrop-filter: blur(var(--blur-lg)); -webkit-backdrop-filter: blur(var(--blur-lg)); box-shadow: var(--shadow-glass-strong); overflow: hidden; }
.bc-close { position: absolute; top: -14px; right: -14px; z-index: 1; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); background: #17121f; border: 1px solid var(--border-strong); cursor: pointer; transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.bc-close:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
@keyframes bc-in { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
body.bc-open { overflow: hidden; }

@media (max-width: 1060px) { .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
@media (max-width: 800px) {
  .pg-hero { padding-top: 130px; }
  .pg-h1 br { display: none; }
  .mode-beside .bill-note { left: auto; right: 0; top: auto; bottom: calc(100% + 8px); transform: translate(0, 14px); opacity: .55; }
  .mode-beside.is-in .bill-note { transform: translate(0, 14px); }
  .mode-beside.is-in .bill-note.lit { transform: translate(0, 0); opacity: 1; }
}
@media (max-width: 620px) { .plan-grid { grid-template-columns: 1fr; } .plan-blurb { min-height: 0; } }
