:root{
  --bg:#05080f;
  --bg-soft:#0b101a;
  --panel:#0f1520;
  --panel-2:#131a28;
  --line:rgba(255,255,255,.09);
  --line-strong:rgba(255,255,255,.18);
  --text:rgba(255,255,255,.95);
  --muted:rgba(255,255,255,.74);
  --muted-2:rgba(255,255,255,.56);
  --cyan:#36d6ff;
  --violet:#8c63ff;
  --pink:#ff5fd0;
  --green:#69e38f;
  --gold:#f8c34f;
  --teal:#40e5dc;
  --radius:22px;
  --radius-lg:28px;
  --shadow:0 24px 80px rgba(0,0,0,.44);
  --max:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.ms-theme{
  margin:0;
  font-family:"Inter",ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(980px 460px at 8% -8%, rgba(54,214,255,.16), transparent 58%),
    radial-gradient(920px 500px at 92% -8%, rgba(140,99,255,.18), transparent 56%),
    radial-gradient(900px 420px at 70% 104%, rgba(255,95,208,.10), transparent 62%),
    linear-gradient(180deg, #05080f 0%, #09111d 48%, #05080f 100%);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.ms-link{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}
.ms-link:hover{border-color:rgba(54,214,255,.48)}

.ms-container{max-width:var(--max);margin:0 auto;padding:0 24px}
.ms-main{padding-bottom:72px}
.ms-spacer-12{height:12px}
.ms-spacer-24{height:24px}
.ms-spacer-28{height:28px}

.ms-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(18px);
  background:linear-gradient(180deg, rgba(5,8,15,.90), rgba(5,8,15,.74));
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 30px rgba(0,0,0,.18);
}
.ms-header__inner{height:84px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.ms-brand{display:inline-flex;align-items:center;text-decoration:none}
.ms-brand__mark{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:4px;padding:0;border:0;background:transparent;box-shadow:none}
.ms-brand__logo{height:50px;width:auto;max-width:min(280px,34vw);object-fit:contain;filter:drop-shadow(0 0 16px rgba(54,214,255,.18)) drop-shadow(0 0 22px rgba(140,99,255,.14))}
.ms-brand__meta{display:inline-block;max-width:100%;font-size:11px;line-height:1.1;letter-spacing:.12em;text-transform:uppercase;color:rgba(224,244,255,.92);text-shadow:0 0 16px rgba(54,214,255,.18);padding-left:4px;white-space:nowrap}

.ms-nav{display:flex;align-items:center;gap:16px}
.ms-nav__toggle{
  display:none;width:44px;height:44px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.03);color:var(--text)
}
.ms-nav__toggleLines{display:block;width:18px;height:2px;background:currentColor;position:relative;margin:0 auto}
.ms-nav__toggleLines:before,.ms-nav__toggleLines:after{content:"";position:absolute;left:0;width:18px;height:2px;background:currentColor}
.ms-nav__toggleLines:before{top:-6px}
.ms-nav__toggleLines:after{top:6px}

.ms-nav__menu{display:flex;align-items:center;gap:18px}
.ms-nav__list{list-style:none;display:flex;align-items:center;gap:6px;margin:0;padding:0}
.ms-nav__list a{
  display:inline-flex;align-items:center;min-height:42px;padding:0 14px;border-radius:14px;
  text-decoration:none;color:var(--muted);font-weight:600
}
.ms-nav__list a:hover{background:rgba(255,255,255,.05);color:var(--text)}


.ms-btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 16px;border-radius:14px;
  border:1px solid var(--line);text-decoration:none;font-weight:700;white-space:nowrap;
  transition:transform .14s ease,border-color .14s ease,background .14s ease,box-shadow .14s ease
}
.ms-btn:hover{transform:translateY(-1px)}
.ms-btn--primary{
  background:linear-gradient(135deg, rgba(54,214,255,.28), rgba(140,99,255,.22), rgba(255,95,208,.12));
  border-color:rgba(54,214,255,.34);
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 42px rgba(54,214,255,.16), 0 16px 40px rgba(0,0,0,.28);
}
.ms-btn--primary:hover{border-color:rgba(140,99,255,.46);box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 52px rgba(140,99,255,.18), 0 16px 40px rgba(0,0,0,.30)}
.ms-btn--ghost{background:rgba(255,255,255,.03)}
.ms-btn--ghost:hover{background:rgba(255,255,255,.06);border-color:var(--line-strong)}

.ms-kicker{
  display:inline-flex;align-items:center;gap:10px;text-transform:uppercase;letter-spacing:.16em;
  font-size:12px;color:rgba(255,255,255,.70);font-weight:700
}
.ms-kicker:before{
  content:"";width:28px;height:1px;background:linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));opacity:.9
}

.ms-h1,.ms-h2,.ms-h3{margin:0}
.ms-h1{font-family:"Space Grotesk","Inter",sans-serif;font-size:clamp(34px,4vw,56px);line-height:1.02;letter-spacing:-.04em;margin:12px 0 14px}
.ms-h2{font-family:"Space Grotesk","Inter",sans-serif;font-size:clamp(28px,2.6vw,40px);line-height:1.06;letter-spacing:-.03em}
.ms-h3{font-size:19px;line-height:1.26}
.ms-lead{margin:0;color:var(--muted);font-size:18px;line-height:1.72;max-width:70ch}
.ms-muted{margin:0;color:var(--muted);line-height:1.72}

.ms-hero{
  position:relative;padding:78px 0 48px;overflow:hidden
}
.ms-hero:before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(5,8,15,.96) 0%, rgba(5,8,15,.86) 34%, rgba(5,8,15,.62) 62%, rgba(5,8,15,.84) 100%),
    url('../img/hero-vibe.webp') center right/cover no-repeat;
  opacity:.52;pointer-events:none
}
.ms-hero:after{
  content:"";position:absolute;inset:-16% auto auto -8%;width:72%;height:58%;
  background:radial-gradient(circle, rgba(54,214,255,.18), transparent 58%);
  filter:blur(24px);pointer-events:none
}
.ms-hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:34px;align-items:center}
.ms-hero__title{
  margin:14px 0 14px;font-family:"Space Grotesk","Inter",sans-serif;
  font-size:clamp(24px,3vw,38px);line-height:1.02;letter-spacing:-.04em;max-width:14ch;
  text-shadow:0 0 18px rgba(54,214,255,.06)
}
.ms-hero__titleAccent{display:block;background:linear-gradient(90deg, #84ecff 0%, #77b6ff 28%, #9d7bff 58%, #ff78d8 100%);-webkit-background-clip:text;background-clip:text;color:transparent;text-shadow:none;filter:drop-shadow(0 0 18px rgba(140,99,255,.14))}
.ms-hero__lead{margin:0 0 20px;font-size:17px;line-height:1.68;color:rgba(255,255,255,.82);max-width:61ch}
.ms-hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 20px}

.ms-chipRow{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 19px}
.ms-chip{
  display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;font-size:13px;
  color:rgba(255,255,255,.86);background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 18px rgba(140,99,255,.08)
}
.ms-chip:nth-child(1){box-shadow:0 0 18px rgba(54,214,255,.10)}
.ms-chip:nth-child(2){box-shadow:0 0 18px rgba(140,99,255,.12)}
.ms-chip:nth-child(3){box-shadow:0 0 18px rgba(105,227,143,.10)}
.ms-chip:nth-child(4){box-shadow:0 0 18px rgba(64,229,220,.10)}
.ms-chip:nth-child(5){box-shadow:0 0 18px rgba(248,195,79,.10)}

.ms-hero__miniGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.ms-miniStat{
  padding:14px 14px 16px;background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border:1px solid var(--line);border-radius:18px;box-shadow:0 12px 34px rgba(0,0,0,.18)
}
.ms-miniStat strong{display:block;margin-bottom:8px;font-size:14px}
.ms-miniStat span{display:block;color:var(--muted-2);font-size:13px;line-height:1.55}
.ms-miniStat:nth-child(1){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 24px rgba(54,214,255,.08), 0 12px 34px rgba(0,0,0,.18)}
.ms-miniStat:nth-child(2){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 24px rgba(140,99,255,.09), 0 12px 34px rgba(0,0,0,.18)}
.ms-miniStat:nth-child(3){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 24px rgba(64,229,220,.08), 0 12px 34px rgba(0,0,0,.18)}

.ms-hero__media{position:relative;min-width:0}
.ms-shotFrame{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.11);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)
}
.ms-shotFrame img{display:block;width:100%}
.ms-demoFrame{position:relative;isolation:isolate;max-width:100%;min-width:0}
.ms-demoFrame:after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg, rgba(7,11,20,.00) 0%, rgba(7,11,20,.00) 52%, rgba(7,11,20,.18) 100%);
  opacity:.92;transition:opacity .35s ease
}
.ms-demoFrame img{transition:transform .45s cubic-bezier(.22,.61,.36,1), filter .35s ease, opacity .28s ease}
.ms-demoFrame--interactive{cursor:pointer}
.ms-demoFrame--interactive:hover .ms-demoMedia{transform:scale(1.032);filter:saturate(1.06) contrast(1.02)}
.ms-demoFrame--interactive:hover:after{opacity:.72}
.ms-demoFrame--interactive:hover{box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 0 52px rgba(54,214,255,.16), 0 24px 80px rgba(0,0,0,.42)}
.ms-demoBadge{
  position:absolute;left:16px;bottom:16px;z-index:2;display:inline-flex;align-items:center;gap:8px;min-height:34px;padding:0 12px 0 10px;
  border-radius:999px;background:linear-gradient(180deg, rgba(10,16,28,.88), rgba(10,16,28,.72));border:1px solid rgba(255,255,255,.13);
  color:rgba(255,255,255,.92);font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;box-shadow:0 10px 24px rgba(0,0,0,.32)
}
.ms-demoBadge:before{
  content:"";width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg, var(--cyan), var(--pink));box-shadow:0 0 14px rgba(140,99,255,.55)
}
.ms-demoPlay{
  position:absolute;right:18px;bottom:18px;z-index:2;width:54px;height:54px;border-radius:50%;pointer-events:auto;
  background:linear-gradient(180deg, rgba(10,16,28,.84), rgba(10,16,28,.68));border:1px solid rgba(255,255,255,.14);box-shadow:0 16px 36px rgba(0,0,0,.36), 0 0 26px rgba(140,99,255,.16);
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease
}
.ms-demoPlay:before{
  content:"";position:absolute;left:21px;top:16px;border-style:solid;border-width:10px 0 10px 15px;border-color:transparent transparent transparent rgba(255,255,255,.94)
}

.ms-demoMedia{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:16/10;object-fit:cover;object-position:center center;object-position:center top;background:#07111d}
.ms-demoPlay{cursor:pointer;border:1px solid rgba(255,255,255,.18)}
.ms-demoPlay:focus-visible{outline:none;box-shadow:0 0 0 2px rgba(54,214,255,.34),0 0 0 5px rgba(7,17,29,.82),0 18px 42px rgba(0,0,0,.42)}
.ms-demoFrame[data-demo-frame]{position:relative}
.ms-visuallyHidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.ms-demoFrame--interactive:hover .ms-demoPlay{transform:scale(1.06);box-shadow:0 18px 42px rgba(0,0,0,.42), 0 0 34px rgba(54,214,255,.18);background:linear-gradient(180deg, rgba(14,22,38,.90), rgba(14,22,38,.74))}
.ms-demoFrame.is-playing .ms-demoPlay{transform:scale(1.04);box-shadow:0 18px 42px rgba(0,0,0,.42), 0 0 34px rgba(140,99,255,.22);background:linear-gradient(180deg, rgba(16,24,42,.94), rgba(16,24,42,.76))}
.ms-demoFrame.is-playing .ms-demoPlay:before{left:18px;top:16px;width:6px;height:20px;border:none;background:rgba(255,255,255,.94);box-shadow:12px 0 0 rgba(255,255,255,.94)}
.ms-demoFrame.is-playing:after{opacity:.58}
.ms-demoFrame.is-playing .ms-demoMedia{transform:scale(1.035);filter:saturate(1.04) contrast(1.02)}
@media (prefers-reduced-motion: reduce){
  .ms-demoFrame img,.ms-demoFrame video,.ms-demoPlay,.ms-demoFrame:after{transition:none}
  .ms-demoFrame--interactive:hover .ms-demoMedia{transform:none;filter:none}
  .ms-demoFrame--interactive:hover .ms-demoPlay{transform:none}
}
.ms-shotFrame--hero{transform:perspective(1600px) rotateY(-6deg) rotateX(1deg)}
.ms-glowPanel{box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 66px rgba(54,214,255,.14), 0 24px 80px rgba(0,0,0,.44)}
.ms-shotFrame--workspace{position:relative;overflow:hidden}
.ms-shotLabel{
  position:absolute;left:16px;top:16px;z-index:2;padding:8px 12px;border-radius:999px;
  background:linear-gradient(180deg, rgba(10,16,28,.88), rgba(10,16,28,.72));
  border:1px solid rgba(255,255,255,.12);box-shadow:0 10px 24px rgba(0,0,0,.32);
  color:rgba(255,255,255,.92);font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:700
}
.ms-heroCaptionRow{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-start;margin-top:14px;padding-left:4px}
.ms-captionChip{
  display:inline-flex;align-items:center;min-height:36px;padding:0 14px;border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.90);font-size:13px;font-weight:600;
  box-shadow:0 12px 28px rgba(0,0,0,.24)
}
.ms-captionChip:nth-child(1){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 22px rgba(54,214,255,.12), 0 12px 28px rgba(0,0,0,.24)}
.ms-captionChip:nth-child(2){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 22px rgba(140,99,255,.12), 0 12px 28px rgba(0,0,0,.24)}
.ms-floatCard{
  position:absolute;max-width:220px;padding:14px 16px;border:1px solid rgba(255,255,255,.12);border-radius:18px;
  background:linear-gradient(180deg, rgba(10,16,28,.90), rgba(10,16,28,.72));box-shadow:0 18px 40px rgba(0,0,0,.42);backdrop-filter:blur(12px)
}
.ms-floatCard__label{display:block;margin-bottom:6px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.68);font-weight:700}
.ms-floatCard strong{font-size:14px;line-height:1.45}
.ms-floatCard--left{left:-24px;bottom:44px;box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 34px rgba(54,214,255,.12), 0 18px 40px rgba(0,0,0,.42)}
.ms-floatCard--right{right:-24px;top:34px;box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 0 34px rgba(140,99,255,.12), 0 18px 40px rgba(0,0,0,.42)}

.ms-section{padding:58px 0}
.ms-section--alt{
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(54,214,255,.10), transparent 58%),
    radial-gradient(900px 320px at 85% 20%, rgba(140,99,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)
}
.ms-sectionHead{display:flex;justify-content:space-between;gap:22px;align-items:end;margin-bottom:26px}

.ms-grid{display:grid;gap:18px}
.ms-grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.ms-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}

.ms-card{
  position:relative;padding:24px;background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);border-radius:24px;box-shadow:0 18px 44px rgba(0,0,0,.24)
}
.ms-card--content{padding:36px}
.ms-card--textHeavy{padding:28px 28px 30px}

.ms-list{margin:18px 0 0;padding-left:18px;color:var(--muted)}
.ms-list li{margin:0 0 10px;line-height:1.7}
.ms-list--clean{list-style:none;padding:0;margin:18px 0 0}
.ms-list--clean li{padding-left:20px;position:relative}
.ms-list--clean li:before{content:"";position:absolute;left:0;top:.8em;width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--cyan),var(--violet),var(--pink));box-shadow:0 0 12px rgba(140,99,255,.4)}

.ms-homeGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ms-homeCard{overflow:hidden;min-height:100%}
.ms-homeCard:after{
  content:"";position:absolute;inset:auto -18% -32% auto;width:170px;height:170px;border-radius:50%;
  filter:blur(34px);opacity:.36;pointer-events:none
}
.ms-homeCard--cyan:after{background:rgba(54,214,255,.34)}
.ms-homeCard--violet:after{background:rgba(140,99,255,.34)}
.ms-homeCard--green:after{background:rgba(105,227,143,.30)}
.ms-homeCard__iconWrap{
  width:96px;height:96px;border-radius:24px;display:grid;place-items:center;margin-bottom:18px;
  border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04))
}
.ms-homeCard__iconWrap img{max-width:76px;max-height:76px;object-fit:contain}
.ms-homeCard__iconWrap--cyan{box-shadow:0 0 34px rgba(54,214,255,.22)}
.ms-homeCard__iconWrap--violet{box-shadow:0 0 34px rgba(140,99,255,.24)}
.ms-homeCard__iconWrap--green{box-shadow:0 0 34px rgba(105,227,143,.20)}

.ms-moduleGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ms-moduleCard{min-height:100%;padding:24px;overflow:hidden}
.ms-moduleCard:after{content:"";position:absolute;inset:auto -20% -34% auto;width:170px;height:170px;border-radius:50%;filter:blur(34px);opacity:.38;pointer-events:none}
.ms-moduleCard:nth-child(1):after{background:rgba(54,214,255,.34)}
.ms-moduleCard:nth-child(2):after{background:rgba(140,99,255,.34)}
.ms-moduleCard:nth-child(3):after{background:rgba(105,227,143,.32)}
.ms-moduleCard:nth-child(4):after{background:rgba(64,229,220,.30)}
.ms-moduleCard:nth-child(5):after{background:rgba(248,195,79,.28)}
.ms-moduleCard:nth-child(6):after{background:rgba(255,95,208,.32)}
.ms-moduleCard__iconWrap{width:92px;height:92px;border-radius:24px;display:grid;place-items:center;margin-bottom:18px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));box-shadow:0 0 0 1px rgba(255,255,255,.05) inset}
.ms-moduleCard__iconWrap img{max-width:74px;max-height:74px;object-fit:contain}
.ms-moduleCard__iconWrap--cyan{box-shadow:0 0 34px rgba(54,214,255,.20)}
.ms-moduleCard__iconWrap--violet{box-shadow:0 0 34px rgba(140,99,255,.24)}
.ms-moduleCard__iconWrap--green{box-shadow:0 0 34px rgba(105,227,143,.18)}
.ms-moduleCard__iconWrap--gold{box-shadow:0 0 34px rgba(248,195,79,.18)}
.ms-moduleCard__iconWrap--teal{box-shadow:0 0 34px rgba(64,229,220,.18)}
.ms-moduleCard__iconWrap--pink{box-shadow:0 0 34px rgba(255,95,208,.22)}

.ms-gridIcon{position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:7px;width:36px;height:36px}
.ms-gridIcon span{display:block;border-radius:6px;background:linear-gradient(180deg, rgba(248,195,79,.94), rgba(248,195,79,.45));box-shadow:0 0 16px rgba(248,195,79,.38)}

.ms-showcaseGrid,.ms-pricingGrid{display:grid;gap:18px}
.ms-showcaseGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
.ms-showcaseCard{padding:18px}
.ms-panelHead{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:14px}
.ms-panelHead strong{font-size:15px;line-height:1.5}
.ms-panelTag{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;font-size:12px;font-weight:800;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05)}
.ms-panelTag--cyan{box-shadow:0 0 22px rgba(54,214,255,.16);border-color:rgba(54,214,255,.28)}
.ms-panelTag--violet{box-shadow:0 0 22px rgba(140,99,255,.18);border-color:rgba(140,99,255,.28)}

.ms-pricingGrid{grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch}
.ms-priceCard{display:flex;flex-direction:column}
.ms-priceCard__eyebrow{display:inline-flex;align-items:center;min-height:30px;padding:0 10px;border-radius:999px;font-size:12px;font-weight:800;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05);margin-bottom:14px}
.ms-priceCard--featured{background:linear-gradient(180deg, rgba(140,99,255,.18), rgba(255,255,255,.04));transform:translateY(-4px)}
.ms-priceCard__price{margin:10px 0 12px;font-size:32px;font-weight:800;letter-spacing:-.04em}
.ms-priceCard .ms-btn{margin-top:auto}

.ms-pageHero{padding:64px 0 18px;position:relative}
.ms-pageHero:after{content:"";position:absolute;right:0;top:0;width:40%;height:100%;background:radial-gradient(circle at center, rgba(140,99,255,.14), transparent 62%);pointer-events:none}

.ms-centerCta{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:24px}
.ms-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.95fr);gap:18px;align-items:stretch}

.ms-ctaCard{
  display:flex;justify-content:space-between;gap:24px;align-items:center;padding:28px;border-radius:26px;
  background:linear-gradient(135deg, rgba(54,214,255,.12), rgba(140,99,255,.12), rgba(255,95,208,.08));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 44px rgba(140,99,255,.10), 0 18px 44px rgba(0,0,0,.24)
}
.ms-ctaCard__actions{display:flex;gap:12px;flex-wrap:wrap}

.ms-footer{padding:0 0 26px;border-top:1px solid rgba(255,255,255,.07);background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01))}
.ms-footer__grid{display:grid;grid-template-columns:1.25fr .7fr .7fr;gap:28px;padding:34px 24px 26px}
.ms-footer__logo{height:32px;width:auto;margin-bottom:16px}
.ms-footer__lead{max-width:48ch;color:#fff;margin:0 0 8px}
.ms-footer__meta{color:var(--muted);margin:0}
.ms-footer__title{margin:0 0 12px;font-size:14px;text-transform:uppercase;letter-spacing:.14em;color:#fff}
.ms-footer__list{list-style:none;padding:0;margin:0}
.ms-footer__list li{margin:0 0 10px}
.ms-footer__list a{text-decoration:none;color:var(--muted)}
.ms-footer__list a:hover{color:#fff}
.ms-footer__bottom{display:flex;justify-content:space-between;gap:12px;border-top:1px solid rgba(255,255,255,.07);padding-top:18px;color:var(--muted-2);font-size:13px}

.ms-glow--cyan{box-shadow:0 0 0 1px rgba(255,255,255,.06) inset,0 0 38px rgba(54,214,255,.12),0 18px 44px rgba(0,0,0,.24)}
.ms-glow--violet{box-shadow:0 0 0 1px rgba(255,255,255,.06) inset,0 0 42px rgba(140,99,255,.15),0 18px 44px rgba(0,0,0,.24)}
.ms-glow--pink{box-shadow:0 0 0 1px rgba(255,255,255,.06) inset,0 0 42px rgba(255,95,208,.13),0 18px 44px rgba(0,0,0,.24)}

@media (max-width: 1120px){
  .ms-hero__inner,.ms-split,.ms-showcaseGrid,.ms-pricingGrid,.ms-moduleGrid,.ms-homeGrid,.ms-footer__grid{grid-template-columns:1fr 1fr}
  .ms-hero__miniGrid{grid-template-columns:1fr}
}
@media (max-width: 900px){
  .ms-nav__toggle{display:inline-flex;align-items:center;justify-content:center}
  .ms-nav__menu{
    position:absolute;top:70px;right:24px;left:24px;display:none;flex-direction:column;align-items:stretch;padding:16px;
    border-radius:20px;background:linear-gradient(180deg, rgba(10,15,26,.96), rgba(10,15,26,.92));
    border:1px solid rgba(255,255,255,.09);box-shadow:0 24px 60px rgba(0,0,0,.45)
  }
  .ms-nav__menu.is-open{display:flex}
  .ms-nav__list{flex-direction:column;align-items:stretch}
  .ms-nav__list a{width:100%}
  .ms-hero__inner,.ms-grid--2,.ms-grid--3,.ms-showcaseGrid,.ms-pricingGrid,.ms-moduleGrid,.ms-homeGrid,.ms-split,.ms-footer__grid,.ms-sectionHead{grid-template-columns:1fr;display:grid}
  .ms-sectionHead{align-items:start}
  .ms-shotFrame--hero{transform:none}
  .ms-floatCard{position:static;max-width:none;margin-top:12px}
  .ms-heroCaptionRow{padding-left:0;justify-content:flex-start}
  .ms-shotLabel{left:12px;top:12px;font-size:10px}
  .ms-ctaCard{flex-direction:column;align-items:flex-start}
  .ms-footer__bottom{flex-direction:column}
}
@media (max-width: 640px){
  .ms-container{padding:0 18px}
  .ms-hero__title{font-size:clamp(23px,7vw,31px);max-width:100%}
  .ms-header__inner{height:74px}
  .ms-brand__logo{height:34px;max-width:190px}
  .ms-hero{padding:58px 0 38px}
  .ms-card{padding:20px}
  .ms-card--content{padding:24px}
  .ms-pageHero{padding-top:48px}
}


.ms-priceCard__actions{display:flex;flex-direction:column;gap:12px;margin-top:auto}
.ms-downloadMeta{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.ms-inlineNotice{
  margin:0 0 18px;padding:14px 16px;border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.11);color:var(--muted);
  box-shadow:0 12px 34px rgba(0,0,0,.16)
}
.ms-edd-action,.ms-edd-action .edd_purchase_submit_wrapper{display:inline-flex}
.ms-edd-action .edd-submit,
.ms-edd-action .edd-add-to-cart,
.ms-edd-action .edd_go_to_checkout,
.ms-edd-action input[type="submit"]{
  display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 16px;border-radius:14px;
  border:1px solid var(--line);text-decoration:none;font-weight:700;white-space:nowrap;cursor:pointer;
  transition:transform .14s ease,border-color .14s ease,background .14s ease,box-shadow .14s ease;
  color:var(--text)!important
}
.ms-edd-action .edd-submit:hover,
.ms-edd-action .edd-add-to-cart:hover,
.ms-edd-action .edd_go_to_checkout:hover,
.ms-edd-action input[type="submit"]:hover{transform:translateY(-1px)}
.ms-edd-action--primary .edd-submit,
.ms-edd-action--primary .edd-add-to-cart,
.ms-edd-action--primary .edd_go_to_checkout,
.ms-edd-action--primary input[type="submit"]{
  background:linear-gradient(135deg, rgba(54,214,255,.28), rgba(140,99,255,.22), rgba(255,95,208,.12));
  border-color:rgba(54,214,255,.34);
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 42px rgba(54,214,255,.16), 0 16px 40px rgba(0,0,0,.28)
}
.ms-edd-action--primary .edd-submit:hover,
.ms-edd-action--primary .edd-add-to-cart:hover,
.ms-edd-action--primary .edd_go_to_checkout:hover,
.ms-edd-action--primary input[type="submit"]:hover{
  border-color:rgba(140,99,255,.46);
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 52px rgba(140,99,255,.18), 0 16px 40px rgba(0,0,0,.30)
}
.ms-edd-action--ghost .edd-submit,
.ms-edd-action--ghost .edd-add-to-cart,
.ms-edd-action--ghost .edd_go_to_checkout,
.ms-edd-action--ghost input[type="submit"]{background:rgba(255,255,255,.03)}
.ms-edd-action--ghost .edd-submit:hover,
.ms-edd-action--ghost .edd-add-to-cart:hover,
.ms-edd-action--ghost .edd_go_to_checkout:hover,
.ms-edd-action--ghost input[type="submit"]:hover{background:rgba(255,255,255,.06);border-color:var(--line-strong)}


.ms-pageHero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.ms-card--edd{padding:28px;overflow:hidden}
.ms-card--eddCheckout,.ms-card--eddConfirmation{
  background:
    radial-gradient(620px 280px at 0% 0%, rgba(54,214,255,.08), transparent 58%),
    radial-gradient(620px 280px at 100% 0%, rgba(140,99,255,.08), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.028));
}
.ms-flowNotice{
  display:grid;gap:8px;margin:0 0 24px;padding:16px 18px;border-radius:18px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:0 14px 36px rgba(0,0,0,.20)
}
.ms-flowNotice strong{font-size:14px;letter-spacing:.02em}
.ms-flowNotice span{color:var(--muted);line-height:1.65}

.ms-card--edd .wp-block-edd-checkout,
.ms-card--edd .wp-block-edd-confirmation,
.ms-card--edd .edd-checkout,
.ms-card--edd .edd_receipt_shortcode,
.ms-card--edd .edd-confirmation,
.ms-card--edd .edd-success{
  display:block
}

.ms-card--edd form,
.ms-card--edd .edd_receipt_shortcode,
.ms-card--edd .edd_purchase_receipt,
.ms-card--edd .edd-cart,
.ms-card--edd .edd_checkout_cart{
  width:100%
}

.ms-card--edd table,
.ms-card--edd .edd-table,
.ms-card--edd .edd_purchase_receipt,
.ms-card--edd .edd_checkout_cart{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin:0 0 22px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 18px 40px rgba(0,0,0,.20)
}
.ms-card--edd table th,
.ms-card--edd table td,
.ms-card--edd .edd-table th,
.ms-card--edd .edd-table td,
.ms-card--edd .edd_purchase_receipt th,
.ms-card--edd .edd_purchase_receipt td,
.ms-card--edd .edd_checkout_cart th,
.ms-card--edd .edd_checkout_cart td{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:middle
}
.ms-card--edd table th,
.ms-card--edd .edd-table th,
.ms-card--edd .edd_purchase_receipt th,
.ms-card--edd .edd_checkout_cart th{
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase
}
.ms-card--edd table tr:last-child td,
.ms-card--edd .edd-table tr:last-child td,
.ms-card--edd .edd_purchase_receipt tr:last-child td,
.ms-card--edd .edd_checkout_cart tr:last-child td{border-bottom:0}

.ms-card--edd p,
.ms-card--edd li,
.ms-card--edd label,
.ms-card--edd legend,
.ms-card--edd .edd-description,
.ms-card--edd .edd_purchase_receipt_files,
.ms-card--edd .edd-cart-meta,
.ms-card--edd .edd_cart_item_name{line-height:1.7}
.ms-card--edd p,
.ms-card--edd li,
.ms-card--edd .edd-description,
.ms-card--edd .edd_purchase_receipt_files,
.ms-card--edd .edd-cart-meta{color:var(--muted)}
.ms-card--edd h2,
.ms-card--edd h3,
.ms-card--edd legend{font-family:"Space Grotesk", "Inter", sans-serif;color:#fff}
.ms-card--edd h2{font-size:clamp(24px,3vw,32px);margin:4px 0 18px}
.ms-card--edd h3,
.ms-card--edd legend{font-size:18px;margin:0 0 14px}
.ms-card--edd fieldset{
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  margin:0 0 22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02))
}
.ms-card--edd label{display:block;margin:0 0 8px;color:#fff;font-weight:700}
.ms-card--edd input[type="text"],
.ms-card--edd input[type="email"],
.ms-card--edd input[type="tel"],
.ms-card--edd input[type="password"],
.ms-card--edd input[type="number"],
.ms-card--edd select,
.ms-card--edd textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(8,12,20,.88);
  color:#fff;
  outline:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02)
}
.ms-card--edd textarea{min-height:130px;resize:vertical}
.ms-card--edd input:focus,
.ms-card--edd select:focus,
.ms-card--edd textarea:focus{
  border-color:rgba(54,214,255,.40);
  box-shadow:0 0 0 3px rgba(54,214,255,.12), inset 0 0 0 1px rgba(255,255,255,.02)
}
.ms-card--edd .edd-payment-icons,
.ms-card--edd .edd-payment-icons img,
.ms-card--edd .edd_cart_adjustment,
.ms-card--edd .edd-stripe-card-element{max-width:100%}
.ms-card--edd .edd-alert,
.ms-card--edd .edd_errors,
.ms-card--edd .edd_success,
.ms-card--edd .edd_fail,
.ms-card--edd .edd-error,
.ms-card--edd .edd-alert-error,
.ms-card--edd .edd-alert-success{
  margin:0 0 20px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12)
}
.ms-card--edd .edd_errors,
.ms-card--edd .edd_fail,
.ms-card--edd .edd-error,
.ms-card--edd .edd-alert-error{
  background:rgba(255,95,208,.08);
  border-color:rgba(255,95,208,.22)
}
.ms-card--edd .edd_success,
.ms-card--edd .edd-alert-success{
  background:rgba(105,227,143,.10);
  border-color:rgba(105,227,143,.22)
}
.ms-card--edd a{color:#fff;text-underline-offset:3px}
.ms-card--edd a:hover{color:var(--cyan)}
.ms-card--edd .edd_cart_actions .edd-remove-from-cart,
.ms-card--edd .edd_purchase_receipt_files a,
.ms-card--edd .edd-download-file a,
.ms-card--edd .edd_receipt_files a,
.ms-card--edd .edd_purchase_receipt_product_name a{
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  text-decoration:none;
  font-weight:700
}
.ms-card--edd .edd_purchase_submit_wrapper,
.ms-card--edd .edd-submit,
.ms-card--edd .edd-submit input,
.ms-card--edd input[type="submit"],
.ms-card--edd button,
.ms-card--edd .button,
.ms-card--edd .wp-block-button__link{
  display:inline-flex;align-items:center;justify-content:center;
}
.ms-card--edd .edd-submit,
.ms-card--edd input[type="submit"],
.ms-card--edd button,
.ms-card--edd .button,
.ms-card--edd .wp-block-button__link,
.ms-card--edd .edd-submit.button,
.ms-card--edd .edd-submit[type="submit"]{
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid rgba(54,214,255,.34);
  background:linear-gradient(135deg, rgba(54,214,255,.28), rgba(140,99,255,.22), rgba(255,95,208,.12));
  color:#fff !important;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 42px rgba(54,214,255,.16), 0 16px 40px rgba(0,0,0,.28);
  transition:transform .14s ease,border-color .14s ease,box-shadow .14s ease
}
.ms-card--edd .edd-submit:hover,
.ms-card--edd input[type="submit"]:hover,
.ms-card--edd button:hover,
.ms-card--edd .button:hover,
.ms-card--edd .wp-block-button__link:hover{
  transform:translateY(-1px);
  border-color:rgba(140,99,255,.46);
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 52px rgba(140,99,255,.18), 0 16px 40px rgba(0,0,0,.30)
}
.ms-card--edd .edd_purchase_receipt_files,
.ms-card--edd .edd_purchase_receipt_files li,
.ms-card--edd .edd_purchase_receipt_files ul{list-style:none;padding-left:0}
.ms-card--edd .edd_purchase_receipt_files li{margin:0 0 10px}
.ms-card--edd .edd_cart_total,
.ms-card--edd .edd_cart_amount,
.ms-card--edd .edd_purchase_receipt_amount{font-weight:800;color:#fff}
.ms-card--edd .edd_empty_cart,
.ms-card--edd .edd-alert p:last-child,
.ms-card--edd .edd_errors p:last-child{margin-bottom:0}

@media (max-width: 900px){
  .ms-pageHero__actions{display:grid;grid-template-columns:1fr}
  .ms-pageHero__actions .ms-btn{width:100%}
  .ms-card--edd{padding:22px}
}
@media (max-width: 640px){
  .ms-card--edd table,
  .ms-card--edd .edd-table,
  .ms-card--edd .edd_purchase_receipt,
  .ms-card--edd .edd_checkout_cart{display:block;overflow-x:auto;white-space:nowrap}
}


.ms-priceCard__actions .ms-edd-action,
.ms-priceCard__actions .ms-edd-action .edd_purchase_submit_wrapper{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.ms-priceCard__actions .edd-cart-ajax-alert,
.ms-priceCard__actions .edd-cart-added-alert,
.ms-priceCard__actions .edd-added-to-cart,
.ms-priceCard__actions .edd_added_to_cart,
.ms-priceCard__actions .edd-add-to-cart-alert{display:none !important}

.ms-card--edd input[type="text"],
.ms-card--edd input[type="email"],
.ms-card--edd input[type="tel"],
.ms-card--edd input[type="password"],
.ms-card--edd input[type="number"],
.ms-card--edd select,
.ms-card--edd textarea{
  color:#fff !important;
  -webkit-text-fill-color:#fff;
  caret-color:#fff;
}
.ms-card--edd input::placeholder,
.ms-card--edd textarea::placeholder{color:rgba(255,255,255,.42)}
.ms-card--edd input:-webkit-autofill,
.ms-card--edd input:-webkit-autofill:hover,
.ms-card--edd input:-webkit-autofill:focus,
.ms-card--edd textarea:-webkit-autofill,
.ms-card--edd select:-webkit-autofill{
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff;
  box-shadow:0 0 0 1000px rgba(8,12,20,.96) inset !important;
  transition:background-color 9999s ease-out 0s;
}


/* v0.5.2 - EDD premium polish */
.ms-card--edd{
  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 32px 84px rgba(0,0,0,.34),
    0 0 90px rgba(54,214,255,.06),
    0 0 110px rgba(140,99,255,.05);
}
.ms-card--eddCheckout,.ms-card--eddConfirmation{
  background:
    radial-gradient(860px 380px at -8% -10%, rgba(54,214,255,.13), transparent 58%),
    radial-gradient(760px 360px at 108% -4%, rgba(140,99,255,.15), transparent 55%),
    radial-gradient(720px 280px at 50% 120%, rgba(255,95,208,.06), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
}
.ms-flowNotice{
  border-color:rgba(54,214,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(320px 120px at 0% 0%, rgba(54,214,255,.10), transparent 70%);
  box-shadow:0 16px 46px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ms-card--edd .edd-account-info,
.ms-card--edd .edd-account,
.ms-card--edd .edd-checkout-header,
.ms-card--edd .edd-cart-adjustment,
.ms-card--edd .edd-discount-code-wrap{
  margin:0 0 22px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.ms-card--edd .edd-account-info,
.ms-card--edd .edd-account-info *,
.ms-card--edd .edd-account,
.ms-card--edd .edd-account *{color:#fff}
.ms-card--edd .edd-account-info a,
.ms-card--edd .edd-account a{color:var(--cyan);font-weight:700}
.ms-card--edd table,
.ms-card--edd .edd-table,
.ms-card--edd .edd_purchase_receipt,
.ms-card--edd .edd_checkout_cart{
  border-color:rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.022)),
    radial-gradient(280px 120px at 0% 0%, rgba(54,214,255,.07), transparent 70%);
  box-shadow:0 22px 52px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ms-card--edd table th,
.ms-card--edd .edd-table th,
.ms-card--edd .edd_purchase_receipt th,
.ms-card--edd .edd_checkout_cart th{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.ms-card--edd fieldset{
  border-color:rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.024)),
    radial-gradient(220px 100px at 0% 0%, rgba(140,99,255,.06), transparent 70%);
  box-shadow:0 14px 34px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.ms-card--edd h2{font-size:clamp(26px,3vw,36px);margin:4px 0 20px}
.ms-card--edd h3,
.ms-card--edd legend{font-size:20px;letter-spacing:-.01em}
.ms-card--edd .edd_cart_actions .edd-remove-from-cart,
.ms-card--edd a.edd-remove-from-cart,
.ms-card--edd .edd-remove-from-cart{
  min-width:42px;
  min-height:42px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(255,95,208,.24);
  background:linear-gradient(180deg, rgba(255,95,208,.12), rgba(255,95,208,.06));
  color:#ffd8f3 !important;
  box-shadow:0 10px 22px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ms-card--edd .edd_cart_actions .edd-remove-from-cart:hover,
.ms-card--edd a.edd-remove-from-cart:hover,
.ms-card--edd .edd-remove-from-cart:hover{
  border-color:rgba(255,95,208,.42);
  color:#fff !important;
  transform:translateY(-1px);
}
.ms-card--edd .edd_cart_actions .edd-remove-from-cart svg,
.ms-card--edd .edd_cart_actions .edd-remove-from-cart path,
.ms-card--edd a.edd-remove-from-cart svg,
.ms-card--edd a.edd-remove-from-cart path,
.ms-card--edd .edd-remove-from-cart svg,
.ms-card--edd .edd-remove-from-cart path{
  fill:currentColor !important;
  stroke:currentColor !important;
}
.ms-card--edd .edd_cart_total,
.ms-card--edd .edd_cart_amount,
.ms-card--edd .edd_purchase_receipt_amount{
  text-shadow:0 0 22px rgba(54,214,255,.16);
}
.ms-card--edd .edd_purchase_receipt_files a,
.ms-card--edd .edd-download-file a,
.ms-card--edd .edd_receipt_files a,
.ms-card--edd .edd_purchase_receipt_product_name a{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
@media (max-width: 640px){
  .ms-card--edd{padding:18px}
  .ms-card--edd fieldset{padding:16px}
}


/* v0.5.3 - rounded cart + clean fieldset legend */
.ms-card--edd table,
.ms-card--edd .edd-table,
.ms-card--edd .edd_purchase_receipt,
.ms-card--edd .edd_checkout_cart{
  border-radius:24px;
}
.ms-card--edd table th:first-child,
.ms-card--edd .edd-table th:first-child,
.ms-card--edd .edd_purchase_receipt th:first-child,
.ms-card--edd .edd_checkout_cart th:first-child,
.ms-card--edd table tr:first-child td:first-child,
.ms-card--edd .edd-table tr:first-child td:first-child,
.ms-card--edd .edd_purchase_receipt tr:first-child td:first-child,
.ms-card--edd .edd_checkout_cart tr:first-child td:first-child{
  border-top-left-radius:24px;
}
.ms-card--edd table th:last-child,
.ms-card--edd .edd-table th:last-child,
.ms-card--edd .edd_purchase_receipt th:last-child,
.ms-card--edd .edd_checkout_cart th:last-child,
.ms-card--edd table tr:first-child td:last-child,
.ms-card--edd .edd-table tr:first-child td:last-child,
.ms-card--edd .edd_purchase_receipt tr:first-child td:last-child,
.ms-card--edd .edd_checkout_cart tr:first-child td:last-child{
  border-top-right-radius:24px;
}
.ms-card--edd table tr:last-child td:first-child,
.ms-card--edd .edd-table tr:last-child td:first-child,
.ms-card--edd .edd_purchase_receipt tr:last-child td:first-child,
.ms-card--edd .edd_checkout_cart tr:last-child td:first-child{
  border-bottom-left-radius:24px;
}
.ms-card--edd table tr:last-child td:last-child,
.ms-card--edd .edd-table tr:last-child td:last-child,
.ms-card--edd .edd_purchase_receipt tr:last-child td:last-child,
.ms-card--edd .edd_checkout_cart tr:last-child td:last-child{
  border-bottom-right-radius:24px;
}
.ms-card--edd fieldset{
  position:relative;
  border-radius:24px;
  padding:28px 24px 24px;
  margin-top:10px;
  overflow:visible;
}
.ms-card--edd h3,
.ms-card--edd legend{
  font-size:19px;
  letter-spacing:-.01em;
}
.ms-card--edd legend{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin:0 0 0 12px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(16,20,34,.98), rgba(12,16,28,.98));
  box-shadow:0 10px 28px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.03) inset;
}
@media (max-width: 640px){
  .ms-card--edd fieldset{padding:24px 16px 18px}
  .ms-card--edd legend{margin-left:6px;padding:0 12px}
}

/* v0.5.4 - fix legend width / fieldset bar */
.ms-card--edd fieldset{
  padding-top:34px;
}
.ms-card--edd legend{
  display:table;
  width:auto !important;
  max-width:max-content;
  min-width:0;
  line-height:1.1;
  white-space:nowrap;
  box-sizing:border-box;
  margin:0 0 0 14px;
  padding:8px 14px;
  position:relative;
  top:-2px;
}
@supports not (max-width:max-content){
  .ms-card--edd legend{max-width:none;}
}
@media (max-width: 640px){
  .ms-card--edd fieldset{padding-top:30px;}
  .ms-card--edd legend{margin-left:10px;padding:7px 12px;}
}


/* v0.5.5 - robust legend reset */
.ms-card--edd fieldset{
  padding-top:22px !important;
}
.ms-card--edd legend{
  display:inline-block !important;
  float:none !important;
  width:auto !important;
  max-width:none !important;
  min-width:0 !important;
  margin:0 0 12px 2px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  white-space:normal !important;
  line-height:1.2 !important;
  position:static !important;
  top:auto !important;
}
.ms-card--edd legend::before,
.ms-card--edd legend::after{
  content:none !important;
  display:none !important;
}
@media (max-width: 640px){
  .ms-card--edd fieldset{padding-top:18px !important;}
  .ms-card--edd legend{margin:0 0 10px 2px !important;}
}


/* v0.5.8 - real checkout fixes */
.ms-card--edd .edd_checkout_cart,
.ms-card--edd .edd_purchase_receipt{
  display:block !important;
  width:100% !important;
  border:0 !important;
  border-radius:24px !important;
  overflow:hidden !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.022)),
    radial-gradient(280px 120px at 0% 0%, rgba(54,214,255,.07), transparent 70%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 22px 52px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,255,255,.03) !important;
}
.ms-card--edd .edd_checkout_cart thead,
.ms-card--edd .edd_checkout_cart tbody,
.ms-card--edd .edd_purchase_receipt thead,
.ms-card--edd .edd_purchase_receipt tbody,
.ms-card--edd .edd_checkout_cart tfoot,
.ms-card--edd .edd_purchase_receipt tfoot{
  display:table;
  width:100%;
  table-layout:fixed;
}
.ms-card--edd .edd_checkout_cart th:first-child,
.ms-card--edd .edd_checkout_cart td:first-child,
.ms-card--edd .edd_purchase_receipt th:first-child,
.ms-card--edd .edd_purchase_receipt td:first-child{padding-left:22px !important;}
.ms-card--edd .edd_checkout_cart th:last-child,
.ms-card--edd .edd_checkout_cart td:last-child,
.ms-card--edd .edd_purchase_receipt th:last-child,
.ms-card--edd .edd_purchase_receipt td:last-child{padding-right:22px !important;}
.ms-card--edd .edd_checkout_cart th,
.ms-card--edd .edd_checkout_cart td,
.ms-card--edd .edd_purchase_receipt th,
.ms-card--edd .edd_purchase_receipt td{
  background:transparent !important;
}
.ms-card--edd .edd_checkout_cart tr:first-child th:first-child,
.ms-card--edd .edd_purchase_receipt tr:first-child th:first-child{border-top-left-radius:24px !important;}
.ms-card--edd .edd_checkout_cart tr:first-child th:last-child,
.ms-card--edd .edd_purchase_receipt tr:first-child th:last-child{border-top-right-radius:24px !important;}
.ms-card--edd .edd_checkout_cart tr:last-child td:first-child,
.ms-card--edd .edd_purchase_receipt tr:last-child td:first-child{border-bottom-left-radius:24px !important;}
.ms-card--edd .edd_checkout_cart tr:last-child td:last-child,
.ms-card--edd .edd_purchase_receipt tr:last-child td:last-child{border-bottom-right-radius:24px !important;}

.ms-card--edd #edd_purchase_submit,
.ms-card--edd .edd_purchase_submit_wrapper,
.ms-card--edd div.edd-submit,
.ms-card--edd p.edd-submit{
  display:block !important;
  width:auto !important;
  max-width:none !important;
  min-height:0 !important;
  margin:12px 0 18px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
.ms-card--edd #edd_purchase_submit::before,
.ms-card--edd #edd_purchase_submit::after,
.ms-card--edd .edd_purchase_submit_wrapper::before,
.ms-card--edd .edd_purchase_submit_wrapper::after,
.ms-card--edd div.edd-submit::before,
.ms-card--edd div.edd-submit::after,
.ms-card--edd p.edd-submit::before,
.ms-card--edd p.edd-submit::after{content:none !important;display:none !important;}

.ms-card--edd #edd_purchase_submit input[type="submit"],
.ms-card--edd #edd_purchase_submit button[type="submit"],
.ms-card--edd .edd_purchase_submit_wrapper input[type="submit"],
.ms-card--edd .edd_purchase_submit_wrapper button[type="submit"],
.ms-card--edd input.edd-submit[type="submit"],
.ms-card--edd button.edd-submit,
.ms-card--edd a.edd-submit,
.ms-card--edd #edd-purchase-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 18px !important;
  min-height:46px !important;
  border-radius:14px !important;
  border:1px solid rgba(54,214,255,.34) !important;
  background:linear-gradient(135deg, rgba(54,214,255,.28), rgba(140,99,255,.22), rgba(255,95,208,.12)) !important;
  color:#fff !important;
  font-weight:800 !important;
  text-decoration:none !important;
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 42px rgba(54,214,255,.16), 0 16px 40px rgba(0,0,0,.28) !important;
}
.ms-card--edd #edd_purchase_submit input[type="submit"]:hover,
.ms-card--edd #edd_purchase_submit button[type="submit"]:hover,
.ms-card--edd .edd_purchase_submit_wrapper input[type="submit"]:hover,
.ms-card--edd .edd_purchase_submit_wrapper button[type="submit"]:hover,
.ms-card--edd input.edd-submit[type="submit"]:hover,
.ms-card--edd button.edd-submit:hover,
.ms-card--edd a.edd-submit:hover,
.ms-card--edd #edd-purchase-button:hover{
  transform:translateY(-1px);
  border-color:rgba(140,99,255,.46) !important;
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 52px rgba(140,99,255,.18), 0 16px 40px rgba(0,0,0,.30) !important;
}


/* v0.6.1 - real EDD blocks cart targeting */
.ms-card--edd #edd_checkout_cart.edd-blocks-cart{
  position:relative;
  overflow:hidden !important;
  border-radius:22px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.024)),
    radial-gradient(280px 120px at 0% 0%, rgba(54,214,255,.07), transparent 70%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 22px 52px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,255,255,.04) !important;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row{
  overflow:hidden;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items,
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-footer,
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header{
  border-top:1px solid rgba(255,255,255,.08);
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header{
  border-top:none;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item{
  background:rgba(255,255,255,.015);
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row > div{
  padding:18px 20px;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header > div{
  font-weight:800;
  color:#fff;
}
.ms-card--edd #edd_checkout_cart .edd_cart_item_price,
.ms-card--edd #edd_checkout_cart .edd_cart_total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.ms-card--edd #edd_checkout_cart .edd_cart_item_price{
  color:#fff;
}
.ms-card--edd #edd_checkout_cart .edd_cart_actions{
  display:inline-flex;
  align-items:center;
  margin-left:12px;
}
.ms-card--edd a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  padding:0 !important;
  border-radius:12px;
  border:1px solid rgba(255,95,208,.24);
  background:linear-gradient(180deg, rgba(255,95,208,.12), rgba(255,95,208,.06));
  color:#ffd8f3 !important;
  text-decoration:none;
  box-shadow:0 10px 22px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ms-card--edd a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn:hover{
  border-color:rgba(255,95,208,.42);
  color:#fff !important;
  transform:translateY(-1px);
}
.ms-card--edd a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn .screen-reader-text{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
.ms-card--edd a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn::before{
  content:"";
  width:18px;
  height:18px;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3h6l1 2h4v2H4V5h4l1-2Zm1 6h2v8h-2V9Zm4 0h2v8h-2V9ZM7 9h2v8H7V9Zm-1 12a2 2 0 0 1-2-2V8h16v11a2 2 0 0 1-2 2H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 3h6l1 2h4v2H4V5h4l1-2Zm1 6h2v8h-2V9Zm4 0h2v8h-2V9ZM7 9h2v8H7V9Zm-1 12a2 2 0 0 1-2-2V8h16v11a2 2 0 0 1-2 2H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* v0.6.5 - lock cart header and item price on the same visual columns */
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) max-content 58px;
  align-items:center;
  column-gap:12px;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header .edd_cart_item_name{
  grid-column:1;
  min-width:0;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__row-header .edd_cart_item_price{
  grid-column:2;
  display:block;
  margin-left:0;
  padding-right:0 !important;
  text-align:left;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) max-content 58px;
  align-items:center;
  column-gap:12px;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item .edd_cart_item_name{
  grid-column:1;
  min-width:0;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item .edd_cart_item_price{
  grid-column:2 / 4;
  justify-self:end;
  display:grid;
  grid-template-columns:max-content 58px;
  align-items:center;
  column-gap:12px;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item .edd_cart_item_price .ms-edd-price-value{
  grid-column:1;
  white-space:nowrap;
}
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item .edd_cart_item_price .edd_cart_actions,
.ms-card--edd #edd_checkout_cart .edd-blocks-cart__items .edd-blocks-cart__row-item .edd_cart_item_price a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn{
  grid-column:2;
  justify-self:end;
  margin-left:0;
}


/* v0.6.9: CTA label changed from Review order to Buy now */
.ms-btn--checkoutEntry{width:100%;justify-content:center;text-align:center}
.page-template-page-pricing .ms-priceCard__actions [data-ms-checkout-entry="1"],
.page-template-page-download .ms-centerCta [data-ms-checkout-entry="1"]{display:inline-flex !important}
.page-template-page-pricing .ms-priceCard__actions .edd_purchase_submit_wrapper,
.page-template-page-pricing .ms-priceCard__actions .edd-submit,
.page-template-page-pricing .ms-priceCard__actions .edd-submit.button,
.page-template-page-pricing .ms-priceCard__actions .edd_download_purchase_form,
.page-template-page-pricing .ms-priceCard__actions .paypal-button,
.page-template-page-pricing .ms-priceCard__actions .paypal-buttons,
.page-template-page-pricing .ms-priceCard__actions [id*="paypal"],
.page-template-page-download .ms-centerCta .edd_purchase_submit_wrapper,
.page-template-page-download .ms-centerCta .edd-submit,
.page-template-page-download .ms-centerCta .edd-submit.button,
.page-template-page-download .ms-centerCta .edd_download_purchase_form,
.page-template-page-download .ms-centerCta .paypal-button,
.page-template-page-download .ms-centerCta .paypal-buttons,
.page-template-page-download .ms-centerCta [id*="paypal"]{display:none !important}


/* v0.6.10: download CTA width aligned with Installation help */
.page-template-page-download .ms-centerCta{flex-direction:column;align-items:center}
.page-template-page-download .ms-centerCta [data-ms-checkout-entry="1"]{display:inline-flex !important;width:auto;min-width:200px;flex:0 0 auto;padding-left:28px;padding-right:28px}
.page-template-page-download .ms-centerCta .ms-btn--ghost{min-width:200px;justify-content:center}


.ms-brand:hover .ms-brand__mark{box-shadow:none}

@media (max-width: 640px){
  .ms-brand__mark{padding:0;border-radius:0}
  .ms-brand__logo{height:38px;max-width:196px}
  .ms-brand__meta{display:none}
}


/* =========================================================
   MeloSolo v0.6.19 — color boost / premium neon retuning
   Goal: keep layout, add energy, color contrast and product glow
   ========================================================= */
body.ms-theme{
  background:
    radial-gradient(1150px 560px at 2% -6%, rgba(54,214,255,.26), transparent 56%),
    radial-gradient(980px 540px at 98% -2%, rgba(140,99,255,.26), transparent 54%),
    radial-gradient(820px 460px at 82% 16%, rgba(255,95,208,.18), transparent 56%),
    radial-gradient(900px 520px at 50% 112%, rgba(64,229,220,.14), transparent 62%),
    linear-gradient(180deg, #050912 0%, #0b1530 34%, #09111f 68%, #050912 100%);
}

.ms-header{
  background:
    linear-gradient(180deg, rgba(5,8,15,.92), rgba(5,8,15,.74)),
    linear-gradient(90deg, rgba(54,214,255,.06), transparent 26%, transparent 72%, rgba(140,99,255,.08));
  box-shadow:0 10px 34px rgba(0,0,0,.24), inset 0 -1px 0 rgba(255,255,255,.05);
}
.ms-brand__logo{
  filter:drop-shadow(0 0 18px rgba(54,214,255,.20)) drop-shadow(0 0 26px rgba(140,99,255,.12));
}
.ms-brand__meta{
  color:rgba(232,246,255,.94);
  text-shadow:0 0 14px rgba(54,214,255,.12), 0 0 22px rgba(140,99,255,.08);
}
.ms-nav__list a{
  color:rgba(255,255,255,.78);
}
.ms-nav__list a:hover{
  background:linear-gradient(180deg, rgba(54,214,255,.12), rgba(140,99,255,.10));
  color:#fff;
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 26px rgba(54,214,255,.10);
}

.ms-btn{
  backdrop-filter:blur(10px);
}
.ms-btn--primary{
  background:linear-gradient(135deg, rgba(54,214,255,.42), rgba(106,116,255,.30), rgba(255,95,208,.24));
  border-color:rgba(112,214,255,.48);
  box-shadow:0 0 0 1px rgba(255,255,255,.07) inset, 0 0 56px rgba(54,214,255,.20), 0 18px 42px rgba(0,0,0,.30);
}
.ms-btn--primary:hover{
  border-color:rgba(255,95,208,.42);
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 0 64px rgba(140,99,255,.22), 0 18px 42px rgba(0,0,0,.30);
}
.ms-btn--ghost{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-color:rgba(255,255,255,.14);
}
.ms-btn--ghost:hover{
  background:linear-gradient(180deg, rgba(54,214,255,.10), rgba(140,99,255,.08));
}

.ms-hero:before{
  background:
    linear-gradient(90deg, rgba(5,8,15,.82) 0%, rgba(6,11,22,.66) 30%, rgba(6,11,22,.34) 60%, rgba(5,8,15,.72) 100%),
    radial-gradient(circle at 18% 22%, rgba(54,214,255,.16), transparent 30%),
    radial-gradient(circle at 62% 18%, rgba(140,99,255,.18), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(255,95,208,.14), transparent 28%),
    url('../img/hero-vibe.webp') center right/cover no-repeat;
  opacity:.88;
}
.ms-hero:after{
  inset:-18% auto auto -6%;
  width:76%;
  height:64%;
  background:radial-gradient(circle, rgba(54,214,255,.28), rgba(140,99,255,.08) 42%, transparent 68%);
  filter:blur(28px);
}
.ms-hero__title{
  text-shadow:0 0 22px rgba(54,214,255,.09), 0 0 44px rgba(140,99,255,.06);
}
.ms-hero__lead{
  color:rgba(255,255,255,.86);
}
.ms-chip{
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border-color:rgba(255,255,255,.14);
}
.ms-chip:nth-child(1){background:linear-gradient(180deg, rgba(54,214,255,.18), rgba(255,255,255,.03));}
.ms-chip:nth-child(2){background:linear-gradient(180deg, rgba(140,99,255,.18), rgba(255,255,255,.03));}
.ms-chip:nth-child(3){background:linear-gradient(180deg, rgba(64,229,220,.16), rgba(255,255,255,.03));}
.ms-chip:nth-child(4){background:linear-gradient(180deg, rgba(105,227,143,.14), rgba(255,255,255,.03));}
.ms-chip:nth-child(5){background:linear-gradient(180deg, rgba(248,195,79,.14), rgba(255,255,255,.03));}

.ms-miniStat{
  background:linear-gradient(180deg, rgba(18,25,43,.90), rgba(10,15,25,.78));
  border-color:rgba(255,255,255,.12);
}
.ms-miniStat:nth-child(1){background:linear-gradient(180deg, rgba(12,34,47,.92), rgba(10,15,25,.80));}
.ms-miniStat:nth-child(2){background:linear-gradient(180deg, rgba(28,18,54,.92), rgba(10,15,25,.80));}
.ms-miniStat:nth-child(3){background:linear-gradient(180deg, rgba(34,20,44,.92), rgba(10,15,25,.80));}
.ms-miniStat span{color:rgba(255,255,255,.66);}

.ms-hero__media{
  position:relative;
}
.ms-hero__media:before,
.ms-hero__media:after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:0;
}
.ms-hero__media:before{
  width:88%;
  height:72%;
  right:-2%;
  top:2%;
  background:radial-gradient(circle at center, rgba(54,214,255,.22), rgba(140,99,255,.12) 42%, transparent 72%);
  filter:blur(28px);
}
.ms-hero__media:after{
  width:54%;
  height:40%;
  right:6%;
  bottom:8%;
  background:radial-gradient(circle at center, rgba(255,95,208,.18), transparent 70%);
  filter:blur(34px);
}
.ms-shotFrame,
.ms-card,
.ms-ctaCard{
  backdrop-filter:blur(12px);
}
.ms-shotFrame{
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border-color:rgba(255,255,255,.13);
}
.ms-glowPanel{
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset, 0 0 84px rgba(54,214,255,.18), 0 0 48px rgba(140,99,255,.14), 0 24px 80px rgba(0,0,0,.44);
}
.ms-captionChip{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border-color:rgba(255,255,255,.14);
}
.ms-captionChip:nth-child(1){background:linear-gradient(180deg, rgba(54,214,255,.18), rgba(255,255,255,.04));}
.ms-captionChip:nth-child(2){background:linear-gradient(180deg, rgba(140,99,255,.18), rgba(255,255,255,.04));}
.ms-shotLabel{
  background:linear-gradient(180deg, rgba(12,18,32,.90), rgba(12,18,32,.76));
  box-shadow:0 10px 24px rgba(0,0,0,.32), 0 0 24px rgba(54,214,255,.10);
}

.ms-section--alt{
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(54,214,255,.14), transparent 58%),
    radial-gradient(900px 360px at 88% 18%, rgba(140,99,255,.14), transparent 58%),
    radial-gradient(680px 260px at 70% 100%, rgba(255,95,208,.08), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}

.ms-card{
  background:linear-gradient(180deg, rgba(17,24,40,.92), rgba(10,14,24,.78));
  border-color:rgba(255,255,255,.12);
  box-shadow:0 18px 44px rgba(0,0,0,.26), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ms-homeCard--cyan{
  background:linear-gradient(180deg, rgba(12,33,47,.94), rgba(10,14,24,.80));
}
.ms-homeCard--violet{
  background:linear-gradient(180deg, rgba(25,17,54,.94), rgba(10,14,24,.80));
}
.ms-homeCard--green{
  background:linear-gradient(180deg, rgba(12,33,30,.94), rgba(10,14,24,.80));
}
.ms-homeGrid article:nth-child(4){
  background:linear-gradient(180deg, rgba(45,26,56,.94), rgba(10,14,24,.80));
}
.ms-homeGrid article:nth-child(4):after{
  background:rgba(255,95,208,.34);
}
.ms-homeCard__iconWrap{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border-color:rgba(255,255,255,.12);
}
.ms-homeCard__iconWrap--cyan{box-shadow:0 0 40px rgba(54,214,255,.24);}
.ms-homeCard__iconWrap--violet{box-shadow:0 0 40px rgba(140,99,255,.28);}
.ms-homeCard__iconWrap--green{box-shadow:0 0 40px rgba(105,227,143,.22);}
.ms-homeGrid article:nth-child(4) .ms-homeCard__iconWrap{box-shadow:0 0 40px rgba(255,95,208,.24);}

.ms-panelTag{
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}
.ms-priceCard--featured{
  background:linear-gradient(180deg, rgba(140,99,255,.26), rgba(255,255,255,.05));
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 56px rgba(140,99,255,.12), 0 18px 44px rgba(0,0,0,.24);
}
.ms-pageHero:after{
  width:48%;
  background:radial-gradient(circle at center, rgba(140,99,255,.18), rgba(54,214,255,.10) 42%, transparent 66%);
}

.ms-ctaCard{
  background:linear-gradient(135deg, rgba(54,214,255,.16), rgba(140,99,255,.15), rgba(255,95,208,.12));
  border-color:rgba(255,255,255,.14);
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 62px rgba(140,99,255,.14), 0 18px 44px rgba(0,0,0,.24);
}

.ms-footer{
  background:
    radial-gradient(760px 220px at 14% 0%, rgba(54,214,255,.08), transparent 56%),
    radial-gradient(760px 220px at 84% 0%, rgba(140,99,255,.08), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}


.ms-panelHead--stacked{display:block}
.ms-panelHead--stacked .ms-panelTag{margin-bottom:12px}
.ms-shotFrame--flat{transform:none}
.ms-shotFrame--jam{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 48px rgba(140,99,255,.12), 0 18px 44px rgba(0,0,0,.24)
}
.ms-shotFrame--duet{
  margin-bottom:14px;
  overflow:hidden;
  background:
    radial-gradient(680px 220px at 22% 28%, rgba(255,95,208,.18), transparent 58%),
    radial-gradient(700px 240px at 80% 34%, rgba(54,214,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 42px rgba(140,99,255,.12), 0 18px 44px rgba(0,0,0,.24)
}
.ms-shotFrame--duet img{
  aspect-ratio:16/9;
  object-fit:cover;
  width:100%;
}
.ms-aiFeature{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:18px;align-items:stretch}
.ms-aiFeature__copy{display:flex;flex-direction:column;justify-content:center}
.ms-aiFeature__copy .ms-h3{margin:0 0 14px;font-size:24px;line-height:1.18}
.ms-aiFeature__copy .ms-muted{margin-bottom:18px}
.ms-aiChipRow{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 18px}
.ms-aiPointGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.ms-aiPoint{
  padding:16px 16px 18px;border-radius:18px;border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow:0 12px 30px rgba(0,0,0,.18)
}
.ms-aiPoint strong{display:block;margin-bottom:8px;font-size:15px;color:rgba(255,255,255,.96)}
.ms-aiPoint span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
.ms-aiPoint:nth-child(1){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset,0 0 22px rgba(54,214,255,.08),0 12px 30px rgba(0,0,0,.18)}
.ms-aiPoint:nth-child(2){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset,0 0 22px rgba(140,99,255,.10),0 12px 30px rgba(0,0,0,.18)}
.ms-aiPoint:nth-child(3){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset,0 0 22px rgba(105,227,143,.08),0 12px 30px rgba(0,0,0,.18)}
.ms-aiPoint:nth-child(4){box-shadow:0 0 0 1px rgba(255,255,255,.04) inset,0 0 22px rgba(255,95,208,.08),0 12px 30px rgba(0,0,0,.18)}
.ms-aiFeature__media{display:flex;flex-direction:column;justify-content:center}
.ms-practiceFlow{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);gap:18px;align-items:stretch}
.ms-practiceFlow__media .ms-shotFrame img{aspect-ratio:16/10;object-fit:cover}
.ms-practiceFlow__side{display:grid;grid-template-columns:1fr;gap:18px}

@media (max-width: 1120px){
  .ms-aiFeature,.ms-practiceFlow{grid-template-columns:1fr}
}
@media (max-width: 900px){
  .ms-aiPointGrid{grid-template-columns:1fr}
}

.ms-panelHead--stacked{display:flex;flex-direction:column;align-items:flex-start}
.ms-panelHead--stacked strong{font-size:18px;line-height:1.4}

.ms-workflowGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ms-workflowCard{display:flex;flex-direction:column;gap:16px;min-height:100%}
.ms-workflowCard__media{margin-top:auto;overflow:hidden;min-width:0}
.ms-workflowCard__media img,.ms-workflowCard__media video{display:block;width:100%;max-width:100%;aspect-ratio:16/10;object-fit:cover;object-position:center top}

.ms-highlightGrid{display:grid;grid-template-columns:1.2fr .9fr .9fr;gap:18px;align-items:stretch}
.ms-featureShowcase{display:flex;flex-direction:column;gap:16px;min-height:100%}
.ms-featureShowcase--wide{grid-row:span 2}
.ms-featureShowcase__media{margin-top:auto;overflow:hidden;min-width:0}
.ms-featureShowcase__media img,.ms-featureShowcase__media video{display:block;width:100%;max-width:100%;aspect-ratio:16/10;object-fit:cover;object-position:center top}
.ms-featureList{margin-top:4px}

.ms-showcaseCard [data-demo-frame]{max-width:100%}
.ms-split > .ms-showcaseCard [data-demo-frame]{max-width:720px;margin-left:auto}
.ms-hero__media [data-demo-frame]{width:min(100%, 760px);max-width:100%;margin-left:auto}
.ms-shotFrame--hero .ms-demoMedia,.ms-shotFrame--hero img{max-height:520px}
.ms-workflowCard__media .ms-demoMedia,.ms-workflowCard__media img{max-height:260px}
.ms-featureShowcase__media .ms-demoMedia,.ms-featureShowcase__media img,.ms-showcaseCard .ms-demoMedia,.ms-showcaseCard img{max-height:320px}
@media (max-width: 900px){
  .ms-split > .ms-showcaseCard [data-demo-frame],.ms-hero__media [data-demo-frame]{width:100%;margin-left:0}
  .ms-shotFrame--hero .ms-demoMedia,.ms-shotFrame--hero img,.ms-featureShowcase__media .ms-demoMedia,.ms-featureShowcase__media img,.ms-showcaseCard .ms-demoMedia,.ms-showcaseCard img{max-height:none}
}

@media (max-width: 1120px){
  .ms-workflowGrid,.ms-highlightGrid{grid-template-columns:1fr 1fr}
  .ms-featureShowcase--wide{grid-row:auto;grid-column:1 / -1}
}
@media (max-width: 900px){
  .ms-workflowGrid,.ms-highlightGrid{grid-template-columns:1fr}
}


/* Demo overlay player */
.ms-demoFrame{position:relative;isolation:isolate;max-width:100%;min-width:0;cursor:pointer}
.ms-demoFrame--interactive:hover .ms-demoMedia{transform:none !important;filter:none !important}
.ms-demoFrame--interactive:hover{box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 0 42px rgba(54,214,255,.12), 0 24px 80px rgba(0,0,0,.42)}
.ms-demoFrame--interactive:hover .ms-demoPlay{transform:none !important}
.ms-demoFrame.is-demo-open{box-shadow:0 0 0 1px rgba(140,99,255,.18) inset, 0 0 52px rgba(140,99,255,.20), 0 24px 80px rgba(0,0,0,.42)}
.ms-demoFrame.is-playing .ms-demoPlay,
.ms-demoFrame.is-playing .ms-demoMedia,
.ms-demoFrame.is-playing:after{transform:none;filter:none;opacity:inherit}

.ms-demoModal-open{overflow:hidden}
.ms-demoModal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  padding:24px;
}
.ms-demoModal[hidden]{display:none}
.ms-demoModal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,7,14,.76);
  backdrop-filter:blur(10px);
}
.ms-demoModal__dialog{
  position:relative;
  z-index:1;
  width:min(var(--ms-demo-modal-width, 900px), 92vw);
  max-width:92vw;
}
.ms-demoModal__surface{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(10,16,28,.98), rgba(7,11,20,.98));
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 40px 120px rgba(0,0,0,.58), 0 0 84px rgba(54,214,255,.12);
}
.ms-demoModal__media[hidden]{display:none}
.ms-demoModal__video,
.ms-demoModal__image,
.ms-demoModal__embed{
  display:block;
  width:100%;
  height:auto;
  max-height:82vh;
  object-fit:contain;
  background:#050b13;
}
.ms-demoModal__video{aspect-ratio:16/10;transition:transform .28s ease;transform-origin:center center}
.ms-demoModal__embed{aspect-ratio:16/9;border:0;min-height:min(76vh, calc(96vw * 0.5625));}
.home .ms-demoModal.is-workflow-demo .ms-demoModal__video{transform:scale(1.14)}
.ms-demoModal.is-workflow-demo .ms-demoModal__video{transform:scale(1.09)}
.ms-demoModal__image{aspect-ratio:auto}
.ms-demoModal__close{
  position:absolute;
  top:-14px;
  right:-14px;
  z-index:2;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(15,23,40,.96), rgba(11,17,29,.92));
  color:#fff;
  font-size:26px;
  line-height:1;
  box-shadow:0 18px 42px rgba(0,0,0,.42), 0 0 26px rgba(140,99,255,.18);
}
.ms-demoModal__close:hover{transform:scale(1.04)}
.ms-demoModal__close:focus-visible{outline:none;box-shadow:0 0 0 2px rgba(54,214,255,.34), 0 0 0 5px rgba(7,17,29,.82), 0 18px 42px rgba(0,0,0,.42)}
@media (max-width: 900px){
  .ms-demoModal{padding:16px}
  .ms-demoModal__dialog{width:min(var(--ms-demo-modal-width, 900px), 96vw)}
  .ms-demoModal__surface{border-radius:22px}
  .ms-demoModal__close{top:10px;right:10px}
  .ms-demoModal__video,.ms-demoModal__image,.ms-demoModal__embed{max-height:76vh}
  .ms-demoModal__embed{min-height:min(70vh, calc(96vw * 0.5625));}
}

.ms-demoFrame[role="button"]{border:0;background:none;padding:0;text-align:inherit}
.ms-demoFrame:focus-visible{outline:none;box-shadow:0 0 0 2px rgba(54,214,255,.34),0 0 0 5px rgba(7,17,29,.82),0 18px 42px rgba(0,0,0,.42)}

/* Static image overlay cards */
.ms-demoFrame--image{cursor:zoom-in}
.ms-demoFrame--image .ms-demoMedia{object-fit:cover;object-position:center top}
.ms-demoFrame--image .ms-demoBadge{
  padding:9px 14px;
  background:linear-gradient(180deg, rgba(10,18,30,.92), rgba(10,18,30,.76));
  border-color:rgba(255,255,255,.14);
}
.ms-demoBadge--image:before{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg, rgba(54,214,255,.98), rgba(140,99,255,.95));
  box-shadow:0 0 16px rgba(54,214,255,.24);
}
.ms-demoFrame--image .ms-demoMedia{transition:transform .35s cubic-bezier(.22,.61,.36,1), filter .28s ease, opacity .28s ease}
.ms-demoFrame--image:hover .ms-demoMedia{transform:scale(1.024);filter:saturate(1.03) contrast(1.01)}
.ms-demoFrame--image:hover{box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 0 42px rgba(54,214,255,.10), 0 24px 72px rgba(0,0,0,.40)}
.ms-demoFrame--image .ms-shotLabel{z-index:3}
.ms-demoFrame--image .ms-demoBadge{z-index:3}


/* Features page cleanup */
.ms-showcaseCard--featureLead{padding:22px 22px 20px}
.ms-showcaseCard--featureLead .ms-demoMedia,
.ms-showcaseCard--featureLead img,
.ms-showcaseCard--featureLead video{
  width:100%;
  height:auto;
  max-height:430px;
  aspect-ratio:auto;
  object-fit:contain;
  object-position:center center;
}
.ms-moduleCard--clean{padding-top:30px}
.ms-moduleCard--clean .ms-h3{margin-top:0}
.ms-moduleCard--clean p:last-child{margin-bottom:0}
@media (max-width: 900px){
  .ms-showcaseCard--featureLead .ms-demoMedia,
  .ms-showcaseCard--featureLead img,
  .ms-showcaseCard--featureLead video{max-height:none}
}


.ms-pageHero--pricing .ms-container.ms-pricingHero{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(260px,.55fr);gap:20px;align-items:center}
.ms-pricingHero__badgeWrap{display:flex;justify-content:flex-end}
.ms-pricingMiniBadge{
  width:min(100%,320px);padding:22px 22px 20px;border-radius:24px;border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(140,99,255,.16), rgba(255,255,255,.04));text-align:left
}
.ms-pricingMiniBadge__eyebrow{display:block;margin-bottom:8px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.68);font-weight:800}
.ms-pricingMiniBadge strong{display:block;font-size:40px;line-height:1;letter-spacing:-.04em}
.ms-pricingMiniBadge small{display:block;margin-top:10px;color:var(--muted)}

.ms-pricingSingleWrap{max-width:900px;margin:0 auto}
.ms-priceCard--launch{padding:32px;background:linear-gradient(180deg, rgba(140,99,255,.18), rgba(255,255,255,.05));overflow:hidden}
.ms-priceCard__topline{display:flex;justify-content:space-between;gap:12px;align-items:center;flex-wrap:wrap}
.ms-priceCard__tag{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border-radius:999px;font-size:12px;font-weight:800;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05);color:#fff}
.ms-priceCard__title{margin:4px 0 8px}
.ms-priceCard__priceRow{display:flex;align-items:flex-end;gap:18px;flex-wrap:wrap;margin:6px 0 10px}
.ms-priceCard__meta{display:flex;flex-direction:column;gap:4px;padding-bottom:8px}
.ms-priceCard__regular{font-size:14px;font-weight:800;color:#fff}
.ms-priceCard__sub{font-size:14px;color:var(--muted)}
.ms-priceCard__lead{max-width:64ch;margin-top:0}
.ms-pricingFeatureGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:24px 0 8px}
.ms-pricingFeatureItem{
  display:flex;flex-direction:column;gap:6px;padding:18px 18px 16px;border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.09)
}
.ms-pricingFeatureItem strong{font-size:15px;line-height:1.4}
.ms-pricingFeatureItem span{color:var(--muted);line-height:1.65}
.ms-priceCard__list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 18px;margin-top:20px}
.ms-priceCard__actions--stacked{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin-top:26px}
.ms-priceCard__actions--stacked .ms-btn{margin-top:0}
.ms-priceCard__actionNote{font-size:14px;color:var(--muted)}

.ms-pricingInfoCard{min-height:100%}
.ms-pricingInfoCard__label{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;margin-bottom:12px;border-radius:999px;font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:800;color:#fff;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05)}
.ms-pricingFaqGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ms-pricingFaqCard{min-height:100%}

@media (max-width: 1120px){
  .ms-pageHero--pricing .ms-container.ms-pricingHero{grid-template-columns:1fr}
  .ms-pricingHero__badgeWrap{justify-content:flex-start}
}
@media (max-width: 900px){
  .ms-pricingFeatureGrid,.ms-priceCard__list,.ms-pricingFaqGrid{grid-template-columns:1fr}
  .ms-priceCard--launch{padding:24px}
}


/* v0.7.0 - checkout cleanup */
.ms-pageHero--checkout{
  padding:42px 0 10px;
}
.ms-pageHero--checkout .ms-container{
  max-width:980px;
}
.ms-pageHero--checkout .ms-kicker{
  margin-bottom:10px;
}
.ms-pageHero--checkout .ms-h1{
  max-width:14ch;
  margin-bottom:10px;
}
.ms-pageHero--checkout .ms-lead{
  max-width:58ch;
  margin-bottom:0;
}
.ms-pageHero--checkout .ms-pageHero__actions{
  margin-top:18px;
}

.ms-flowNotice--checkout{
  gap:16px;
  padding:20px 22px;
  border-radius:24px;
  border-color:rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    radial-gradient(320px 180px at 0% 0%, rgba(54,214,255,.12), transparent 70%),
    radial-gradient(320px 180px at 100% 0%, rgba(140,99,255,.12), transparent 72%);
  box-shadow:
    0 18px 44px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 0 52px rgba(54,214,255,.07);
}
.ms-flowNotice--checkout .ms-flowNotice__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) max-content;
  gap:18px;
  align-items:start;
}
.ms-flowNotice--checkout .ms-flowNotice__eyebrow{
  display:inline-flex;
  min-height:24px;
  align-items:center;
  margin-bottom:10px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.ms-flowNotice--checkout .ms-flowNotice__title{
  display:block;
  margin:0 0 6px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:#fff;
}
.ms-flowNotice--checkout .ms-flowNotice__text{
  display:block;
  max-width:56ch;
  color:var(--muted);
  line-height:1.68;
}
.ms-flowNotice--checkout .ms-flowNotice__priceBox{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  min-width:180px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:0 10px 28px rgba(0,0,0,.20);
}
.ms-flowNotice--checkout .ms-flowNotice__priceLabel{
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
}
.ms-flowNotice--checkout .ms-flowNotice__priceValue{
  margin-top:6px;
  font-size:34px;
  line-height:1;
  letter-spacing:-.04em;
  color:#fff;
}
.ms-flowNotice--checkout .ms-flowNotice__priceMeta{
  margin-top:8px;
  color:var(--muted);
}
.ms-flowNotice--checkout .ms-flowNotice__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ms-flowNotice--checkout .ms-flowNotice__chips span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  line-height:1;
}

.ms-card--eddCheckout{
  padding-top:24px;
}
.ms-card--eddCheckout .edd-account-info,
.ms-card--eddCheckout .edd-account{
  padding:12px 14px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}
.ms-card--eddCheckout .edd-account-info,
.ms-card--eddCheckout .edd-account,
.ms-card--eddCheckout .edd-account-info *,
.ms-card--eddCheckout .edd-account *{
  font-size:14px;
}
.ms-card--eddCheckout .edd_checkout_cart,
.ms-card--eddCheckout #edd_checkout_cart.edd-blocks-cart{
  margin-top:8px;
}
.ms-card--eddCheckout .edd_checkout_cart .edd_cart_actions .edd-remove-from-cart,
.ms-card--eddCheckout .edd_checkout_cart a.edd-remove-from-cart,
.ms-card--eddCheckout a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn{
  width:38px;
  height:38px;
  min-width:38px;
  min-height:38px;
  border-radius:11px;
  border-color:rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:rgba(255,255,255,.84) !important;
  box-shadow:0 10px 22px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.ms-card--eddCheckout .edd_checkout_cart .edd_cart_actions .edd-remove-from-cart:hover,
.ms-card--eddCheckout .edd_checkout_cart a.edd-remove-from-cart:hover,
.ms-card--eddCheckout a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn:hover{
  border-color:rgba(255,255,255,.18);
  color:#fff !important;
}
.ms-card--eddCheckout .paypal-buttons,
.ms-card--eddCheckout .paypal-button-container,
.ms-card--eddCheckout [id*="paypal-button"],
.ms-card--eddCheckout [id*="paypal-buttons"]{
  width:100% !important;
  max-width:680px;
}
.ms-card--eddCheckout .paypal-buttons,
.ms-card--eddCheckout .paypal-button-container,
.ms-card--eddCheckout [id*="paypal-button"],
.ms-card--eddCheckout [id*="paypal-buttons"],
.ms-card--eddCheckout .edd_purchase_submit_wrapper,
.ms-card--eddCheckout #edd_purchase_submit{
  margin-left:auto !important;
  margin-right:auto !important;
}

@media (max-width: 900px){
  .ms-pageHero--checkout{
    padding-top:34px;
  }
  .ms-flowNotice--checkout .ms-flowNotice__head{
    grid-template-columns:1fr;
  }
  .ms-flowNotice--checkout .ms-flowNotice__priceBox{
    align-items:flex-start;
    min-width:0;
  }
}
@media (max-width: 640px){
  .ms-pageHero--checkout .ms-h1{
    max-width:none;
  }
  .ms-flowNotice--checkout{
    padding:18px 16px;
    border-radius:20px;
  }
  .ms-flowNotice--checkout .ms-flowNotice__title{
    font-size:22px;
  }
  .ms-flowNotice--checkout .ms-flowNotice__priceValue{
    font-size:30px;
  }
  .ms-card--eddCheckout{
    padding-top:18px;
  }
}


/* v0.6.11: clearer pricing/account flow */
.ms-hero__subActions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0 0 22px;color:var(--muted);font-size:14px}
.ms-accountHero{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:center}
.ms-accountHero__badge{justify-self:end;min-width:min(100%,320px)}
.ms-accountPortalGrid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(280px,.88fr);gap:18px;align-items:start}
.ms-accountSidebar{display:grid;gap:18px}
.ms-accountSurface{overflow:hidden}
.ms-accountSurface--main{padding:28px}
.ms-accountPanelHead{margin-bottom:10px}
.ms-accountLead{margin-bottom:22px}
.ms-accountBlock + .ms-accountBlock{margin-top:26px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08)}
.ms-accountSubhead{margin-bottom:14px}
.ms-accountSteps{margin:0;padding-left:20px;color:var(--text)}
.ms-accountSteps li{margin:0 0 12px;line-height:1.7;color:var(--muted)}
.ms-accountSteps li strong{color:var(--text)}
.ms-accountActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.ms-ctaCard--accountFlow{align-items:center}

@media (max-width: 980px){
  .ms-accountHero,.ms-accountPortalGrid{grid-template-columns:1fr}
  .ms-accountHero__badge{justify-self:start;min-width:0;width:100%}
}

@media (max-width: 720px){
  .ms-hero__subActions{margin-bottom:18px}
  .ms-accountActions{flex-direction:column;align-items:stretch}
}


/* v0.6.12: wider account profile editor on desktop */
.ms-accountSurface--profile{grid-column:1 / -1;padding:28px}
.ms-accountProfileEditor #edd_profile_editor_form,
.ms-accountProfileEditor form[id*="edd_profile"],
.ms-accountProfileEditor form.edd_form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 20px;align-items:start}
.ms-accountProfileEditor #edd_profile_editor_form > h3,
.ms-accountProfileEditor #edd_profile_editor_form > p,
.ms-accountProfileEditor #edd_profile_editor_form > div,
.ms-accountProfileEditor #edd_profile_editor_form > fieldset,
.ms-accountProfileEditor form[id*="edd_profile"] > h3,
.ms-accountProfileEditor form[id*="edd_profile"] > p,
.ms-accountProfileEditor form[id*="edd_profile"] > div,
.ms-accountProfileEditor form[id*="edd_profile"] > fieldset,
.ms-accountProfileEditor form.edd_form > h3,
.ms-accountProfileEditor form.edd_form > p,
.ms-accountProfileEditor form.edd_form > div,
.ms-accountProfileEditor form.edd_form > fieldset{min-width:0}
.ms-accountProfileEditor #edd_profile_editor_form > p:not([class*="submit"]):not(.edd-submit),
.ms-accountProfileEditor #edd_profile_editor_form > div:not([class*="submit"]),
.ms-accountProfileEditor form[id*="edd_profile"] > p:not([class*="submit"]):not(.edd-submit),
.ms-accountProfileEditor form[id*="edd_profile"] > div:not([class*="submit"]),
.ms-accountProfileEditor form.edd_form > p:not([class*="submit"]):not(.edd-submit),
.ms-accountProfileEditor form.edd_form > div:not([class*="submit"]){margin:0}
.ms-accountProfileEditor #edd_profile_editor_form > fieldset,
.ms-accountProfileEditor form[id*="edd_profile"] > fieldset,
.ms-accountProfileEditor form.edd_form > fieldset{margin:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 18px;align-content:start}
.ms-accountProfileEditor #edd_profile_editor_form > fieldset > legend,
.ms-accountProfileEditor form[id*="edd_profile"] > fieldset > legend,
.ms-accountProfileEditor form.edd_form > fieldset > legend{grid-column:1 / -1}
.ms-accountProfileEditor #edd_profile_editor_form > fieldset > p,
.ms-accountProfileEditor #edd_profile_editor_form > fieldset > div,
.ms-accountProfileEditor form[id*="edd_profile"] > fieldset > p,
.ms-accountProfileEditor form[id*="edd_profile"] > fieldset > div,
.ms-accountProfileEditor form.edd_form > fieldset > p,
.ms-accountProfileEditor form.edd_form > fieldset > div{margin:0;min-width:0}
.ms-accountProfileEditor input[type="text"],
.ms-accountProfileEditor input[type="email"],
.ms-accountProfileEditor input[type="password"],
.ms-accountProfileEditor input[type="tel"],
.ms-accountProfileEditor select,
.ms-accountProfileEditor textarea{width:100%}
.ms-accountProfileEditor p[class*="email"],
.ms-accountProfileEditor p[class*="password"],
.ms-accountProfileEditor p[class*="address"],
.ms-accountProfileEditor p[class*="city"],
.ms-accountProfileEditor p[class*="state"],
.ms-accountProfileEditor p[class*="zip"],
.ms-accountProfileEditor p[class*="country"],
.ms-accountProfileEditor div[class*="email"],
.ms-accountProfileEditor div[class*="password"],
.ms-accountProfileEditor div[class*="address"],
.ms-accountProfileEditor div[class*="city"],
.ms-accountProfileEditor div[class*="state"],
.ms-accountProfileEditor div[class*="zip"],
.ms-accountProfileEditor div[class*="country"]{grid-column:span 1}
.ms-accountProfileEditor p[class*="line2"],
.ms-accountProfileEditor p[class*="address_2"],
.ms-accountProfileEditor p[class*="display_name"],
.ms-accountProfileEditor p[class*="primary_email"],
.ms-accountProfileEditor div[class*="line2"],
.ms-accountProfileEditor div[class*="address_2"],
.ms-accountProfileEditor div[class*="display_name"],
.ms-accountProfileEditor div[class*="primary_email"]{grid-column:1 / -1}
.ms-accountProfileEditor p[class*="submit"],
.ms-accountProfileEditor .edd-submit,
.ms-accountProfileEditor .edd_profile_submit,
.ms-accountProfileEditor [type="submit"]{grid-column:1 / -1}
@media (max-width: 980px){
  .ms-accountSurface--profile{grid-column:auto;padding:24px}
  .ms-accountProfileEditor #edd_profile_editor_form,
  .ms-accountProfileEditor form[id*="edd_profile"],
  .ms-accountProfileEditor form.edd_form,
  .ms-accountProfileEditor #edd_profile_editor_form > fieldset,
  .ms-accountProfileEditor form[id*="edd_profile"] > fieldset,
  .ms-accountProfileEditor form.edd_form > fieldset{grid-template-columns:1fr}
}


/* v0.7.4 - account profile balanced columns */
.ms-accountProfileEditor .ms-accountProfileColumns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 20px;
  align-items:start;
}
.ms-accountProfileEditor .ms-accountProfileColumn{
  display:grid;
  gap:18px;
  align-content:start;
  min-width:0;
}
.ms-accountProfileEditor .ms-accountProfileColumn > *{
  min-width:0;
  margin:0;
}
.ms-accountProfileEditor .ms-accountProfileColumn > p[class*="submit"],
.ms-accountProfileEditor .ms-accountProfileColumn > div[class*="submit"],
.ms-accountProfileEditor .ms-accountProfileColumn > .edd-submit,
.ms-accountProfileEditor .ms-accountProfileColumn > .edd_profile_submit{
  margin-top:0 !important;
}
.ms-accountProfileEditor #edd_profile_editor_form.ms-accountProfileForm--balanced,
.ms-accountProfileEditor form[id*="edd_profile"].ms-accountProfileForm--balanced,
.ms-accountProfileEditor form.edd_form.ms-accountProfileForm--balanced{
  display:block;
}
.ms-accountProfileEditor #edd_profile_editor_form.ms-accountProfileForm--balanced > .ms-accountProfileColumns,
.ms-accountProfileEditor form[id*="edd_profile"].ms-accountProfileForm--balanced > .ms-accountProfileColumns,
.ms-accountProfileEditor form.edd_form.ms-accountProfileForm--balanced > .ms-accountProfileColumns{
  margin-top:0;
}
.ms-accountProfileEditor #edd_profile_editor_form.ms-accountProfileForm--balanced > :not(.ms-accountProfileColumns),
.ms-accountProfileEditor form[id*="edd_profile"].ms-accountProfileForm--balanced > :not(.ms-accountProfileColumns),
.ms-accountProfileEditor form.edd_form.ms-accountProfileForm--balanced > :not(.ms-accountProfileColumns){
  margin:0 0 18px;
}
@media (max-width: 900px){
  .ms-accountProfileEditor .ms-accountProfileColumns{grid-template-columns:1fr}
}


/* v0.6.28: simplified support page with private contact form */
.ms-pageHero--support{
  background:
    radial-gradient(circle at top right, rgba(123,92,255,.18), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(61,180,255,.12), transparent 28%),
    linear-gradient(180deg, rgba(10,12,26,.96), rgba(8,10,20,.98));
}
.ms-supportHero{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(280px,.8fr);
  gap:24px;
  align-items:end;
}
.ms-supportHero__card{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(18,22,42,.88), rgba(10,12,24,.92));
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow:0 22px 56px rgba(0,0,0,.28);
}
.ms-supportHero__label{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#d9e6ff;
  background:linear-gradient(135deg, rgba(91,146,255,.24), rgba(127,92,255,.18));
  border:1px solid rgba(128,161,255,.24);
}
.ms-supportHero__text{
  margin:12px 0 0;
  color:rgba(230,236,255,.78);
}
.ms-supportLayout{
  max-width:860px;
}
.ms-contactCard{
  padding:28px;
}
.ms-contactForm{
  display:grid;
  gap:16px;
}
.ms-contactForm__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.ms-field{
  display:grid;
  gap:8px;
}
.ms-field__label{
  font-size:13px;
  font-weight:700;
  letter-spacing:.01em;
  color:#eef4ff;
}
.ms-field__label small{
  color:rgba(230,236,255,.56);
  font-size:12px;
  font-weight:600;
}
.ms-field input,
.ms-field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(9,12,22,.92);
  color:#f4f7ff;
  padding:14px 15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.ms-field textarea{
  min-height:190px;
  resize:vertical;
}
.ms-field input:focus,
.ms-field textarea:focus{
  outline:none;
  border-color:rgba(106,160,255,.48);
  box-shadow:0 0 0 4px rgba(90,133,255,.12);
  background:rgba(10,13,25,.98);
}
.ms-contactForm__actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-top:4px;
}
.ms-formNotice{
  border-radius:16px;
  padding:14px 16px;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
}
.ms-formNotice--success{
  color:#eafff4;
  background:linear-gradient(180deg, rgba(16,74,52,.72), rgba(10,46,34,.76));
  border-color:rgba(92,255,183,.22);
}
.ms-formNotice--error{
  color:#fff1f1;
  background:linear-gradient(180deg, rgba(88,24,36,.78), rgba(58,16,24,.84));
  border-color:rgba(255,129,158,.24);
}
.ms-formNotice__list{
  margin:0;
  padding-left:18px;
}
.ms-hpField{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
@media (max-width: 860px){
  .ms-supportHero,
  .ms-contactForm__grid{
    grid-template-columns:1fr;
  }
  .ms-contactCard{
    padding:22px;
  }
}


.ms-section--tight{padding-top:18px}
.ms-miniStat--accent{background:linear-gradient(180deg, rgba(84,224,255,.10), rgba(149,123,255,.06) 52%, rgba(255,255,255,.028) 100%);border-color:rgba(84,224,255,.18)}
.ms-spotlightBand{
  position:relative;padding:28px;border-radius:30px;overflow:hidden;
  background:
    radial-gradient(760px 240px at 8% 0%, rgba(54,214,255,.12), transparent 60%),
    radial-gradient(760px 280px at 100% 100%, rgba(140,99,255,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset, 0 22px 54px rgba(0,0,0,.26)
}
.ms-spotlightBand:after{
  content:"";position:absolute;inset:auto -12% -42% auto;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle, rgba(255,95,208,.14), transparent 64%);filter:blur(24px);pointer-events:none
}
.ms-spotlightBand__intro{position:relative;z-index:1;display:grid;gap:12px;margin-bottom:22px;max-width:80ch}
.ms-spotlightGrid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ms-spotlightCard{padding:24px 24px 22px;background:linear-gradient(180deg, rgba(7,11,20,.42), rgba(255,255,255,.028));backdrop-filter:blur(8px)}
.ms-spotlightCard .ms-panelHead strong{font-size:20px;line-height:1.35}
@media (max-width: 900px){
  .ms-section--tight{padding-top:12px}
  .ms-spotlightBand{padding:22px}
  .ms-spotlightGrid{grid-template-columns:1fr}
}


/* v0.6.35 - VAT exemption note for checkout and confirmation */
.ms-vatNote{
  margin:18px 0 0;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1.55;
}
.ms-vatNote--inline{
  margin-top:16px;
}
.ms-vatNote span{
  display:block;
}


/* v0.6.3.5 - pricing minimum requirements */
.ms-section--pricingRequirements{padding-top:0}
.ms-systemRequirementsCard{
  padding:28px;
  background:linear-gradient(135deg, rgba(54,214,255,.10), rgba(140,99,255,.10), rgba(255,255,255,.03));
}
.ms-systemRequirementsCard__head{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:flex-end;
  margin-bottom:20px;
}
.ms-systemRequirementsCard__lead{
  max-width:52ch;
  margin:0;
}
.ms-systemRequirementsGrid{align-items:stretch}
.ms-systemRequirementItem{
  min-height:100%;
  padding:20px 20px 18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.08);
}
.ms-systemRequirementItem .ms-h3{margin-bottom:6px}
.ms-systemRequirementItem .ms-list{margin-top:12px}

@media (max-width: 1120px){
  .ms-systemRequirementsCard__head{align-items:flex-start;flex-direction:column}
}
@media (max-width: 900px){
  .ms-systemRequirementsGrid{grid-template-columns:1fr}
  .ms-systemRequirementsCard{padding:24px}
}

/* Hide public order-number rows on EDD confirmation/history screens */
.ms-card--eddConfirmation .edd_purchase_receipt tr:first-child,
.ms-card--eddConfirmation .edd-table tr:first-child,
.edd-confirmation .edd_purchase_receipt tr:first-child,
.edd-success .edd_purchase_receipt tr:first-child {
  display: none !important;
}


/* v0.6.36 - inline Download label next to confirmation package button */
.ms-card--eddConfirmation .edd_purchase_receipt_files li,
.ms-card--eddConfirmation .edd-download-file,
.ms-card--eddConfirmation .edd_receipt_files li,
.edd-confirmation .edd_purchase_receipt_files li,
.edd-confirmation .edd-download-file,
.edd-confirmation .edd_receipt_files li,
.edd-success .edd_purchase_receipt_files li,
.edd-success .edd-download-file,
.edd-success .edd_receipt_files li{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.ms-download-inline-label{
  display:inline-block;
  color:#fff;
  font-weight:700;
  line-height:1.2;
}


.ms-btn--demo{
  color:#fff;
  border:1px solid rgba(105,227,143,.42);
  background:linear-gradient(135deg, rgba(105,227,143,.26), rgba(54,214,255,.18));
  box-shadow:0 18px 42px rgba(0,0,0,.28), 0 0 24px rgba(105,227,143,.12);
}
.ms-btn--demo:hover{border-color:rgba(105,227,143,.58);box-shadow:0 20px 50px rgba(0,0,0,.32), 0 0 28px rgba(105,227,143,.18)}
.ms-header__actions{display:flex;align-items:center;gap:12px;margin-left:16px}
.ms-header__tryBtn{white-space:nowrap;padding:12px 18px;border-color:rgba(105,227,143,.34);background:linear-gradient(135deg, rgba(105,227,143,.18), rgba(54,214,255,.10))}
.ms-pageHero--freeDemo{padding-top:42px}
.ms-freeDemoHero{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:28px;align-items:stretch}
.ms-freeDemoHero__copy{display:flex;flex-direction:column;gap:18px}
.ms-freeDemoHero__actions{justify-content:flex-start;flex-wrap:wrap}
.ms-freeDemoHero__note{margin:0;color:var(--muted);max-width:720px}
.ms-freeDemoHero__panelWrap{display:flex;align-items:stretch}
.ms-freeDemoHero__panel{width:100%;padding:28px}
.ms-freeDemoChecklist{display:grid;gap:12px;margin:16px 0 0;padding:0}
.ms-freeDemoChecklist li{position:relative;padding-left:28px;color:var(--text)}
.ms-freeDemoChecklist li:before{content:"";position:absolute;left:0;top:8px;width:12px;height:12px;border-radius:50%;background:linear-gradient(135deg, rgba(105,227,143,.95), rgba(54,214,255,.85));box-shadow:0 0 0 6px rgba(105,227,143,.08)}
.ms-sectionHead--demoCompare{align-items:end}
.ms-demoCompareCard{padding:0;overflow:hidden}
.ms-demoCompareTableWrap{overflow-x:auto}
.ms-demoCompareTable{width:100%;border-collapse:collapse;min-width:760px}
.ms-demoCompareTable th,.ms-demoCompareTable td{padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;vertical-align:middle}
.ms-demoCompareTable thead th{font-family:"Space Grotesk",ui-sans-serif,system-ui,sans-serif;font-size:15px;letter-spacing:.02em;background:rgba(255,255,255,.03)}
.ms-demoCompareTable tbody tr:nth-child(even){background:rgba(255,255,255,.018)}
.ms-compareYes,.ms-compareLimit,.ms-compareNo{display:inline-flex;align-items:center;justify-content:center;padding:8px 12px;border-radius:999px;font-size:14px;font-weight:700;line-height:1.2}
.ms-compareYes{background:rgba(105,227,143,.14);border:1px solid rgba(105,227,143,.26);color:#c7ffd8}
.ms-compareLimit{background:rgba(248,195,79,.12);border:1px solid rgba(248,195,79,.22);color:#ffe8aa}
.ms-compareNo{background:rgba(255,95,208,.12);border:1px solid rgba(255,95,208,.18);color:#ffc8ec}
.ms-freeDemoInfoGrid{align-items:stretch}
.ms-freeDemoInfoCard{height:100%}
.ms-freeDemoInfoCard__actions{margin-top:18px}
.ms-ctaCard--freeDemo{align-items:center}
@media (max-width: 1080px){
  .ms-header__actions{margin-left:12px}
  .ms-freeDemoHero{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .ms-header__actions{display:none}
}
@media (max-width: 640px){
  .ms-demoCompareTable{min-width:640px}
  .ms-demoCompareTable th,.ms-demoCompareTable td{padding:15px 14px}
}
