:root {
  --black: #000000;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.54);
  --line: rgba(255, 255, 255, 0.17);
  --line-strong: rgba(255, 255, 255, 0.35);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: #050505;
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.header-action,
.site-header nav a,
.button {
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions[hidden] {
  display: none !important;
}

.brand {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.72rem;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

.site-header nav {
  display: flex;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
}

.site-header nav a {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  padding: 0 1rem;
  font-size: 0.78rem;
  text-decoration: none;
}

.site-header nav a:last-child {
  border-right: 0;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header nav a.active {
  background: var(--white);
  color: var(--black);
}

.site-header nav a.active:hover {
  background: var(--white);
  color: var(--black);
}

.header-action {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 0 1.1rem;
  font-size: 0.82rem;
}

.login-action {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--white);
}

.start-action {
  min-width: 9.4rem;
}

main {
  min-height: 100svh;
  padding-top: 5rem;
}

.page {
  display: none;
  min-height: calc(100svh - 5rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
}

.page[hidden] {
  display: none !important;
}

.page.active {
  display: grid;
  animation: pageIn 260ms var(--ease-out) both;
}

.page.active h1,
.page.active h2 {
  animation: contentIn 320ms var(--ease-out) both;
}

.page.active .hero-text,
.page.active .hero-actions,
.page.active .auth-panel,
.page.active .dashboard-app,
.page.active .money-chart,
.page.active .crypto-checkout {
  animation: contentIn 340ms var(--ease-out) both;
  animation-delay: 45ms;
}

.page.active .chart-bar {
  animation: barIn 460ms var(--ease-out) both;
}

.page.active .chart-bar:nth-child(2) {
  animation-delay: 45ms;
}

.page.active .chart-bar:nth-child(3) {
  animation-delay: 90ms;
}

.page.active .chart-bar:nth-child(4) {
  animation-delay: 135ms;
}

.page.active .client-card,
.page.active .video-card {
  animation: contentIn 340ms var(--ease-out) both;
}

.page.active .client-card:nth-child(2),
.page.active .video-card:nth-child(2) {
  animation-delay: 35ms;
}

.page.active .client-card:nth-child(3),
.page.active .video-card:nth-child(3) {
  animation-delay: 70ms;
}

.page.active .client-card:nth-child(4) {
  animation-delay: 105ms;
}

.page.active .client-card:nth-child(5) {
  animation-delay: 140ms;
}

.page.active .client-card:nth-child(6) {
  animation-delay: 175ms;
}

.page.active .client-card:nth-child(7) {
  animation-delay: 210ms;
}

.page.active .client-card:nth-child(8) {
  animation-delay: 245ms;
}

.page.active .client-card:nth-child(9) {
  animation-delay: 280ms;
}

.page.active .client-card:nth-child(10) {
  animation-delay: 315ms;
}

.hero {
  align-content: center;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(6rem, 18vw, 17rem);
  line-height: 0.8;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  max-width: 12ch;
  margin: 0 0 2rem;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
}

.support h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.5rem, 6.5vw, 6.5rem);
}

.support {
  align-content: start;
  gap: 0.35rem;
}

.free-page {
  align-content: center;
  justify-items: center;
}

.free-panel {
  display: grid;
  gap: 1.15rem;
  width: min(100%, 58rem);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(1rem, 2.4vw, 2rem);
}

.free-panel h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(4rem, 12vw, 11rem);
}

.free-panel p {
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.free-panel .wallet-box {
  min-height: 5.2rem;
}

.free-rules {
  background: rgba(255, 255, 255, 0.045);
}

h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-text {
  max-width: 55rem;
  margin: 1.5rem 0 0;
  color: var(--soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  padding: 0 1.25rem;
  font-size: 0.98rem;
}

.button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button.primary:hover {
  background: rgba(255, 255, 255, 0.86);
}

.button.primary.is-disabled,
.button.primary:disabled {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.button.primary:disabled {
  cursor: not-allowed;
}

.button.primary.is-disabled:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.full {
  width: 100%;
}

.client-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-card,
.video-card {
  min-height: 19rem;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: background 160ms ease, border-color 160ms ease;
}

.client-card:hover,
.video-card:hover,
.auth-panel:hover,
.money-chart:hover {
  background: var(--panel-strong);
}

.client-card:hover,
.video-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.client-image {
  display: grid;
  min-height: 9rem;
  place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
  color: var(--soft);
  font-weight: 900;
  text-transform: uppercase;
}

.client-image img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.client-card h3 {
  margin-top: 1.3rem;
}

.money-chart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.28fr);
  gap: 1rem;
  min-height: 32rem;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1rem;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
  min-height: 29rem;
  border: 1px solid var(--line);
  padding: 1rem;
}

.chart-bar {
  display: grid;
  min-height: var(--height);
  align-content: space-between;
  justify-items: center;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 1rem 0.4rem;
}

.hexa-bar {
  background: transparent;
  color: var(--white);
}

.chart-bar strong {
  font-size: clamp(1.4rem, 3vw, 3rem);
  line-height: 1;
}

.chart-bar span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  text-transform: uppercase;
}

.chart-note {
  display: grid;
  align-content: center;
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
}

.chart-note h3 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.chart-note p {
  margin: 0;
  color: var(--soft);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 800;
}

.dashboard {
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.36fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  align-content: start;
}

.dashboard h2 {
  max-width: none;
  white-space: nowrap;
}

.dashboard.signed-in {
  min-height: calc(100svh - 5rem);
  padding-top: clamp(1rem, 2.2vw, 2rem);
}

.auth-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
}

.auth-panel[hidden],
.dashboard-app[hidden] {
  display: none !important;
}

.dashboard-app {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
}

.dashboard-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.dashboard-bar button {
  min-height: 3.5rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-bar button:last-child {
  border-right: 0;
}

.dashboard-bar button:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.dashboard-bar button.active {
  background: var(--white);
  color: var(--black);
}

.support-app {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
}

.support-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.support-tabs button {
  min-height: 2.65rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-tabs button:last-child {
  border-right: 0;
}

.support-tabs button:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.support-tabs button.active {
  background: var(--white);
  color: var(--black);
}

.support-panel {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.85rem;
}

.support-panel[hidden] {
  display: none !important;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0;
}

.faq-item button {
  width: 100%;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.faq-item button::after {
  content: "+";
  font-size: 1rem;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0.85rem;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.faq-item.open p {
  display: block;
}

.dashboard-panel {
  display: grid;
  gap: 1rem;
  min-height: 22rem;
  align-content: start;
  padding: clamp(1rem, 2.4vw, 2rem);
  background: var(--panel);
}

.dashboard-panel[hidden] {
  display: none !important;
}

.dashboard-panel h3 {
  margin-bottom: 1.25rem;
}

.account-block {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  padding: 1rem;
}

.account-block h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.25fr) minmax(0, 1fr) auto;
  min-height: 4.2rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  padding: 0 1rem;
}

.dashboard-row[hidden] {
  display: none !important;
}

.membership-row {
  grid-template-columns: minmax(8rem, 0.22fr) minmax(0, 1fr);
  min-height: 3.3rem;
}

.dashboard-row span,
.auth-message {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-row strong {
  display: block;
  text-align: right;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  text-transform: uppercase;
}

.dashboard-row .mini-copy {
  justify-self: end;
}

.panel-note {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 750;
}

.os-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.os-options button {
  min-height: 3.4rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.os-options button:last-child {
  border-right: 0;
}

.os-options button:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.os-options button.active {
  background: var(--white);
  color: var(--black);
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-page {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  align-content: start;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.55fr);
  gap: 1rem;
}

.checkout-plan {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  text-transform: uppercase;
}

.crypto-checkout {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.crypto-checkout[hidden] {
  display: none !important;
}

.checkout-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 3.35rem;
  border: 1px solid var(--line);
  padding: 0 1rem;
  text-transform: uppercase;
}

.checkout-head span {
  color: var(--muted);
  font-weight: 900;
}

.checkout-head strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  text-align: right;
}

.crypto-options {
  display: grid;
  grid-row: 1 / span 4;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
}

.crypto-options button {
  display: grid;
  min-height: 5.2rem;
  place-items: center;
  gap: 0.35rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.crypto-options button:last-child {
  border-bottom: 0;
}

.crypto-options button:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.crypto-options button.active {
  background: var(--white);
  color: var(--black);
}

.crypto-options svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.crypto-options text {
  fill: currentColor;
  stroke: none;
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
}

.crypto-options svg circle,
.crypto-options svg path {
  vector-effect: non-scaling-stroke;
}

.crypto-options [data-crypto="btc"] svg,
.crypto-options [data-crypto="btc"] svg circle,
.crypto-options [data-crypto="btc"] svg path {
  fill: none;
}

.wallet-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--line);
  padding: 1rem;
}

.wallet-box span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-box code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mini-copy {
  min-height: 2.35rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-copy:hover {
  background: var(--white);
  color: var(--black);
}

.purchase-plan {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 29rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 1rem;
  text-align: left;
  text-transform: uppercase;
}

.purchase-plan:hover,
.purchase-plan.active {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.plan-top,
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.plan-top {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.plan-top strong {
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  line-height: 0.95;
}

.plan-top b {
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1;
}

.feature-row {
  min-height: 2.15rem;
  border: 1px solid var(--line);
  padding: 0 0.6rem;
  color: var(--soft);
  font-size: 0.78rem;
}

.feature-row i,
.feature-row em {
  font-style: normal;
}

.feature-row .yes {
  color: #22c55e;
  font-weight: 900;
}

.feature-row .no {
  color: #ef4444;
  font-weight: 900;
}

.feature-row em {
  color: var(--white);
}

.plan-cta {
  display: grid;
  min-height: 3rem;
  place-items: center;
  margin-top: 0.35rem;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.auth-message {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.78rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.auth-tabs button {
  min-height: 3.2rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-tabs button:last-child {
  border-right: 0;
}

.auth-tabs .active {
  background: var(--white);
  color: var(--black);
}

input {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  outline: none;
  padding: 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
}

input:focus {
  border-color: var(--white);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  min-height: 24rem;
}

.video-box {
  display: grid;
  min-height: 15rem;
  place-items: center;
  border: 1px solid var(--line);
  background: #050505;
}

.video-box span {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  place-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3 {
  margin-top: 1.3rem;
}

.discord-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.8rem;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 0.9rem 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discord-logo {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid var(--black);
  font-family: "JetBrains Mono", monospace;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: min(24rem, calc(100vw - 2rem));
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 1rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.45);
  animation: toastIn 180ms var(--ease-out) both;
}

.toast[hidden] {
  display: none !important;
}

@keyframes pageIn {
  from {
    opacity: 0;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barIn {
  from {
    opacity: 0;
    transform: scaleY(0.94);
    transform-origin: bottom;
  }
  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
  }

  main {
    padding-top: 7.9rem;
  }

  .page {
    min-height: calc(100svh - 7.9rem);
  }

  .client-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .money-chart,
  .dashboard,
  .free-page,
  .checkout-page,
  .checkout-shell,
  .crypto-checkout {
    grid-template-columns: 1fr;
  }

  .crypto-options {
    grid-row: auto;
  }

  .dashboard-app {
    grid-template-columns: 1fr;
  }

  .dashboard-bar,
  .purchase-grid,
  .os-options,
  .crypto-options {
    grid-template-columns: 1fr;
  }

  .dashboard-bar button,
  .os-options button,
  .crypto-options button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-block: 1rem;
  }

  .dashboard-row strong,
  .dashboard-row .mini-copy {
    justify-self: start;
    text-align: left;
  }

  .checkout-head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-block: 1rem;
  }

  .dashboard-row strong {
    text-align: left;
  }

  .membership-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.8rem;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header nav a {
    padding: 0 0.8rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .login-action {
    display: none;
  }

  .start-action {
    min-width: 0;
    padding: 0 0.8rem;
  }

  h1 {
    font-size: clamp(4.5rem, 28vw, 7rem);
  }

  h2 {
    font-size: 3.4rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .client-grid,
  .video-grid,
  .chart-bars {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    min-height: auto;
  }

  .chart-bar {
    min-height: 5rem;
  }

  .chart-bar span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .client-card,
  .video-card {
    min-height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
