﻿:root {
  color-scheme: light;
  --ink: #173947;
  --muted: #5e7880;
  --mist: #eff7f5;
  --aqua: #85dce8;
  --green: #9edb8f;
  --deep: #244c54;
  --deep-2: #173840;
  --glass: rgba(242, 252, 250, .56);
  --line: rgba(36, 76, 84, .18);
  --shadow: 0 28px 80px rgba(43, 87, 92, .18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(107, 178, 176, .72) rgba(35, 77, 82, .22);
  scrollbar-width: thin;
}

html {
  overflow-y: scroll;
}

*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

*::-webkit-scrollbar-track {
  background: rgba(35, 77, 82, .22);
}

*::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
  background: rgba(118, 194, 190, .76);
  box-shadow: inset 0 0 0 1px rgba(238, 255, 250, .16);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(150, 224, 211, .86);
}

*::-webkit-scrollbar-thumb:active {
  background: rgba(88, 160, 162, .94);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

html.page-scroll-mask {
  scrollbar-color: transparent transparent;
}

html.page-scroll-mask::-webkit-scrollbar-thumb,
html.page-scroll-mask::-webkit-scrollbar-track {
  background: transparent;
}

#detach-button-host,
body + div[is-visible] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.soft-page-transition {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.soft-page-transition span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(238, 249, 246, .1), rgba(238, 249, 246, .42)),
    rgba(219, 242, 239, .08);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(.2, .72, .2, 1);
}

.soft-page-transition span:first-child {
  left: 0;
  transform: translateX(-18%);
}

.soft-page-transition span:last-child {
  right: 0;
  transform: translateX(18%);
  background:
    linear-gradient(270deg, rgba(238, 249, 246, .1), rgba(238, 249, 246, .38)),
    rgba(219, 242, 239, .08);
}

.soft-nav-active .soft-page-transition {
  opacity: 1;
}

.soft-nav-active .soft-page-transition span {
  opacity: 1;
  transform: translateX(0);
}

main {
  transform-origin: 50% 42%;
}

main.page-soft-exit {
  opacity: .18;
  filter: blur(6px);
  transform: scale(.996);
  transition:
    opacity 120ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

main.page-soft-enter {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(10px) scale(.997);
}

main.page-soft-enter.page-soft-enter-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition:
    opacity 250ms ease,
    filter 330ms ease,
    transform 360ms cubic-bezier(.2, .72, .2, 1);
}

.page-transition-enabled body {
  opacity: .96;
}

.page-transition-enabled body.page-ready {
  opacity: 1;
  transition: opacity 130ms ease;
}

.page-transition-enabled body.page-leaving {
  opacity: .88;
  transition: opacity 55ms ease;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5faf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  user-select: none;
  -webkit-user-select: none;
}

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

button {
  font: inherit;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 10vw, 170px);
  border-bottom: 0;
  background: rgba(234, 249, 246, .12);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
  pointer-events: none;
}

.nav a {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  color: #163b49;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  transition: background .18s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, .12);
}

.nav a[aria-current="page"] {
  color: rgba(15, 69, 62, .95);
  background: rgba(255, 255, 255, .16);
}

.nav-account {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
}

.nav .nav-account a {
  height: auto;
  min-width: 0;
  color: rgba(22, 59, 73, .92);
}

.nav-account-summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}

.nav-account-name {
  max-width: 132px;
  overflow: hidden;
  color: rgba(15, 49, 59, .94);
  font-size: 12px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-credits {
  color: rgba(15, 69, 62, .68);
  font-size: 11px;
  font-weight: 720;
  white-space: nowrap;
}

.nav-credit-add {
  width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 69, 62, .18);
  border-radius: 999px;
  color: rgba(15, 69, 62, .94);
  background: rgba(154, 236, 206, .38);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.nav-credit-add:hover,
.nav-account-summary:hover {
  background: rgba(255, 255, 255, .32);
}

.hero {
  position: relative;
  min-height: 58vh;
  padding: 58px 24px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 251, 249, .92), rgba(226, 244, 240, .76)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .92), transparent 36%),
    linear-gradient(120deg, #eaf6f2, #dff4f1 46%, #f7fbf5);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: -7% -4%;
  opacity: .78;
  filter: blur(5px) saturate(1.18) contrast(1.02);
  transform: scale(1.04);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: opacity 2500ms linear;
  z-index: 1;
}

.hero-bg-video.is-bottom {
  z-index: 2;
}

.hero-bg-video.is-top {
  z-index: 3;
}

.hero-bg-video.is-visible {
  opacity: 1;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(244, 251, 249, .38), rgba(225, 244, 240, .42)),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .24), transparent 42%);
}

.sunwash {
  display: none;
}

.leaf {
  position: absolute;
  width: 190px;
  height: 110px;
  opacity: .58;
  filter: blur(.3px);
  background:
    radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, .55), transparent 24%),
    linear-gradient(120deg, rgba(96, 151, 73, .82), rgba(156, 213, 124, .72));
  border-radius: 100% 0 100% 0;
  transform-origin: 50% 100%;
}

.leaf::after {
  content: "";
  position: absolute;
  inset: 50% 10% auto;
  height: 1px;
  background: rgba(28, 92, 64, .35);
  transform: rotate(-18deg);
}

.leaf-a {
  left: -38px;
  top: 40px;
  transform: rotate(-26deg) scale(.82);
}

.leaf-b {
  right: -34px;
  top: 70px;
  transform: rotate(136deg) scale(.66);
  opacity: .5;
}

.leaf-c {
  right: 9%;
  bottom: 12%;
  transform: rotate(38deg) scale(.5);
  opacity: .36;
}

.glass-panel {
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 16px;
  background: rgba(224, 242, 241, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 24px 64px rgba(62, 112, 119, .12);
  backdrop-filter: blur(12px);
  filter: blur(1.2px);
  opacity: .22;
}

.glass-panel span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(82, 125, 132, .22);
}

.panel-a {
  left: 6%;
  top: 25%;
  width: 265px;
  height: 168px;
}

.panel-b {
  left: 39%;
  top: 13%;
  width: 245px;
  height: 202px;
}

.panel-c {
  right: 4%;
  top: 21%;
  width: 318px;
  height: 232px;
}

.panel-a span:nth-child(2),
.panel-b span:nth-child(1),
.panel-c span:nth-child(3) {
  width: 62%;
}

.panel-a span:nth-child(3),
.panel-b span:nth-child(3),
.panel-c span:nth-child(5) {
  width: 82%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(20px);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(23, 57, 71, .7);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  display: inline-block;
  --leaf-x: 50%;
  --leaf-y: 50%;
  margin: 0;
  color: rgba(33, 82, 69, .82);
  font-size: clamp(100px, 17vw, 245px);
  line-height: .78;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.03em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .92),
    0 18px 52px rgba(49, 102, 91, .18);
}

.hero-video-title {
  position: relative;
  width: min(760px, 78vw);
  aspect-ratio: var(--title-aspect, 16 / 9);
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  text-shadow: none;
  opacity: .9;
  isolation: isolate;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.hero-video-title span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-video-title video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  filter: drop-shadow(0 18px 52px rgba(49, 102, 91, .2));
  transition: opacity 3000ms linear;
  mix-blend-mode: plus-lighter;
  z-index: 1;
}

.hero-video-title video.is-bottom {
  z-index: 2;
}

.hero-video-title video.is-top {
  z-index: 3;
}

.hero-video-title video.is-visible {
  opacity: 1;
}

.hero-line {
  max-width: 560px;
  margin: 10px auto 0;
  color: rgba(23, 57, 71, .68);
  font-size: 16px;
  line-height: 1.55;
}

.intro-section {
  position: relative;
  min-height: 720px;
  padding: 70px 24px 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(184, 236, 225, .28), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(104, 190, 203, .18), transparent 32%),
    linear-gradient(180deg, #e9f6f2 0%, #c6e1de 34%, #749aa0 70%, #315b63 100%);
}

.intro-section::before,
.intro-section::after {
  display: none;
}

.section-title {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2,
.feature-block h2,
.split-story h2,
.downloads h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 680;
  letter-spacing: -.02em;
}

.intro-section .section-title .eyebrow {
  color: rgba(27, 106, 85, .78);
}

.intro-section .section-title h2 {
  color: rgba(17, 56, 63, .94);
}

.floating-product {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  min-height: 0;
  margin: 0 auto;
}

.showcase-link {
  position: relative;
  display: block;
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 360ms cubic-bezier(.2, .72, .2, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.showcase-link::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: 44%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .62));
  transition: opacity 300ms ease;
}

.showcase-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(circle at 78% 50%, rgba(255, 255, 255, .28), transparent 34%);
  transition: opacity 300ms ease;
}

.showcase-link:hover,
.showcase-link:focus-visible {
  transform: translateY(-4px) scale(1.006);
  box-shadow: 0 42px 110px rgba(10, 45, 52, .3);
}

.showcase-link:hover::before,
.showcase-link:hover::after,
.showcase-link:focus-visible::before,
.showcase-link:focus-visible::after {
  opacity: 1;
}

.showcase-view {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 3;
  min-width: 74px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 76, 84, .18);
  border-radius: 999px;
  color: rgba(22, 58, 68, .9);
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 18px 42px rgba(14, 53, 62, .14);
  backdrop-filter: blur(14px);
  transform: translate(16px, -50%);
  opacity: 0;
  font-size: 14px;
  font-weight: 760;
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(.2, .72, .2, 1);
}

.showcase-link:hover .showcase-view,
.showcase-link:focus-visible .showcase-view {
  opacity: 1;
  transform: translate(0, -50%);
}

.middle-showcase {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 893 / 540;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: inherit;
  box-shadow: 0 34px 95px rgba(10, 45, 52, .24);
  transition: filter 360ms ease, transform 420ms cubic-bezier(.2, .72, .2, 1);
}

.showcase-link:hover .middle-showcase,
.showcase-link:focus-visible .middle-showcase {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.012);
}

.mini-panel,
.main-product-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  background: rgba(238, 250, 247, .54);
  box-shadow: 0 26px 82px rgba(10, 45, 52, .18), inset 0 1px 0 rgba(255, 255, 255, .76);
  backdrop-filter: blur(14px);
}

.main-product-panel {
  left: 50%;
  top: 42px;
  width: min(590px, 56vw);
  min-height: 390px;
  padding: 18px;
  transform: translateX(-50%);
}

.mini-panel {
  width: 250px;
  min-height: 330px;
  padding: 18px;
}

.tools-panel {
  left: 3%;
  top: 108px;
  transform: rotate(-4deg);
}

.sliders-panel {
  right: 3%;
  top: 128px;
  transform: rotate(4deg);
}

.panel-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.panel-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(99, 149, 154, .34);
}

.panel-bar span:first-child {
  background: rgba(112, 186, 110, .68);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-grid button {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .64), rgba(137, 180, 183, .18));
  box-shadow: inset 0 -10px 18px rgba(31, 89, 94, .06);
}

.curve-editor {
  height: 250px;
  border: 1px solid rgba(41, 88, 96, .13);
  border-radius: 14px;
  background: rgba(214, 236, 235, .46);
  overflow: hidden;
}

.curve-editor svg {
  width: 100%;
  height: 100%;
}

.grid {
  fill: none;
  stroke: rgba(36, 76, 84, .12);
  stroke-width: 1;
}

.curve {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.curve-blue {
  stroke: rgba(59, 156, 208, .84);
}

.curve-green {
  stroke: rgba(91, 164, 85, .82);
}

.curve-editor circle {
  fill: rgba(244, 255, 250, .9);
  stroke: rgba(72, 166, 110, .78);
  stroke-width: 3;
}

.knob-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 36px 0;
}

.knob-row span {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff, rgba(255, 255, 255, .26) 28%, transparent 30%),
    radial-gradient(circle, rgba(246, 255, 251, .95), rgba(118, 154, 159, .52));
  border: 1px solid rgba(255, 255, 255, .76);
  box-shadow: inset 0 -12px 22px rgba(31, 72, 78, .14);
}

.preview-mountain {
  height: 112px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(55, 124, 119, .14), rgba(93, 169, 190, .22)),
    url("assets/ek-totoro-background-1000.webp") center / cover;
  opacity: .72;
  border: 1px solid rgba(255, 255, 255, .55);
}

.slider-stack {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.slider-stack span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 120, 128, .26), rgba(90, 120, 128, .08));
}

.intro-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.intro-copy p,
.feature-block p,
.module-row p,
.split-story p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.intro-section .intro-copy p {
  color: rgba(236, 250, 247, .82);
}

.long-middle {
  padding: 96px 24px 110px;
  background:
    radial-gradient(circle at 16% 8%, rgba(136, 219, 198, .14), transparent 34%),
    linear-gradient(180deg, #315b63 0%, #274f57 42%, #244c54 100%);
}

.feature-block,
.split-story {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  align-items: end;
  gap: clamp(28px, 7vw, 90px);
}

.module-row {
  width: min(var(--max), 100%);
  margin: 44px auto 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-row article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 18px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 18px 50px rgba(7, 28, 33, .18);
  backdrop-filter: blur(16px);
  transition:
    transform 260ms cubic-bezier(.2, .72, .2, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.module-row article:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 250, 245, .3);
  background: rgba(16, 52, 59, .3);
  box-shadow: 0 28px 70px rgba(7, 28, 33, .24);
}

.module-row h3 {
  margin-bottom: 9px;
  color: rgba(248, 253, 251, .94);
  font-size: 25px;
}

.module-row strong {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(154, 236, 206, .84);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.long-middle .feature-block .eyebrow {
  color: rgba(154, 236, 206, .84);
}

.long-middle .feature-block h2 {
  color: rgba(248, 253, 251, .96);
}

.long-middle .feature-block p,
.long-middle .module-row p {
  color: rgba(228, 245, 241, .78);
}

.module-icon {
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(229, 245, 242, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.graph-icon {
  background:
    url("assets/ekflow-banner-916.webp") center / cover,
    rgba(229, 245, 242, .74);
}

.pack-icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .7), transparent),
    linear-gradient(90deg, rgba(80, 158, 175, .18), rgba(116, 186, 106, .2));
}

.store-icon {
  background:
    radial-gradient(circle at 40% 40%, rgba(103, 184, 132, .76), transparent 32%),
    radial-gradient(circle at 68% 62%, rgba(128, 220, 232, .72), transparent 31%),
    rgba(229, 245, 242, .74);
}

.credit-store {
  width: min(var(--max), 100%);
  margin: 0 auto 92px;
  padding: 28px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 20px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
}

.store-heading {
  width: min(680px, 100%);
}

.store-heading h2 {
  margin: 0;
  color: rgba(248, 253, 251, .96);
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.04;
}

.store-heading p {
  color: rgba(228, 245, 241, .76);
}

.credit-pack-grid,
.store-product-grid {
  display: grid;
  gap: 14px;
}

.credit-pack-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.credit-pack-grid article,
.store-product-grid article {
  border: 1px solid rgba(226, 250, 245, .18);
  background: rgba(238, 250, 247, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.credit-pack-grid article {
  min-height: 112px;
  padding: 20px;
  border-radius: 16px;
  display: grid;
  align-content: space-between;
}

.credit-pack-grid strong,
.store-product-grid strong {
  color: rgba(248, 253, 251, .95);
  font-size: 20px;
}

.credit-pack-grid span,
.store-product-grid b {
  color: rgba(154, 236, 206, .9);
  font-size: 15px;
}

.store-product-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.store-product-grid article {
  min-height: 176px;
  padding: 22px;
  border-radius: 16px;
}

.store-product-grid p {
  color: rgba(228, 245, 241, .72);
}

.store-product-type {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(154, 236, 206, .8);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.comparison-card {
  border: 1px solid rgba(36, 76, 84, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .46);
  overflow: hidden;
}

.long-middle .split-story {
  align-items: center;
}

.long-middle .split-story .eyebrow {
  color: rgba(211, 246, 237, .78);
}

.long-middle .split-story h2 {
  color: rgba(247, 253, 251, .96);
  text-shadow: 0 14px 42px rgba(6, 24, 28, .28);
}

.long-middle .split-story p {
  color: rgba(228, 245, 241, .78);
}

.long-middle .comparison-card {
  border-color: rgba(226, 250, 245, .22);
  background: rgba(11, 42, 48, .28);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .22);
  backdrop-filter: blur(18px);
}

.compare-line {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(36, 76, 84, .1);
}

.compare-line:last-child {
  border-bottom: 0;
}

.compare-line span {
  color: rgba(30, 98, 74, .72);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.compare-line strong {
  font-size: 18px;
}

.long-middle .compare-line {
  border-bottom-color: rgba(229, 250, 245, .16);
}

.long-middle .compare-line span {
  color: rgba(154, 236, 206, .82);
}

.long-middle .compare-line strong {
  color: rgba(248, 253, 251, .94);
}

.downloads {
  padding: 72px 24px 92px;
  color: rgba(239, 249, 247, .92);
  background:
    linear-gradient(180deg, rgba(43, 77, 82, .96), rgba(28, 61, 67, .98)),
    #23464d;
}

.downloads-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.account-dashboard-preview,
.security-strip {
  margin: 28px auto 0;
  border: 1px solid rgba(226, 250, 245, .16);
  background: rgba(239, 249, 247, .08);
  backdrop-filter: blur(16px);
}

.account-dashboard-preview {
  width: min(860px, 100%);
  padding: 24px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 20px;
  text-align: left;
}

.account-dashboard-preview h3 {
  margin: 0 0 10px;
  color: rgba(248, 253, 251, .96);
  font-size: 28px;
}

.account-dashboard-preview p {
  margin: 0;
  color: rgba(228, 245, 241, .76);
  line-height: 1.55;
}

.account-actions {
  display: flex;
  align-items: start;
  gap: 10px;
}

.account-actions button {
  border: 1px solid rgba(226, 250, 245, .2);
  border-radius: 12px;
  padding: 11px 14px;
  color: rgba(248, 253, 251, .94);
  background: rgba(154, 236, 206, .14);
  cursor: pointer;
}

.account-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.account-summary span {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(7, 28, 33, .2);
}

.account-summary strong {
  color: rgba(228, 245, 241, .68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.account-summary b {
  color: rgba(248, 253, 251, .94);
}

.security-strip {
  width: min(860px, 100%);
  padding: 16px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.security-strip span {
  color: rgba(154, 236, 206, .9);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.security-strip p {
  margin: 0;
  color: rgba(228, 245, 241, .76);
}

.security-strip a {
  color: rgba(248, 253, 251, .95);
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

.downloads .eyebrow {
  color: rgba(228, 246, 239, .68);
}

.downloads h2 {
  color: rgba(246, 252, 250, .95);
  margin-bottom: 36px;
}

.download-layout {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(232, 251, 246, .4);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  display: grid;
  gap: 10px;
}

.download-cta-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(235, 255, 250, .2);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  text-align: left;
  transition:
    transform 240ms cubic-bezier(.2, .72, .2, 1),
    border-color 240ms ease,
    background 240ms ease;
}

.download-cta-card:not(.is-disabled):hover {
  transform: translateY(-3px);
  border-color: rgba(229, 246, 242, .32);
  background: rgba(255, 255, 255, .07);
}

.download-cta-card strong {
  color: rgba(246, 252, 250, .96);
  font-size: 20px;
}

.download-cta-card span {
  color: rgba(229, 246, 242, .62);
}

.download-action-stack {
  display: grid;
  justify-items: center;
}

.download-cta-card a,
.download-cta-card button {
  min-height: 42px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 246, 242, .36);
  border-radius: 999px;
  color: rgba(236, 255, 247, .9);
  font-weight: 760;
  background: rgba(5, 24, 30, .74);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.download-cta-card a:hover,
.download-cta-card button:hover {
  background: rgba(10, 42, 48, .92);
  transform: translateY(-1px);
}

.download-cta-card button.is-loading,
.primary-action.is-loading {
  opacity: .72;
  pointer-events: none;
}

.download-platform {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-platform > span:last-child {
  display: grid;
  gap: 5px;
}

.platform-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 246, 242, .18);
  border-radius: 12px;
  background: rgba(236, 255, 247, .07);
}

.platform-logo svg {
  width: 24px;
  height: 24px;
  fill: rgba(236, 255, 247, .9);
}

.windows-logo span {
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 3px;
  display: grid;
}

.windows-logo i {
  width: 10px;
  height: 10px;
  display: block;
  background: rgba(124, 218, 236, .9);
}

.linux-logo svg {
  fill: rgba(235, 245, 240, .88);
}

.linux-logo .logo-cut {
  fill: rgba(31, 61, 67, .88);
}

.macos-logo svg {
  fill: rgba(236, 255, 247, .86);
}

.download-cta-card.is-disabled {
  min-height: 76px;
  opacity: .58;
  background: rgba(255, 255, 255, .025);
}

.download-cta-card.is-disabled strong {
  color: rgba(229, 246, 242, .78);
}

.download-disabled-label {
  min-width: 132px;
  color: rgba(229, 246, 242, .42);
  font-size: 13px;
  font-weight: 720;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.tile {
  min-height: 146px;
  border: 1px solid rgba(235, 255, 250, .34);
  border-radius: 16px;
  background: rgba(238, 250, 248, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.tile-curve {
  background: url("assets/ekflow-banner-640.webp") center / cover;
  opacity: .82;
}

.tile-knob {
  background:
    radial-gradient(circle at 48% 44%, rgba(232, 248, 242, .85), rgba(129, 164, 162, .5) 33%, transparent 35%),
    rgba(238, 250, 248, .08);
}

.tile-grid {
  background:
    linear-gradient(90deg, transparent 32%, rgba(235,255,250,.3) 33%, transparent 34%, transparent 65%, rgba(235,255,250,.22) 66%, transparent 67%),
    linear-gradient(0deg, transparent 32%, rgba(235,255,250,.22) 33%, transparent 34%, transparent 65%, rgba(235,255,250,.2) 66%, transparent 67%),
    rgba(238, 250, 248, .08);
}

.tile-orb {
  background:
    radial-gradient(circle at 45% 42%, rgba(135, 209, 154, .76), rgba(232, 250, 243, .26) 30%, transparent 33%),
    radial-gradient(circle at 65% 62%, rgba(174, 232, 238, .8), transparent 20%),
    rgba(238, 250, 248, .08);
}

.tile-spline {
  background:
    radial-gradient(circle at 54% 52%, rgba(232, 250, 243, .7) 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 45%, rgba(130, 222, 225, .32) 46%, transparent 52%),
    rgba(238, 250, 248, .08);
}

.download-table {
  display: grid;
  gap: 10px;
}

.download-table article {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 126px;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(235, 255, 250, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  text-align: left;
}

.download-table article div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-table span {
  color: rgba(229, 246, 242, .62);
}

.download-table a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 246, 242, .36);
  border-radius: 999px;
  color: rgba(236, 255, 247, .9);
  font-weight: 700;
}

.small-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(235, 255, 250, .28);
  background: rgba(235, 255, 250, .1);
}

.small-thumb.curve {
  background: url("assets/ekflow-banner-640.webp") center / cover;
}

.small-thumb.knob {
  background: radial-gradient(circle, rgba(240, 255, 247, .75), rgba(115, 155, 151, .44));
}

.small-thumb.pro {
  background: radial-gradient(circle at 45% 42%, rgba(127, 215, 150, .82), transparent 34%), rgba(235,255,250,.1);
}

.footer {
  min-height: 74px;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(228, 245, 241, .64);
  background: #173840;
}

.footer span {
  color: rgba(248, 253, 251, .92);
  font-weight: 740;
}

.footer a {
  color: rgba(228, 245, 241, .72);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.footer a:hover {
  color: rgba(248, 253, 251, .96);
}

.subpage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 24% 12%, rgba(184, 236, 225, .34), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(123, 232, 255, .2), transparent 30%),
    linear-gradient(180deg, #edf8f4 0%, #b9d8d5 42%, #254f57 100%);
}

.placeholder-page {
  min-height: 100vh;
  padding: 118px 24px 86px;
}

.legal-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(154, 236, 206, .18), transparent 34%),
    linear-gradient(180deg, rgba(238, 248, 245, .96), rgba(199, 225, 222, .92));
}

.legal-hero {
  width: min(920px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.legal-hero h1 {
  margin: 0 0 14px;
  color: rgba(22, 58, 68, .95);
  font-size: clamp(58px, 10vw, 120px);
  line-height: .9;
}

.legal-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(23, 57, 71, .58);
  font-size: 14px;
  font-weight: 720;
}

.legal-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 26px;
  color: rgba(23, 57, 71, .76);
  background: rgba(248, 253, 251, .72);
  box-shadow: 0 34px 95px rgba(10, 45, 52, .16);
  backdrop-filter: blur(18px);
}

.legal-panel h2 {
  margin: 30px 0 10px;
  color: rgba(22, 58, 68, .94);
  font-size: 24px;
  line-height: 1.08;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  margin: 0 0 14px;
  line-height: 1.72;
}

.legal-panel a {
  color: rgba(24, 103, 116, .94);
  font-weight: 760;
}

.placeholder-hero {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
}

.placeholder-hero.compact {
  grid-template-columns: 1fr;
  width: min(840px, 100%);
  text-align: center;
}

.placeholder-hero h1 {
  margin: 0 0 20px;
  color: rgba(22, 58, 68, .95);
  font-size: clamp(78px, 13vw, 170px);
  line-height: .84;
  letter-spacing: 0;
}

.placeholder-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(23, 57, 71, .7);
  font-size: 18px;
  line-height: 1.55;
}

.placeholder-hero.compact p:not(.eyebrow) {
  margin-inline: auto;
}

.shop-page .placeholder-hero.compact p:not(.eyebrow) {
  margin-top: 18px;
}

.placeholder-hero img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 22px;
  box-shadow: 0 34px 95px rgba(10, 45, 52, .24);
}

.placeholder-grid,
.placeholder-panel {
  width: min(var(--max), 100%);
  margin: 54px auto 0;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.placeholder-grid article,
.placeholder-panel {
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 18px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
}

.placeholder-grid article {
  min-height: 220px;
  padding: 24px;
}

.placeholder-grid span {
  color: rgba(154, 236, 206, .84);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.placeholder-grid h2,
.placeholder-panel h2 {
  margin: 16px 0 10px;
  color: rgba(248, 253, 251, .96);
  font-size: 30px;
  line-height: 1.05;
}

.placeholder-grid p,
.placeholder-panel p {
  color: rgba(228, 245, 241, .76);
  line-height: 1.58;
}

.placeholder-panel {
  width: min(760px, 100%);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.placeholder-panel h2 {
  margin-top: 0;
}

.placeholder-panel button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(229, 246, 242, .24);
  border-radius: 999px;
  color: rgba(229, 246, 242, .58);
  background: rgba(255, 255, 255, .035);
}

.shop-shell,
.account-shell {
  width: min(var(--max), 100%);
  margin: 54px auto 0;
  display: grid;
  gap: 18px;
}

.shop-lead,
.account-auth-panel,
.account-overview,
.account-card,
.account-support,
.shop-support,
.credit-shop {
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 18px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
}

.shop-lead {
  padding: 28px;
}

.shop-lead h2,
.account-auth-panel h2,
.account-overview h2 {
  margin: 8px 0 10px;
  color: rgba(248, 253, 251, .96);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.shop-lead p,
.account-auth-panel p,
.account-overview p,
.account-card p,
.shop-support p,
.account-support p {
  margin: 0;
  color: rgba(228, 245, 241, .76);
  line-height: 1.6;
}

.panel-kicker {
  color: rgba(154, 236, 206, .84);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.shop-browser {
  padding: 20px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(154, 236, 206, .16), transparent 32%),
    rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
}

.shop-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.shop-filter-dropdown {
  position: relative;
  z-index: 5;
}

.shop-filter-dropdown summary {
  min-height: 30px;
  min-width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(226, 250, 245, .13);
  border-radius: 999px;
  color: rgba(236, 255, 247, .82);
  font-size: 12px;
  font-weight: 680;
  background: rgba(7, 28, 33, .56);
  cursor: pointer;
  list-style: none;
}

.shop-filter-dropdown summary::-webkit-details-marker {
  display: none;
}

.filter-button-icon,
.filter-option-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.filter-button-icon {
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle at 5px 5px, rgba(236, 255, 247, .8) 0 1.5px, transparent 1.8px),
    radial-gradient(circle at 11px 11px, rgba(236, 255, 247, .8) 0 1.5px, transparent 1.8px),
    linear-gradient(90deg, transparent 0 4px, rgba(236, 255, 247, .55) 4px 5px, transparent 5px),
    linear-gradient(90deg, transparent 0 10px, rgba(236, 255, 247, .55) 10px 11px, transparent 11px);
}

.filter-summary {
  margin-left: auto;
  color: rgba(228, 245, 241, .46);
  font-size: 10px;
  font-weight: 640;
}

.shop-filter-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  width: min(192px, calc(100vw - 28px));
  padding: 5px;
  border: 1px solid rgba(226, 250, 245, .12);
  border-radius: 12px;
  background: rgba(5, 24, 30, .96);
  box-shadow: 0 14px 34px rgba(5, 25, 30, .2);
}

.filter-section-label {
  display: block;
  margin: 6px 7px 4px;
  color: rgba(228, 245, 241, .48);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-menu-option {
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(236, 255, 247, .76);
  font-size: 12px;
  font-weight: 620;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.filter-menu-option:hover,
.filter-menu-option:has(input:checked) {
  border-color: rgba(154, 236, 206, .1);
  background: rgba(255, 255, 255, .035);
}

.filter-menu-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.filter-menu-option::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(236, 255, 247, .46);
  border-radius: 4px;
  background: transparent;
}

.filter-menu-option:has(input[type="radio"])::before {
  border-radius: 999px;
}

.filter-menu-option:has(input:checked)::before {
  border-color: rgba(236, 255, 247, .86);
  background:
    radial-gradient(circle, rgba(236, 255, 247, .95) 0 34%, transparent 38%),
    rgba(154, 236, 206, .42);
}

.filter-menu-option:has(input[type="checkbox"]:checked)::before {
  background:
    linear-gradient(135deg, transparent 0 43%, rgba(236, 255, 247, .95) 44% 56%, transparent 57%),
    linear-gradient(45deg, transparent 0 52%, rgba(236, 255, 247, .95) 53% 64%, transparent 65%),
    rgba(154, 236, 206, .38);
}

.filter-option-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.popular-icon::before,
.newest-icon::before,
.module-icon-small::before,
.addon-icon-small::before,
.addon-icon-small::after,
.effect-icon-small::before,
.effect-icon-small::after {
  content: "";
  display: block;
}

.popular-icon::before {
  width: 12px;
  height: 12px;
  background: rgba(236, 255, 247, .72);
  clip-path: polygon(50% 4%, 62% 36%, 96% 37%, 69% 58%, 79% 92%, 50% 72%, 21% 92%, 31% 58%, 4% 37%, 38% 36%);
  filter: none;
}

.newest-icon::before {
  width: 2px;
  height: 10px;
  border-radius: 999px;
  background: rgba(236, 255, 247, .72);
  box-shadow: 0 7px 0 -1px rgba(236, 255, 247, .72);
}

.module-icon-small::before {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(236, 255, 247, .46);
  border-radius: 4px;
  background: rgba(236, 255, 247, .18);
}

.addon-icon-small::before {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(236, 255, 247, .58);
  border-radius: 4px;
  background: transparent;
}

.addon-icon-small::after {
  position: absolute;
  width: 7px;
  height: 7px;
  background:
    linear-gradient(90deg, transparent 0 3px, rgba(236, 255, 247, .8) 3px 4px, transparent 4px),
    linear-gradient(0deg, transparent 0 3px, rgba(236, 255, 247, .8) 3px 4px, transparent 4px);
  border: 1px solid rgba(154, 236, 206, .52);
  border-radius: 999px;
  transform: translate(5px, 5px);
}

.effect-icon-small::before,
.effect-icon-small::after {
  position: absolute;
  width: 6px;
  height: 12px;
  background: rgba(236, 255, 247, .72);
  clip-path: polygon(56% 0, 100% 0, 68% 42%, 100% 42%, 34% 100%, 48% 56%, 8% 56%);
  filter: none;
}

.effect-icon-small::before {
  transform: translate(-3px, -1px) rotate(-8deg);
}

.effect-icon-small::after {
  opacity: .76;
  transform: translate(3px, 2px) rotate(10deg) scale(.88);
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  gap: 18px;
}

.shop-product-card {
  overflow: hidden;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 22px;
  color: inherit;
  text-decoration: none;
  background: rgba(6, 24, 30, .28);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.shop-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(154, 236, 206, .42);
  box-shadow: 0 28px 86px rgba(5, 25, 30, .26);
}

.shop-product-banner {
  aspect-ratio: 16 / 7;
  background: rgba(229, 245, 242, .16);
}

.shop-product-banner img,
.ekflow-detail-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-body {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(154, 236, 206, .13), transparent 48%),
    rgba(8, 31, 38, .94);
}

.shop-product-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-product-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(154, 236, 206, .15);
  border-radius: 999px;
  color: rgba(154, 236, 206, .7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shop-product-side-meta {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 6px;
  color: rgba(228, 245, 241, .52);
}

.version-price-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: rgba(228, 245, 241, .42);
  font-size: 10px;
  font-weight: 640;
  letter-spacing: .025em;
  text-transform: none;
}

.version-price-text small {
  margin-left: 3px;
  color: rgba(228, 245, 241, .3);
  font-size: 8px;
  font-weight: 620;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.download-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(154, 236, 206, .62);
  font-size: 12px;
  font-weight: 680;
}

.shop-product-title-row {
  display: block;
  margin-top: 14px;
}

.shop-product-body h2 {
  margin: 0 0 8px;
  color: rgba(248, 253, 251, .9);
  font-size: 28px;
  line-height: 1;
}

.shop-product-body p,
.shop-empty-state {
  margin: 0;
  color: rgba(228, 245, 241, .56);
  line-height: 1.55;
}

.shop-empty-state {
  padding: 22px;
  border: 1px solid rgba(226, 250, 245, .14);
  border-radius: 18px;
  background: rgba(7, 28, 33, .18);
}

.commerce-note {
  width: min(760px, 100%);
  margin-top: 20px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(226, 250, 245, .13);
  border-radius: 16px;
  background: rgba(7, 28, 33, .16);
}

.commerce-note strong {
  color: rgba(248, 253, 251, .9);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.commerce-note span {
  color: rgba(228, 245, 241, .64);
  font-size: 13px;
  line-height: 1.55;
}

.product-commerce-note {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
}

.back-link {
  width: fit-content;
  min-height: 42px;
  margin: 0 auto 24px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 58, 68, .18);
  border-radius: 999px;
  color: rgba(22, 58, 68, .9);
  font-weight: 780;
  text-decoration: none;
  background: rgba(255, 255, 255, .34);
}

.ekflow-detail-hero {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.product-switcher {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(34, 76, 84, .18);
}

.product-switcher::before {
  display: none;
}

.product-switcher a {
  position: relative;
  min-width: 112px;
  padding: 9px 18px 13px;
  color: rgba(24, 63, 70, .62);
  font-size: 13px;
  font-weight: 840;
  line-height: 1;
  letter-spacing: .18em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px 999px 0 0;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-switcher a:hover,
.product-switcher a[aria-current="page"] {
  color: rgba(13, 50, 57, .96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(255, 255, 255, .08));
  border-color: rgba(255, 255, 255, .46);
  transform: translateY(-2px);
}

.product-switcher a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -1px;
  height: 1px;
  background: rgba(24, 58, 66, .5);
}

.ekflow-detail-copy h1 {
  margin: 0 0 22px;
  color: rgba(22, 58, 68, .95);
  font-size: clamp(76px, 12vw, 158px);
  line-height: .84;
}

.ekflow-detail-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(23, 57, 71, .7);
  font-size: 18px;
  line-height: 1.56;
}

.ekflow-detail-banner {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 26px;
  box-shadow: 0 34px 95px rgba(10, 45, 52, .24);
}

.ekflow-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.ekflow-action-card {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.ekflow-action-card + .ekflow-action-card {
  margin-left: 14px;
}

.action-tier {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.free-tier {
  color: rgba(64, 159, 255, .95);
  background: rgba(64, 159, 255, .12);
}

.pro-tier {
  color: rgba(116, 70, 0, .98);
  background:
    linear-gradient(180deg, rgba(255, 241, 168, .95), rgba(255, 183, 55, .88));
  box-shadow: 0 8px 18px rgba(176, 106, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .58);
}

.ekflow-action-row .primary-action,
.ekflow-action-row .secondary-action {
  min-width: 148px;
  padding-inline: 24px;
}

.release-filename {
  display: block;
  margin-top: 8px;
  max-width: 220px;
  overflow-wrap: anywhere;
  color: rgba(23, 57, 71, .58);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
}

.download-cta-card .release-filename {
  max-width: 170px;
  color: rgba(229, 246, 242, .52);
}

.button-note {
  display: block;
  margin-top: 7px;
  color: rgba(23, 57, 71, .68);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.ekflow-showcase-grid,
.ekflow-media-row,
.ekflow-feature-panel {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
}

.ekflow-media-row {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(360px, .5fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.gift-code-card {
  position: relative;
  min-height: 198px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, .94);
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, .28), transparent 0 10%, transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(42, 236, 225, .18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, rgba(119, 121, 248, .96), rgba(117, 104, 235, .92));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  box-shadow: 0 22px 62px rgba(55, 62, 170, .2);
  overflow: hidden;
}

.gift-code-card::before,
.gift-code-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gift-code-card::before {
  right: -34px;
  top: -38px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.gift-code-card::after {
  right: 28px;
  bottom: 22px;
  width: 92px;
  height: 1px;
  background: rgba(255, 255, 255, .34);
  box-shadow:
    0 10px 0 rgba(255, 255, 255, .18),
    0 20px 0 rgba(255, 255, 255, .1);
}

.gift-code-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .98);
  background: rgba(9, 18, 24, .92);
  clip-path: polygon(50% 0, 61% 13%, 78% 8%, 84% 24%, 100% 30%, 91% 48%, 100% 64%, 84% 72%, 78% 90%, 60% 86%, 50% 100%, 39% 86%, 22% 91%, 16% 74%, 0 66%, 9% 50%, 0 34%, 16% 27%, 22% 9%, 39% 14%);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.gift-code-card > div {
  position: relative;
  z-index: 1;
}

.gift-code-kicker {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gift-code-card h2 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .98);
  font-size: 21px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.gift-code-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.45;
}

.gift-code-card p + p {
  margin-top: 20px;
}

.ekflow-video-panel {
  justify-self: end;
  width: min(calc(var(--max) * .5), 100%);
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 26px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
}

.ekflow-video-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ekflow-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ekflow-gif-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 250, 245, .16);
  border-radius: 22px;
  color: rgba(228, 245, 241, .62);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 34% 26%, rgba(154, 236, 206, .18), transparent 34%),
    rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
}

.ekflow-feature-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(320px, 1fr);
  gap: 28px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 24px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
}

.ekflow-feature-panel h2 {
  margin: 12px 0 0;
  color: rgba(248, 253, 251, .96);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.ekflow-feature-panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(228, 245, 241, .78);
  line-height: 1.75;
}

.plan-compare-panel {
  position: relative;
  grid-template-columns: minmax(270px, .62fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, .24);
  background:
    radial-gradient(circle at 12% 14%, rgba(236, 255, 247, .22), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(255, 224, 103, .12), transparent 28%),
    linear-gradient(135deg, rgba(220, 242, 238, .2), rgba(9, 45, 52, .24));
}

.plan-compare-heading {
  display: grid;
  align-content: center;
}

.plan-compare-heading p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(229, 248, 244, .68);
  font-size: 15px;
  line-height: 1.62;
}

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

.plan-card {
  min-height: 340px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(231, 250, 246, .24);
  border-radius: 26px;
  color: rgba(19, 53, 62, .92);
  background:
    linear-gradient(180deg, rgba(250, 255, 253, .9), rgba(222, 242, 238, .78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .68),
    0 26px 70px rgba(5, 25, 30, .16);
}

.pro-plan-card {
  border-color: rgba(255, 229, 111, .52);
  background:
    radial-gradient(circle at 88% 12%, rgba(113, 222, 235, .32), transparent 28%),
    linear-gradient(135deg, rgba(255, 239, 122, .94), rgba(255, 250, 202, .88) 42%, rgba(160, 236, 238, .86));
}

.plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-card-top span,
.plan-card-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-card-top span {
  padding: 0 11px;
  color: rgba(13, 78, 87, .86);
  background: rgba(129, 218, 213, .22);
}

.pro-plan-card .plan-card-top span {
  color: rgba(109, 73, 0, .9);
  background: rgba(255, 255, 255, .42);
}

.plan-card-top strong {
  color: rgba(24, 71, 78, .54);
  font-size: 10px;
}

.pro-plan-card .plan-card-top strong {
  color: rgba(88, 61, 0, .72);
}

.plan-card h3 {
  margin: 24px 0 18px;
  color: rgba(17, 53, 62, .96);
  font-size: clamp(32px, 3vw, 44px);
  line-height: .96;
  letter-spacing: -.04em;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: rgba(24, 70, 78, .72);
  line-height: 1.45;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(22, 117, 119, .86), rgba(83, 191, 170, .76));
}

.plan-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(.18em + 4px);
  width: 4px;
  height: 7px;
  border: solid rgba(255, 255, 255, .94);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pro-plan-card li::before {
  background:
    linear-gradient(135deg, rgba(12, 126, 148, .9), rgba(255, 186, 31, .82));
}

.related-module-panel {
  position: relative;
  width: calc(100% + 48px);
  min-height: 528px;
  margin: 118px 0 -86px;
  transform: translateX(-24px);
  overflow: visible;
  padding: 72px 32px 86px;
  border-top: 1px solid rgba(22, 58, 68, .13);
  background:
    radial-gradient(circle at 14% 22%, rgba(154, 236, 206, .16), transparent 34%),
    rgba(32, 87, 92, .24);
}

.related-module-panel h2 {
  position: absolute;
  left: 50%;
  top: 0;
  width: auto;
  margin: 0;
  padding: 0 18px;
  color: rgba(255, 255, 255, .96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: rgb(87, 132, 134);
}

.related-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 28px;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.related-module-card {
  min-height: 304px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(22, 58, 68, .12);
  border-radius: 30px;
  color: rgba(238, 252, 249, .94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(5, 24, 30, .62)),
    radial-gradient(circle at 30% 8%, rgba(154, 236, 206, .24), transparent 36%),
    rgba(9, 37, 43, .72);
  box-shadow: 0 18px 48px rgba(17, 59, 64, .14);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.related-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 59, 64, .2);
}

.cutflow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(5, 24, 30, .66)),
    radial-gradient(circle at 22% 16%, rgba(149, 221, 244, .28), transparent 34%),
    linear-gradient(135deg, rgba(24, 65, 76, .82), rgba(10, 36, 44, .86));
}

.gradeflow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(5, 24, 30, .66)),
    radial-gradient(circle at 28% 14%, rgba(255, 202, 85, .25), transparent 34%),
    linear-gradient(135deg, rgba(71, 57, 34, .78), rgba(18, 36, 39, .88));
}

.textflow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(5, 24, 30, .66)),
    radial-gradient(circle at 28% 12%, rgba(220, 168, 255, .22), transparent 34%),
    linear-gradient(135deg, rgba(50, 48, 84, .76), rgba(13, 34, 43, .88));
}

.packflow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(5, 24, 30, .66)),
    radial-gradient(circle at 22% 12%, rgba(154, 236, 206, .28), transparent 34%),
    linear-gradient(135deg, rgba(35, 83, 68, .76), rgba(9, 36, 43, .88));
}

.related-module-grid span {
  color: rgba(236, 255, 247, .62);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-module-grid h3 {
  margin: 16px 0 12px;
  color: rgba(248, 253, 251, .94);
  font-size: 38px;
}

.related-module-grid p {
  margin: 0;
  color: rgba(228, 245, 241, .64);
  line-height: 1.5;
}

.addons-hero {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.addons-hero h1 {
  margin: 0 0 18px;
  color: rgba(22, 58, 68, .94);
  font-size: clamp(76px, 13vw, 156px);
  line-height: .84;
}

.addons-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(23, 57, 71, .66);
  font-size: 18px;
  line-height: 1.55;
}

.addon-product-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.addon-product-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 16%, rgba(154, 236, 206, .24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(237, 250, 247, .14)),
    rgba(231, 246, 242, .36);
  box-shadow: 0 24px 70px rgba(10, 45, 52, .14);
  backdrop-filter: blur(18px);
}

.addon-product-card span {
  color: rgba(33, 92, 98, .62);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.addon-product-card h2 {
  margin: 12px 0 10px;
  color: rgba(22, 58, 68, .94);
  font-size: 34px;
  line-height: 1;
}

.addon-product-card p {
  margin: 0 0 22px;
  color: rgba(23, 57, 71, .66);
  line-height: 1.55;
}

.addon-product-card strong {
  color: rgba(25, 74, 79, .9);
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.download-frame {
  display: none;
}

.pricing-focus,
.account-card-grid,
.account-stat-grid {
  display: grid;
  gap: 14px;
}

.pricing-focus {
  grid-template-columns: 1.25fr .75fr;
}

.product-card {
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 18px;
  background: rgba(12, 43, 49, .22);
  box-shadow: 0 24px 70px rgba(5, 25, 30, .16);
  backdrop-filter: blur(18px);
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.product-card.featured {
  background:
    linear-gradient(135deg, rgba(154, 236, 206, .13), transparent 44%),
    rgba(12, 43, 49, .26);
}

.product-card span,
.account-card span,
.shop-support span,
.account-support span,
.license-box span,
.account-stat-grid span {
  color: rgba(154, 236, 206, .84);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-card h3,
.account-card h3 {
  margin: 12px 0 10px;
  color: rgba(248, 253, 251, .96);
  font-size: 32px;
  line-height: 1.04;
}

.product-card p {
  margin: 0;
  color: rgba(228, 245, 241, .76);
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 12px;
}

.price-row strong {
  color: rgba(248, 253, 251, .98);
  font-size: 56px;
  line-height: .9;
}

.price-row span {
  margin-bottom: 5px;
  color: rgba(228, 245, 241, .68);
  text-transform: none;
  letter-spacing: 0;
}

.primary-action,
.secondary-action,
.credit-pack-grid button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 246, 242, .3);
  border-radius: 999px;
  color: rgba(236, 255, 247, .94);
  font-weight: 760;
  background: rgba(5, 24, 30, .76);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.secondary-action {
  background: rgba(255, 255, 255, .055);
}

.pro-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 234, 128, .52);
  color: rgba(10, 35, 40, .94);
  background:
    linear-gradient(110deg, rgba(255, 226, 76, .96), rgba(255, 247, 163, .9) 38%, rgba(99, 221, 232, .88) 100%);
  box-shadow: none;
}

.pro-action::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -65%;
  width: 54%;
  opacity: .42;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  mix-blend-mode: soft-light;
  pointer-events: none;
  transform: skewX(-18deg);
  animation: proButtonShine 3.8s linear infinite;
}

.primary-action:hover,
.secondary-action:hover,
.credit-pack-grid button:hover {
  background: rgba(10, 42, 48, .92);
  transform: translateY(-1px);
}

.pro-action:hover {
  background:
    linear-gradient(110deg, rgba(255, 236, 90, 1), rgba(255, 250, 176, .96) 38%, rgba(110, 235, 242, .95) 100%);
}

@keyframes proButtonShine {
  0% {
    transform: translateX(0) skewX(-18deg);
  }
  48%,
  100% {
    transform: translateX(330%) skewX(-18deg);
  }
}

.compact-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.launch-grid article {
  min-height: 150px;
}

.launch-grid button {
  width: 100%;
  margin-top: 18px;
}

.shop-support,
.account-support {
  padding: 20px 22px;
}

.shop-support a,
.account-support a,
.text-link {
  color: rgba(248, 253, 251, .96);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-auth-panel,
.account-overview {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-dashboard {
  display: grid;
  gap: 14px;
}

.account-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.account-stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.account-stat-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(226, 250, 245, .18);
  border-radius: 18px;
  background: rgba(12, 43, 49, .22);
}

.account-stat-grid strong {
  display: block;
  margin: 14px 0 8px;
  color: rgba(248, 253, 251, .96);
  font-size: 40px;
  line-height: .95;
}

.account-stat-grid p {
  margin: 0;
  color: rgba(228, 245, 241, .68);
}

.account-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.account-card {
  min-height: 275px;
  padding: 24px;
}

.license-box,
.device-list div,
.inline-status {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(226, 250, 245, .14);
  border-radius: 14px;
  background: rgba(7, 28, 33, .18);
}

.license-box {
  display: grid;
  gap: 8px;
}

.license-box code {
  color: rgba(248, 253, 251, .86);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device-list div {
  display: grid;
  gap: 6px;
}

.device-list strong {
  color: rgba(248, 253, 251, .92);
}

.device-list span {
  color: rgba(228, 245, 241, .68);
  text-transform: none;
  letter-spacing: 0;
}

.inline-status {
  color: rgba(236, 255, 247, .88);
  line-height: 1.45;
}

.admin-shell {
  display: grid;
  gap: 16px;
}

.admin-dashboard {
  display: grid;
  gap: 16px;
}

.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-panel {
  padding: 24px;
  border: 1px solid rgba(226, 250, 245, .14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(19, 62, 68, .34), rgba(7, 28, 33, .18)),
    rgba(239, 249, 247, .06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.admin-panel-note {
  margin: 10px 0 0;
  color: rgba(228, 245, 241, .62);
  line-height: 1.55;
}

.limit-card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.limit-card {
  min-height: 240px;
  padding: 18px;
  border: 1px solid rgba(226, 250, 245, .12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(154, 236, 206, .12), transparent 32%),
    rgba(7, 28, 33, .22);
}

.limit-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.limit-card-top span {
  order: 2;
  padding: 5px 8px;
  border: 1px solid rgba(226, 250, 245, .14);
  border-radius: 999px;
  color: rgba(228, 245, 241, .64);
  font-size: 9px;
  font-weight: 840;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.limit-card h4 {
  margin: 0;
  color: rgba(248, 253, 251, .96);
  font-size: 24px;
  line-height: 1;
}

.limit-usage {
  margin-top: 22px;
}

.limit-usage strong {
  display: block;
  color: rgba(248, 253, 251, .96);
  font-size: 34px;
  line-height: .95;
}

.limit-usage span {
  display: block;
  margin-top: 8px;
  color: rgba(228, 245, 241, .56);
  font-size: 12px;
}

.limit-progress {
  height: 7px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 250, 245, .1);
}

.limit-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(154, 236, 206, .9), rgba(123, 232, 255, .9));
}

.limit-progress.is-empty span {
  background: transparent;
}

.limit-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.limit-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(226, 250, 245, .08);
  padding-bottom: 8px;
  color: rgba(228, 245, 241, .58);
  font-size: 12px;
}

.limit-card li strong {
  max-width: 58%;
  overflow-wrap: anywhere;
  color: rgba(236, 255, 247, .86);
  font-weight: 720;
  text-align: right;
}

.limit-card p {
  margin: 14px 0 0;
  color: rgba(228, 245, 241, .54);
  font-size: 12px;
  line-height: 1.45;
}

.limit-card.status-error {
  border-color: rgba(255, 126, 98, .28);
}

.limit-card.status-needs_token {
  border-color: rgba(255, 202, 85, .26);
}

.admin-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid rgba(226, 250, 245, .12);
  border-radius: 16px;
}

.admin-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(226, 250, 245, .1);
  text-align: left;
  vertical-align: top;
}

.admin-table-wrap th {
  color: rgba(228, 245, 241, .62);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(7, 28, 33, .2);
}

.admin-table-wrap td {
  color: rgba(236, 255, 247, .88);
}

.admin-table-wrap tr:last-child td {
  border-bottom: 0;
}

.admin-table-wrap strong {
  display: block;
  color: rgba(248, 253, 251, .96);
  font-weight: 760;
}

.admin-table-wrap span {
  display: block;
  margin-top: 4px;
  color: rgba(228, 245, 241, .58);
  font-size: 12px;
  line-height: 1.35;
}

.liquid-ripple-canvas {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
}

.liquid-lens {
  position: fixed;
  left: var(--x);
  top: var(--y);
  z-index: 79;
  width: var(--size);
  height: var(--size);
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.08) rotate(var(--turn));
  opacity: 0;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, .18), transparent 0 10%, rgba(123, 232, 255, .07) 20%, transparent 46%),
    radial-gradient(circle at 54% 52%, transparent 0 48%, rgba(255, 255, 255, .13) 52%, transparent 64%),
    conic-gradient(from 120deg, transparent, rgba(154, 236, 206, .06), transparent, rgba(123, 232, 255, .08), transparent);
  border: 1px solid rgba(236, 255, 247, .14);
  box-shadow:
    inset 10px 9px 18px rgba(255, 255, 255, .1),
    inset -16px -18px 28px rgba(31, 91, 105, .1),
    0 0 30px rgba(123, 232, 255, .09);
  backdrop-filter: blur(5.2px) saturate(1.28) contrast(1.06);
  -webkit-backdrop-filter: blur(5.2px) saturate(1.28) contrast(1.06);
  animation: liquidLensBloom 920ms cubic-bezier(.22, .74, .26, 1) forwards;
  overflow: hidden;
}

.liquid-lens::before,
.liquid-lens::after,
.liquid-distort-core {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: inherit;
  border: 1px solid rgba(236, 255, 247, .18);
  transform: rotate(18deg) scaleX(1.18);
}

.liquid-lens::after {
  inset: 32%;
  border-color: rgba(123, 232, 255, .16);
  transform: rotate(-28deg) scaleX(1.35);
}

.liquid-distort-core {
  inset: -14%;
  border: 0;
  opacity: .78;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, .16), transparent 0 13%, rgba(255, 255, 255, .045) 18%, transparent 38%),
    radial-gradient(circle at 62% 58%, rgba(123, 232, 255, .11), transparent 0 18%, rgba(154, 236, 206, .06) 30%, transparent 56%),
    conic-gradient(from 38deg, transparent, rgba(255, 255, 255, .08), transparent 24%, rgba(123, 232, 255, .09), transparent 58%, rgba(154, 236, 206, .07), transparent);
  filter: url("#liquidLensDisplace");
  mix-blend-mode: screen;
  transform: rotate(-10deg) scale(1.04);
  animation: liquidCoreDrift 920ms cubic-bezier(.22, .74, .26, 1) forwards;
}

@keyframes liquidLensBloom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.12) rotate(var(--turn));
    filter: blur(2px);
  }
  16% {
    opacity: .58;
    filter: blur(1.1px);
  }
  55% {
    opacity: .22;
    transform: translate(-50%, -50%) scale(.54) rotate(calc(var(--turn) + 8deg));
    filter: blur(1.8px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.72) rotate(calc(var(--turn) + 14deg));
    filter: blur(4.6px);
  }
}

@keyframes liquidCoreDrift {
  0% {
    opacity: .5;
    transform: rotate(-10deg) scale(.82) skew(0deg, 0deg);
  }
  52% {
    opacity: .24;
    transform: rotate(5deg) scale(.96) skew(2deg, -1.5deg);
  }
  100% {
    opacity: 0;
    transform: rotate(13deg) scale(1.08) skew(-2deg, 2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-enabled body,
  .page-transition-enabled body.page-ready,
  .page-transition-enabled body.page-leaving,
  main.page-soft-exit,
  main.page-soft-enter,
  main.page-soft-enter.page-soft-enter-active {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .soft-page-transition {
    display: none;
  }

  .liquid-ripple-canvas,
  .liquid-lens {
    display: none;
  }

  .showcase-link,
  .middle-showcase,
  .module-row article,
  .download-cta-card,
  .download-cta-card a,
  .download-cta-card button {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 960px) {
  .nav {
    justify-content: flex-start;
    gap: clamp(18px, 5vw, 44px);
    padding-left: 18px;
  }

  .nav-account-name {
    max-width: 96px;
  }

  .hero {
    min-height: 620px;
  }

  .panel-a,
  .panel-c {
    opacity: .36;
  }

  .tools-panel,
  .sliders-panel {
    display: none;
  }

  .main-product-panel {
    width: min(640px, 94vw);
  }

  .intro-copy,
  .feature-block,
  .split-story,
  .module-row,
  .pricing-focus,
  .account-card-grid,
  .account-stat-grid,
  .credit-pack-grid,
  .store-product-grid,
  .addon-product-grid,
  .placeholder-hero,
  .placeholder-grid,
  .ekflow-detail-hero,
  .ekflow-media-row,
  .ekflow-feature-panel,
  .related-module-panel,
  .download-cards {
    grid-template-columns: 1fr;
  }

  .related-module-grid {
    grid-template-columns: 1fr;
  }

  .ekflow-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-compare-grid {
    grid-template-columns: 1fr;
  }

  .ekflow-video-panel {
    justify-self: stretch;
    width: 100%;
  }

  .placeholder-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .account-auth-panel,
  .account-overview {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-filter-dropdown summary {
    width: 100%;
  }

  .account-dashboard-preview,
  .account-summary,
  .limit-card-grid {
    grid-template-columns: 1fr;
  }

  .account-actions {
    justify-content: start;
  }

  .floating-product {
    min-height: 0;
  }

  .download-table article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-table article div {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav {
    height: 52px;
    gap: clamp(14px, 4vw, 26px);
    padding-left: 10px;
  }

  .nav a {
    height: 52px;
    font-size: 12px;
    min-width: auto;
  }

  .nav .nav-account a {
    height: auto;
  }

  .nav-account {
    right: 8px;
    gap: 5px;
  }

  .nav-account-summary {
    min-height: 32px;
    padding: 0 8px;
  }

  .nav-account-name {
    display: none;
  }

  .nav-account-credits {
    font-size: 10px;
  }

  .nav-credit-add {
    width: 30px;
    min-height: 30px;
    font-size: 18px;
  }

  .hero {
    min-height: 560px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-bg {
    top: 0;
  }

  h1 {
    font-size: clamp(86px, 28vw, 150px);
  }

  .hero-line {
    font-size: 14px;
  }

  .product-switcher {
    margin-bottom: 30px;
    gap: 12px;
  }

  .product-switcher a {
    min-width: 92px;
    padding: 8px 12px 12px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .intro-section,
  .long-middle,
  .downloads {
    padding-left: 16px;
    padding-right: 16px;
  }

  .middle-showcase {
    border-radius: 16px;
  }

  .knob-row {
    padding-left: 16px;
    padding-right: 16px;
  }

  .download-layout {
    padding: 18px;
  }

  .shop-browser,
  .credit-store,
  .account-dashboard-preview {
    padding: 18px;
  }

  .shop-product-grid,
  .ekflow-showcase-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-card {
    border-radius: 18px;
  }

  .shop-product-meta-row {
    flex-direction: column;
  }

  .shop-product-side-meta {
    justify-items: start;
  }

  .ekflow-detail-copy h1 {
    font-size: clamp(72px, 24vw, 118px);
  }

  .ekflow-action-row,
  .ekflow-action-row > div,
  .ekflow-action-row .primary-action,
  .ekflow-action-row .secondary-action {
    width: 100%;
  }

  .ekflow-action-card + .ekflow-action-card {
    margin-left: 0;
  }

  .security-strip,
  .account-actions,
  .account-toolbar {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }

  .product-card,
  .account-card,
  .shop-lead,
  .account-auth-panel,
  .account-overview {
    padding: 20px;
  }

  .price-row strong {
    font-size: 46px;
  }
}

