:root {
  --night-1000: #05091d;
  --night-950: #070c24;
  --night-900: #0b1230;
  --night-850: #111936;
  --night-800: #151e3f;
  --blue-600: #394d8e;
  --violet-500: #6a6df0;
  --violet-400: #8387ff;
  --violet-300: #a6a8ff;
  --silver: #a7adb8;
  --text-primary: #f7f8ff;
  --text-secondary: #cbd0e2;
  --text-muted: #8f97b2;
  --green: #63d691;
  --line: rgba(177, 185, 255, 0.14);
  --line-strong: rgba(177, 185, 255, 0.28);
  --surface: rgba(12, 19, 48, 0.72);
  --surface-strong: rgba(13, 21, 52, 0.92);
  --shadow-xl: 0 44px 110px rgba(0, 0, 0, 0.52);
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content: 1280px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-primary);
  background: var(--night-1000);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 48% -10%, rgba(106, 109, 240, 0.16), transparent 34rem),
    linear-gradient(180deg, #080d25 0%, var(--night-1000) 38%, #070b1f 100%);
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  pointer-events: none;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
}

.ambient__glow--one {
  top: 3%;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.24), transparent 68%);
}

.ambient__glow--two {
  top: 55%;
  left: -18rem;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(circle, rgba(57, 77, 142, 0.2), transparent 68%);
}

.ambient__stars {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(131, 135, 255, 0.52) 0 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 0.7px, transparent 1px);
  background-position: 12px 10px, 58px 73px, 100px 36px;
  background-size: 148px 148px, 192px 192px, 118px 118px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.9) 38%, transparent 96%);
}

.section-shell {
  width: min(calc(100% - 44px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: transform 220ms ease, top 220ms ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 44px), var(--content));
  min-height: 72px;
  margin-inline: auto;
  padding: 10px 12px 10px 15px;
  border: 1px solid rgba(177, 185, 255, 0.13);
  border-radius: 22px;
  background: rgba(7, 12, 36, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(130%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled { top: 8px; }
.site-header.is-scrolled .site-header__inner {
  border-color: rgba(177, 185, 255, 0.2);
  background: rgba(7, 12, 36, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 16px rgba(106, 109, 240, 0.3));
}

.brand__copy { display: grid; gap: 1px; }
.brand__copy strong { font-size: 0.98rem; letter-spacing: 0.01em; }
.brand__copy small {
  color: var(--text-muted);
  font-size: 0.69rem;
  letter-spacing: 0.055em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(106, 109, 240, 0.11);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(99, 214, 145, 0.22);
  border-radius: 13px;
  color: #d9f8e5;
  background: rgba(65, 166, 108, 0.08);
  font-size: 0.77rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.availability__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(99, 214, 145, 0.08), 0 0 18px rgba(99, 214, 145, 0.55);
}

.availability__dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(99, 214, 145, 0.45);
  border-radius: 50%;
  content: "";
  animation: availability-pulse 2.4s ease-out infinite;
}

@keyframes availability-pulse {
  0% { opacity: 0.8; transform: scale(0.5); }
  75%, 100% { opacity: 0; transform: scale(1.4); }
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(106, 109, 240, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(166, 168, 255, 0.3); outline-offset: 3px; }
.button--small { min-height: 40px; padding: 0 14px; border-radius: 12px; font-size: 0.79rem; }
.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #7679ff, #5a5ee8 58%, #4d55c7);
  box-shadow: 0 16px 38px rgba(81, 84, 220, 0.32), inset 0 1px rgba(255, 255, 255, 0.18);
}
.button--primary:hover { box-shadow: 0 20px 48px rgba(81, 84, 220, 0.43), inset 0 1px rgba(255, 255, 255, 0.2); }
.button--ghost {
  color: var(--text-primary);
  border-color: rgba(177, 185, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}
.button--ghost:hover { border-color: rgba(177, 185, 255, 0.34); background: rgba(106, 109, 240, 0.08); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.text-link:hover { color: #fff; transform: translateX(2px); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet-300);
  font-size: 0.73rem;
  font-weight: 830;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(600px, 1.22fr);
  align-items: center;
  min-height: 100svh;
  padding-top: 126px;
  padding-bottom: 74px;
}

.hero__copy {
  position: relative;
  z-index: 6;
  max-width: 610px;
  padding: 42px 0 72px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 6.55rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1::after {
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 30px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--violet-400), rgba(106, 109, 240, 0));
  box-shadow: 0 0 18px rgba(131, 135, 255, 0.5);
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #dde1ef;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.58;
}

.hero__support {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 23px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.hero__links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 180ms ease;
}
.hero__links a:hover { color: #fff; }

.studio-scene {
  position: relative;
  z-index: 2;
  width: min(64vw, 920px);
  height: min(72vw, 810px);
  justify-self: end;
  perspective: 1800px;
  isolation: isolate;
}

.studio-scene__halo {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.3), rgba(57, 77, 142, 0.11) 35%, transparent 70%);
  filter: blur(16px);
  transform: translate(-50%, -50%);
}

.studio-scene__orbit {
  position: absolute;
  top: 17%;
  left: 21%;
  border: 1px solid rgba(150, 157, 255, 0.11);
  border-radius: 50%;
  transform: rotate(-17deg);
}
.studio-scene__orbit--one { width: 59%; height: 48%; }
.studio-scene__orbit--two { top: 23%; left: 30%; width: 43%; height: 36%; transform: rotate(18deg); }

.brand-moon,
.scene-window,
.scene-fragment,
.scene-chip {
  position: absolute;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.brand-moon {
  top: 3%;
  left: 12%;
  z-index: 1;
  width: 25%;
  aspect-ratio: 1;
  opacity: 0.92;
}
.brand-moon img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 0 28px rgba(106, 109, 240, 0.4)); }
.brand-moon__glow {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: rgba(106, 109, 240, 0.24);
  filter: blur(24px);
}
.brand-moon__circuit {
  position: absolute;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(131, 135, 255, 0.8), transparent);
  box-shadow: 0 0 8px rgba(131, 135, 255, 0.5);
}
.brand-moon__circuit::before,
.brand-moon__circuit::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--violet-300);
  box-shadow: 0 0 12px rgba(166, 168, 255, 0.8);
  transform: translateY(-50%);
}
.brand-moon__circuit::before { left: 0; }
.brand-moon__circuit::after { right: 0; }
.brand-moon__circuit--one { top: 47%; left: 73%; width: 90%; transform: rotate(8deg); }
.brand-moon__circuit--two { top: 72%; left: 62%; width: 68%; transform: rotate(27deg); }

.scene-window,
.scene-fragment {
  margin: 0;
  border: 1px solid rgba(177, 185, 255, 0.18);
  overflow: hidden;
  background: #0b1230;
  box-shadow: var(--shadow-xl);
}
.scene-window img,
.scene-fragment img { width: 100%; height: 100%; object-fit: cover; }

.scene-window--organizer {
  top: 25%;
  right: -4%;
  z-index: 5;
  width: 78%;
  aspect-ratio: 1.35;
  border-radius: 20px;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(-1deg);
}
.scene-window--organizer::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}
.scene-window--organizer figcaption {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  gap: 1px;
  padding: 8px 11px;
  border: 1px solid rgba(177, 185, 255, 0.16);
  border-radius: 11px;
  background: rgba(7, 12, 36, 0.78);
  backdrop-filter: blur(14px);
}
.scene-window--organizer figcaption strong { font-size: 0.72rem; }
.scene-window--organizer figcaption span { color: var(--text-muted); font-size: 0.56rem; }

.scene-window--kanban {
  top: 17%;
  right: 5%;
  z-index: 2;
  width: 70%;
  aspect-ratio: 2.4;
  border-radius: 16px;
  opacity: 0.68;
  transform: rotateY(-8deg) rotateZ(4deg) translateY(-10px);
  filter: saturate(0.78) brightness(0.74);
}

.scene-window--easy-test {
  top: 7%;
  right: -1%;
  z-index: 4;
  width: 43%;
  aspect-ratio: 2.5;
  border-radius: 16px;
  transform: rotateY(-7deg) rotateZ(4deg);
}
.scene-window--easy-test figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(177, 185, 255, 0.17);
  border-radius: 11px;
  background: rgba(7, 12, 36, 0.84);
  backdrop-filter: blur(12px);
}
.scene-window--easy-test figcaption img { width: 29px; height: 29px; border-radius: 8px; }
.scene-window--easy-test figcaption span { display: grid; }
.scene-window--easy-test figcaption strong { font-size: 0.64rem; }
.scene-window--easy-test figcaption small { color: var(--text-muted); font-size: 0.5rem; }

.scene-fragment--note {
  bottom: 8%;
  left: 8%;
  z-index: 7;
  width: 32%;
  aspect-ratio: 1.35;
  border-radius: 17px;
  transform: rotateY(6deg) rotateZ(-5deg);
}

.scene-chip {
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(177, 185, 255, 0.2);
  border-radius: 14px;
  background: rgba(12, 19, 48, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.scene-chip span:not(.scene-chip__mark):not(.scene-chip__pulse) { display: grid; gap: 1px; }
.scene-chip strong { font-size: 0.69rem; }
.scene-chip small { color: var(--text-muted); font-size: 0.55rem; }
.scene-chip__mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #7377ff, #4f56d0);
  box-shadow: 0 8px 18px rgba(81, 84, 220, 0.28);
}
.scene-chip__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(99, 214, 145, 0.7);
}
.scene-chip--task { right: -2%; bottom: 20%; }
.scene-chip--release { top: 44%; left: 0; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-scroll i { position: relative; display: block; width: 38px; height: 1px; background: rgba(177, 185, 255, 0.32); }
.hero-scroll i::after { position: absolute; top: -2px; right: 0; width: 5px; height: 5px; border-right: 1px solid rgba(177, 185, 255, 0.6); border-bottom: 1px solid rgba(177, 185, 255, 0.6); content: ""; transform: rotate(-45deg); }

.products { padding-top: 110px; padding-bottom: 70px; }
.section-heading { max-width: 760px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2,
.approach__intro h2,
.about__copy h2,
.journal__copy h2,
.contacts__copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  font-weight: 830;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}
.section-heading > p:last-child,
.approach__intro > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--text-secondary);
  font-size: 1.06rem;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(550px, 1.24fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  min-height: 760px;
  margin-top: 78px;
  padding: clamp(42px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, rgba(106, 109, 240, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(17, 25, 54, 0.9), rgba(8, 13, 36, 0.82));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025), 0 35px 100px rgba(0, 0, 0, 0.24);
}
.product-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(166, 168, 255, 0.34) 0 1px, transparent 1.2px);
  background-position: 0 0;
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 52%, transparent);
}

.product-stage__copy { position: relative; z-index: 4; }
.product-stage__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.product-stage__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(177, 185, 255, 0.16);
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  font-weight: 750;
}
.product-stage__meta .status-pill--free { color: #dff9e9; border-color: rgba(99, 214, 145, 0.22); background: rgba(99, 214, 145, 0.07); }
.product-stage__eyebrow { margin: 0 0 12px; color: var(--violet-300); font-size: 0.78rem; font-weight: 790; }
.product-stage h3 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.2rem); font-weight: 830; letter-spacing: -0.055em; line-height: 1.02; text-wrap: balance; }
.product-stage__lead { margin: 24px 0 0; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.72; }
.product-stage__points { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin-top: 25px; }
.product-stage__points span { position: relative; padding-left: 19px; color: #dbe0ef; font-size: 0.86rem; }
.product-stage__points span::before { position: absolute; top: 0.65em; left: 0; width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--violet-400); box-shadow: 0 0 12px rgba(131, 135, 255, 0.55); transform: translateY(-50%); }
.product-stage__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 31px; }

.organizer-showcase {
  position: relative;
  z-index: 3;
  min-height: 590px;
  perspective: 1700px;
}
.organizer-showcase__glow {
  position: absolute;
  top: 48%;
  left: 54%;
  width: 92%;
  aspect-ratio: 1.35;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.34), transparent 67%);
  filter: blur(22px);
  transform: translate(-50%, -50%);
}
.organizer-showcase figure { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(177, 185, 255, 0.16); background: var(--night-900); box-shadow: var(--shadow-xl); }
.organizer-showcase figure img { width: 100%; height: 100%; object-fit: cover; }
.organizer-showcase__dashboard { right: -6%; bottom: 0; z-index: 4; width: 88%; aspect-ratio: 1.35; border-radius: 20px; transform: rotateY(-7deg) rotateX(3deg) rotateZ(1deg); }
.organizer-showcase__kanban { top: 3%; right: 2%; z-index: 2; width: 82%; aspect-ratio: 2.4; border-radius: 17px; opacity: 0.78; transform: rotateY(-7deg) rotateZ(-4deg); filter: brightness(0.8) saturate(0.84); }
.organizer-showcase__note { left: -2%; bottom: 8%; z-index: 6; width: 39%; aspect-ratio: 1.35; border-radius: 18px; transform: rotateY(8deg) rotateZ(-5deg); }

.product-stage--easy-test {
  grid-template-columns: minmax(550px, 1.2fr) minmax(320px, 0.8fr);
  margin-top: 34px;
  background:
    radial-gradient(circle at 22% 50%, rgba(113, 93, 241, 0.19), transparent 30rem),
    linear-gradient(135deg, rgba(14, 19, 47, 0.9), rgba(9, 13, 34, 0.84));
}
.product-stage__points--compact { grid-template-columns: 1fr; }

.easy-test-showcase { position: relative; z-index: 3; min-height: 500px; perspective: 1600px; }
.easy-test-showcase__glow { position: absolute; top: 48%; left: 43%; width: 88%; aspect-ratio: 1.4; border-radius: 50%; background: radial-gradient(circle, rgba(123, 102, 246, 0.31), transparent 68%); filter: blur(24px); transform: translate(-50%, -50%); }
.easy-test-showcase__browser { position: absolute; top: 13%; left: -7%; z-index: 3; width: 102%; margin: 0; overflow: hidden; border: 1px solid rgba(177, 185, 255, 0.18); border-radius: 22px; background: var(--night-900); box-shadow: var(--shadow-xl); transform: rotateY(6deg) rotateX(2deg) rotateZ(-1deg); }
.easy-test-showcase__browser img { width: 100%; }
.easy-test-showcase__icon { position: absolute; right: 1%; bottom: 7%; z-index: 5; display: grid; width: 106px; height: 106px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 30px; background: rgba(14, 18, 51, 0.88); box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), 0 0 42px rgba(106, 109, 240, 0.18); backdrop-filter: blur(18px); transform: rotate(7deg); }
.easy-test-showcase__icon img { width: 74px; height: 74px; border-radius: 18px; }
.easy-test-showcase__answer { position: absolute; left: 4%; bottom: 2%; z-index: 5; display: grid; gap: 2px; min-width: 200px; padding: 13px 16px; border: 1px solid rgba(177, 185, 255, 0.18); border-radius: 15px; background: rgba(12, 18, 47, 0.88); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34); backdrop-filter: blur(16px); }
.easy-test-showcase__answer span { color: #b7bdf1; font-size: 0.67rem; font-weight: 750; }
.easy-test-showcase__answer strong { font-size: 0.83rem; }

.approach { padding-top: 130px; padding-bottom: 76px; }
.approach__intro { max-width: 830px; }
.approach__intro > p:last-child { margin-left: 0; }
.approach-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 58px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.approach-track article { position: relative; min-height: 260px; padding: 31px 26px; background: linear-gradient(160deg, rgba(18, 27, 59, 0.94), rgba(9, 14, 36, 0.94)); }
.approach-track article::after { position: absolute; right: 0; bottom: 0; width: 110px; height: 110px; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(106, 109, 240, 0.12), transparent 70%); transform: translate(34%, 34%); }
.approach-track span { color: var(--violet-300); font-size: 0.72rem; font-weight: 820; letter-spacing: 0.12em; }
.approach-track h3 { margin: 68px 0 12px; font-size: 1.33rem; letter-spacing: -0.025em; }
.approach-track p { margin: 0; color: var(--text-muted); font-size: 0.87rem; }
.approach-note { display: flex; align-items: center; gap: 24px; max-width: 950px; margin: 28px auto 0; padding: 22px 26px; border: 1px solid rgba(177, 185, 255, 0.13); border-radius: 20px; background: rgba(106, 109, 240, 0.055); }
.approach-note__mark { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(177, 185, 255, 0.18); border-radius: 15px; color: #fff; background: linear-gradient(135deg, rgba(131, 135, 255, 0.32), rgba(57, 77, 142, 0.26)); font-weight: 850; }
.approach-note p { margin: 0; color: var(--text-secondary); }

.about { padding-top: 94px; padding-bottom: 74px; }
.about__panel { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr); gap: 68px; padding: clamp(40px, 6vw, 72px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: radial-gradient(circle at 80% 10%, rgba(106, 109, 240, 0.13), transparent 25rem), rgba(11, 18, 48, 0.58); box-shadow: inset 0 1px rgba(255, 255, 255, 0.025); }
.about__copy p:not(.eyebrow) { max-width: 690px; margin: 22px 0 0; color: var(--text-secondary); font-size: 1rem; }
.about__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: center; }
.about__facts article { display: grid; gap: 5px; min-height: 146px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, 0.025); }
.about__facts strong { font-size: clamp(1.45rem, 2.4vw, 2.25rem); letter-spacing: -0.04em; }
.about__facts span { color: var(--text-muted); font-size: 0.8rem; }

.journal { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; margin-top: 46px; margin-bottom: 78px; padding: 34px 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(110deg, rgba(22, 31, 68, 0.82), rgba(10, 15, 38, 0.88)); }
.journal__glow { position: absolute; top: 50%; left: 10%; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(106, 109, 240, 0.2), transparent 68%); filter: blur(12px); transform: translate(-50%, -50%); }
.journal__mark { position: relative; z-index: 2; display: grid; width: 116px; height: 116px; place-items: center; }
.journal__mark img { width: 106px; filter: drop-shadow(0 0 24px rgba(106, 109, 240, 0.28)); }
.journal__copy { position: relative; z-index: 2; }
.journal__copy .eyebrow { margin-bottom: 10px; }
.journal__copy h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
.journal__copy p:last-child { max-width: 720px; margin: 13px 0 0; color: var(--text-secondary); }
.journal > .button { position: relative; z-index: 2; white-space: nowrap; }

.contacts { padding-top: 70px; padding-bottom: 74px; }
.contacts__panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr); gap: 74px; padding: clamp(40px, 6vw, 72px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: radial-gradient(circle at 5% 90%, rgba(57, 77, 142, 0.16), transparent 28rem), linear-gradient(135deg, rgba(17, 25, 54, 0.93), rgba(8, 13, 34, 0.92)); }
.contacts__copy p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: var(--text-secondary); }
.contacts__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.contacts__links { display: grid; gap: 10px; align-content: center; }
.contacts__links a { position: relative; display: grid; gap: 3px; min-height: 96px; padding: 20px 48px 20px 21px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.025); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.contacts__links a:hover { transform: translateX(4px); border-color: rgba(177, 185, 255, 0.3); background: rgba(106, 109, 240, 0.06); }
.contacts__links span { color: var(--text-muted); font-size: 0.7rem; font-weight: 720; }
.contacts__links strong { font-size: 0.95rem; }
.contacts__links i { position: absolute; top: 50%; right: 20px; color: var(--violet-300); font-style: normal; transform: translateY(-50%); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding-top: 28px; padding-bottom: 40px; border-top: 1px solid rgba(177, 185, 255, 0.1); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand span { display: grid; gap: 1px; }
.footer-brand strong { font-size: 0.88rem; }
.footer-brand small { color: var(--text-muted); font-size: 0.65rem; }
.site-footer__copy { display: flex; flex-wrap: wrap; justify-content: end; gap: 18px; color: var(--text-muted); font-size: 0.74rem; }
.site-footer__copy a { color: var(--text-secondary); text-decoration: none; }
.site-footer__copy a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 760ms cubic-bezier(.2,.75,.2,1), transform 760ms cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--early { transition-delay: 80ms; }
.reveal--scene { transition-delay: 180ms; transform: translateY(36px) scale(0.98); }
.reveal--scene.is-visible { transform: translateY(0) scale(1); }

@media (max-width: 1180px) {
  .site-nav { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .hero { grid-template-columns: minmax(320px, 0.84fr) minmax(470px, 1.16fr); }
  .studio-scene { width: min(62vw, 760px); height: min(72vw, 700px); }
  .hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
  .product-stage { grid-template-columns: minmax(300px, 0.82fr) minmax(470px, 1.18fr); padding: 48px 42px; }
  .product-stage--easy-test { grid-template-columns: minmax(470px, 1.1fr) minmax(300px, 0.9fr); }
  .organizer-showcase { min-height: 520px; }
}

@media (max-width: 960px) {
  :root { --header-height: 76px; }
  .section-shell, .site-header__inner { width: min(calc(100% - 30px), var(--content)); }
  .site-header { top: 10px; }
  .site-header__inner { min-height: 64px; }
  .brand { min-width: 0; }
  .brand__copy small { display: none; }
  .header-actions .availability { display: none; }
  .menu-button { display: block; justify-self: end; }
  .header-actions { grid-column: 2; grid-row: 1; justify-self: end; margin-right: 54px; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 12, 36, 0.97);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 13px 14px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 132px; padding-bottom: 90px; }
  .hero__copy { max-width: 760px; padding-bottom: 15px; }
  .hero h1 { max-width: 820px; font-size: clamp(3.4rem, 10vw, 6.6rem); }
  .studio-scene { width: 100%; height: min(87vw, 760px); justify-self: center; margin-top: -10px; }
  .scene-window--organizer { right: 1%; width: 76%; }
  .hero-scroll { bottom: 20px; }

  .product-stage,
  .product-stage--easy-test { grid-template-columns: 1fr; min-height: 0; }
  .product-stage--easy-test .easy-test-showcase { order: 2; }
  .product-stage--easy-test .product-stage__copy { order: 1; }
  .organizer-showcase { min-height: 620px; margin-top: 16px; }
  .easy-test-showcase { min-height: 480px; }
  .approach-track { grid-template-columns: 1fr 1fr; }
  .about__panel, .contacts__panel { grid-template-columns: 1fr; }
  .journal { grid-template-columns: auto 1fr; }
  .journal > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 680px) {
  .section-shell, .site-header__inner { width: min(calc(100% - 22px), var(--content)); }
  .site-header__inner { padding-left: 10px; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__copy strong { font-size: 0.87rem; }
  .header-actions .button { display: none; }
  .header-actions { margin-right: 50px; }

  .hero { padding-top: 112px; padding-bottom: 70px; }
  .hero__copy { padding-top: 24px; }
  .eyebrow { margin-bottom: 13px; font-size: 0.64rem; letter-spacing: 0.13em; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); line-height: 0.96; }
  .hero h1::after { width: 84px; margin-top: 22px; }
  .hero__lead { margin-top: 22px; font-size: 1.03rem; }
  .hero__support { font-size: 0.86rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__links { gap: 7px; font-size: 0.77rem; }

  .studio-scene { height: 108vw; min-height: 390px; max-height: 610px; margin-top: 10px; }
  .brand-moon { top: 1%; left: 2%; width: 28%; }
  .brand-moon__circuit { display: none; }
  .scene-window--organizer { top: 28%; right: -6%; width: 94%; border-radius: 13px; transform: rotateZ(0); }
  .scene-window--kanban { top: 17%; right: -2%; width: 84%; border-radius: 11px; }
  .scene-window--easy-test { top: 5%; right: 0; width: 58%; border-radius: 11px; }
  .scene-window--easy-test figcaption { display: none; }
  .scene-fragment--note { bottom: 2%; left: -2%; width: 42%; border-radius: 12px; transform: rotate(-4deg); }
  .scene-chip--task { right: -2%; bottom: 14%; }
  .scene-chip--release { display: none; }
  .scene-chip { padding: 8px 9px; }
  .scene-chip__mark { width: 24px; height: 24px; }
  .scene-chip strong { font-size: 0.58rem; }
  .scene-chip small { font-size: 0.47rem; }
  .hero-scroll { display: none; }

  .products { padding-top: 74px; }
  .section-heading h2, .approach__intro h2, .about__copy h2, .contacts__copy h2 { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .section-heading > p:last-child, .approach__intro > p:last-child { font-size: 0.93rem; }
  .product-stage { margin-top: 45px; padding: 30px 20px; border-radius: 25px; }
  .product-stage h3 { font-size: clamp(2rem, 10vw, 3.3rem); }
  .product-stage__lead { font-size: 0.93rem; }
  .product-stage__points { grid-template-columns: 1fr; }
  .product-stage__actions { align-items: stretch; }
  .product-stage__actions .button { width: 100%; }
  .product-stage__actions .text-link { justify-content: center; }
  .organizer-showcase { min-height: 105vw; max-height: 520px; }
  .organizer-showcase__dashboard { right: -14%; width: 106%; border-radius: 13px; transform: none; }
  .organizer-showcase__kanban { top: 4%; right: -8%; width: 96%; border-radius: 11px; transform: rotate(-3deg); }
  .organizer-showcase__note { left: -5%; bottom: 1%; width: 46%; border-radius: 12px; }
  .easy-test-showcase { min-height: 74vw; max-height: 420px; }
  .easy-test-showcase__browser { left: -10%; width: 116%; border-radius: 13px; transform: none; }
  .easy-test-showcase__icon { right: -3%; bottom: 0; width: 78px; height: 78px; border-radius: 22px; }
  .easy-test-showcase__icon img { width: 56px; height: 56px; }
  .easy-test-showcase__answer { left: 0; bottom: -1%; min-width: 170px; padding: 10px 12px; }

  .approach { padding-top: 86px; }
  .approach-track { grid-template-columns: 1fr; }
  .approach-track article { min-height: 190px; }
  .approach-track h3 { margin-top: 42px; }
  .approach-note { align-items: flex-start; padding: 18px; }
  .approach-note__mark { width: 44px; height: 44px; }
  .approach-note p { font-size: 0.86rem; }

  .about, .contacts { padding-top: 60px; }
  .about__panel, .contacts__panel { gap: 38px; padding: 30px 20px; border-radius: 25px; }
  .about__copy p:not(.eyebrow), .contacts__copy p:not(.eyebrow) { font-size: 0.9rem; }
  .about__facts { grid-template-columns: 1fr 1fr; gap: 8px; }
  .about__facts article { min-height: 120px; padding: 17px; border-radius: 16px; }
  .about__facts span { font-size: 0.7rem; }

  .journal { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px; text-align: left; }
  .journal__mark { width: 80px; height: 80px; }
  .journal__mark img { width: 78px; }
  .journal > .button { grid-column: 1; justify-self: stretch; }
  .journal__copy h2 { font-size: 2rem; }
  .journal__copy p:last-child { font-size: 0.87rem; }

  .contacts__actions { display: grid; }
  .contacts__actions .button { width: 100%; }
  .contacts__links a { min-height: 88px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer__copy { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .brand-moon, .scene-window, .scene-fragment, .scene-chip { transform: none !important; }
}

/* Pajama Tech homepage v2.1 */
.hero--v21 {
  display: block;
  min-height: 1040px;
  padding-top: 118px;
  padding-bottom: 100px;
  isolation: isolate;
}

.hero-brand-intro {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  min-height: 230px;
  padding-top: 20px;
  text-align: center;
  animation: hero-brand-enter 1150ms cubic-bezier(.16,.78,.23,1) both;
}

.hero-brand-intro__mark {
  position: relative;
  z-index: 2;
  width: clamp(150px, 15vw, 230px);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(106, 109, 240, 0.52));
}

.hero-brand-intro__glow {
  position: absolute;
  top: 2%;
  left: 50%;
  width: clamp(300px, 36vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.3), rgba(57, 77, 142, 0.12) 38%, transparent 70%);
  filter: blur(18px);
  transform: translateX(-50%);
}

.hero-brand-intro__tagline {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: var(--violet-300);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.studio-scene--v21 {
  z-index: 4;
  width: min(78vw, 1080px);
  height: min(55vw, 690px);
  margin: -44px auto 0;
  animation: hero-scene-enter 1000ms 520ms cubic-bezier(.16,.78,.23,1) both;
}

.studio-scene--v21 .brand-moon--backdrop {
  top: 4%;
  left: 50%;
  z-index: 0;
  width: 43%;
  opacity: 0.42;
  transform: translateX(-50%);
  filter: saturate(0.82);
}

.studio-scene--v21 .brand-moon__glow {
  inset: -5%;
  background: rgba(106, 109, 240, 0.2);
  filter: blur(38px);
}

.studio-scene--v21 .scene-window--organizer {
  top: 25%;
  right: 1%;
  width: 72%;
}

.studio-scene--v21 .scene-window--kanban {
  top: 17%;
  right: 13%;
  width: 64%;
}

.studio-scene--v21 .scene-window--easy-test {
  top: 8%;
  right: 0;
  width: 39%;
}

.studio-scene--v21 .scene-fragment--note {
  bottom: 3%;
  left: 7%;
  width: 29%;
}

.studio-scene--v21 .scene-chip--task {
  right: -1%;
  bottom: 17%;
}

.hero__copy--v21 {
  position: absolute;
  bottom: 76px;
  left: 0;
  z-index: 9;
  max-width: 560px;
  padding: 24px 28px 22px 0;
  background: linear-gradient(90deg, rgba(5, 9, 29, 0.96) 0%, rgba(5, 9, 29, 0.77) 62%, transparent 100%);
  animation: hero-copy-enter 850ms 1050ms cubic-bezier(.16,.78,.23,1) both;
}

.hero__microcopy {
  margin: 0 0 13px;
  color: var(--violet-300);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero--v21 h1 {
  max-width: 550px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.96;
}

.hero--v21 h1::after {
  width: 90px;
  margin-top: 22px;
}

.hero--v21 .hero__lead {
  max-width: 520px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.58;
}

.hero--v21 .hero__actions { margin-top: 26px; }
.hero--v21 .hero__links { margin-top: 18px; }

.release-ready {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  margin-top: -32px;
  padding: 18px 24px;
  border: 1px solid rgba(99, 214, 145, 0.2);
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(22, 49, 50, 0.54), rgba(10, 18, 40, 0.9) 55%);
  box-shadow: 0 22px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}

.release-ready__signal {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(99, 214, 145, 0.24);
  border-radius: 14px;
  background: rgba(99, 214, 145, 0.075);
}

.release-ready__signal span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(99, 214, 145, 0.9);
  animation: release-pulse 2.2s ease-in-out infinite;
}

.release-ready__copy { display: grid; gap: 2px; }
.release-ready__copy small { color: var(--green); font-size: .68rem; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.release-ready__copy strong { font-size: 1rem; }
.release-ready > a { color: #dff9e9; font-size: .82rem; font-weight: 760; text-decoration: none; white-space: nowrap; }

@keyframes hero-brand-enter {
  from { opacity: 0; transform: translateY(54px) scale(.78); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes hero-scene-enter {
  from { opacity: 0; transform: translateY(46px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes release-pulse {
  0%, 100% { transform: scale(.92); box-shadow: 0 0 14px rgba(99, 214, 145, .55); }
  50% { transform: scale(1.12); box-shadow: 0 0 28px rgba(99, 214, 145, 1); }
}

.products { padding-top: 92px; }
.section-heading h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
.product-stage h3 { font-size: clamp(2.15rem, 3.4vw, 3.45rem); line-height: 1.04; }

.easy-test-showcase__browser {
  left: 1%;
  width: 88%;
  aspect-ratio: 1.6;
  transform: rotateY(6deg) rotateZ(-1.5deg);
}
.easy-test-showcase__browser img { object-fit: cover; object-position: center; }
.easy-test-showcase__icon { right: 0; bottom: 7%; }
.easy-test-showcase__answer { left: 3%; bottom: 5%; }

.about__panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .7fr);
  align-items: center;
}
.about__copy h2 { max-width: 650px; font-size: clamp(2.45rem, 4vw, 4.15rem); line-height: 1.02; }
.about__lead { color: #edf0fb !important; font-size: 1.12rem !important; font-weight: 650; }
.about__facts { grid-template-columns: 1fr; gap: 10px; }
.about__facts article {
  display: grid;
  grid-template-columns: minmax(125px, .55fr) 1fr;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 20px 22px;
}
.about__facts strong { font-size: clamp(1.5rem, 2vw, 2rem); }
.about__facts span { font-size: .82rem; }
.about__solo {
  margin: 8px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(177,185,255,.12);
  border-radius: 16px;
  color: var(--text-muted);
  background: rgba(106,109,240,.045);
  font-size: .78rem;
  text-align: center;
}
.about__solo span { color: var(--violet-300); font-weight: 800; }

@media (max-width: 1180px) {
  .hero--v21 { min-height: 980px; }
  .studio-scene--v21 { width: min(88vw, 970px); height: min(60vw, 650px); }
}

@media (max-width: 960px) {
  .hero--v21 { min-height: auto; padding-top: 116px; padding-bottom: 70px; }
  .hero-brand-intro { min-height: 190px; padding-top: 0; }
  .studio-scene--v21 { width: 100%; height: min(73vw, 690px); margin-top: -34px; }
  .hero__copy--v21 {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 720px;
    margin-top: -28px;
    padding: 26px 0 0;
    background: none;
  }
  .hero--v21 h1 { max-width: 680px; font-size: clamp(3rem, 8.5vw, 5.2rem); }
  .release-ready { margin-top: 0; }
}

@media (max-width: 680px) {
  .hero--v21 { padding-top: 100px; }
  .hero-brand-intro { min-height: 150px; }
  .hero-brand-intro__mark { width: 128px; }
  .hero-brand-intro__tagline { font-size: .57rem; letter-spacing: .14em; }
  .studio-scene--v21 { height: 102vw; min-height: 390px; max-height: 560px; margin-top: -22px; }
  .studio-scene--v21 .brand-moon--backdrop { top: 2%; width: 55%; }
  .studio-scene--v21 .scene-window--organizer { top: 29%; right: -7%; width: 96%; }
  .studio-scene--v21 .scene-window--kanban { top: 19%; right: -1%; width: 86%; }
  .studio-scene--v21 .scene-window--easy-test { top: 8%; right: -2%; width: 62%; }
  .studio-scene--v21 .scene-fragment--note { bottom: 1%; left: -3%; width: 43%; }
  .hero__copy--v21 { margin-top: -10px; }
  .hero--v21 h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero--v21 .hero__lead { font-size: .98rem; }
  .release-ready { grid-template-columns: auto 1fr; gap: 12px; padding: 15px 16px; }
  .release-ready > a { grid-column: 2; }
  .release-ready__copy strong { font-size: .88rem; }
  .about__facts article { grid-template-columns: 1fr; gap: 3px; min-height: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-intro, .studio-scene--v21, .hero__copy--v21 { animation: none; opacity: 1; transform: none; }
  .release-ready__signal span { animation: none; }
}

/* v2.1 visual refinement */
.hero--v21 h1 { font-size: clamp(2.9rem, 4.35vw, 4.65rem); max-width: 505px; }
.hero__copy--v21 { max-width: 530px; bottom: 58px; }
.hero--v21 .hero__lead { max-width: 480px; font-size: clamp(.98rem, 1.12vw, 1.08rem); }

.easy-test-showcase--flow { min-height: 520px; }
.easy-test-showcase__question,
.easy-test-showcase__panel {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(105, 224, 212, .18);
  background: #071e28;
  box-shadow: var(--shadow-xl);
}
.easy-test-showcase__question {
  top: 12%;
  left: -2%;
  z-index: 2;
  width: 78%;
  aspect-ratio: 1.62;
  border-radius: 22px;
  transform: rotateY(7deg) rotateZ(-2deg);
}
.easy-test-showcase__question img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(.88) brightness(.86);
}
.easy-test-showcase__panel {
  right: 0;
  bottom: 5%;
  z-index: 5;
  width: 47%;
  aspect-ratio: 1.08;
  border-radius: 21px;
  transform: rotateY(-7deg) rotateZ(2deg);
}
.easy-test-showcase__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.easy-test-showcase--flow .easy-test-showcase__icon { right: -1%; bottom: 0; z-index: 8; }
.easy-test-showcase--flow .easy-test-showcase__answer { left: 2%; bottom: 7%; z-index: 7; }

@media (max-width: 960px) {
  .hero--v21 h1 { max-width: 610px; font-size: clamp(2.9rem, 7.5vw, 4.55rem); }
  .hero__copy--v21 { max-width: 680px; }
  .easy-test-showcase--flow { min-height: 500px; }
}

@media (max-width: 680px) {
  .hero--v21 h1 { font-size: clamp(2.55rem, 11.5vw, 3.8rem); }
  .easy-test-showcase--flow { min-height: 94vw; max-height: 500px; }
  .easy-test-showcase__question { top: 8%; left: -7%; width: 96%; border-radius: 15px; transform: rotate(-2deg); }
  .easy-test-showcase__panel { right: -5%; bottom: 3%; width: 55%; border-radius: 15px; transform: rotate(3deg); }
  .easy-test-showcase--flow .easy-test-showcase__icon { width: 66px; height: 66px; }
  .easy-test-showcase--flow .easy-test-showcase__icon img { width: 48px; height: 48px; }
}

/* =========================================================
   Pajama Tech homepage v2.2
   Clean brand intro, scroll-revealed product scene,
   process flow, calm metrics and updated journal section.
   ========================================================= */

.brand-hero {
  position: relative;
  min-height: 100svh;
  padding-top: 0;
}

.brand-hero__stage {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: calc(var(--header-height) + 42px) 20px 74px;
  isolation: isolate;
  text-align: center;
}

.brand-hero__stage::before {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: -4;
  width: min(88vw, 980px);
  aspect-ratio: 1.55;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(106, 109, 240, 0.2), rgba(57, 77, 142, 0.08) 35%, transparent 70%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.brand-hero__aura {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: -2;
  width: clamp(330px, 44vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(144, 147, 255, 0.34) 0%, rgba(106, 109, 240, 0.17) 27%, rgba(57, 77, 142, 0.09) 48%, transparent 72%);
  filter: blur(15px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation:
    brand-aura-enter 1200ms 180ms cubic-bezier(.16,.78,.23,1) forwards,
    brand-aura-breathe 5.2s 1500ms ease-in-out infinite;
}

.brand-hero__rings {
  position: absolute;
  top: 45.5%;
  left: 50%;
  z-index: -1;
  width: clamp(350px, 48vw, 720px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.brand-hero__rings span {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(147, 150, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.38);
  animation: brand-ring-enter 1200ms cubic-bezier(.16,.78,.23,1) forwards;
}

.brand-hero__rings span:nth-child(1) {
  width: 54%;
  height: 54%;
  animation-delay: 430ms;
}

.brand-hero__rings span:nth-child(2) {
  width: 76%;
  height: 76%;
  border-style: dashed;
  animation-delay: 560ms;
}

.brand-hero__rings span:nth-child(3) {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation-delay: 690ms;
}

.brand-hero__circuit-map {
  position: absolute;
  top: 45.5%;
  left: 50%;
  z-index: -1;
  width: min(94vw, 1120px);
  height: auto;
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.brand-hero__circuit-lines path {
  stroke: url(#brand-circuit-gradient);
  stroke: rgba(130, 135, 255, 0.54);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18 20;
  stroke-dashoffset: 210;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(106, 109, 240, 0.45));
  animation:
    brand-circuit-enter 1800ms 620ms cubic-bezier(.16,.78,.23,1) forwards,
    brand-circuit-flow 8s 2500ms linear infinite;
}

.brand-hero__circuit-lines path:nth-child(2n) { animation-delay: 740ms, 2700ms; }
.brand-hero__circuit-lines path:nth-child(3n) { animation-delay: 860ms, 2900ms; }

.brand-hero__circuit-nodes circle {
  fill: #9da0ff;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(131, 135, 255, 0.95));
  transform-box: fill-box;
  transform-origin: center;
  animation:
    brand-node-enter 540ms 1700ms ease-out forwards,
    brand-node-pulse 3.2s 2300ms ease-in-out infinite;
}

.brand-hero__circuit-nodes circle:nth-child(2n) { animation-delay: 1820ms, 2500ms; }
.brand-hero__circuit-nodes circle:nth-child(3n) { animation-delay: 1940ms, 2700ms; }

.brand-hero__mark {
  position: relative;
  z-index: 4;
  width: clamp(210px, 22vh, 305px);
  height: auto;
  opacity: 0;
  filter:
    drop-shadow(0 0 26px rgba(106, 109, 240, 0.54))
    drop-shadow(0 0 70px rgba(106, 109, 240, 0.24));
  transform: translateY(26px) scale(0.72);
  animation:
    brand-mark-enter 1150ms 120ms cubic-bezier(.16,.78,.23,1) forwards,
    brand-mark-breathe 5.4s 1500ms ease-in-out infinite;
}

.brand-hero__tagline {
  position: relative;
  z-index: 5;
  margin: 22px 0 0;
  color: var(--violet-300);
  font-size: clamp(0.68rem, 1vw, 0.84rem);
  font-weight: 840;
  letter-spacing: clamp(0.12em, 0.4vw, 0.22em);
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 0 18px rgba(131, 135, 255, 0.38);
  transform: translateY(12px);
  animation:
    brand-copy-enter 760ms 930ms cubic-bezier(.16,.78,.23,1) forwards,
    brand-tagline-glow 4s 1900ms ease-in-out infinite;
}

.brand-hero__copy {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin-top: 31px;
  opacity: 0;
  transform: translateY(18px);
  animation: brand-copy-enter 850ms 1200ms cubic-bezier(.16,.78,.23,1) forwards;
}

.brand-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5.4vw, 5.7rem);
  font-weight: 840;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.brand-hero__copy > p:last-child {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
}

.brand-hero__release {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 49px;
  margin-top: 27px;
  padding: 8px 17px 8px 12px;
  border: 1px solid rgba(99, 214, 145, 0.3);
  border-radius: 999px;
  color: #effff5;
  background: rgba(16, 48, 47, 0.38);
  box-shadow:
    0 0 0 1px rgba(99, 214, 145, 0.04) inset,
    0 12px 34px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(99, 214, 145, 0.08);
  opacity: 0;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transform: translateY(14px) scale(0.97);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  animation:
    brand-release-enter 720ms 1460ms cubic-bezier(.16,.78,.23,1) forwards,
    brand-release-glow 3.6s 2300ms ease-in-out infinite;
}

.brand-hero__release:hover {
  border-color: rgba(99, 214, 145, 0.54);
  background: rgba(22, 62, 58, 0.54);
  transform: translateY(-2px);
}

.brand-hero__release > span:last-child {
  display: grid;
  gap: 0;
  text-align: left;
}

.brand-hero__release strong {
  color: #dcffea;
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand-hero__release small {
  color: rgba(220, 255, 234, 0.66);
  font-size: 0.64rem;
  line-height: 1.25;
}

.brand-hero__release-dot {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(99, 214, 145, 0.1);
  box-shadow: 0 0 15px rgba(99, 214, 145, 0.18) inset;
}

.brand-hero__release-dot::before,
.brand-hero__release-dot::after {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.brand-hero__release-dot::before {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(99, 214, 145, 0.95);
}

.brand-hero__release-dot::after {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(99, 214, 145, 0.42);
  animation: brand-release-ring 2.1s ease-out infinite;
}

.brand-hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(203, 208, 226, 0.58);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  opacity: 0;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: brand-copy-enter 700ms 1850ms ease-out forwards;
}

.brand-hero__scroll i {
  position: relative;
  width: 1px;
  height: 35px;
  overflow: hidden;
  background: rgba(166, 168, 255, 0.2);
}

.brand-hero__scroll i::after {
  position: absolute;
  top: -40%;
  left: 0;
  width: 1px;
  height: 45%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(166, 168, 255, 0.95), transparent);
  animation: brand-scroll-line 2.1s 2200ms ease-in-out infinite;
}

.studio-reveal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  min-height: 820px;
  padding-top: 120px;
  padding-bottom: 105px;
}

.studio-reveal::before {
  position: absolute;
  inset: 50% -12% auto 35%;
  z-index: -2;
  height: 520px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(106, 109, 240, 0.13), transparent 68%);
  filter: blur(18px);
  transform: translateY(-50%);
}

.studio-reveal__copy {
  position: relative;
  z-index: 6;
}

.studio-reveal__copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.4rem, 4.25vw, 4.75rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.studio-reveal__copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.studio-reveal__copy .button { margin-top: 30px; }

.studio-reveal__scene {
  position: relative;
  min-height: 630px;
  perspective: 1600px;
}

.studio-reveal__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  aspect-ratio: 1.3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.28), transparent 68%);
  filter: blur(22px);
  transform: translate(-50%, -50%);
}

.studio-reveal figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(177, 185, 255, 0.18);
  background: var(--night-900);
  box-shadow: var(--shadow-xl);
}

.studio-reveal figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-reveal figcaption {
  position: absolute;
  right: 17px;
  bottom: 16px;
  display: grid;
  gap: 1px;
  padding: 10px 13px;
  border: 1px solid rgba(177, 185, 255, 0.17);
  border-radius: 13px;
  background: rgba(8, 13, 36, 0.84);
  backdrop-filter: blur(14px);
}

.studio-reveal figcaption strong { font-size: 0.71rem; }
.studio-reveal figcaption span { color: var(--text-muted); font-size: 0.58rem; }

.studio-reveal__organizer {
  right: 0;
  bottom: 4%;
  z-index: 4;
  width: 82%;
  aspect-ratio: 1.35;
  border-radius: 22px;
  transform: rotateY(-5deg) rotateX(2deg) rotateZ(0.7deg);
}

.studio-reveal__easy-test {
  top: 4%;
  left: 0;
  z-index: 2;
  width: 54%;
  aspect-ratio: 2.15;
  border-radius: 19px;
  opacity: 0.93;
  transform: rotateY(7deg) rotateZ(-2.8deg);
}

.studio-reveal__easy-test > img {
  object-position: center;
}

.studio-reveal__status {
  position: absolute;
  top: 25%;
  right: -1%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(99, 214, 145, 0.19);
  border-radius: 999px;
  color: #dff9e9;
  background: rgba(10, 34, 38, 0.76);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 0.65rem;
}

.studio-reveal__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(99, 214, 145, 0.85);
}

/* BPMN-inspired process flow */
.approach-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
  padding: 66px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 109, 240, 0.13), transparent 32rem),
    linear-gradient(160deg, rgba(16, 24, 55, 0.92), rgba(8, 13, 34, 0.95));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.approach-flow__rail {
  position: absolute;
  top: 52px;
  right: 42px;
  left: 42px;
  height: 2px;
  overflow: hidden;
  background: rgba(131, 135, 255, 0.17);
}

.approach-flow__rail span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(131, 135, 255, 0.25) 18%, #8d91ff 50%, rgba(99, 214, 145, 0.42) 82%, transparent 100%);
  transform: translateX(-100%);
  animation: approach-flow-light 5.6s ease-in-out infinite;
}

.approach-flow__event {
  position: absolute;
  top: 43px;
  z-index: 5;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(166, 168, 255, 0.66);
  border-radius: 50%;
  background: var(--night-900);
  box-shadow: 0 0 18px rgba(106, 109, 240, 0.28);
}

.approach-flow__event--start { left: 31px; }
.approach-flow__event--end {
  right: 31px;
  border-width: 4px;
  border-color: rgba(99, 214, 145, 0.62);
  box-shadow: 0 0 20px rgba(99, 214, 145, 0.22);
}

.approach-flow__node {
  position: relative;
  min-height: 190px;
  padding: 45px 19px 20px;
  border: 1px solid rgba(177, 185, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.approach-flow__node:hover {
  border-color: rgba(131, 135, 255, 0.3);
  background: rgba(106, 109, 240, 0.055);
  transform: translateY(-4px);
}

.approach-flow__step {
  display: block;
  margin-bottom: 11px;
  color: var(--violet-300);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.14em;
}

.approach-flow__node h3 {
  margin: 0;
  font-size: 1.14rem;
  letter-spacing: -0.025em;
}

.approach-flow__node p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.approach-flow__symbol {
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 6;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(166, 168, 255, 0.68);
  background: var(--night-900);
  box-shadow: 0 0 18px rgba(106, 109, 240, 0.22);
  transform: translateX(-50%);
}

.approach-flow__symbol--circle { border-radius: 50%; }
.approach-flow__symbol--diamond { border-radius: 7px; transform: translateX(-50%) rotate(45deg); }
.approach-flow__symbol--task { border-radius: 8px; }
.approach-flow__symbol--task::after {
  position: absolute;
  inset: 8px 6px;
  border-top: 2px solid rgba(166, 168, 255, 0.62);
  border-bottom: 2px solid rgba(166, 168, 255, 0.62);
  content: "";
}
.approach-flow__symbol--release {
  border-width: 4px;
  border-color: rgba(99, 214, 145, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(99, 214, 145, 0.25);
}

/* Calm, consistent facts */
.about__facts--clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.about__facts--clean article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(177, 185, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.about__fact-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(131, 135, 255, 0.23);
  border-radius: 13px;
  color: var(--violet-300) !important;
  background: rgba(106, 109, 240, 0.08);
  font-size: 0.65rem !important;
  font-weight: 840;
  letter-spacing: 0.1em;
}

.about__facts--clean article div { display: grid; gap: 5px; }
.about__facts--clean article strong {
  font-size: 1.05rem;
  font-weight: 790;
  letter-spacing: -0.02em;
}

.about__facts--clean article p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.about__facts--clean .about__solo {
  margin: 3px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(177, 185, 255, 0.1);
  border-radius: 16px;
  color: var(--text-muted);
  background: rgba(106, 109, 240, 0.035);
  font-size: 0.76rem;
  text-align: left;
}

.journal__copy h2 { max-width: 720px; }

@keyframes brand-aura-enter {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.72); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes brand-aura-breathe {
  0%, 100% { opacity: 0.76; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes brand-ring-enter {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.38); }
  to { opacity: 0.52; transform: translate(-50%, -50%) scale(1); }
}

@keyframes brand-mark-enter {
  from { opacity: 0; transform: translateY(26px) scale(0.72); filter: blur(8px) drop-shadow(0 0 0 transparent); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 0 30px rgba(106, 109, 240, 0.54)) drop-shadow(0 0 76px rgba(106, 109, 240, 0.24)); }
}

@keyframes brand-mark-breathe {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 28px rgba(106, 109, 240, 0.5)) drop-shadow(0 0 70px rgba(106, 109, 240, 0.2)); }
  50% { transform: translateY(-3px) scale(1.018); filter: drop-shadow(0 0 40px rgba(131, 135, 255, 0.68)) drop-shadow(0 0 94px rgba(106, 109, 240, 0.3)); }
}

@keyframes brand-copy-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brand-tagline-glow {
  0%, 100% { text-shadow: 0 0 14px rgba(131, 135, 255, 0.28); }
  50% { text-shadow: 0 0 30px rgba(131, 135, 255, 0.62); }
}

@keyframes brand-circuit-enter {
  from { opacity: 0; stroke-dashoffset: 210; }
  to { opacity: 0.78; stroke-dashoffset: 0; }
}

@keyframes brand-circuit-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -380; }
}

@keyframes brand-node-enter {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 0.86; transform: scale(1); }
}

@keyframes brand-node-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1.24); }
}

@keyframes brand-release-enter {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes brand-release-glow {
  0%, 100% { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24), 0 0 18px rgba(99, 214, 145, 0.06); }
  50% { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24), 0 0 34px rgba(99, 214, 145, 0.17); }
}

@keyframes brand-release-ring {
  0% { opacity: 0.78; transform: translate(-50%, -50%) scale(0.72); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

@keyframes brand-scroll-line {
  0% { top: -45%; opacity: 0; }
  25% { opacity: 1; }
  70% { opacity: 1; }
  100% { top: 105%; opacity: 0; }
}

@keyframes approach-flow-light {
  0%, 15% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

@media (max-width: 1180px) {
  .studio-reveal {
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    gap: 42px;
  }
  .studio-reveal__scene { min-height: 570px; }
}

@media (max-width: 960px) {
  .brand-hero__stage { padding-top: 118px; }
  .brand-hero__circuit-map { width: 1160px; max-width: none; }

  .studio-reveal {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: 0;
    padding-top: 98px;
    padding-bottom: 86px;
  }

  .studio-reveal__copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }
  .studio-reveal__copy h2,
  .studio-reveal__copy > p:not(.eyebrow) { margin-inline: auto; }
  .studio-reveal__scene { width: min(100%, 820px); min-height: 600px; margin-inline: auto; }

  .approach-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px 14px; padding-top: 72px; }
  .approach-flow__rail,
  .approach-flow__event { display: none; }
  .approach-flow__node { min-height: 176px; }
}

@media (max-width: 680px) {
  .brand-hero { min-height: 100svh; }
  .brand-hero__stage { min-height: 100svh; padding: 104px 10px 72px; }
  .brand-hero__mark { width: clamp(170px, 44vw, 220px); }
  .brand-hero__tagline { margin-top: 17px; font-size: 0.58rem; letter-spacing: 0.13em; }
  .brand-hero__copy { margin-top: 25px; }
  .brand-hero__eyebrow { font-size: 0.62rem; }
  .brand-hero h1 { font-size: clamp(2.4rem, 12.5vw, 3.7rem); }
  .brand-hero__copy > p:last-child { margin-top: 14px; font-size: 0.9rem; }
  .brand-hero__release { margin-top: 22px; }
  .brand-hero__circuit-map { width: 850px; opacity: 0.75; }
  .brand-hero__rings { width: 540px; max-width: none; }
  .brand-hero__scroll { bottom: 12px; }

  .studio-reveal { width: min(calc(100% - 28px), var(--content)); padding-top: 80px; }
  .studio-reveal__copy h2 { font-size: clamp(2.25rem, 12vw, 3.45rem); }
  .studio-reveal__copy > p:not(.eyebrow) { font-size: 0.9rem; }
  .studio-reveal__scene { min-height: 116vw; max-height: 590px; }
  .studio-reveal__organizer { right: -8%; bottom: 3%; width: 104%; border-radius: 15px; transform: rotate(1deg); }
  .studio-reveal__easy-test { top: 5%; left: -5%; width: 72%; border-radius: 14px; transform: rotate(-3deg); }
  .studio-reveal__status { top: 30%; right: -3%; }
  .studio-reveal figcaption { display: none; }

  .approach-flow { grid-template-columns: 1fr; gap: 44px; padding: 58px 16px 20px; }
  .approach-flow__node { min-height: 150px; padding-top: 38px; }
  .approach-flow__symbol { top: -25px; }

  .about__facts--clean article { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 16px; }
  .about__fact-index { width: 38px; height: 38px; }
  .about__facts--clean article strong { font-size: 0.96rem; }
  .journal > .button { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero__aura,
  .brand-hero__rings span,
  .brand-hero__circuit-lines path,
  .brand-hero__circuit-nodes circle,
  .brand-hero__mark,
  .brand-hero__tagline,
  .brand-hero__copy,
  .brand-hero__release,
  .brand-hero__scroll,
  .brand-hero__release-dot::after,
  .approach-flow__rail span {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .brand-hero__aura { transform: translate(-50%, -50%); }
  .brand-hero__rings span { transform: translate(-50%, -50%); opacity: 0.38; }
  .brand-hero__circuit-map { transform: translate(-50%, -50%); }
  .brand-hero__circuit-lines path { stroke-dashoffset: 0; opacity: 0.65; }
}

/* v2.2 final type balance */
.brand-hero h1 { font-size: clamp(2.55rem, 4.65vw, 4.85rem); }
.studio-reveal__copy h2 { font-size: clamp(2.25rem, 3.6vw, 4rem); }

/* Keep anchored sections visible below the fixed navigation. */
#studio-reveal,
#projects,
#approach,
#about,
#contacts {
  scroll-margin-top: 108px;
}


/* v2.3 focused polish: freeze hero, enrich product reveal, Windows CTA, Easy Test scene */
.brand-hero__scroll {
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  transform: none;
}

.studio-reveal__note {
  left: 4%;
  bottom: 0;
  z-index: 6;
  width: 34%;
  aspect-ratio: 1.35;
  border-radius: 17px;
  opacity: 0.98;
  transform: rotateY(7deg) rotateZ(-4.5deg);
}

.studio-reveal__note > img {
  object-position: center;
}

.button--windows {
  min-height: 52px;
  color: var(--text-primary);
  border-color: rgba(177, 185, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.button--windows:hover {
  border-color: rgba(177, 185, 255, 0.38);
  background: rgba(106, 109, 240, 0.1);
}

.button__windows-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.easy-test-showcase--demo {
  min-height: 470px;
}

.easy-test-showcase__browser--demo {
  top: 15%;
  left: -4%;
  width: 108%;
  aspect-ratio: 2.5;
  border-radius: 22px;
  transform: rotateY(4deg) rotateX(1.5deg) rotateZ(-1deg);
}

.easy-test-showcase__browser--demo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.easy-test-showcase__flow {
  position: absolute;
  left: 7%;
  bottom: 9%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(177, 185, 255, 0.18);
  border-radius: 999px;
  color: #dfe3f5;
  background: rgba(9, 14, 39, 0.84);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  font-size: 0.66rem;
  font-weight: 760;
}

.easy-test-showcase__flow i {
  color: var(--violet-300);
  font-style: normal;
}

@media (max-width: 960px) {
  .studio-reveal__note { left: 3%; bottom: 0; width: 32%; }
  .easy-test-showcase--demo { min-height: 430px; }
  .easy-test-showcase__browser--demo { left: 0; width: 100%; }
}

@media (max-width: 680px) {
  .brand-hero__scroll { left: 0; right: 0; }
  .studio-reveal__note { left: -2%; bottom: 0; width: 42%; border-radius: 12px; }
  .easy-test-showcase--demo { min-height: 72vw; max-height: 390px; }
  .easy-test-showcase__browser--demo {
    top: 13%;
    left: -7%;
    width: 114%;
    border-radius: 14px;
    transform: rotate(-1deg);
  }
  .easy-test-showcase__flow {
    left: 2%;
    bottom: 3%;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.58rem;
  }
}


/* v2.4 precision polish: product identities, centered Easy Test flow, technology header.
   Regression rule: brand hero and all previously approved sections remain unchanged. */

/* A slightly more technological header without changing its structure or dimensions. */
.site-header__inner {
  position: relative;
  isolation: isolate;
  border-color: rgba(166, 168, 255, 0.19);
  background:
    linear-gradient(105deg, rgba(106, 109, 240, 0.055), transparent 28%, transparent 72%, rgba(77, 111, 194, 0.045)),
    rgba(7, 12, 36, 0.68);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(106, 109, 240, 0.055);
}

.site-header__inner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.46;
  background-image:
    linear-gradient(90deg, transparent 0 11%, rgba(131, 135, 255, 0.12) 11% 11.08%, transparent 11.08% 36%, rgba(131, 135, 255, 0.08) 36% 36.06%, transparent 36.06%),
    radial-gradient(circle at 11% 50%, rgba(166, 168, 255, 0.62) 0 1px, transparent 1.5px),
    radial-gradient(circle at 36% 50%, rgba(166, 168, 255, 0.44) 0 1px, transparent 1.5px),
    linear-gradient(90deg, transparent, rgba(116, 120, 255, 0.09) 42%, rgba(116, 120, 255, 0.15) 50%, rgba(116, 120, 255, 0.09) 58%, transparent);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.55), #000 24%, #000 76%, rgba(0,0,0,0.55));
}

.site-header__inner::after {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  z-index: 0;
  height: 1px;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(149, 153, 255, 0.28), rgba(104, 198, 255, 0.18), transparent);
  box-shadow: 0 0 16px rgba(106, 109, 240, 0.22);
}

.site-header.is-scrolled .site-header__inner {
  background:
    linear-gradient(105deg, rgba(106, 109, 240, 0.065), transparent 28%, transparent 72%, rgba(77, 111, 194, 0.055)),
    rgba(7, 12, 36, 0.9);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.052),
    inset 0 -1px 0 rgba(106, 109, 240, 0.07);
}

.brand,
.header-actions,
.menu-button {
  position: relative;
  z-index: 1;
}

.site-nav { z-index: 1; }

.brand::before {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  background: radial-gradient(circle, rgba(106, 109, 240, 0.27), transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover::before {
  opacity: 0.58;
  transform: translate(-50%, -50%) scale(1.08);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  border-radius: 99px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(143, 147, 255, 0.9), transparent);
  box-shadow: 0 0 10px rgba(106, 109, 240, 0.45);
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Clear product identification above each real interface scene. */
.product-stage__identity {
  position: absolute;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(177, 185, 255, 0.18);
  border-radius: 13px;
  color: #f5f6ff;
  background: rgba(9, 14, 39, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(15px);
  font-size: 0.82rem;
  letter-spacing: 0.005em;
}

.product-stage__identity-signal {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--violet-400);
  box-shadow: 0 0 0 4px rgba(131, 135, 255, 0.08), 0 0 17px rgba(131, 135, 255, 0.62);
}

.product-stage__identity--organizer {
  top: 0;
  left: 2%;
}

.product-stage__identity--easy-test {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.product-stage__identity--easy-test .product-stage__identity-signal {
  background: #41d5df;
  box-shadow: 0 0 0 4px rgba(65, 213, 223, 0.08), 0 0 17px rgba(65, 213, 223, 0.55);
}

.easy-test-showcase__flow {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 680px) {
  .site-header__inner::before { opacity: 0.3; }
  .product-stage__identity { min-height: 34px; padding: 0 11px; font-size: 0.72rem; }
  .product-stage__identity--organizer { top: -2px; left: 0; }
  .product-stage__identity--easy-test { top: 1%; }
  .easy-test-showcase__flow { left: 50%; transform: translateX(-50%); }
}

/* v2.5 product-title refinement only.
   Regression lock: no other approved layout, content, animation or responsive behavior changed. */
.product-stage__identity {
  min-height: 48px;
  gap: 12px;
  padding: 0 18px;
  border-color: rgba(188, 194, 255, 0.24);
  border-radius: 15px;
  background:
    linear-gradient(105deg, rgba(106, 109, 240, 0.16), rgba(9, 14, 39, 0.91) 44%, rgba(9, 14, 39, 0.84));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(106, 109, 240, 0.11),
    inset 0 1px rgba(255, 255, 255, 0.065);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  letter-spacing: -0.015em;
}

.product-stage__identity::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 1px;
  border-radius: 999px;
  content: "";
  opacity: 0.75;
  background: linear-gradient(90deg, transparent, rgba(139, 143, 255, 0.76), transparent);
  box-shadow: 0 0 12px rgba(106, 109, 240, 0.35);
}

.product-stage__identity strong {
  font-weight: 850;
  line-height: 1;
}

.product-stage__identity-signal {
  width: 10px;
  height: 10px;
}

.product-stage__identity--organizer {
  top: 4%;
  left: 8%;
}

.product-stage__identity--easy-test {
  top: 4%;
  left: 5%;
  transform: none;
}

.product-stage__identity--easy-test::after {
  background: linear-gradient(90deg, transparent, rgba(65, 213, 223, 0.74), transparent);
  box-shadow: 0 0 12px rgba(65, 213, 223, 0.28);
}

@media (max-width: 680px) {
  .product-stage__identity {
    min-height: 40px;
    gap: 9px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .product-stage__identity-signal {
    width: 8px;
    height: 8px;
  }

  .product-stage__identity--organizer,
  .product-stage__identity--easy-test {
    top: 2%;
    left: 4%;
    transform: none;
  }
}


/* v2.6 product-title position only.
   Regression lock: every other approved element remains unchanged. */
.product-stage > .product-stage__identity {
  top: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2vw, 30px);
  transform: none;
}

@media (max-width: 680px) {
  .product-stage > .product-stage__identity {
    top: 14px;
    left: 14px;
    transform: none;
  }
}

/* v2.7 organizer title spacing only.
   Regression lock: all other approved visuals remain unchanged. */
.product-stage--organizer .product-stage__meta {
  margin-top: clamp(18px, 2vw, 24px);
}

@media (max-width: 680px) {
  .product-stage--organizer .product-stage__meta {
    margin-top: 16px;
  }
}



/* Pajama Tech mobile final polish — foundation v1.
   Desktop v2.7 remains unchanged. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 680px) {
  main,
  section,
  .section-shell,
  .site-header__inner,
  .brand-hero__stage,
  .studio-reveal,
  .product-stage,
  .product-stage__copy,
  .organizer-showcase,
  .easy-test-showcase,
  .approach,
  .approach-flow,
  .about,
  .about__panel,
  .about__copy,
  .about__facts,
  .contacts,
  .contacts__panel,
  .journal,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  .brand-hero,
  .brand-hero__stage,
  .studio-reveal__scene,
  .organizer-showcase,
  .easy-test-showcase,
  .product-stage {
    overflow: clip;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 54px);
  }

  .brand__copy {
    min-width: 0;
  }

  .brand__copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-right: 50px;
  }

  .brand-hero__stage {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-hero__copy,
  .studio-reveal__copy,
  .section-heading,
  .approach__intro,
  .about__copy,
  .contacts__copy {
    width: 100%;
    max-width: 100%;
  }

  .studio-reveal__organizer {
    right: 0;
    width: 100%;
    transform: none;
  }

  .studio-reveal__easy-test {
    left: 0;
    width: 68%;
  }

  .studio-reveal__note {
    left: 0;
    width: 40%;
  }

  .product-stage {
    padding-top: 24px;
  }

  .product-stage > .product-stage__identity {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: max-content;
    max-width: 100%;
    margin: 0 0 16px;
    justify-self: start;
    transform: none;
  }

  .product-stage--organizer .product-stage__meta {
    margin-top: 0;
  }

  .organizer-showcase__dashboard {
    right: 0;
    width: 100%;
  }

  .organizer-showcase__kanban {
    right: 3%;
    width: 90%;
  }

  .organizer-showcase__note {
    left: 0;
    width: 42%;
  }

  .easy-test-showcase__browser,
  .easy-test-showcase__browser--demo {
    left: 0;
    width: 100%;
    transform: none;
  }

  .easy-test-showcase__question {
    left: 0;
    width: 92%;
  }

  .easy-test-showcase__panel {
    right: 0;
    width: 52%;
  }

  .approach-flow {
    gap: 30px;
    padding: 48px 12px 16px;
  }

  .approach-flow__node {
    min-height: 0;
    padding: 34px 24px 28px;
  }

  .approach-flow__symbol {
    top: -21px;
  }

  .about__panel {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start;
  }

  .about__copy,
  .about__facts,
  .about__facts--clean {
    width: 100%;
  }

  .about__copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .about__copy p:not(.eyebrow) {
    width: 100%;
    max-width: none;
    font-size: .94rem;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about__facts--clean article {
    grid-template-columns: 40px minmax(0, 1fr);
    width: 100%;
  }

  .site-footer {
    overflow: hidden;
  }
}

/* Pajama Tech mobile header single-row fix v1.
   Remove the hidden actions container from the grid and pin the menu button. */
@media (max-width: 680px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 8px 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  .brand__mark {
    flex: 0 0 42px;
  }

  .header-actions {
    display: none;
    margin: 0;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0;
  }
}



/* Pajama Tech stable mobile hero runtime v1.
   Keep the first screen deterministic while mobile browser chrome changes. */
@media (max-width: 680px) {
  .brand-hero,
  .brand-hero__stage {
    min-height: var(--pt-stable-viewport-height, 100svh);
  }

  .brand-hero__stage {
    height: var(--pt-stable-viewport-height, 100svh);
  }
}

html.js.hero-intro-pending .brand-hero__aura,
html.js.hero-intro-pending .brand-hero__rings span,
html.js.hero-intro-pending .brand-hero__circuit-lines path,
html.js.hero-intro-pending .brand-hero__circuit-nodes circle,
html.js.hero-intro-pending .brand-hero__mark,
html.js.hero-intro-pending .brand-hero__tagline,
html.js.hero-intro-pending .brand-hero__copy,
html.js.hero-intro-pending .brand-hero__release,
html.js.hero-intro-pending .brand-hero__scroll,
html.js.hero-intro-pending .brand-hero__release-dot::after,
html.js.hero-intro-pending .brand-hero__scroll i::after {
  animation-play-state: paused !important;
}

html.js.hero-intro-reset .brand-hero__aura,
html.js.hero-intro-reset .brand-hero__rings span,
html.js.hero-intro-reset .brand-hero__circuit-lines path,
html.js.hero-intro-reset .brand-hero__circuit-nodes circle,
html.js.hero-intro-reset .brand-hero__mark,
html.js.hero-intro-reset .brand-hero__tagline,
html.js.hero-intro-reset .brand-hero__copy,
html.js.hero-intro-reset .brand-hero__release,
html.js.hero-intro-reset .brand-hero__scroll,
html.js.hero-intro-reset .brand-hero__release-dot::after,
html.js.hero-intro-reset .brand-hero__scroll i::after {
  animation: none !important;
}

html.js.hero-intro-stable .brand-hero__aura,
html.js.hero-intro-stable .brand-hero__rings span,
html.js.hero-intro-stable .brand-hero__circuit-lines path,
html.js.hero-intro-stable .brand-hero__circuit-nodes circle,
html.js.hero-intro-stable .brand-hero__mark,
html.js.hero-intro-stable .brand-hero__tagline,
html.js.hero-intro-stable .brand-hero__copy,
html.js.hero-intro-stable .brand-hero__release,
html.js.hero-intro-stable .brand-hero__scroll {
  animation: none !important;
  opacity: 1 !important;
}

html.js.hero-intro-stable .brand-hero__aura {
  transform: translate(-50%, -50%) scale(1) !important;
}

html.js.hero-intro-stable .brand-hero__rings span {
  opacity: .52 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

html.js.hero-intro-stable .brand-hero__circuit-lines path {
  stroke-dashoffset: 0 !important;
  opacity: .78 !important;
}

html.js.hero-intro-stable .brand-hero__circuit-nodes circle {
  transform: scale(1) !important;
}

html.js.hero-intro-stable .brand-hero__mark {
  transform: translateY(0) scale(1) !important;
  filter:
    drop-shadow(0 0 30px rgba(106, 109, 240, .54))
    drop-shadow(0 0 76px rgba(106, 109, 240, .24)) !important;
}

html.js.hero-intro-stable .brand-hero__tagline,
html.js.hero-intro-stable .brand-hero__copy {
  transform: translateY(0) !important;
}

html.js.hero-intro-stable .brand-hero__release {
  transform: translateY(0) scale(1) !important;
}

html.js.hero-intro-stable .brand-hero__scroll {
  transform: none !important;
}
