/* =====================================================================
   PAYSY MEMBER — Use Case: Futbalovy klub  (styles)
   Vsetky pravidla su scopnute pod .psy-uc — nekoliduju so zvyskom stranky.
   Importujte v <head>:  <link rel="stylesheet" href="paysy-futbal.css">
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Saira+Condensed:wght@600;700;800&display=swap');
.psy-uc {
  
  --paysy-purple:        #6513B5;   
  --paysy-purple-700:    #4A0C8C;   
  --paysy-purple-300:    #B987F0;   
  --paysy-purple-100:    #DECDF1;   
  --paysy-purple-50:     #F3EBFA;   

  
  --member-blue:         #1C81F9;
  --member-blue-700:     #0E5BB5;
  --member-blue-100:     #D3E6FE;

  --connect-orange:      #F66901;
  --connect-orange-700:  #B84B00;
  --connect-orange-100:  #FDE0CC;

  --grant-green:         #26EEA1;
  --grant-green-700:     #0D8C5A;
  --grant-green-100:     #CDFAE6;

  
  --orchid:              #DC6ACF;
  --red:                 #E71D36;
  --yellow:              #FFE156;
  --dark-grey:           #2B303B;
  --black:               #000000;
  --white:               #FFFFFF;

  
  --dark-blue:           #0A0E2A;   
  --ink-900:             #14172A;
  --ink-700:             #2B303B;
  --ink-500:             #5D6478;
  --ink-300:             #B6BAC8;
  --ink-100:             #E6E8EF;
  --light-grey:          #F4F2F8;
  --paper:               #FAF8FC;

  
  --gradient-primary-paysy:    linear-gradient(90deg, #6513B5 0%, #1C81F9 100%);
  --gradient-primary-member:   linear-gradient(90deg, #6513B5 0%, #1C81F9 100%);
  --gradient-primary-connect:  linear-gradient(90deg, #6513B5 0%, #F66901 100%);
  --gradient-primary-grant:    linear-gradient(90deg, #6513B5 0%, #26EEA1 100%);

  --gradient-secondary-member:  linear-gradient(90deg, #0A0E2A 0%, #1C81F9 100%);
  --gradient-secondary-connect: linear-gradient(90deg, #0A0E2A 0%, #F66901 100%);
  --gradient-secondary-grant:   linear-gradient(90deg, #0A0E2A 0%, #26EEA1 100%);

  --gradient-tertiary-corner: radial-gradient(circle at 0% 100%, #6513B5 0%, #0A0E2A 60%);
  --gradient-tertiary-spot:   radial-gradient(circle at 50% 0%, #6513B5 0%, #0A0E2A 65%);

  
  
  --font-display: "Plus Jakarta Sans", system-ui, Arial, sans-serif;
  --font-sans:    "Plus Jakarta Sans", system-ui, Arial, sans-serif;

  
  --fs-display:   88px;   --lh-display:   1.02;   --tracking-display:   -0.025em;
  --fs-h1:        56px;   --lh-h1:        1.08;   --tracking-h1:        -0.02em;
  --fs-h2:        40px;   --lh-h2:        1.15;   --tracking-h2:        -0.015em;
  --fs-h3:        28px;   --lh-h3:        1.25;   --tracking-h3:        -0.01em;
  --fs-h4:        22px;   --lh-h4:        1.35;   --tracking-h4:         0;
  --fs-lead:      20px;   --lh-lead:      1.55;
  --fs-body:      16px;   --lh-body:      1.6;
  --fs-small:     14px;   --lh-small:     1.55;
  --fs-micro:     12px;   --lh-micro:     1.5;    --tracking-micro:      0.08em;

  
  --s-1:   4px;
  --s-2:   8px;
  --s-3:   12px;
  --s-4:   16px;
  --s-5:   20px;
  --s-6:   24px;
  --s-8:   32px;
  --s-10:  40px;
  --s-12:  48px;
  --s-16:  64px;
  --s-20:  80px;
  --s-24:  96px;
  --s-32:  128px;
  --s-40:  160px;

  
  --r-xs:    4px;
  --r-sm:    8px;
  --r-md:    14px;
  --r-lg:    20px;
  --r-xl:    32px;
  --r-2xl:   48px;
  --r-pill:  9999px;

  
  --shadow-sm: 0 1px 2px rgba(10,14,42,.06), 0 1px 3px rgba(10,14,42,.04);
  --shadow-md: 0 6px 18px rgba(10,14,42,.06), 0 2px 6px rgba(10,14,42,.04);
  --shadow-lg: 0 24px 64px rgba(10,14,42,.14), 0 8px 24px rgba(10,14,42,.06);
  --shadow-xl: 0 40px 100px rgba(10,14,42,.20), 0 16px 40px rgba(10,14,42,.08);
  --shadow-purple-glow: 0 24px 64px rgba(101,19,181,.32);

  
  --container:        1280px;
  --container-wide:   1440px;
  --container-narrow: 880px;

  
  --ease-out:  cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --dur-fast:  150ms;
  --dur-med:   240ms;
  --dur-slow:  420ms;
}
.psy-uc, .psy-uc * { box-sizing: border-box; }
.psy-uc { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.psy-uc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-900);
  background: var(--paper);
}
.psy-uc img, .psy-uc svg { display: block; max-width: 100%; }
.psy-uc button { font: inherit; cursor: pointer; }
.psy-uc {
  --accent:        var(--member-blue);
  --accent-700:    var(--member-blue-700);
  --accent-100:    var(--member-blue-100);
  --accent-50:     #EAF3FE;
  --maxw:          1180px;
}
.psy-uc { scroll-behavior: smooth; overflow-x: clip; }
.psy-uc { color: var(--ink-900); background: var(--white); overflow-x: clip; max-width: 100%; }
.psy-uc ::selection { background: var(--accent); color: #fff; }
.psy-uc .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.psy-uc section { padding: 104px 0; }
.psy-uc .section-grey { background: var(--light-grey); }
.psy-uc .section-grey + .section-grey { padding-top: 0; }
.psy-uc h1, .psy-uc h2, .psy-uc h3, .psy-uc h4 { text-wrap: balance; }
.psy-uc p { text-wrap: pretty; }
.psy-uc a { color: inherit; }
.psy-uc .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.psy-uc .eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent);
}
.psy-uc .shead { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.psy-uc .shead.left { margin-left: 0; text-align: left; }
.psy-uc .shead h2 {
  font-size: clamp(32px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -.025em;
  font-weight: 800; margin: 0 0 20px;
}
.psy-uc .shead p { font-size: 20px; line-height: 1.55; color: var(--ink-500); margin: 0; }
.psy-uc .shead.left .eyebrow { justify-content: flex-start; }
.psy-uc .btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 16px; line-height: 1; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast), color var(--dur-fast);
}
.psy-uc .btn svg { width: 17px; height: 17px; transition: transform var(--dur-fast); }
.psy-uc .btn:hover svg { transform: translateX(4px); }
.psy-uc .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(28,129,249,.28); }
.psy-uc .btn-primary:hover { background: var(--accent-700); transform: translateY(-2px); }
.psy-uc .btn-outline { background: #fff; color: var(--ink-900); border-color: var(--ink-300); }
.psy-uc .btn-outline:hover { border-color: var(--ink-900); transform: translateY(-2px); }
.psy-uc .btn-ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.30); }
.psy-uc .btn-ghost-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.psy-uc .btn-white { background: #fff; color: var(--accent-700); }
.psy-uc .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.psy-uc .btn-lg { padding: 17px 30px; font-size: 17px; }
.psy-uc .nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.psy-uc .nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 28px;
}
.psy-uc .nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.psy-uc .nav-brand img { height: 26px; width: auto; }
.psy-uc .nav-brand .seg {
  font-size: 11px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-50);
  padding: 4px 8px; border-radius: 6px;
}
.psy-uc .nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 15px; font-weight: 500; }
.psy-uc .nav-links a { color: var(--ink-700); text-decoration: none; transition: color var(--dur-fast); }
.psy-uc .nav-links a:hover { color: var(--accent); }
.psy-uc .nav-cta { display: flex; gap: 10px; align-items: center; }
.psy-uc .nav .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 1080px) {
.psy-uc .nav-links { display: none; }
}
@media (max-width: 560px) {
.psy-uc .nav-cta .btn-outline { display: none; }
}
.psy-uc .hero {
  position: relative; background: var(--dark-blue); color: #fff;
  overflow: hidden; isolation: isolate; padding: 0;
}
.psy-uc .hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 88% 18%, rgba(28,129,249,.55) 0%, transparent 52%),
    radial-gradient(circle at 6% 92%, rgba(101,19,181,.45) 0%, transparent 55%);
}
.psy-uc .hero .chevrons {
  position: absolute; inset: 0; z-index: -1; opacity: .10;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==");
  background-size: auto 240px; background-repeat: repeat;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 92%, transparent);
}
.psy-uc .hero-grid {
  max-width: 1320px; margin: 0 auto; padding: 96px 32px 104px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.psy-uc .hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  margin-bottom: 26px;
}
.psy-uc .hero-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--grant-green); box-shadow: 0 0 12px var(--grant-green); }
@media (max-width: 560px) {
.psy-uc .hero-pill .sk-only { display: none; }
}
.psy-uc .hero h1 {
  font-size: clamp(38px, 5.2vw, 64px); line-height: 1.04; letter-spacing: -.03em;
  font-weight: 800; margin: 0 0 24px;
}
.psy-uc .hero h1 .hl { color: #fff; position: relative; white-space: nowrap; }
.psy-uc .hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em;
  background: var(--accent); border-radius: 3px; z-index: -1;
}
.psy-uc .hero .lede {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: rgba(255,255,255,.80);
  max-width: 560px; margin: 0 0 32px;
}
.psy-uc .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.psy-uc .hero-trust { display: flex; flex-direction: column; gap: 11px; }
.psy-uc .hero-trust .t {
  display: flex; align-items: center; gap: 11px; font-size: 15px; color: rgba(255,255,255,.88);
}
.psy-uc .hero-trust .t svg { width: 20px; height: 20px; color: var(--grant-green); flex: none; }
.psy-uc .hero-trust .t strong { color: #fff; font-weight: 700; }
.psy-uc .hero-vis { position: relative; display: flex; justify-content: center; }
.psy-uc .phone {
  width: 300px; background: #0e1330; border-radius: 40px; padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
  position: relative; z-index: 2;
}
.psy-uc .phone-screen { background: var(--paper); border-radius: 30px; overflow: hidden; }
.psy-uc .phone-notch {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #0e1330; border-radius: 0 0 16px 16px; z-index: 3;
}
.psy-uc .app-top { background: var(--accent); color: #fff; padding: 30px 20px 22px; }
.psy-uc .app-top .row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: .85; }
.psy-uc .app-top h4 { margin: 14px 0 2px; font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.psy-uc .app-top .sub { font-size: 12px; opacity: .85; }
.psy-uc .app-card {
  background: #fff; border-radius: 16px; margin: -14px 14px 0; padding: 16px;
  box-shadow: var(--shadow-md); position: relative;
}
.psy-uc .app-card .lbl { font-size: 11px; color: var(--ink-500); font-weight: 600; }
.psy-uc .app-card .amt { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-900); margin-top: 2px; }
.psy-uc .app-card .paid {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 12px; font-weight: 700; color: var(--grant-green-700);
  background: var(--grant-green-100); padding: 4px 10px; border-radius: 999px;
}
.psy-uc .app-list { padding: 16px 14px 22px; display: flex; flex-direction: column; gap: 10px; }
.psy-uc .app-row {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--ink-100); border-radius: 13px; padding: 11px 13px;
}
.psy-uc .app-row .ava { width: 34px; height: 34px; border-radius: 999px; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; }
.psy-uc .app-row .nm { font-size: 13px; font-weight: 600; }
.psy-uc .app-row .mt { font-size: 11px; color: var(--ink-500); }
.psy-uc .app-row .tick { margin-left: auto; width: 22px; height: 22px; border-radius: 999px; background: var(--grant-green); display: grid; place-items: center; }
.psy-uc .app-row .tick svg { width: 12px; height: 12px; color: #fff; }
.psy-uc .app-row .due { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--connect-orange-700); background: var(--connect-orange-100); padding: 3px 8px; border-radius: 999px; }
.psy-uc .hero-float {
  position: absolute; z-index: 3; background: #fff; color: var(--ink-900);
  border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.psy-uc .hero-float .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.psy-uc .hero-float .big { font-size: 18px; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.psy-uc .hero-float .sm { font-size: 11px; color: var(--ink-500); margin-top: 3px; }
.psy-uc .hero-float.f1 { top: 30px; left: -8px; }
.psy-uc .hero-float.f2 { bottom: 36px; right: -10px; }
@media (max-width: 920px) {
.psy-uc .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 80px; }
.psy-uc .hero-vis { order: 2; }
}
.psy-uc .logostrip { background: var(--dark-blue); padding: 60px 0; }
.psy-uc .logostrip .wrap { padding-top: 0; }
.psy-uc .logostrip .cap { text-align: center; font-size: 13px; letter-spacing: .10em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; margin: 0 0 26px; }
.psy-uc .logostrip .clubs { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.psy-uc .club-chip {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  padding: 9px 18px 9px 9px; border-radius: var(--r-pill); color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 600;
}
.psy-uc .club-chip.more { padding: 10px 18px; color: rgba(255,255,255,.6); font-style: italic; }
.psy-uc .club-chip .crest {
  width: 34px; height: 34px; border-radius: 8px; flex: none;
  background: #fff; overflow: hidden; display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.psy-uc .chaos { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.psy-uc .chaos-photo { display: none; }
.psy-uc .chaos[data-layout="split"] {
  grid-template-columns: .82fr 1.18fr;
  grid-template-areas: "photo stage" "side side";
  column-gap: 32px; row-gap: 40px; align-items: stretch;
}
.psy-uc .chaos[data-layout="split"] .chaos-photo { grid-area: photo; display: block; }
.psy-uc .chaos[data-layout="split"] .chaos-stage { grid-area: stage; }
.psy-uc .chaos[data-layout="split"] .chaos-side {
  grid-area: side; display: grid; grid-template-columns: 1.15fr 1fr 1fr;
  gap: 30px; align-items: center;
}
.psy-uc .chaos[data-layout="split"] .chaos-side .burn { margin-bottom: 0; }
.psy-uc .chaos[data-layout="split"] .chaos-side p { margin: 0; }
.psy-uc .chaos-photo {
  position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden;
  min-height: 400px; background: var(--ink-100);
  box-shadow: 0 30px 70px rgba(10,14,42,.28);
  filter: grayscale(.28) contrast(1.03) brightness(.94);
}
.psy-uc .chaos-photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.psy-uc .chaos-photo .ph-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(10,14,42,.12) 0%, rgba(10,14,42,.28) 42%, rgba(10,14,42,.9) 100%);
}
.psy-uc .chaos-photo .ph-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px 26px 24px; color: #fff; pointer-events: none; display: flex; flex-direction: column; gap: 7px; }
.psy-uc .chaos-photo .ph-cap .k { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.psy-uc .chaos-photo .ph-cap .t { font-size: clamp(20px, 2vw, 25px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; text-wrap: balance; }
.psy-uc .chaos-stage {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--dark-blue); aspect-ratio: 1 / 0.92; min-height: 440px;
  box-shadow: 0 30px 70px rgba(10,14,42,.28);
  isolation: isolate;
}
.psy-uc .chaos-stage::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .12;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 200px;
}
.psy-uc .chaos-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197,20,43,.20), transparent 58%);
  opacity: 0; transition: opacity 1.2s ease 1.1s;
}
.psy-uc .chaos.in .chaos-stage::after { opacity: 1; }
.psy-uc .chaos-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.psy-uc .chaos-svg path {
  fill: none; stroke: rgba(255,255,255,.30); stroke-width: 1.6;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.psy-uc .chaos.in .chaos-svg path { animation: chaosDraw .9s var(--ease-out) forwards; }
.psy-uc .chaos.in .chaos-svg path.l1 { animation-delay: .15s; }
.psy-uc .chaos.in .chaos-svg path.l2 { animation-delay: .28s; }
.psy-uc .chaos.in .chaos-svg path.l3 { animation-delay: .41s; }
.psy-uc .chaos.in .chaos-svg path.l4 { animation-delay: .54s; }
.psy-uc .chaos.in .chaos-svg path.l5 { animation-delay: .67s; }
.psy-uc .chaos.in .chaos-svg path.l6 { animation-delay: .80s; }
@keyframes chaosDraw { to { stroke-dashoffset: 0; } }
.psy-uc .chaos-svg path.flow {
  stroke: var(--accent); stroke-width: 1.6; opacity: 0;
  stroke-dasharray: 3 7; stroke-dashoffset: 0;
}
.psy-uc .chaos.in .chaos-svg path.flow { opacity: .55; animation: chaosFlow 1.1s linear infinite; animation-delay: 1.1s; }
@keyframes chaosFlow { to { stroke-dashoffset: -20; } }
.psy-uc .ctool {
  position: absolute; z-index: 2; transform: translate(-50%, -50%) scale(.6);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(255,255,255,.96); border-radius: 11px;
  padding: 9px 13px; font-size: 13.5px; font-weight: 700; color: var(--ink-900);
  box-shadow: 0 10px 24px rgba(0,0,0,.28); opacity: 0;
}
.psy-uc .ctool .gi { width: 18px; height: 18px; color: var(--ink-500); }
.psy-uc .ctool .badge {
  position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1; text-align: center;
  box-shadow: 0 2px 6px rgba(197,20,43,.5);
  transform: scale(0); border: 2px solid var(--dark-blue);
}
.psy-uc .chaos.in .ctool { animation: chaosPop .55s var(--ease-out) forwards, chaosFloat 5s ease-in-out infinite; }
.psy-uc .chaos.in .ctool .badge { animation: chaosBadge .4s var(--ease-back, cubic-bezier(.34,1.56,.64,1)) forwards; }
.psy-uc .ctool.c1 { left: 19%; top: 16%; }
.psy-uc .chaos.in .ctool.c1 { animation-delay: .15s, 1.2s; }
.psy-uc .chaos.in .ctool.c1 .badge { animation-delay: .9s; }
.psy-uc .ctool.c2 { left: 80%; top: 14%; }
.psy-uc .chaos.in .ctool.c2 { animation-delay: .28s, 1.5s; }
.psy-uc .chaos.in .ctool.c2 .badge { animation-delay: 1.0s; }
.psy-uc .ctool.c3 { left: 16%; top: 49%; }
.psy-uc .chaos.in .ctool.c3 { animation-delay: .41s, 1.0s; }
.psy-uc .chaos.in .ctool.c3 .badge { animation-delay: 1.1s; }
.psy-uc .ctool.c4 { left: 82%; top: 45%; }
.psy-uc .chaos.in .ctool.c4 { animation-delay: .54s, 1.7s; }
.psy-uc .chaos.in .ctool.c4 .badge { animation-delay: 1.2s; }
.psy-uc .ctool.c5 { left: 24%; top: 85%; }
.psy-uc .chaos.in .ctool.c5 { animation-delay: .67s, 1.3s; }
.psy-uc .chaos.in .ctool.c5 .badge { animation-delay: 1.3s; }
.psy-uc .ctool.c6 { left: 76%; top: 85%; }
.psy-uc .chaos.in .ctool.c6 { animation-delay: .80s, 1.6s; }
.psy-uc .chaos.in .ctool.c6 .badge { animation-delay: 1.4s; }
@keyframes chaosPop { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.6); } 60% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes chaosBadge { 0% { transform: scale(0); } 70% { transform: scale(1.25); } 100% { transform: scale(1); } }
@keyframes chaosFloat { 0%,100% { margin-top: 0; } 50% { margin-top: -6px; } }
.psy-uc .chaos-core {
  position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%,-50%);
  width: 40%; min-width: 168px; text-align: center;
  background: linear-gradient(160deg, #1a2245, #0c1130); color: #fff;
  border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 20px 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.4);
}
.psy-uc .chaos-core .ava {
  width: 46px; height: 46px; border-radius: 999px; margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--accent), var(--paysy-purple)); display: grid; place-items: center;
}
.psy-uc .chaos-core .ava svg { width: 24px; height: 24px; color: #fff; }
.psy-uc .chaos-core .t { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.psy-uc .chaos-core .s { font-size: 11.5px; color: rgba(255,255,255,.6); margin-top: 3px; line-height: 1.35; }
.psy-uc .chaos-core .cnt {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(197,20,43,.16); color: #FF9CA8; border: 1px solid rgba(197,20,43,.4);
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
}
.psy-uc .chaos-core .cnt .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--red); }
.psy-uc .chaos-core .ring {
  position: absolute; inset: -6px; border-radius: 22px; border: 2px solid var(--red); opacity: 0; z-index: -1;
}
.psy-uc .chaos.in .chaos-core .ring { animation: chaosRing 2.2s ease-out infinite; animation-delay: 1.4s; }
@keyframes chaosRing { 0% { transform: scale(.96); opacity: .7; } 100% { transform: scale(1.18); opacity: 0; } }
.psy-uc .chaos.in .chaos-core { animation: chaosShake 6s ease-in-out infinite; animation-delay: 1.6s; }
@keyframes chaosShake { 0%,92%,100% { transform: translate(-50%,-50%) rotate(0); } 94% { transform: translate(-51%,-50%) rotate(-.6deg); } 96% { transform: translate(-49%,-50%) rotate(.6deg); } 98% { transform: translate(-50.5%,-50%) rotate(-.4deg); } }
.psy-uc .chaos-side .burn {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #FCE9EC, #FBDDE2); border: 1px solid #F2B9C2;
  border-radius: 16px; padding: 18px 20px; margin-bottom: 22px; position: relative; overflow: hidden;
}
.psy-uc .chaos-side .burn .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--red); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(197,20,43,.35); }
.psy-uc .chaos-side .burn .ico svg { width: 22px; height: 22px; color: #fff; }
.psy-uc .chaos-side .burn .t { font-size: 17px; font-weight: 800; color: #B30E22; letter-spacing: -.01em; }
.psy-uc .chaos-side .burn .s { font-size: 13px; color: #9A3441; margin-top: 2px; }
.psy-uc .chaos.in .chaos-side .burn { animation: burnPulse 2.6s ease-in-out infinite; animation-delay: 1.8s; }
@keyframes burnPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(197,20,43,0); } 50% { box-shadow: 0 0 0 6px rgba(197,20,43,.08); } }
.psy-uc .chaos-side h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; line-height: 1.2; }
.psy-uc .chaos-side p { font-size: 16px; line-height: 1.65; color: var(--ink-500); margin: 0 0 18px; }
.psy-uc .chaos-quote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 20px;
  font-size: 18px; font-weight: 600; line-height: 1.5; color: var(--ink-900); letter-spacing: -.01em;
}
@media (prefers-reduced-motion: reduce) {
.psy-uc .chaos-svg path { stroke-dashoffset: 0 !important; animation: none !important; }
.psy-uc .ctool { opacity: 1 !important; transform: translate(-50%,-50%) scale(1) !important; animation: none !important; }
.psy-uc .ctool .badge { transform: scale(1) !important; animation: none !important; }
.psy-uc .chaos-core, .psy-uc .chaos-side .burn, .psy-uc .chaos-core .ring, .psy-uc .chaos-svg path.flow { animation: none !important; }
.psy-uc .chaos-svg path.flow { opacity: .5; }
.psy-uc .chaos-stage::after { opacity: 1; }
}
@media (max-width: 820px) {
.psy-uc .chaos { grid-template-columns: 1fr; gap: 36px; }
.psy-uc .chaos[data-layout="split"] {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "stage" "side";
    row-gap: 28px;
  }
.psy-uc .chaos[data-layout="split"] .chaos-side { grid-template-columns: 1fr; gap: 18px; }
.psy-uc .chaos-photo { min-height: 300px; }
.psy-uc .chaos-stage { aspect-ratio: 4 / 5; min-height: 440px; }
.psy-uc .ctool { font-size: 11px; padding: 6px 9px; gap: 6px; border-radius: 9px; }
.psy-uc .ctool .gi { width: 15px; height: 15px; }
.psy-uc .ctool .badge { min-width: 16px; height: 16px; font-size: 9.5px; top: -6px; right: -6px; padding: 0 4px; }
.psy-uc .ctool { transform: translateY(-50%) scale(.6); max-width: 47%; }
.psy-uc .chaos.in .ctool { animation: chaosPopM .55s var(--ease-out) forwards, chaosFloat 5s ease-in-out infinite; }
.psy-uc @keyframes chaosPopM { 0% { opacity: 0; transform: translateY(-50%) scale(.6); } 60% { opacity: 1; transform: translateY(-50%) scale(1.06); } 100% { opacity: 1; transform: translateY(-50%) scale(1); } }
.psy-uc .ctool.c1, .psy-uc .ctool.c3, .psy-uc .ctool.c5 { left: 10px; }
.psy-uc .ctool.c2, .psy-uc .ctool.c4, .psy-uc .ctool.c6 { left: auto; right: 10px; }
.psy-uc .ctool.c1 { top: 12%; }
.psy-uc .ctool.c2 { top: 12%; }
.psy-uc .ctool.c3 { top: 50%; }
.psy-uc .ctool.c4 { top: 50%; }
.psy-uc .ctool.c5 { top: 88%; }
.psy-uc .ctool.c6 { top: 88%; }
.psy-uc .chaos-core { width: 38%; min-width: 0; padding: 14px 10px; border-radius: 14px; }
.psy-uc .chaos-core .ava { width: 36px; height: 36px; margin-bottom: 7px; }
.psy-uc .chaos-core .ava svg { width: 20px; height: 20px; }
.psy-uc .chaos-core .t { font-size: 13px; }
.psy-uc .chaos-core .s { font-size: 10px; margin-top: 2px; }
.psy-uc .chaos-core .cnt { font-size: 10px; padding: 3px 7px; margin-top: 7px; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 820px) {
.psy-uc .ctool { transform: translateY(-50%) scale(1) !important; }
}
.psy-uc .why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.psy-uc .why-card { border-radius: var(--r-xl); padding: 36px; position: relative; overflow: hidden; display: flex; gap: 26px; min-height: 360px; }
.psy-uc .why-rail {
  writing-mode: vertical-rl; transform: rotate(180deg); flex: none;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.psy-uc .why-rail .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; transform: rotate(180deg); }
.psy-uc .why-rail .ico svg { width: 18px; height: 18px; }
.psy-uc .why-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.psy-uc .why-card h3 { font-size: clamp(26px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.025em; line-height: 1.12; margin: 0 0 22px; }
.psy-uc .why-card h3 .ser { font-family: "Saira Condensed", var(--font-sans); font-style: normal; font-weight: 700; letter-spacing: .005em; text-transform: uppercase; font-size: 1.02em; }
.psy-uc .why-card ul { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.psy-uc .why-card li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; line-height: 1.4; padding: 14px 0; }
.psy-uc .why-card li + li { border-top: 1px solid; }
.psy-uc .why-card li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.psy-uc .why-soft { background: #ECEAF3; border: 1px solid var(--ink-100); color: var(--ink-900); }
.psy-uc .why-soft .why-rail { color: var(--accent); }
.psy-uc .why-soft .why-rail .ico { background: var(--accent); color: #fff; }
.psy-uc .why-soft h3 .ser { color: var(--accent); }
.psy-uc .why-soft li svg { color: var(--accent); }
.psy-uc .why-soft li + li { border-color: rgba(20,23,42,.08); }
.psy-uc .why-know { background: var(--dark-blue); color: #fff; }
.psy-uc .why-know::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 200px; background-repeat: repeat;
}
.psy-uc .why-know > * { position: relative; }
.psy-uc .why-know .why-rail { color: var(--paysy-purple-300); }
.psy-uc .why-know .why-rail .ico { background: rgba(255,255,255,.14); color: #fff; }
.psy-uc .why-know h3 .ser { color: var(--paysy-purple-300); }
.psy-uc .why-know li { color: rgba(255,255,255,.88); }
.psy-uc .why-know li svg { color: var(--grant-green); }
.psy-uc .why-know li + li { border-color: rgba(255,255,255,.12); }
@media (max-width: 760px) {
.psy-uc .why-card { flex-direction: column; min-height: 0; gap: 18px; padding: 28px 24px; }
.psy-uc .why-rail {
    writing-mode: horizontal-tb; transform: none; flex-direction: row; align-self: flex-start;
    align-items: center; gap: 11px; font-size: 12px;
  }
.psy-uc .why-rail .ico { transform: none; width: 32px; height: 32px; }
.psy-uc .why-card h3 { font-size: 24px; margin-bottom: 16px; }
.psy-uc .why-card ul { margin-top: 4px; }
}
.psy-uc .why-highlight {
  margin-top: 20px; border-radius: var(--r-xl); padding: 46px 52px; position: relative; overflow: hidden;
  background: var(--gradient-primary-paysy); color: #fff;
  display: grid; grid-template-columns: auto 1px 1fr; align-items: center; gap: 44px;
}
.psy-uc .why-highlight::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 200px;
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.psy-uc .why-highlight > * { position: relative; z-index: 1; }
.psy-uc .why-highlight .wh-stat { text-align: center; }
.psy-uc .why-highlight .wh-stat .n { font-size: clamp(52px, 7vw, 76px); font-weight: 800; letter-spacing: -.04em; line-height: .9; }
.psy-uc .why-highlight .wh-stat .l { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.78); margin-top: 10px; letter-spacing: .01em; }
.psy-uc .why-highlight .wh-rule { align-self: stretch; background: rgba(255,255,255,.22); }
.psy-uc .why-highlight .wh-body { display: flex; flex-direction: column; gap: 6px; }
.psy-uc .why-highlight .qmark { font-family: Georgia, serif; font-size: 56px; line-height: .4; height: 26px; color: rgba(255,255,255,.4); }
.psy-uc .why-highlight .q { font-size: clamp(20px, 2.3vw, 27px); font-weight: 800; letter-spacing: -.02em; line-height: 1.32; margin: 0; }
.psy-uc .why-highlight .q .em { color: #fff; box-shadow: inset 0 -.5em 0 rgba(255,255,255,.18); }
@media (max-width: 820px) {
.psy-uc .why-cols { grid-template-columns: 1fr; }
.psy-uc .why-highlight { grid-template-columns: 1fr; gap: 20px; padding: 34px 30px; text-align: left; }
.psy-uc .why-highlight .wh-stat { text-align: left; }
.psy-uc .why-highlight .wh-stat .n { font-size: 64px; }
.psy-uc .why-highlight .wh-stat .l { margin-top: 4px; font-size: 13px; }
.psy-uc .why-highlight .wh-rule { height: 1px; width: 48px; }
.psy-uc .why-highlight .qmark { display: none; }
.psy-uc .why-highlight .q { font-size: 21px; }
}
.psy-uc .uc { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.psy-uc .uc + .uc { margin-top: 112px; }
.psy-uc .uc.flip .uc-text { order: 2; }
.psy-uc .uc-num {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.psy-uc .uc-num .n { font-family: var(--font-display); }
.psy-uc .uc-text h3 { font-size: clamp(26px, 3vw, 34px); line-height: 1.12; letter-spacing: -.025em; font-weight: 800; margin: 0 0 18px; }
.psy-uc .uc-block { margin: 0 0 18px; }
.psy-uc .uc-block .k {
  font-size: 12px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
  color: var(--ink-500); display: flex; align-items: center; gap: 8px; margin-bottom: 7px;
}
.psy-uc .uc-block .k.problem { color: #C5142B; }
.psy-uc .uc-block .k.solution { color: var(--accent); }
.psy-uc .uc-block p { margin: 0; font-size: 16px; line-height: 1.62; color: var(--ink-700); }
.psy-uc .uc-feats { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.psy-uc .uc-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; color: var(--ink-900); }
.psy-uc .uc-feats li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 1px; }
.psy-uc .uc-result {
  display: flex; align-items: center; gap: 14px;
  background: var(--paysy-purple-50); border: 1px solid var(--paysy-purple-100); border-radius: 14px; padding: 16px 18px;
}
.psy-uc .uc-result .ico { flex: none; width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--paysy-purple), var(--paysy-purple-700)); display: grid; place-items: center; box-shadow: 0 4px 12px rgba(101,19,181,.32); }
.psy-uc .uc-result .ico svg { width: 20px; height: 20px; color: #fff; }
.psy-uc .uc-result .txt { font-size: 15px; line-height: 1.45; color: var(--ink-900); }
.psy-uc .uc-result .txt strong { color: var(--paysy-purple-700); }
.psy-uc .uc-vis { position: relative; }
.psy-uc .mock {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.psy-uc .mock-bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--ink-100); background: var(--paper); }
.psy-uc .mock-bar .d { width: 11px; height: 11px; border-radius: 999px; }
.psy-uc .mock-bar .d:nth-child(1) { background: #FF5F57; }
.psy-uc .mock-bar .d:nth-child(2) { background: #FEBC2E; }
.psy-uc .mock-bar .d:nth-child(3) { background: #28C840; }
.psy-uc .mock-bar .ttl { margin-left: 10px; font-size: 12px; color: var(--ink-500); font-weight: 600; }
.psy-uc .mock-body { padding: 22px; }
.psy-uc .uc-vis .deco {
  position: absolute; z-index: -1; border-radius: var(--r-xl);
  inset: -22px -22px auto auto; width: 70%; height: 70%;
  background: var(--accent-50);
}
.psy-uc .uc.flip .uc-vis .deco { inset: -22px auto auto -22px; }
.psy-uc .fu-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.psy-uc .fu-h .t { font-size: 15px; font-weight: 700; }
.psy-uc .fu-chip { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--accent-50); color: var(--accent-700); }
.psy-uc .fu-rows { display: flex; flex-direction: column; gap: 9px; }
.psy-uc .fu-row { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--ink-100); border-radius: 12px; }
.psy-uc .fu-row .ava { width: 32px; height: 32px; border-radius: 999px; flex: none; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 700; }
.psy-uc .fu-row .nm { font-size: 13px; font-weight: 600; }
.psy-uc .fu-row .mt { font-size: 11px; color: var(--ink-500); }
.psy-uc .fu-row .right { margin-left: auto; }
.psy-uc .pill-ok { font-size: 11px; font-weight: 700; color: var(--grant-green-700); background: var(--grant-green-100); padding: 3px 9px; border-radius: 999px; }
.psy-uc .pill-wait { font-size: 11px; font-weight: 700; color: var(--connect-orange-700); background: var(--connect-orange-100); padding: 3px 9px; border-radius: 999px; }
.psy-uc .pill-purple { font-size: 11px; font-weight: 700; color: var(--paysy-purple-700); background: var(--paysy-purple-100); padding: 3px 9px; border-radius: 999px; }
.psy-uc .fu-stat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.psy-uc .fu-stat .c { background: var(--paper); border: 1px solid var(--ink-100); border-radius: 12px; padding: 14px; }
.psy-uc .fu-stat .c .v { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.psy-uc .fu-stat .c .l { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
.psy-uc .fu-bar { height: 8px; border-radius: 999px; background: var(--ink-100); overflow: hidden; }
.psy-uc .fu-bar i { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.psy-uc .fu-msg { display: flex; gap: 10px; margin-bottom: 12px; }
.psy-uc .fu-msg .ava { width: 30px; height: 30px; border-radius: 999px; flex: none; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.psy-uc .fu-msg .bubble { background: var(--paper); border: 1px solid var(--ink-100); border-radius: 4px 14px 14px 14px; padding: 10px 13px; font-size: 13px; line-height: 1.4; }
.psy-uc .fu-msg.me { flex-direction: row-reverse; }
.psy-uc .fu-msg.me .bubble { background: var(--accent); color: #fff; border: 0; border-radius: 14px 4px 14px 14px; }
.psy-uc .fu-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.psy-uc .fu-cal .day { aspect-ratio: 1; border-radius: 8px; background: var(--paper); border: 1px solid var(--ink-100); display: grid; place-items: center; font-size: 12px; font-weight: 600; color: var(--ink-500); }
.psy-uc .fu-cal .day.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.psy-uc .fu-cal .day.soft { background: var(--accent-50); color: var(--accent-700); border-color: var(--accent-100); }
.psy-uc .fu-form { display: flex; flex-direction: column; gap: 11px; }
.psy-uc .fu-field { }
.psy-uc .fu-field .lb { font-size: 11px; font-weight: 600; color: var(--ink-500); margin-bottom: 5px; }
.psy-uc .fu-field .in { height: 38px; border-radius: 10px; border: 1px solid var(--ink-100); background: var(--paper); display: flex; align-items: center; padding: 0 12px; font-size: 13px; color: var(--ink-700); }
.psy-uc .fu-field .in.fill { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-50); color: var(--ink-900); font-weight: 600; }
.psy-uc .fu-doc { border: 1px solid var(--ink-100); border-radius: 12px; padding: 16px; display: flex; gap: 13px; align-items: center; }
.psy-uc .fu-doc .pg { width: 42px; height: 52px; border-radius: 6px; background: var(--accent-50); border: 1px solid var(--accent-100); flex: none; position: relative; }
.psy-uc .fu-doc .pg::after { content: "PDF"; position: absolute; bottom: 5px; left: 0; right: 0; text-align: center; font-size: 8px; font-weight: 800; color: var(--accent-700); }
.psy-uc .fu-doc .nm { font-size: 13px; font-weight: 700; }
.psy-uc .fu-doc .mt { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
@media (max-width: 880px) {
.psy-uc .uc { grid-template-columns: 1fr; gap: 36px; }
.psy-uc .uc.flip .uc-text { order: 0; }
.psy-uc .uc + .uc { margin-top: 72px; }
.psy-uc .uc-feats { grid-template-columns: 1fr; }
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-text h3 {
  padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--ink-100);
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-block {
  border-radius: 14px; padding: 16px 18px 17px; margin-bottom: 12px;
  border: 1px solid var(--ink-100); background: #fff;
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-block:has(.k.problem) {
  background: #FCF1F3; border-color: #F2CFD6;
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-block:has(.k.solution) {
  background: var(--accent-50); border-color: var(--accent-100);
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-block .k { margin-bottom: 8px; }
.psy-uc #use-cases[data-uc-style="structured"] .uc-block p { color: var(--ink-700); font-size: 15.5px; }
.psy-uc #use-cases[data-uc-style="structured"] .uc-feats {
  gap: 9px 10px; margin: 18px 0 22px;
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-feats::before {
  content: "Funkcie"; grid-column: 1 / -1;
  font-size: 12px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 2px;
}
.psy-uc #use-cases[data-uc-style="structured"] .uc-feats li {
  background: #fff; border: 1px solid var(--ink-100); border-radius: 10px;
  padding: 10px 13px; box-shadow: var(--shadow-sm); font-weight: 600;
}
@media (max-width: 880px) {
.psy-uc #use-cases[data-uc-style="structured"] .uc-feats { grid-template-columns: 1fr 1fr; }
}
.psy-uc .res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.psy-uc .res-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  padding: 30px; transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}
.psy-uc .res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.psy-uc .res-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-50); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.psy-uc .res-card .ic svg { width: 25px; height: 25px; }
.psy-uc .res-card .big { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink-900); }
.psy-uc .res-card .lbl { font-size: 16px; font-weight: 700; margin: 12px 0 6px; letter-spacing: -.01em; }
.psy-uc .res-card .desc { font-size: 14px; line-height: 1.55; color: var(--ink-500); margin: 0; }
@media (max-width: 880px) {
.psy-uc .res-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
.psy-uc .res-grid { grid-template-columns: 1fr; }
}
.psy-uc .numbers { background: var(--dark-blue); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.psy-uc .numbers::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 120%, rgba(28,129,249,.40), transparent 60%);
}
.psy-uc .numbers .chev { position: absolute; inset: 0; z-index: -1; opacity: .08; background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 220px; }
.psy-uc .num-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 8px; }
.psy-uc .num-cell { text-align: center; padding: 14px 8px; }
.psy-uc .num-cell .v { font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1; white-space: nowrap; background: linear-gradient(180deg, #fff, #b9d4fb); -webkit-background-clip: text; background-clip: text; color: transparent; }
.psy-uc .num-cell .l { font-size: 14px; color: rgba(255,255,255,.70); margin-top: 12px; line-height: 1.4; }
.psy-uc .num-grid .num-cell + .num-cell { border-left: 1px solid rgba(255,255,255,.10); }
@media (max-width: 880px) {
.psy-uc .num-grid { grid-template-columns: 1fr; gap: 0; max-width: 420px; margin-inline: auto; }
.psy-uc .num-grid .num-cell + .num-cell { border-left: 0; }
.psy-uc .num-cell {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    text-align: left; padding: 18px 4px; border-top: 1px solid rgba(255,255,255,.12);
  }
.psy-uc .num-cell .v { font-size: 34px; }
.psy-uc .num-cell .l { margin-top: 0; font-size: 15px; text-align: right; }
}
.psy-uc .cmp { max-width: 900px; margin: 0 auto; position: relative; padding-top: 18px; }
.psy-uc .cmptbl {
  position: relative; display: grid; grid-template-columns: 36% 32% 32%;
  background: #fff; border-radius: 20px; border: 1px solid var(--ink-100);
  box-shadow: 0 1px 2px rgba(10,14,42,.04), 0 18px 44px rgba(10,14,42,.08);
}
.psy-uc .cmp-lane-no {
  position: absolute; left: 36%; width: 32%; top: 0; bottom: 0; z-index: 0;
  background: var(--light-grey); pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(10,14,42,.022) 0 7px, transparent 7px 14px);
}
.psy-uc .cmp-lane {
  position: absolute; right: 0; top: -18px; bottom: 0; width: 32%;
  border-radius: 20px; background: #fff; z-index: 0; pointer-events: none;
  box-shadow: 0 24px 50px rgba(101,19,181,.18), 0 0 0 1.5px rgba(28,129,249,.55);
}
.psy-uc .ch, .psy-uc .cc { position: relative; z-index: 1; }
.psy-uc .cc { display: flex; align-items: center; gap: 13px; min-height: 66px; padding: 12px 28px; font-size: 15px; border-top: 1px solid var(--ink-100); }
.psy-uc .ch { display: flex; }
.psy-uc .ch-feat { padding: 22px 28px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); align-items: flex-end; }
.psy-uc .ch-without { padding: 22px 28px; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 3px; }
.psy-uc .ch-without span { white-space: nowrap; }
.psy-uc .ch-without > span:first-child { font-size: 17px; font-weight: 800; color: var(--ink-700); }
.psy-uc .ch-without .mt { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-300); }
.psy-uc .ch-with {
  margin-top: -18px; padding: 24px 28px 20px; border-radius: 20px 20px 0 0;
  background: linear-gradient(145deg, var(--paysy-purple) 0%, var(--accent) 100%);
  color: #fff; flex-direction: column; align-items: flex-start; gap: 14px;
}
.psy-uc .ch-with .rib {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
}
.psy-uc .ch-with .rib svg { width: 12px; height: 12px; }
.psy-uc .ch-with .ttl { display: flex; align-items: center; gap: 11px; }
.psy-uc .ch-with .ttl img { height: 24px; width: auto; filter: brightness(0) invert(1); }
.psy-uc .ch-with .ttl .lbl { font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.psy-uc .cc.feat { font-weight: 700; color: var(--ink-900); }
.psy-uc .cc.feat .fi { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, #fff, var(--paysy-purple-50)); border: 1px solid var(--paysy-purple-100); box-shadow: 0 1px 2px rgba(10,14,42,.05); color: var(--paysy-purple); display: grid; place-items: center; flex: none; }
.psy-uc .cc.feat .fi svg { width: 18px; height: 18px; }
.psy-uc .cc.without { color: var(--ink-500); font-size: 14.5px; }
.psy-uc .cc.without .x { width: 21px; height: 21px; border-radius: 999px; background: #FCE9EC; color: var(--red); display: grid; place-items: center; flex: none; }
.psy-uc .cc.without .x svg { width: 12px; height: 12px; }
.psy-uc .cc.with {
  background: linear-gradient(180deg, rgba(28,129,249,.055), rgba(101,19,181,.045));
  color: var(--ink-900); font-weight: 600; font-size: 14.5px;
  border-top: 1px solid rgba(28,129,249,.12);
}
.psy-uc .cc.with .ck { width: 23px; height: 23px; border-radius: 999px; background: linear-gradient(135deg, var(--paysy-purple), var(--accent)); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 4px 10px rgba(28,129,249,.4); }
.psy-uc .cc.with .ck svg { width: 13px; height: 13px; }
.psy-uc .cmptbl > .cc.with:last-child { border-radius: 0 0 20px 20px; }
@media (max-width: 720px) {
.psy-uc .cmp { padding-top: 0; max-width: 460px; }
.psy-uc .cmptbl { display: block; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.psy-uc .cmp-lane, .psy-uc .cmp-lane-no, .psy-uc .ch { display: none; }
.psy-uc .cc { display: flex; align-items: center; gap: 11px; min-height: 0; padding: 14px 16px; font-size: 14.5px; border: 0; }
.psy-uc .cc.feat {
    margin-top: 18px; padding: 15px 16px; font-size: 15.5px; font-weight: 800; color: var(--ink-900);
    background: #fff; border: 1px solid var(--ink-100); border-bottom: 0; border-radius: 16px 16px 0 0;
  }
.psy-uc .cc.feat:first-of-type { margin-top: 0; }
.psy-uc .cc.feat .fi { width: 34px; height: 34px; }
.psy-uc .cc.without {
    background: #fff; color: var(--ink-500); font-size: 13.5px; line-height: 1.35;
    border-left: 1px solid var(--ink-100); border-right: 1px solid var(--ink-100);
    border-top: 1px solid var(--ink-100);
  }
.psy-uc .cc.without::after { content: "Bez Paysy"; margin-left: auto; flex: none; padding-left: 8px; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-300); }
.psy-uc .cc.with {
    background: linear-gradient(180deg, rgba(28,129,249,.07), rgba(101,19,181,.06));
    color: var(--ink-900); font-weight: 600; font-size: 14px; line-height: 1.35;
    border: 1px solid var(--ink-100); border-top: 1px solid rgba(28,129,249,.14);
    border-radius: 0 0 16px 16px;
    box-shadow: inset 3px 0 0 var(--accent), 0 14px 30px rgba(28,129,249,.12);
  }
.psy-uc .cc.with::after { content: "S Paysy"; margin-left: auto; flex: none; padding-left: 8px; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--accent); }
.psy-uc .cmptbl > .cc.with:last-child { border-radius: 0 0 16px 16px; }
}
.psy-uc .faq { max-width: 820px; margin: 0 auto; }
.psy-uc .faq-item { border-bottom: 1px solid var(--ink-100); }
.psy-uc .faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-900);
}
.psy-uc .faq-item summary::-webkit-details-marker { display: none; }
.psy-uc .faq-item .plus {
  flex: none; width: 32px; height: 32px; border-radius: 999px; background: var(--accent-50); color: var(--accent);
  display: grid; place-items: center; font-size: 20px; line-height: 1; transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast);
}
.psy-uc .faq-item[open] .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.psy-uc .faq-item .ans { padding: 0 52px 26px 0; font-size: 16px; line-height: 1.65; color: var(--ink-500); margin: 0; }
.psy-uc .final { position: relative; background: var(--gradient-secondary-member); color: #fff; overflow: hidden; isolation: isolate; text-align: center; }
.psy-uc .final::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .12; background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 240px; }
.psy-uc .final h2 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -.025em; font-weight: 800; margin: 0 0 18px; max-width: 760px; margin-inline: auto; }
.psy-uc .final p { font-size: 20px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0 auto 34px; max-width: 560px; }
.psy-uc .final-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.psy-uc .foot { background: #06091d; color: rgba(255,255,255,.62); padding: 60px 0 40px; font-size: 14px; }
.psy-uc .foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.psy-uc .foot-brand img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.psy-uc .foot-brand p { margin: 14px 0 0; max-width: 320px; line-height: 1.6; }
.psy-uc .foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.psy-uc .foot-col h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 14px; font-weight: 700; }
.psy-uc .foot-col a { display: block; color: rgba(255,255,255,.72); text-decoration: none; padding: 5px 0; }
.psy-uc .foot-col a:hover { color: #fff; }
.psy-uc .foot-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.45); }
@media (prefers-reduced-motion: no-preference) {
html.psy-anim .psy-uc .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
html.psy-anim .psy-uc .reveal.in { opacity: 1; transform: none; }
}
.psy-uc .hero-photo > img, .psy-uc .tmn-photo > img, .psy-uc .moment-card > img, .psy-uc .moment > img, .psy-uc .chaos-photo > img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.psy-uc .hero-photo > img { border-radius: 0; }
.psy-uc .tmn-photo > img { border-radius: 24px; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.psy-uc .moment-card > img, .psy-uc .moment > img { border-radius: 0; }
.psy-uc .moment > img { position: absolute; inset: 0; z-index: 0; }
.psy-uc .chaos-photo > img { position: absolute; inset: 0; z-index: 0; }
.psy-uc image-slot {
  display: block; border-radius: var(--r-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #eef1f8 0 14px, #e6eaf4 14px 28px);
  color: var(--ink-700);
}
.psy-uc .hero-float .big, .psy-uc .hero-float .sm { white-space: nowrap; }
.psy-uc .hero, .psy-uc .numbers, .psy-uc .final, .psy-uc .moment, .psy-uc .why-know { position: relative; }
.psy-uc .hero::after, .psy-uc .numbers::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 4px 4px; opacity: .6;
}
.psy-uc .hero-vis { position: relative; display: block; }
.psy-uc .hero-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 50px 110px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
}
.psy-uc .hero-photo image-slot { width: 100%; height: 100%; border-radius: 0; }
.psy-uc .hero-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(10,14,42,.55) 100%);
}
.psy-uc .hero-photo .ph-tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,14,42,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 8px 14px 8px 12px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.psy-uc .hero-photo .ph-tag .crest { width: 16px; height: 16px; border-radius: 4px; background: linear-gradient(135deg, var(--accent), var(--paysy-purple)); }
.psy-uc .hero-widget {
  position: absolute; left: -26px; bottom: 40px; z-index: 4; width: 248px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 18px; padding: 16px;
  box-shadow: 0 24px 60px rgba(10,14,42,.4);
}
.psy-uc .hero-widget .wl { font-size: 11px; font-weight: 700; color: var(--ink-500); letter-spacing: .04em; }
.psy-uc .hero-widget .wrow { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.psy-uc .hero-widget .wamt { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-900); }
.psy-uc .hero-widget .wpaid { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--grant-green-700); background: var(--grant-green-100); padding: 4px 9px; border-radius: 999px; }
.psy-uc .hero-widget .wpaid svg { width: 11px; height: 11px; }
.psy-uc .hero-widget .wbar { height: 7px; border-radius: 999px; background: var(--ink-100); margin-top: 12px; overflow: hidden; }
.psy-uc .hero-widget .wbar i { display: block; height: 100%; width: 94%; border-radius: 999px; background: var(--accent); }
.psy-uc .hero-widget .wfoot { font-size: 11px; color: var(--ink-500); margin-top: 8px; }
.psy-uc .hero-float.f2b {
  position: absolute; top: 28px; right: -18px; z-index: 4;
}
@media (max-width: 920px) {
.psy-uc .hero-photo { aspect-ratio: 16 / 11; }
.psy-uc .hero-widget { left: 12px; bottom: 16px; }
.psy-uc .hero-float.f2b { right: 8px; top: 14px; }
}
@media (max-width: 640px) {
.psy-uc .hero-vis { display: flex; flex-direction: column; gap: 12px; }
.psy-uc .hero-photo { aspect-ratio: 4 / 3; }
.psy-uc .hero-float.f2b, .psy-uc .hero-widget {
    position: static; inset: auto; width: auto; backdrop-filter: none;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    box-shadow: none; color: #fff;
  }
.psy-uc .hero-float.f2b .big { color: #fff; }
.psy-uc .hero-float.f2b .sm { color: rgba(255,255,255,.7); }
.psy-uc .hero-widget .wl { color: rgba(255,255,255,.7); }
.psy-uc .hero-widget .wamt { color: #fff; }
.psy-uc .hero-widget .wbar { background: rgba(255,255,255,.14); }
.psy-uc .hero-widget .wfoot { color: rgba(255,255,255,.7); }
}
@media (max-width: 520px) {
.psy-uc .hero-widget { width: auto; }
}
.psy-uc .tmn { background: var(--dark-blue); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.psy-uc .tmn .chev { position: absolute; inset: 0; z-index: -1; opacity: .08; background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDcyMCA0MDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgYXJpYS1oaWRkZW49InRydWUiPgogIDxnPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNNzguNzQ4NSAxNjkuMDg3Qzg3LjEyODMgMTg3LjA5NyA4Ny4xMjgzIDIwNy45MDMgNzguNzQ4NSAyMjUuOTAxTDAgMzk1SDEyMy4yMjVDMTQyLjY5MSAzOTUgMTYwLjM5MiAzODMuNjg5IDE2OC42MTkgMzY2LjAwOUwyMzMuNzM5IDIyNS44OUMyNDIuMTA3IDIwNy44OTEgMjQyLjA5NSAxODcuMTA5IDIzMy43MTUgMTY5LjEyMkwxNjguNDMxIDI4Ljk1NTdDMTYwLjIwNCAxMS4yODc0IDE0Mi41MTUgMCAxMjMuMDYgMEgwTDc4Ljc0ODUgMTY5LjA4N1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0MCAwKSI+PC9wYXRoPgogICAgPHBhdGggZD0iTTc4Ljc0ODUgMTY5LjA4N0M4Ny4xMjgzIDE4Ny4wOTcgODcuMTI4MyAyMDcuOTAzIDc4Ljc0ODUgMjI1LjkwMUwwIDM5NUgxMjMuMjI1QzE0Mi42OTEgMzk1IDE2MC4zOTIgMzgzLjY4OSAxNjguNjE5IDM2Ni4wMDlMMjMzLjczOSAyMjUuODlDMjQyLjEwNyAyMDcuODkxIDI0Mi4wOTUgMTg3LjEwOSAyMzMuNzE1IDE2OS4xMjJMMTY4LjQzMSAyOC45NTU3QzE2MC4yMDQgMTEuMjg3NCAxNDIuNTE1IDAgMTIzLjA2IDBIMEw3OC43NDg1IDE2OS4wODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0ODAgMCkiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg=="); background-size: auto 220px; }
.psy-uc .tmn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 80% 20%, rgba(28,129,249,.35), transparent 55%); }
.psy-uc .tmn-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.psy-uc .tmn-photo { position: relative; aspect-ratio: 4/5; }
.psy-uc .tmn-photo image-slot { width: 100%; height: 100%; border-radius: 24px; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.psy-uc .tmn-photo .crest-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: #fff; color: var(--ink-900); border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
}
.psy-uc .tmn-photo .crest-badge .c { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--paysy-purple)); flex: none; }
.psy-uc .tmn-photo .crest-badge .nm { font-size: 13px; font-weight: 800; }
.psy-uc .tmn-photo .crest-badge .mt { font-size: 11px; color: var(--ink-500); }
.psy-uc .tmn-quote .mark { font-size: 64px; line-height: .6; color: var(--accent); font-weight: 800; font-family: var(--font-display); }
.psy-uc .tmn-quote blockquote {
  margin: 14px 0 28px; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.32;
  font-weight: 700; letter-spacing: -.02em; color: #fff; text-wrap: balance;
}
.psy-uc .tmn-quote blockquote em { font-style: normal; color: var(--accent); }
.psy-uc .tmn-author { display: flex; align-items: center; gap: 14px; }
.psy-uc .tmn-author .who .n { font-size: 16px; font-weight: 700; }
.psy-uc .tmn-author .who .r { font-size: 14px; color: rgba(255,255,255,.6); }
.psy-uc .tmn-author .stars { display: flex; gap: 3px; margin-left: auto; }
.psy-uc .tmn-author .stars svg { width: 18px; height: 18px; color: var(--yellow); }
@media (max-width: 820px) {
.psy-uc .tmn-grid { grid-template-columns: 1fr; gap: 56px; }
.psy-uc .tmn-photo { max-width: 360px; }
}
.psy-uc .moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.psy-uc .moment-card {
  position: relative; aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.psy-uc .moment-card image-slot { width: 100%; height: 100%; border-radius: 0; }
.psy-uc .moment-card .cap {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 3;
  color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.psy-uc .moment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,14,42,.7)); pointer-events: none; }
@media (max-width: 820px) {
.psy-uc .moments-grid { grid-template-columns: 1fr; }
.psy-uc .moment-card { aspect-ratio: 16/10; }
}
.psy-uc .moment { position: relative; padding: 0; color: #fff; overflow: hidden; isolation: isolate; }
.psy-uc .moment image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; z-index: 0; }
.psy-uc .moment::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(10,14,42,.86) 0%, rgba(10,14,42,.62) 45%, rgba(10,14,42,.30) 100%); }
.psy-uc .moment-inner { position: relative; z-index: 2; pointer-events: none; max-width: var(--maxw); margin: 0 auto; padding: 132px 32px; }
.psy-uc .moment-inner .eyebrow { color: #fff; }
.psy-uc .moment-inner .eyebrow::before { background: #fff; }
.psy-uc .moment-inner h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.025em; font-weight: 800; margin: 0; max-width: 660px; text-wrap: balance; }
.psy-uc .moment-inner p { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 18px 0 0; max-width: 540px; }
.psy-uc .nav { border-bottom: 1px solid rgba(10,14,42,.07); }
@media (min-width: 1200px) {
.psy-uc section { padding: 120px 0; }
}
/* === chaos: auto-play entrance in pure CSS (no script needed) === */
.psy-uc .chaos .chaos-stage::after { opacity: 1; }
.psy-uc .chaos .chaos-svg path { animation: chaosDraw .9s var(--ease-out) forwards; }
.psy-uc .chaos .chaos-svg path.l1 { animation-delay: .15s; }
.psy-uc .chaos .chaos-svg path.l2 { animation-delay: .28s; }
.psy-uc .chaos .chaos-svg path.l3 { animation-delay: .41s; }
.psy-uc .chaos .chaos-svg path.l4 { animation-delay: .54s; }
.psy-uc .chaos .chaos-svg path.l5 { animation-delay: .67s; }
.psy-uc .chaos .chaos-svg path.l6 { animation-delay: .80s; }
.psy-uc .chaos .chaos-svg path.flow { opacity: .55; animation: chaosFlow 1.1s linear infinite; animation-delay: 1.1s; }
.psy-uc .chaos .ctool { animation: chaosPop .55s var(--ease-out) forwards, chaosFloat 5s ease-in-out infinite; }
.psy-uc .chaos .ctool .badge { animation: chaosBadge .4s var(--ease-back, cubic-bezier(.34,1.56,.64,1)) forwards; }
.psy-uc .chaos .ctool.c1 { animation-delay: .15s, 1.2s; }
.psy-uc .chaos .ctool.c1 .badge { animation-delay: .9s; }
.psy-uc .chaos .ctool.c2 { animation-delay: .28s, 1.5s; }
.psy-uc .chaos .ctool.c2 .badge { animation-delay: 1.0s; }
.psy-uc .chaos .ctool.c3 { animation-delay: .41s, 1.0s; }
.psy-uc .chaos .ctool.c3 .badge { animation-delay: 1.1s; }
.psy-uc .chaos .ctool.c4 { animation-delay: .54s, 1.7s; }
.psy-uc .chaos .ctool.c4 .badge { animation-delay: 1.2s; }
.psy-uc .chaos .ctool.c5 { animation-delay: .67s, 1.3s; }
.psy-uc .chaos .ctool.c5 .badge { animation-delay: 1.3s; }
.psy-uc .chaos .ctool.c6 { animation-delay: .80s, 1.6s; }
.psy-uc .chaos .ctool.c6 .badge { animation-delay: 1.4s; }
.psy-uc .chaos .chaos-core .ring { animation: chaosRing 2.2s ease-out infinite; animation-delay: 1.4s; }
.psy-uc .chaos .chaos-core { animation: chaosShake 6s ease-in-out infinite; animation-delay: 1.6s; }
.psy-uc .chaos .chaos-side .burn { animation: burnPulse 2.6s ease-in-out infinite; animation-delay: 1.8s; }
@media (max-width: 820px) {
.psy-uc .chaos .ctool { animation: chaosPopM .55s var(--ease-out) forwards, chaosFloat 5s ease-in-out infinite; }
}
