@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: dark light;
  --bg: #080808;
  --overlay: rgba(8, 8, 8, 0.97);
  --panel: rgba(12, 12, 12, 0.94);
  --text: rgba(255, 255, 255, 0.78);
  --muted: rgba(255, 255, 255, 0.38);
  --muted-strong: rgba(255, 255, 255, 0.58);
  --button-dark: rgba(255, 255, 255, 0.18);
  --button-light: #dedede;
  --button-light-text: #0c0c0c;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
  --icon-filter: brightness(0) invert(1);
  --icon-filter-muted: brightness(0) invert(1) opacity(0.7);
  --icon-filter-strong: brightness(0) invert(1) opacity(0.82);
  --header-bg: rgba(15, 15, 15, 0.52);
  --header-stroke: rgba(255, 255, 255, 0.045);
  --header-highlight: rgba(255, 255, 255, 0.03);
  --switch-bg: rgba(255, 255, 255, 0.06);
  --switch-active: rgba(255, 255, 255, 0.13);
  --card-bg: rgba(16, 16, 16, 0.62);
  --card-stroke: rgba(255, 255, 255, 0.07);
  --card-highlight: rgba(255, 255, 255, 0.045);
  --letter-spacing: -0.05em;
  --hero-width: min(100%, 42rem);
  --container-pad: clamp(1rem, 2.4vw, 2rem);
  --header-width: min(738px, calc(100vw - 2rem));
  --header-radius-closed: 47.5px;
  --header-radius-open: 30px;
  --blur: 60px;
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-theme="light"] {
  --bg: #f2f2f2;
  --overlay: rgba(255, 255, 255, 0.78);
  --panel: rgba(255, 255, 255, 0.84);
  --text: rgba(18, 18, 18, 0.84);
  --muted: rgba(18, 18, 18, 0.42);
  --muted-strong: rgba(18, 18, 18, 0.6);
  --button-dark: rgba(18, 18, 18, 0.12);
  --button-light: #101010;
  --button-light-text: #f6f6f6;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  --icon-filter: brightness(0) invert(0);
  --icon-filter-muted: brightness(0) invert(0) opacity(0.6);
  --icon-filter-strong: brightness(0) invert(0) opacity(0.82);
  --header-bg: rgba(255, 255, 255, 0.52);
  --header-stroke: rgba(24, 24, 24, 0.05);
  --header-highlight: rgba(255, 255, 255, 0.2);
  --switch-bg: rgba(18, 18, 18, 0.06);
  --switch-active: rgba(18, 18, 18, 0.12);
  --card-bg: rgba(255, 255, 255, 0.62);
  --card-stroke: rgba(20, 20, 20, 0.08);
  --card-highlight: rgba(255, 255, 255, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  scrollbar-width: none;
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: var(--letter-spacing);
}

body::-webkit-scrollbar {
  display: none;
}

html::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar {
  position: fixed;
  top: 6.8rem;
  right: 0.7rem;
  bottom: 1.4rem;
  z-index: 35;
  width: 0.34rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-fluid);
}

.custom-scrollbar.is-visible {
  opacity: 1;
}

.custom-scrollbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.custom-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 3.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translate3d(0, 0, 0);
  will-change: transform, height;
}

body[data-theme="light"] .custom-scrollbar::before {
  background: rgba(12, 12, 12, 0.045);
  box-shadow: inset 0 0 0 1px rgba(12, 12, 12, 0.035);
}

body[data-theme="light"] .custom-scrollbar-thumb {
  background: rgba(12, 12, 12, 0.3);
  box-shadow:
    0 0 16px rgba(12, 12, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 540ms var(--ease-fluid),
    visibility 0ms linear 540ms;
  visibility: hidden;
}

body:not(.is-ready)::before {
  opacity: 1;
  visibility: visible;
  transition: none;
}

body,
button,
a,
p,
h1,
span {
  letter-spacing: var(--letter-spacing);
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shader-layer,
.overlay-layer {
  position: fixed;
  inset: 0;
}

.shader-layer {
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
}

.overlay-layer {
  z-index: 1;
  background: var(--overlay);
  backdrop-filter: blur(1px);
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 2.2rem var(--container-pad) 3.2rem;
  transition:
    opacity 900ms var(--ease-fluid),
    filter 900ms var(--ease-fluid),
    transform 900ms var(--ease-fluid);
}

body:not(.is-ready) .page-shell {
  opacity: 0;
  filter: blur(22px);
  transform: translateY(22px) scale(0.985);
}

.site-header {
  position: fixed;
  top: 2.2rem;
  left: 50%;
  z-index: 20;
  width: var(--header-width);
  margin: 0;
  height: 68px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--header-stroke);
  border-radius: var(--header-radius-closed);
  background: var(--header-bg);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 var(--header-highlight);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  transform: translateX(-50%);
  transition:
    height 420ms var(--ease-fluid),
    background 320ms var(--ease-fluid),
    box-shadow 320ms var(--ease-fluid),
    opacity 820ms var(--ease-fluid),
    filter 820ms var(--ease-fluid),
    transform 820ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.site-header[data-open="true"] {
  height: 224px;
  border-radius: var(--header-radius-open);
  background: var(--header-bg);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 var(--header-highlight);
}

body:not(.is-ready) .site-header {
  opacity: 0;
  filter: blur(20px);
  transform: translateX(-50%) translateY(-72px) scale(0.96);
}

.header-bar {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 68px;
  padding: 0 18px;
}

.header-toggle,
.download-pill,
.brand-mark,
.panel-link,
.theme-chip,
.panel-link-button {
  transition:
    transform 280ms var(--ease-fluid),
    background-color 280ms var(--ease-fluid),
    color 280ms var(--ease-fluid),
    border-color 280ms var(--ease-fluid),
    opacity 280ms var(--ease-fluid),
    box-shadow 280ms var(--ease-fluid);
}

.header-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--muted-strong);
}

.header-toggle:hover,
.header-toggle:focus-visible {
  background: var(--switch-bg);
  color: var(--text);
}

.header-toggle img {
  width: 24px;
  height: 24px;
  filter: var(--icon-filter-strong);
  transform: rotate(90deg);
  transition: transform 380ms var(--ease-fluid);
}

.site-header[data-open="true"] .header-toggle img {
  transform: rotate(0deg);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.brand-mark img,
.hero-badge img {
  width: 18px;
  height: 18px;
  filter: var(--icon-filter);
}

.alysium-logo {
  display: block;
  object-fit: contain;
}

.brand-mark .alysium-logo {
  width: 2rem;
  height: 2rem;
}

.tamayura-mark {
  display: inline-grid;
  place-items: center;
  width: 1.18rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.38rem;
  background: linear-gradient(145deg, rgba(245, 245, 245, 0.92), rgba(138, 138, 138, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.42), 0 0 24px rgba(255, 255, 255, 0.12);
  color: #080808;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.download-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 117px;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(41, 41, 41, 0.9), rgba(32, 32, 32, 0.92));
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

body[data-theme="light"] .download-pill {
  background: linear-gradient(180deg, rgba(240, 240, 240, 0.98), rgba(228, 228, 228, 0.94));
  color: rgba(22, 22, 22, 0.92);
}

.download-pill:hover,
.download-pill:focus-visible {
  transform: none;
  background: linear-gradient(180deg, rgba(56, 56, 56, 0.95), rgba(34, 34, 34, 0.94));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

body[data-theme="light"] .download-pill:hover,
body[data-theme="light"] .download-pill:focus-visible {
  background: linear-gradient(180deg, rgba(250, 250, 250, 1), rgba(232, 232, 232, 0.98));
  color: rgba(16, 16, 16, 0.96);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.header-panel {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  height: 156px;
  border-radius: 0 0 var(--header-radius-open) var(--header-radius-open);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 10px 28px 14px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(12px);
  transform: translateY(-1.25rem) scale(0.96);
  transform-origin: top center;
  transition:
    opacity 320ms ease,
    filter 420ms var(--ease-fluid),
    transform 460ms cubic-bezier(0.18, 0.92, 0.22, 1),
    visibility 0ms linear 460ms;
}

.site-header[data-open="true"] .header-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition:
    opacity 320ms ease,
    filter 420ms var(--ease-fluid),
    transform 460ms cubic-bezier(0.18, 0.92, 0.22, 1),
    visibility 0ms linear 0ms;
}

.panel-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-column:nth-child(2) {
  transform: translateX(8px);
}

.panel-column:nth-child(3) {
  transform: translateX(20px);
}

.panel-title {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.panel-link,
.panel-link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.panel-link:hover,
.panel-link:focus-visible,
.panel-link-button:hover,
.panel-link-button:focus-visible {
  color: var(--text);
  transform: translateX(0.14rem);
}

.no-shift-link:hover,
.no-shift-link:focus-visible {
  transform: none;
}

.panel-link img,
.panel-link-button img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.84;
  filter: var(--icon-filter-muted);
}

.panel-link:hover img,
.panel-link:focus-visible img,
.panel-link-button:hover img,
.panel-link-button:focus-visible img {
  filter: var(--icon-filter);
}

.chevron-inline {
  width: 14px;
  height: 14px;
  opacity: 0.72;
}

.review-link {
  color: var(--text);
}

.color-toggle {
  color: var(--text);
}

.color-toggle img {
  filter: var(--icon-filter-strong);
}

.review-link img {
  width: 17px;
  height: 17px;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0;
  padding: 4px;
  width: fit-content;
  border-radius: 999px;
  background: var(--switch-bg);
}

.theme-chip {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
}

.theme-chip img {
  width: 16px;
  height: 16px;
  filter: var(--icon-filter-strong);
}

.theme-chip.is-active,
.theme-chip:hover,
.theme-chip:focus-visible {
  background: var(--switch-active);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  display: block;
  width: min(100%, 76rem);
  margin: clamp(28vh, 38vh, 26rem) auto 0;
  padding-left: clamp(0rem, 5vw, 9rem);
  min-height: 57vh;
  overflow: visible;
  animation: hero-rise 1100ms var(--ease-fluid) both;
  transition:
    opacity 980ms var(--ease-fluid),
    filter 980ms var(--ease-fluid),
    transform 980ms var(--ease-fluid);
}

body:not(.is-ready) .hero {
  opacity: 0;
  filter: blur(26px);
  transform: translateY(36px) scale(0.93);
}

body.is-ready .hero {
  transition-delay: 620ms;
}

.hero-copy {
  width: min(100%, 31rem);
  padding-bottom: 0.45rem;
}

.hero-title-row {
  display: grid;
  grid-template-columns: clamp(4.15rem, 5.7vw, 4.9rem) minmax(0, 1fr);
  align-items: start;
  column-gap: 0.92rem;
  padding-bottom: 0.2rem;
}

.hero-badge {
  display: grid;
  place-items: center;
  width: clamp(4.15rem, 5.7vw, 4.9rem);
  aspect-ratio: 1;
  margin-top: -0.5rem;
  color: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.06));
}

.hero-badge img {
  width: 100%;
  height: 100%;
}

.hero-badge .alysium-logo-hero {
  width: 100%;
  height: 100%;
  padding: 0.12rem;
}

.tamayura-mark-hero {
  width: 100%;
  border-radius: 1.1rem;
  font-size: clamp(1.55rem, 2.35vw, 2rem);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.3rem, 3.85vw, 3.2rem);
  line-height: 1.08;
  white-space: nowrap;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #5f5f5f 0%,
    #ececec 12.5%,
    #8d8d8d 25%,
    #ffffff 37.5%,
    #767676 50%,
    #ececec 62.5%,
    #8d8d8d 75%,
    #ffffff 87.5%,
    #5f5f5f 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: nowrap;
  filter: drop-shadow(0 1px 14px rgba(255, 255, 255, 0.03));
}

.hero-title-row,
.hero-description,
.hero-actions {
  transition:
    opacity 800ms var(--ease-fluid),
    filter 800ms var(--ease-fluid),
    transform 800ms var(--ease-fluid);
}

body:not(.is-ready) .hero-title-row {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(20px) scale(0.96);
}

body:not(.is-ready) .hero-description {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(26px);
}

body:not(.is-ready) .hero-actions {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px) scale(0.97);
}

body.is-ready .hero-title-row {
  transition-delay: 760ms;
}

body.is-ready .hero-description {
  transition-delay: 860ms;
}

body.is-ready .hero-actions {
  transition-delay: 960ms;
}

body[data-theme="light"] .hero-title {
  background-image: linear-gradient(
    90deg,
    #0f0f0f 0%,
    #7e7e7e 12.5%,
    #1f1f1f 25%,
    #9b9b9b 37.5%,
    #111111 50%,
    #7e7e7e 62.5%,
    #1f1f1f 75%,
    #9b9b9b 87.5%,
    #0f0f0f 100%
  );
}

.shimmer-text {
  animation: title-flow 2.4s linear infinite;
}

.hero-description {
  margin: 0.4rem 0 0;
  max-width: 26.4rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.36vw, 1.18rem);
  line-height: 1.42;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.84rem;
  margin-top: 1.14rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.08rem;
  padding: 0 1.26rem;
  border-radius: 0.96rem;
  text-decoration: none;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 700;
  transition:
    transform 300ms var(--ease-fluid),
    box-shadow 300ms var(--ease-fluid),
    background-color 300ms var(--ease-fluid),
    color 300ms var(--ease-fluid);
}

.primary-action {
  min-width: 11rem;
  background: var(--button-light);
  color: var(--button-light-text);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.08);
}

.secondary-action {
  min-width: 7.45rem;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .secondary-action {
  background: rgba(16, 16, 16, 0.12);
  color: rgba(18, 18, 18, 0.84);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  transform: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #f4f4f4;
  color: #0a0a0a;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.98);
}

body[data-theme="light"] .primary-action:hover,
body[data-theme="light"] .primary-action:focus-visible {
  background: #181818;
  color: #ffffff;
}

body[data-theme="light"] .secondary-action:hover,
body[data-theme="light"] .secondary-action:focus-visible {
  background: rgba(16, 16, 16, 0.18);
  color: rgba(18, 18, 18, 0.96);
}

.content-section {
  width: min(100%, 74.5rem);
  margin: 0 auto;
  padding: 5.2rem 0 0;
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 4.3vw, 3.75rem);
  line-height: 0.94;
  font-weight: 500;
}

.section-heading p {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.35;
}

.pricing-section .section-heading p {
  max-width: 26rem;
  font-size: clamp(0.82rem, 1.05vw, 0.96rem);
}

.video-section .section-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.15rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
}

.feature-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-stroke);
  border-radius: 9px;
  background:
    linear-gradient(180deg, var(--card-highlight), transparent 34%),
    var(--card-bg);
  box-shadow: inset 0 1px 0 var(--card-highlight);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
}

.feature-card {
  grid-column: span 2;
  min-height: 19.4rem;
  padding: 1rem;
}

.feature-card-wide {
  grid-column: span 4;
}

.feature-card p {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.35;
}

.feature-card strong {
  color: var(--text);
  font-weight: 700;
}

.feature-visual {
  position: absolute;
  inset: 0.6rem;
  overflow: hidden;
  border-radius: 7px;
  opacity: 0.78;
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.18;
}

.mock-panel,
.config-card,
.hud-chip,
.hud-card,
.elements-visual span {
  border: 1px solid var(--card-stroke);
  background: rgba(230, 230, 230, 0.72);
  color: rgba(10, 10, 10, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .mock-panel,
body[data-theme="light"] .config-card,
body[data-theme="light"] .hud-chip,
body[data-theme="light"] .hud-card,
body[data-theme="light"] .elements-visual span {
  background: rgba(255, 255, 255, 0.76);
  color: rgba(18, 18, 18, 0.78);
}

.mock-panel {
  position: absolute;
  display: grid;
  gap: 0.75rem;
  width: 15.2rem;
  padding: 1.05rem;
  border-radius: 12px;
}

.mock-panel-main {
  left: 1.1rem;
  top: 3.2rem;
  transform: rotate(-1.5deg);
}

.mock-panel-float {
  left: 9.8rem;
  top: 1.1rem;
  transform: rotate(3deg);
}

.mock-title {
  font-weight: 700;
}

.mock-line,
.mock-pill,
.mock-slider,
.mock-dots {
  display: block;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.11);
}

.mock-line.short {
  width: 62%;
}

.mock-pill {
  width: 68%;
  height: 1.6rem;
}

.mock-slider {
  width: 82%;
}

.mock-toggle {
  justify-self: end;
  width: 2rem;
  height: 1.05rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
}

.hud-visual,
.elements-visual {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.1rem;
}

.hud-chip,
.hud-card,
.elements-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.75rem;
  border-radius: 7px;
  font-size: 0.72rem;
}

.hud-chip.dim,
.hud-card {
  opacity: 0.58;
}

.hud-card {
  min-width: 11rem;
  min-height: 4rem;
  align-items: flex-start;
  padding-top: 0.8rem;
}

.config-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

.config-card {
  position: relative;
  z-index: 1;
  width: 15rem;
  min-height: 8rem;
  padding: 1rem;
  border-radius: 10px;
}

.config-card span {
  font-weight: 700;
}

.config-card p {
  position: static;
  margin: 0.8rem 0 0;
  color: inherit;
  font-size: 0.78rem;
}

.config-card small {
  display: block;
  margin-top: 0.9rem;
  opacity: 0.56;
}

.muted-card {
  margin-top: 2.8rem;
  opacity: 0.58;
}

.elements-visual {
  padding-top: 1.25rem;
}

.elements-visual span:nth-child(2n) {
  opacity: 0.72;
}

.elements-visual span:nth-child(3n) {
  margin-top: 1.2rem;
}

.pricing-section {
  padding-top: 13rem;
}

.loader-section {
  padding-top: 10.25rem;
}

.loader-section + .video-section {
  padding-top: 8.5rem;
}

.loader-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr) minmax(12rem, 15rem);
  align-items: center;
  gap: 1.45rem;
  width: min(100%, 62rem);
  min-height: 8.75rem;
  margin: 0 auto;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--card-stroke);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(135deg, var(--card-highlight), transparent 38%),
    var(--card-bg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
}

.loader-card-logo {
  width: 4.8rem;
  height: 4.8rem;
  padding: 0.55rem;
  filter: var(--icon-filter);
}

.loader-card-copy {
  min-width: 0;
}

.loader-card-kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.loader-card h3,
.loader-card p {
  margin: 0;
}

.loader-card h3 {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.15;
}

.loader-card p {
  margin-top: 0.38rem;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.loader-download.plan-action {
  position: static;
  min-height: 3.15rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.video-section {
  padding-top: 8.5rem;
}

.video-section + .pricing-section {
  padding-top: 24rem;
}

.youtube-frame {
  display: block;
  width: min(100%, 50rem);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--card-stroke);
  border-radius: 1.35rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 48%), var(--card-bg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 260ms var(--ease-fluid), border-color 260ms var(--ease-fluid);
}

.youtube-placeholder:hover,
.youtube-placeholder:focus-visible {
  transform: translateY(-0.25rem);
  border-color: rgba(255, 255, 255, 0.38);
}

.youtube-placeholder small {
  color: var(--muted);
}

.video-play {
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 3.25rem;
  padding-left: 0.18rem;
  border-radius: 0.85rem;
  background: #ff0033;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 14px 34px rgba(255, 0, 51, 0.22);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(19rem, 25rem));
  justify-content: center;
  gap: 0.75rem;
}

.price-card {
  min-height: 30rem;
  padding: 1.45rem;
}

.price-card-featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(180deg, var(--card-highlight), transparent 34%),
    var(--card-bg);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-value {
  margin: 2.6rem 0 1.8rem;
  color: var(--text);
  font-size: 4.7rem;
  line-height: 0.9;
  font-weight: 500;
}

.price-value span {
  color: var(--muted);
  font-size: 1rem;
}

.price-value small {
  color: var(--muted-strong);
  font-size: 0.3em;
  font-weight: 500;
  vertical-align: middle;
}

.price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1rem;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 0.88rem;
  list-style: none;
}

.price-features li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 0.92rem;
  height: 0.92rem;
  margin-right: 0.35rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.55rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 2.6rem;
}

.payment-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2rem;
  border: 1px solid var(--card-stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  transition:
    background-color 260ms var(--ease-fluid),
    color 260ms var(--ease-fluid);
}

.payment-grid img {
  width: 0.92rem;
  height: 0.92rem;
  filter: var(--icon-filter-muted);
}

.payment-grid button:hover,
.payment-grid button:focus-visible {
  background: var(--switch-active);
  color: var(--text);
}

.plan-action {
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.45rem;
  display: grid;
  place-items: center;
  min-height: 3rem;
  border-radius: 9px;
  background: var(--button-light);
  color: var(--button-light-text);
  text-decoration: none;
  font-weight: 600;
  transition:
    background-color 260ms var(--ease-fluid),
    color 260ms var(--ease-fluid),
    box-shadow 260ms var(--ease-fluid);
}

.plan-action:hover,
.plan-action:focus-visible {
  background: #f4f4f4;
  color: #0a0a0a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

body[data-theme="light"] .plan-action:hover,
body[data-theme="light"] .plan-action:focus-visible {
  background: #181818;
  color: #fff;
}

.site-footer {
  width: min(100%, 74.5rem);
  margin: 22rem auto 0;
  padding: 3.2rem 0 1.5rem;
  border-top: 1px solid var(--card-stroke);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(18rem, 28rem) 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.footer-logo img {
  width: 1.35rem;
  height: 1.35rem;
  filter: var(--icon-filter);
}

.footer-brand p {
  margin: 1rem 0 1.4rem;
  max-width: 28rem;
  color: var(--muted-strong);
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--card-stroke);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
}

.footer-socials img,
.footer-nav img {
  width: 1rem;
  height: 1rem;
  filter: var(--icon-filter-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: clamp(2rem, 5vw, 5rem);
  transform: translateX(-1.35rem);
}

.footer-nav p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  color: var(--muted-strong);
  text-decoration: none;
  transition: color 240ms var(--ease-fluid);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.reveal-section {
  opacity: 0;
  filter: blur(24px);
  transform: translateY(64px) scale(0.975);
  transition:
    opacity 1050ms var(--ease-fluid),
    filter 1050ms var(--ease-fluid),
    transform 1050ms var(--ease-fluid);
}

.reveal-section.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal-section .feature-card,
.reveal-section .loader-card,
.reveal-section .price-card,
.reveal-section .footer-brand,
.reveal-section .footer-nav > div,
.reveal-section .footer-bottom {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 850ms var(--ease-fluid),
    filter 850ms var(--ease-fluid),
    transform 850ms var(--ease-fluid);
}

.reveal-section.is-visible .feature-card,
.reveal-section.is-visible .loader-card,
.reveal-section.is-visible .price-card,
.reveal-section.is-visible .footer-brand,
.reveal-section.is-visible .footer-nav > div,
.reveal-section.is-visible .footer-bottom {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal-section.is-visible .feature-card:nth-child(2),
.reveal-section.is-visible .price-card:nth-child(2),
.reveal-section.is-visible .footer-nav > div:nth-child(2) {
  transition-delay: 110ms;
}

.reveal-section.is-visible .feature-card:nth-child(3),
.reveal-section.is-visible .price-card:nth-child(3),
.reveal-section.is-visible .footer-nav > div:nth-child(3) {
  transition-delay: 220ms;
}

.reveal-section.is-visible .feature-card:nth-child(4),
.reveal-section.is-visible .footer-bottom {
  transition-delay: 330ms;
}

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

@keyframes title-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes hero-rise {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .page-shell {
    padding-top: 1rem;
  }

  .site-header {
    top: 1rem;
    width: min(100%, 44rem);
  }

  .header-panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.2rem 1rem 1rem;
    height: auto;
  }

  .panel-column:nth-child(2),
  .panel-column:nth-child(3) {
    transform: none;
  }

  .hero {
    margin-top: 16rem;
    padding-left: 0;
  }

  .content-section {
    padding-top: 4rem;
  }

  .pricing-section {
    padding-top: 8rem;
  }

  .loader-section {
    padding-top: 7rem;
  }

  .features-grid,
  .pricing-grid,
  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
    transform: none;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 18rem;
  }

  .pricing-grid {
    gap: 0.65rem;
  }

  .loader-card {
    grid-template-columns: 4.2rem minmax(0, 1fr);
  }

  .loader-download.plan-action {
    grid-column: 1 / -1;
  }

  .price-card {
    min-height: 31rem;
  }

  .footer-main {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .site-header[data-open="true"] {
    height: 244px;
  }

  .header-bar {
    grid-template-columns: 2.7rem 1fr auto;
    gap: 0.6rem;
  }

  .header-panel {
    top: 68px;
    height: 176px;
    padding: 0.9rem 1rem;
  }

  .download-pill {
    min-width: auto;
    padding: 0 1.1rem;
  }

  .hero {
    margin-top: 13.5rem;
  }

  .hero-title-row {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 0.9rem;
  }

  .hero-title {
    white-space: nowrap;
    font-size: clamp(1.78rem, 7vw, 2.18rem);
  }

  .hero-badge {
    width: 4rem;
    margin-top: -0.7rem;
  }


  .hero-description {
    max-width: 24rem;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
  }

  .section-heading {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .section-heading p {
    margin-left: 0;
  }

  .feature-card {
    min-height: 20rem;
  }

  .mock-panel {
    width: 12.5rem;
  }

  .mock-panel-float {
    left: 6.5rem;
  }

  .price-card {
    min-height: 33rem;
    padding: 1.1rem;
  }

  .loader-card {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.1rem;
  }

  .loader-card-logo {
    width: 3.9rem;
    height: 3.9rem;
    padding: 0.35rem;
  }

  .loader-download.plan-action {
    width: 100%;
  }

  .price-value {
    font-size: 3.7rem;
  }

  .price-features,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .plan-action {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .site-footer {
    margin-top: 13rem;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}
