:root {
  --bg: #030506;
  --bg-soft: #07100d;
  --panel: rgba(9, 18, 16, 0.78);
  --panel-solid: #0a1110;
  --line: rgba(119, 255, 180, 0.18);
  --line-strong: rgba(119, 255, 180, 0.42);
  --text: #f3fff8;
  --muted: #9ab0a6;
  --green: #42ff88;
  --cyan: #39d8ff;
  --gold: #ffd66b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --radius: 8px;
  --header-height: 84px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(66, 255, 136, 0.05), transparent 480px),
    radial-gradient(circle at 50% -20%, rgba(57, 216, 255, 0.1), transparent 32rem),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.25;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

html[data-auth-ready="false"] [data-auth-signed-in],
html[data-auth-ready="false"] [data-auth-signed-out],
html[data-auth-ready="false"] [data-pricing-auth-action],
html[data-auth-ready="false"] [data-pricing-auth-note] {
  visibility: hidden;
}

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

button {
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 16px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.54));
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, border-color 220ms ease, background 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(3, 5, 6, 0.82);
  border-color: rgba(119, 255, 180, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup {
  display: inline-grid;
  min-width: 176px;
  min-height: 48px;
  align-items: center;
}

.brand-image,
.brand-fallback {
  grid-area: 1 / 1;
}

.brand-image {
  width: min(250px, 42vw);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transition: opacity 200ms ease;
}

.brand-lockup.has-logo .brand-image {
  opacity: 1;
}

.brand-lockup.has-logo .brand-fallback {
  opacity: 0;
}

.brand-fallback {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: opacity 200ms ease;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #021009;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, var(--green), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 0 34px rgba(66, 255, 136, 0.24);
}

.brand-name {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--green);
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  color: rgba(243, 255, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a[hidden] {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mobile-header-language {
  display: none;
}

.language-control::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  min-width: 118px;
  height: 20px;
  content: "";
}

.language-trigger {
  display: inline-flex;
  min-width: 96px;
  height: 44px;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 0 14px;
  color: rgba(243, 255, 248, 0.86);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(119, 255, 180, 0.22);
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-trigger .language-country-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.language-trigger .language-country-flag svg {
  width: 20px;
  height: 20px;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-trigger[aria-expanded="true"],
.language-control:hover .language-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(66, 255, 136, 0.58);
  box-shadow: 0 0 24px rgba(66, 255, 136, 0.13);
  outline: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 75;
  display: grid;
  min-width: 118px;
  max-height: min(320px, calc(100vh - 110px));
  gap: 3px;
  padding: 6px;
  overflow-y: auto;
  pointer-events: none;
  background: rgba(2, 3, 3, 0.98);
  border: 1px solid rgba(119, 255, 180, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.language-control:not(.is-hover-suppressed):hover .language-menu,
.language-control:not(.is-hover-suppressed):focus-within .language-menu,
.language-control.is-open .language-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.language-menu button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  color: rgba(243, 255, 248, 0.78);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[aria-selected="true"] {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  outline: none;
}

@media (min-width: 921px) {
  .site-nav.has-account > .language-control {
    display: none;
  }
}

.auth-account {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.auth-account[hidden] {
  display: none;
}

.auth-account::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 158px;
  height: 10px;
  content: "";
}

.account-trigger {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: rgba(243, 255, 248, 0.86);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(119, 255, 180, 0.22);
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.account-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.account-icon::before,
.account-icon::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.account-icon::before {
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.account-icon::after {
  bottom: 1px;
  width: 16px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 4px 4px;
}

.account-trigger:hover,
.account-trigger:focus-visible,
.account-trigger[aria-expanded="true"],
.auth-account:hover .account-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(66, 255, 136, 0.58);
  box-shadow: 0 0 24px rgba(66, 255, 136, 0.13);
  outline: none;
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  display: grid;
  min-width: 158px;
  gap: 3px;
  padding: 6px;
  pointer-events: none;
  background: rgba(2, 3, 3, 0.98);
  border: 1px solid rgba(119, 255, 180, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.auth-account:hover .account-menu,
.auth-account:focus-within .account-menu,
.auth-account.is-open .account-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.site-nav .account-menu a,
.site-nav .account-menu button {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  color: rgba(243, 255, 248, 0.78);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.site-nav .account-menu a::after {
  display: none;
}

.site-nav .account-menu a:hover,
.site-nav .account-menu a:focus-visible,
.site-nav .account-menu button:hover,
.site-nav .account-menu button:focus-visible {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  outline: none;
}

.account-language-action .language-country-flag {
  margin-left: auto;
}

.account-language-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.account-language-panel {
  position: relative;
  display: grid;
  width: min(320px, calc(100vw - 40px));
  gap: 10px;
  padding: 18px;
  background: rgba(2, 3, 3, 0.98);
  border: 1px solid rgba(119, 255, 180, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58), 0 0 36px rgba(66, 255, 136, 0.12);
}

.account-language-panel h2 {
  margin: 0 42px 4px 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.1;
}

.account-language-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: rgba(243, 255, 248, 0.8);
  font-size: 1.3rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(119, 255, 180, 0.2);
  border-radius: 8px;
}

.account-language-close:hover,
.account-language-close:focus-visible {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  outline: none;
}

.account-language-options {
  display: grid;
  gap: 6px;
}

.account-language-section-title {
  margin: 8px 0 -1px;
  color: rgba(243, 255, 248, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.account-language-options button {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: rgba(243, 255, 248, 0.82);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(119, 255, 180, 0.14);
  border-radius: 8px;
}

.account-currency-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-currency-options button {
  justify-content: center;
  min-height: 38px;
  padding: 0 6px;
  text-align: center;
}

.account-currency-code {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-country-flag {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.language-country-flag svg {
  display: block;
  width: 20px;
  height: 20px;
}

.account-language-options button:hover,
.account-language-options button:focus-visible,
.account-language-options button[aria-selected="true"] {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  outline: none;
}

.menu-toggle {
  position: relative;
  z-index: 42;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 68px) 0 78px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.78;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.95) 0%, rgba(3, 5, 6, 0.82) 34%, rgba(3, 5, 6, 0.28) 72%, rgba(3, 5, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.15), var(--bg) 98%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(66, 255, 136, 0.18) 39%, transparent 40% 100%),
    linear-gradient(0deg, rgba(57, 216, 255, 0.1), transparent 36%);
  opacity: 0.65;
  animation: scanSweep 6s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1420px, calc(100% - 32px));
  grid-template-columns: minmax(690px, 1fr) minmax(370px, 500px);
  gap: clamp(0px, 0.45vw, 8px);
  align-items: start;
  align-self: center;
  padding-top: 24px;
}

.hero-intro {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.discord-section h2 {
  max-width: 890px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.1rem, 5.2vw, 5.55rem);
  white-space: nowrap;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(243, 255, 248, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions small {
  flex: 1 0 100%;
  color: rgba(243, 255, 248, 0.74);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(110%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button span {
  position: relative;
  z-index: 1;
}

.button-with-icon {
  gap: 9px;
}

.button-icon {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.45));
}

.button-primary {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 42px rgba(66, 255, 136, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.7;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: calc(100% + 44px);
  max-width: none;
  margin-right: -22px;
  margin-left: -22px;
  margin-top: 52px;
}

.hero-metrics div,
.about-numbers div {
  min-height: 108px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(10, 20, 17, 0.74), rgba(5, 9, 9, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-metrics strong,
.about-numbers strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.hero-metrics span,
.about-numbers span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.section {
  padding: 110px 0;
  background: var(--bg);
}

.bot-section {
  background:
    linear-gradient(180deg, var(--bg), #06100d 48%, var(--bg));
}

.bot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.bot-copy {
  display: grid;
  gap: 34px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.about-copy h2,
.discord-section h2 {
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1;
}

.section-copy p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.discord-layout p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-stack article {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(66, 255, 136, 0.08), transparent 65%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-stack article:nth-child(4),
.feature-stack article:nth-child(5) {
  background:
    linear-gradient(90deg, rgba(57, 216, 255, 0.07), transparent 65%),
    rgba(255, 255, 255, 0.032);
}

.feature-stack article::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(var(--green), var(--cyan));
}

.feature-stack span {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.feature-stack h3,
.offer-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.25;
}

.feature-stack p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-snipe-showcase {
  width: 100%;
  max-width: 540px;
  justify-self: start;
  align-self: start;
  transform: translateX(-24px);
}

.snipe-stage {
  position: relative;
  display: grid;
  min-height: 0;
  height: clamp(340px, 31vw, 382px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(66, 255, 136, 0.16), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(255, 214, 107, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(6, 14, 11, 0.94), rgba(1, 3, 3, 0.98));
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 0 58px rgba(29, 255, 48, 0.16),
    var(--shadow);
}

.snipe-stage::before {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(66, 255, 136, 0.14);
  border-radius: 8px;
}

.snipe-stage::after {
  position: absolute;
  inset: -40% -28% auto auto;
  width: 360px;
  height: 360px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(66, 255, 136, 0.24), transparent 68%);
}

.snipe-countdown,
.snipe-result {
  grid-area: 1 / 1;
  width: 100%;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease, visibility 0s linear 420ms;
}

.snipe-countdown.is-active,
.snipe-result.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.snipe-countdown {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: grid;
  min-height: 100%;
  gap: 20px;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(66, 255, 136, 0.16), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(255, 214, 107, 0.12), transparent 28%),
    linear-gradient(180deg, #060e0b, #010303);
}

.snipe-orbit {
  position: relative;
  display: grid;
  width: min(214px, 52vw);
  height: min(214px, 52vw);
  grid-template-rows: 1fr auto 10px auto 1fr;
  justify-items: center;
  align-items: center;
  color: #1aff00;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(26, 255, 0, 0.32), 0 0 92px rgba(26, 255, 0, 0.15);
  animation: fi-countdown-pulse 1.3s ease-in-out infinite;
}

.snipe-orbit::before,
.snipe-orbit::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.snipe-orbit::before {
  inset: -12px;
  background: conic-gradient(from 0deg, #1aff00, rgba(255, 255, 255, 0.9), #1aff00, rgba(26, 255, 0, 0.22), #1aff00);
  animation: fi-countdown-spin 1.6s linear infinite;
}

.snipe-orbit::after {
  inset: 9px;
  background: radial-gradient(circle, #081108 0%, #030403 100%);
  box-shadow: inset 0 0 28px rgba(26, 255, 0, 0.26);
}

.snipe-label,
.snipe-orbit strong {
  position: relative;
  z-index: 1;
}

.snipe-label {
  grid-row: 2;
  width: 130px;
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.1;
}

.snipe-orbit strong {
  grid-row: 4;
  align-self: center;
  color: #1aff00;
  font-size: clamp(3.55rem, 6.2vw, 4.8rem);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 0 18px rgba(26, 255, 0, 0.74);
  transition: transform 180ms ease, opacity 180ms ease;
}

.snipe-countdown p {
  margin: 0;
  color: rgba(243, 255, 248, 0.78);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snipe-result {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.snipe-card {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12, 30, 52, 0.94), rgba(229, 198, 96, 0.16)),
    #050706;
  border: 1px solid rgba(255, 214, 107, 0.62);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 214, 107, 0.16);
}

.snipe-card.has-card-image {
  min-height: 0;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44), 0 0 32px rgba(255, 214, 107, 0.18);
}

.snipe-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 205px);
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.snipe-card.has-card-image .card-rating,
.snipe-card.has-card-image .card-position,
.snipe-card.has-card-image > strong,
.snipe-card.has-card-image .card-stats {
  display: none;
}

.snipe-card.is-card-missing::after {
  content: "ADD CARD";
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 950;
}

.card-rating,
.card-position,
.snipe-card > strong,
.card-stats {
  position: relative;
  z-index: 1;
}

.card-rating {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 950;
}

.card-position {
  position: absolute;
  top: 62px;
  left: 24px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
}

.snipe-card > strong {
  align-self: end;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(255, 214, 107, 0.48);
}

.card-stats {
  display: flex;
  gap: 9px;
  align-self: end;
  flex-wrap: wrap;
  justify-content: center;
}

.card-stats span {
  color: #09100b;
  padding: 5px 7px;
  font-size: 0.68rem;
  font-weight: 950;
  background: var(--gold);
  border-radius: 6px;
}

.snipe-profit {
  display: grid;
  gap: 12px;
}

.profit-tag {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: #041009;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 8px;
}

.snipe-profit dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.snipe-profit dl div {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  background: rgba(5, 7, 6, 0.82);
  border: 1px solid rgba(66, 255, 136, 0.28);
  border-radius: 8px;
}

.snipe-profit dt {
  color: rgba(243, 255, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snipe-profit dd {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2.35vw, 1.62rem);
  font-weight: 950;
  line-height: 1;
}

.profit-total {
  background: linear-gradient(135deg, rgba(66, 255, 136, 0.16), rgba(255, 214, 107, 0.08)) !important;
  border-color: rgba(66, 255, 136, 0.54) !important;
  box-shadow: 0 0 30px rgba(66, 255, 136, 0.13);
}

.profit-total dd {
  color: var(--green);
  text-shadow: 0 0 18px rgba(66, 255, 136, 0.38);
}

.coin-icon {
  position: relative;
  display: inline-grid;
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  place-items: center;
  background: linear-gradient(135deg, #fff1a5, #d59a25 46%, #8a5a0b);
  border: 1px solid rgba(255, 244, 178, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(255, 214, 107, 0.36);
}

.coin-icon::after {
  content: "";
  width: 42%;
  height: 42%;
  border: 1px solid rgba(48, 31, 5, 0.55);
  border-radius: 50%;
}

.hero-panel-preview {
  width: 100%;
  max-width: 580px;
  justify-self: end;
}

.hero-panel-preview .preview-shell {
  gap: 12px;
  padding: 20px;
}

.hero-panel-preview .preview-brand {
  grid-template-columns: 58px minmax(0, 1fr);
}

.hero-panel-preview .preview-logo {
  width: 58px;
  height: 58px;
}

.hero-panel-preview .preview-brand strong {
  font-size: clamp(2.2rem, 4.1vw, 3.35rem);
}

.hero-panel-preview .preview-console {
  min-height: 118px;
}

.bot-preview {
  position: sticky;
  top: 96px;
}

.preview-shell {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.95), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 0 44px rgba(29, 255, 48, 0.16),
    var(--shadow);
}

.preview-shell::before {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(66, 255, 136, 0.22), transparent 68%);
}

.preview-brand,
.preview-coins,
.preview-inputs,
.preview-select,
.preview-console-head {
  position: relative;
  z-index: 1;
}

.preview-brand {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.preview-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  background: #010403;
  border: 1px solid rgba(66, 255, 136, 0.26);
  box-shadow: 0 0 20px rgba(66, 255, 136, 0.18);
}

.preview-brand strong {
  color: #eaffef;
  font-size: clamp(1.9rem, 4vw, 3.05rem);
  font-weight: 950;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(66, 255, 136, 0.55);
  word-break: keep-all;
}

.preview-coins {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 10px;
  align-items: stretch;
}

.preview-coins span,
.preview-coins button,
.preview-inputs input,
.preview-select,
.preview-console,
.preview-console-head button {
  background: rgba(5, 7, 6, 0.9);
  border: 1px solid #1fff28;
  border-radius: 8px;
}

.preview-coins span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 12px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 950;
}

.preview-coins button,
.preview-console-head button {
  color: #dfffdd;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.preview-field {
  display: grid;
  gap: 8px;
}

.preview-field label,
.preview-console-head strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 950;
}

.preview-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-inputs input {
  display: flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  font-size: 0.96rem;
  font: inherit;
  outline: none;
  appearance: textfield;
}

.preview-inputs input::-webkit-outer-spin-button,
.preview-inputs input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.preview-inputs input::placeholder {
  color: rgba(243, 255, 248, 0.36);
}

.preview-inputs input:focus,
.preview-select:focus {
  border-color: #8dff98;
  box-shadow: 0 0 16px rgba(31, 255, 40, 0.22);
}

.preview-check {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.preview-check input {
  width: 22px;
  height: 22px;
  margin: 0;
  flex: 0 0 auto;
  appearance: none;
  background: #07100b;
  border: 2px solid #1fff28;
  border-radius: 6px;
  box-shadow: 0 0 14px rgba(31, 255, 40, 0.22);
  cursor: pointer;
}

.preview-check input:checked {
  background:
    linear-gradient(135deg, transparent 42%, #041009 43% 56%, transparent 57%),
    linear-gradient(135deg, #54ff2c, #17a900);
  box-shadow: 0 0 18px rgba(31, 255, 40, 0.36);
}

.preview-select {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  color: #fff7e8;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  border-color: #ff9f1a;
  outline: none;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #ffae24 50%) calc(100% - 20px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, #ffae24 50%, transparent 50%) calc(100% - 14px) 50% / 8px 8px no-repeat,
    rgba(5, 7, 6, 0.9);
  box-shadow: 0 0 16px rgba(255, 159, 26, 0.22);
}

.preview-select.is-risky {
  border-color: #ff4d3d;
  box-shadow: 0 0 16px rgba(255, 77, 61, 0.24);
}

.preview-select.is-medium {
  border-color: #ff9f1a;
  box-shadow: 0 0 16px rgba(255, 159, 26, 0.24);
}

.preview-select.is-safe {
  border-color: #1fff28;
  box-shadow: 0 0 16px rgba(31, 255, 40, 0.22);
}

.preview-select option {
  color: #fff;
  background: #050706;
}

.preview-select option[value="1"],
.preview-select option[value="2"] {
  color: #ff8b7d;
}

.preview-select option[value="3"],
.preview-select option[value="4"] {
  color: #ffcf7a;
}

.preview-select option[value="5"],
.preview-select option[value="10"],
.preview-select option[value="15"],
.preview-select option[value="20"] {
  color: #9cff9c;
}

.preview-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #ffd16f, #ff4a3d);
  border-radius: 50%;
}

.preview-select strong {
  min-width: 0;
  flex: 1;
  color: #fff7e8;
  font-size: 0.96rem;
  white-space: nowrap;
}

.preview-select i {
  width: 0;
  height: 0;
  border-top: 7px solid #ffae24;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.preview-action {
  position: relative;
  z-index: 1;
  min-height: 54px;
  color: #041009;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #36f119, #15b908);
  border: 1px solid rgba(164, 255, 147, 0.82);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(49, 255, 32, 0.3);
}

.preview-action.is-running {
  color: #fff;
  background: linear-gradient(135deg, #ffb02e, #ff5a3d);
  border-color: rgba(255, 195, 92, 0.9);
  box-shadow: 0 0 24px rgba(255, 159, 26, 0.28);
}

.preview-action:active,
.preview-coins button:active,
.preview-console-head button:active {
  transform: translateY(1px);
}

.preview-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.preview-console-head button {
  min-height: 34px;
  padding: 0 14px;
  color: #e8ffe8;
}

.preview-console {
  min-height: 168px;
  max-height: 168px;
  overflow-y: auto;
  padding: 14px;
  color: #1fff28;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-console span {
  display: block;
  margin-bottom: 6px;
}

.preview-console .console-ready {
  color: #1fff28;
}

.preview-console .console-search {
  color: #fff;
}

.preview-console .console-buy {
  color: #1fff28;
}

.preview-console .console-warn {
  color: var(--gold);
}

.preview-shell p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c8dfc6;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.bot-ui-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(57, 216, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #030506, #06100d 52%, #030506);
  border-top: 1px solid rgba(119, 255, 180, 0.1);
  border-bottom: 1px solid rgba(119, 255, 180, 0.12);
}

.bot-ui-layout {
  display: grid;
  width: min(1420px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.bot-ui-copy {
  min-width: 0;
}

.bot-ui-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 3.7vw, 4.05rem);
  line-height: 0.96;
}

.bot-ui-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(243, 255, 248, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.bot-ui-copy .button {
  width: fit-content;
  margin-top: 32px;
}

.bot-ui-copy small {
  display: block;
  margin-top: 12px;
  color: rgba(243, 255, 248, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
}

.bot-ui-mockup {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.bot-ui-device {
  position: relative;
  width: min(100%, 980px);
  margin-left: auto;
}

.bot-ui-mockup::before {
  position: absolute;
  inset: 10% 4% 4%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(66, 255, 136, 0.16), rgba(57, 216, 255, 0.08)),
    rgba(1, 5, 5, 0.62);
  border: 1px solid rgba(119, 255, 180, 0.18);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44), 0 0 56px rgba(66, 255, 136, 0.08);
}

.bot-ui-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.48));
}

.bot-ui-screen-video {
  position: absolute;
  inset: 6.15% 10.4% 20.85%;
  z-index: 2;
  overflow: hidden;
  background: #000;
  border-radius: 5px 5px 2px 2px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(0, 0, 0, 0.22);
}

.bot-ui-screen-video::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.22);
}

.bot-ui-screen-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bot-features-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  background:
    linear-gradient(115deg, rgba(66, 255, 136, 0.055), transparent 42%),
    linear-gradient(180deg, #030506, #07100d 52%, #030506);
  border-top: 1px solid rgba(119, 255, 180, 0.1);
  border-bottom: 1px solid rgba(119, 255, 180, 0.14);
  --bot-feature-duration: 5940ms;
}

.bot-features-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(119, 255, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 255, 180, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 78%);
}

.bot-features-section > .container {
  position: relative;
  z-index: 1;
}

.bot-features-heading {
  max-width: none;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.bot-features-heading h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4vw, 4.05rem);
  line-height: 0.98;
  white-space: nowrap;
}

.bot-features-heading > p:not(.eyebrow) {
  max-width: none;
  margin: 22px 0 0;
  color: rgba(243, 255, 248, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  white-space: nowrap;
}

.bot-features-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
}

.bot-feature-tabs {
  display: grid;
  border-top: 1px solid rgba(243, 255, 248, 0.13);
}

.bot-feature-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  padding: 20px 14px 22px;
  color: rgba(243, 255, 248, 0.48);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 255, 248, 0.13);
  transition: color 220ms ease, background 220ms ease;
}

.bot-feature-tab:hover,
.bot-feature-tab:focus-visible {
  color: rgba(243, 255, 248, 0.82);
  background: linear-gradient(90deg, rgba(66, 255, 136, 0.065), transparent);
}

.bot-feature-tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.bot-feature-tab.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(66, 255, 136, 0.1), transparent 80%);
}

.bot-feature-index {
  color: rgba(255, 214, 107, 0.62);
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  transition: color 220ms ease;
}

.bot-feature-tab.is-active .bot-feature-index {
  color: var(--green);
}

.bot-feature-label {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 850;
  line-height: 1.25;
}

.bot-feature-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: transparent;
}

.bot-feature-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 16px rgba(66, 255, 136, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
}

.bot-feature-accordion-panel {
  display: none;
}

.bot-features-section.is-running .bot-feature-tab.is-active .bot-feature-progress > span {
  animation: botFeatureProgress var(--bot-feature-duration) linear forwards;
}

.bot-features-section.is-paused .bot-feature-tab.is-active .bot-feature-progress > span {
  animation-play-state: paused;
}

.bot-feature-panel {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  min-width: 0;
}

.bot-feature-panel.is-switching {
  animation: botFeaturePanelIn 420ms ease both;
}

.bot-feature-panel-copy {
  min-height: 174px;
  padding-left: 26px;
  border-left: 2px solid rgba(66, 255, 136, 0.5);
}

.bot-feature-meta {
  display: flex;
  min-height: 22px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bot-feature-count {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
}

.bot-feature-resume-button {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  border: 0;
  border-radius: 2px;
  transform: scale(0.9);
  visibility: hidden;
  transition:
    opacity 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    visibility 0s linear 160ms;
}

.bot-features-section.is-manually-paused .bot-feature-resume-button {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.bot-feature-resume-button:hover,
.bot-feature-resume-button:focus-visible {
  background: rgba(66, 255, 136, 0.1);
}

.bot-feature-resume-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.bot-feature-manual-pause-icon::before,
.bot-feature-manual-pause-icon::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--cyan));
  border-radius: 1px;
  filter: drop-shadow(0 0 8px rgba(66, 255, 136, 0.42));
}

.bot-feature-manual-pause-icon::before {
  left: 5px;
}

.bot-feature-manual-pause-icon::after {
  right: 5px;
}

.bot-feature-pause-indicator {
  position: relative;
  grid-column: 3;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(66, 255, 136, 0.42));
  transform: scale(0.9);
  transition: opacity 160ms ease, transform 160ms ease;
}

.bot-feature-pause-indicator::before,
.bot-feature-pause-indicator::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--cyan));
  border-radius: 1px;
}

.bot-feature-pause-indicator::before {
  left: 5px;
}

.bot-feature-pause-indicator::after {
  right: 5px;
}

.bot-features-section.is-hover-paused .bot-feature-tab.is-active .bot-feature-pause-indicator {
  opacity: 1;
  transform: scale(1);
}

.bot-feature-panel h3 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.02;
}

.bot-feature-panel-copy p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(243, 255, 248, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.bot-feature-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(119, 255, 180, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(57, 216, 255, 0.07);
}

.bot-feature-video::after {
  position: absolute;
  top: -1px;
  right: 12%;
  left: 12%;
  z-index: 1;
  height: 2px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
}

.bot-feature-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes botFeatureProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes botFeaturePanelIn {
  from {
    opacity: 0.35;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .bot-features-heading h2 {
    white-space: normal;
  }

  .bot-features-heading > p:not(.eyebrow) {
    max-width: 680px;
    white-space: normal;
  }

  .bot-features-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bot-feature-tabs {
    grid-template-columns: 1fr;
  }

  .bot-feature-tab {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    padding-right: 18px;
    padding-left: 18px;
    border-right: 0;
  }

  .bot-feature-tab::after {
    grid-column: 3;
    color: rgba(243, 255, 248, 0.48);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1;
    content: "+";
    transition: color 260ms ease, transform 360ms ease;
  }

  .bot-feature-tab.is-active {
    color: rgba(243, 255, 248, 0.48);
    background: transparent;
  }

  .bot-feature-tab.is-active .bot-feature-index {
    color: rgba(255, 214, 107, 0.62);
  }

  .bot-feature-tab.is-accordion-open {
    color: #fff;
    background: linear-gradient(90deg, rgba(66, 255, 136, 0.1), transparent 80%);
    border-bottom-color: transparent;
  }

  .bot-feature-tab.is-accordion-open .bot-feature-index {
    color: var(--green);
  }

  .bot-feature-tab.is-accordion-open::after {
    color: var(--green);
    transform: rotate(45deg);
  }

  .bot-feature-progress {
    display: none;
  }

  .bot-feature-pause-indicator {
    display: none;
  }

  .bot-feature-resume-button {
    display: none;
  }

  .bot-feature-panel {
    display: none;
  }

  .bot-feature-accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      grid-template-rows 420ms ease,
      opacity 300ms ease,
      visibility 0s linear 420ms;
  }

  .bot-feature-accordion-panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    border-bottom: 1px solid rgba(243, 255, 248, 0.13);
    transition-delay: 0s;
  }

  .bot-feature-accordion-inner {
    min-height: 0;
    overflow: hidden;
  }

  .bot-feature-accordion-panel p {
    max-width: 700px;
    margin: 0;
    padding: 0 56px 24px 72px;
    color: rgba(243, 255, 248, 0.66);
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .bot-features-heading h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .bot-feature-tabs {
    grid-template-columns: 1fr;
  }

  .bot-feature-tab,
  .bot-feature-tab:nth-child(odd) {
    min-height: 72px;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    padding: 16px 12px 17px;
    border-right: 0;
  }

  .bot-feature-accordion-panel p {
    padding: 0 38px 22px 58px;
    font-size: 0.92rem;
  }

  .bot-feature-panel-copy {
    min-height: 190px;
    padding-left: 18px;
  }

  .bot-feature-panel h3 {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .bot-feature-video {
    margin-top: 22px;
  }
}

.about-bot-section {
  background:
    radial-gradient(circle at 24% 48%, rgba(57, 216, 255, 0.11), transparent 34%),
    radial-gradient(circle at 74% 50%, rgba(66, 255, 136, 0.1), transparent 30%),
    linear-gradient(180deg, #030506, #06100d 54%, #030506);
  border-top: 1px solid rgba(119, 255, 180, 0.1);
  border-bottom: 1px solid rgba(119, 255, 180, 0.14);
}

.about-bot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.9fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.about-bot-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1;
}

.about-bot-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(243, 255, 248, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.about-bot-chart {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  isolation: isolate;
}

.about-bot-chart::before {
  position: absolute;
  inset: 15% 16%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(66, 255, 136, 0.17), transparent 62%),
    conic-gradient(from 45deg, rgba(66, 255, 136, 0.18), rgba(57, 216, 255, 0.12), rgba(255, 211, 90, 0.12), rgba(66, 255, 136, 0.18));
  border-radius: 50%;
  filter: blur(2px);
}

.about-bot-tile {
  position: relative;
  display: flex;
  min-height: 198px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(66, 255, 136, 0.08), rgba(57, 216, 255, 0.035)),
    rgba(4, 10, 8, 0.78);
  border: 1px solid rgba(119, 255, 180, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.about-bot-tile:nth-child(1) {
  border-radius: 24px 8px 8px 8px;
}

.about-bot-tile:nth-child(2) {
  border-radius: 8px 24px 8px 8px;
}

.about-bot-tile:nth-child(3) {
  border-radius: 8px 8px 8px 24px;
}

.about-bot-tile:nth-child(4) {
  border-radius: 8px 8px 24px 8px;
}

.about-bot-tile::after {
  position: absolute;
  inset: auto 20px 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(66, 255, 136, 0.65), transparent);
}

.about-bot-tile strong {
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 0.95;
}

.about-bot-tile span {
  max-width: 190px;
  margin-top: 13px;
  color: rgba(243, 255, 248, 0.7);
  font-size: 0.96rem;
  line-height: 1.45;
}

.about-bot-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(78px, 7vw, 104px);
  aspect-ratio: 1;
  padding: 12px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 211, 90, 0.18), transparent 36%),
    rgba(3, 5, 6, 0.96);
  border: 1px solid rgba(119, 255, 180, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(3, 5, 6, 0.78), 0 20px 54px rgba(0, 0, 0, 0.46), 0 0 30px rgba(66, 255, 136, 0.12);
  transform: translate(-50%, -50%);
}

.about-bot-logo img {
  width: 52px;
  height: 52px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

.offer-section {
  background:
    linear-gradient(180deg, #030506, #07110e 54%, #030506);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

html[data-locale="pl"] .offer-section > .container,
html[lang="pl"] .offer-section > .container,
html[data-locale="de"] .offer-section > .container,
html[lang="de"] .offer-section > .container {
  width: min(1360px, calc(100% - 40px));
}

html[data-locale="pl"] .offer-section .section-heading,
html[lang="pl"] .offer-section .section-heading,
html[data-locale="de"] .offer-section .section-heading,
html[lang="de"] .offer-section .section-heading {
  max-width: 1280px;
}

html[data-locale="pl"] .offer-section .section-heading h2,
html[lang="pl"] .offer-section .section-heading h2,
html[data-locale="de"] .offer-section .section-heading h2,
html[lang="de"] .offer-section .section-heading h2 {
  min-width: 100%;
  font-size: clamp(1.9rem, 4.37vw, 4.04rem);
}

.offer-grid {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

html[data-currency="pln"] .offer-grid {
  max-width: 1320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  transition: transform 380ms ease, border-color 380ms ease, background 380ms ease;
}

.offer-card::before {
  position: absolute;
  top: -1px;
  right: 20px;
  left: 20px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(66, 255, 136, 0.7), transparent);
}

.offer-card:hover {
  background: linear-gradient(180deg, rgba(66, 255, 136, 0.085), rgba(255, 255, 255, 0.03));
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.offer-card-featured {
  background:
    linear-gradient(180deg, rgba(66, 255, 136, 0.14), rgba(57, 216, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(66, 255, 136, 0.35);
  box-shadow: 0 28px 80px rgba(66, 255, 136, 0.12);
}

.offer-card-allegro {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 0, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 90, 0, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(8, 6, 4, 0.94);
  border-color: rgba(255, 90, 0, 0.56);
  box-shadow: 0 28px 80px rgba(255, 90, 0, 0.11);
}

.offer-card-allegro::before {
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.86), transparent);
}

.offer-card p {
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 10px;
  color: #06110d;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: var(--radius);
}

.offer-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.offer-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 7px 10px;
  color: #06110d;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(57, 216, 255, 0.22);
}

.allegro-badge {
  color: #fff;
  background: #ff5a00;
  box-shadow: 0 10px 26px rgba(255, 90, 0, 0.22);
}

.allegro-logo {
  display: block;
  margin: 20px 0 6px;
  color: #ff5a00;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
}

.allegro-discount {
  display: block;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 950;
  line-height: 1.05;
}

.offer-price {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
}

.payment-note {
  display: block;
  margin-top: 8px;
  color: rgba(243, 255, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card li {
  position: relative;
  padding-left: 20px;
}

.offer-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(66, 255, 136, 0.55);
}

.offer-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease;
}

.offer-card a.offer-card-action {
  color: #020504;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-color: rgba(91, 255, 162, 0.72);
  box-shadow: 0 18px 44px rgba(66, 255, 136, 0.14);
}

.offer-card a:hover,
.offer-card a:focus-visible {
  background: rgba(66, 255, 136, 0.12);
  border-color: var(--line-strong);
}

.offer-card a.offer-card-action:hover,
.offer-card a.offer-card-action:focus-visible {
  background: linear-gradient(135deg, #68ffad, #57e5ff);
  border-color: rgba(91, 255, 162, 0.95);
}

.offer-card a.allegro-action,
.purchase-buy.allegro-action {
  color: #fff;
  background: #ff5a00;
  border-color: rgba(255, 154, 77, 0.78);
  box-shadow: 0 18px 44px rgba(255, 90, 0, 0.2);
}

.offer-card a.allegro-action:hover,
.offer-card a.allegro-action:focus-visible,
.purchase-buy.allegro-action:hover,
.purchase-buy.allegro-action:focus-visible {
  color: #fff;
  background: #ff6a12;
  border-color: rgba(255, 178, 111, 0.94);
  box-shadow: 0 22px 52px rgba(255, 90, 0, 0.28);
}

.offer-card-note {
  display: block;
  margin-top: 12px;
  color: rgba(243, 255, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.purchase-guide-section {
  padding-top: 96px;
  background:
    radial-gradient(circle at 86% 20%, rgba(57, 216, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #030506, #06110d 58%, #030506);
}

.purchase-guide-layout {
  display: grid;
  width: min(1420px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.purchase-guide-copy h2 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.purchase-guide-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(243, 255, 248, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.purchase-guide-copy .button {
  margin-top: 30px;
}

.purchase-guide-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.95), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 0 44px rgba(29, 255, 48, 0.16),
    var(--shadow);
}

.purchase-guide-video::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(66, 255, 136, 0.14);
  border-radius: 8px;
}

.purchase-guide-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.story-section {
  padding: 0;
  background:
    linear-gradient(180deg, #030506, #06100d 52%, #030506),
    var(--bg);
}

.story-stack {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0;
  margin: 0;
}

.story-panel {
  --story-accent: var(--green);
  --story-accent-soft: rgba(66, 255, 136, 0.14);
  --story-accent-line: rgba(66, 255, 136, 0.28);
  position: relative;
  display: grid;
  min-height: clamp(520px, 70vh, 700px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
  padding:
    clamp(54px, 8vw, 116px)
    max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 50%, var(--story-accent-soft), transparent 34%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012) 45%, rgba(0, 0, 0, 0.2)),
    #07100d;
  border-top: 1px solid var(--story-accent-line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.12;
}

.story-panel::after {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(243, 255, 248, 0.03);
  font-size: clamp(7rem, 15vw, 15rem);
  font-weight: 950;
  line-height: 1;
  content: "27";
}

.story-panel-coins {
  --story-accent: #42ff88;
  --story-accent-soft: rgba(66, 255, 136, 0.18);
  --story-accent-line: rgba(66, 255, 136, 0.32);
}

.story-panel-track {
  --story-accent: #39d8ff;
  --story-accent-soft: rgba(57, 216, 255, 0.16);
  --story-accent-line: rgba(57, 216, 255, 0.3);
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr);
  background:
    radial-gradient(circle at 18% 50%, var(--story-accent-soft), transparent 32%),
    linear-gradient(105deg, rgba(57, 216, 255, 0.04), rgba(255, 255, 255, 0.018) 48%, rgba(0, 0, 0, 0.16)),
    #050b10;
}

.story-panel-team {
  --story-accent: #ffd35a;
  --story-accent-soft: rgba(255, 211, 90, 0.15);
  --story-accent-line: rgba(255, 211, 90, 0.28);
  background:
    radial-gradient(circle at 76% 52%, rgba(255, 211, 90, 0.12), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(66, 255, 136, 0.08), transparent 30%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014) 45%, rgba(0, 0, 0, 0.2)),
    #090d08;
}

.coin-hero-panel {
  min-height: clamp(620px, 82vh, 820px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(26px, 4vw, 70px);
  padding:
    clamp(74px, 8vw, 128px)
    max(28px, calc((100vw - 1420px) / 2));
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 8, 8, 0.92) 36%, rgba(2, 13, 9, 0.74) 63%, rgba(2, 5, 6, 0.96) 100%),
    linear-gradient(180deg, rgba(66, 255, 136, 0.08), transparent 36%, rgba(66, 255, 136, 0.06)),
    #030506;
  border-top-color: rgba(66, 255, 136, 0.24);
  border-bottom-color: rgba(66, 255, 136, 0.22);
}

.coin-hero-panel::before {
  background:
    linear-gradient(90deg, rgba(66, 255, 136, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(66, 255, 136, 0.1) 1px, transparent 1px),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(66, 255, 136, 0.08) 72px 73px, transparent 73px 144px);
  background-size: 92px 92px, 92px 92px, auto;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.coin-hero-panel::after {
  top: auto;
  right: auto;
  bottom: 28px;
  left: 28px;
  width: calc(100% - 56px);
  height: 1px;
  color: transparent;
  background: linear-gradient(90deg, rgba(66, 255, 136, 0.72), transparent 34%, rgba(66, 255, 136, 0.34), transparent 84%);
  content: "";
}

.coin-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.coin-hero-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #f3fff8;
  font-size: clamp(2.21rem, 3.79vw, 4.72rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(243, 255, 248, 0.36), 0 8px 28px rgba(0, 0, 0, 0.72);
}

.coin-hero-copy h2 span,
.coin-hero-copy h2 strong {
  display: block;
}

.coin-hero-copy h2 strong {
  margin-top: 18px;
  color: #27f5c7;
  font-size: 0.92em;
  text-shadow: 0 0 20px rgba(39, 245, 199, 0.56), 0 0 46px rgba(66, 255, 136, 0.28);
}

html[data-locale="de"] .coin-hero-copy h2 span,
html[data-locale="de"] .coin-hero-copy h2 strong,
html[lang="de"] .coin-hero-copy h2 span,
html[lang="de"] .coin-hero-copy h2 strong {
  display: inline;
}

html[data-locale="de"] .coin-hero-copy h2 strong,
html[lang="de"] .coin-hero-copy h2 strong {
  margin-top: 0;
}

.coin-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(243, 255, 248, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.38rem);
  line-height: 1.62;
}

.coin-hero-foot {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(44px, 7vw, 92px);
  color: #23f2ab;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
}

.coin-hero-foot i {
  display: block;
  width: 38px;
  height: 8px;
  transform: skewX(-28deg);
  background: repeating-linear-gradient(90deg, #00d279 0 8px, transparent 8px 14px);
}

.coin-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(420px, 46vw, 620px);
  align-self: stretch;
  place-items: center;
}

.coin-hero-image {
  width: min(100%, 720px);
  max-height: clamp(420px, 48vw, 720px);
  object-fit: contain;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 38px rgba(66, 255, 136, 0.12));
}

.coin-radar {
  position: absolute;
  top: 0;
  right: 22%;
  width: clamp(250px, 24vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(66, 255, 136, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(66, 255, 136, 0.9) 0 4px, transparent 5px),
    repeating-radial-gradient(circle, transparent 0 28px, rgba(66, 255, 136, 0.18) 29px 30px),
    conic-gradient(from -44deg, rgba(66, 255, 136, 0.74), rgba(66, 255, 136, 0.08) 13deg, transparent 24deg 360deg);
  box-shadow: 0 0 42px rgba(66, 255, 136, 0.14);
  opacity: 0.88;
}

.coin-radar::before,
.coin-radar::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50%;
  height: 1px;
  background: rgba(66, 255, 136, 0.42);
  transform-origin: left center;
  content: "";
}

.coin-radar::before {
  transform: rotate(-44deg);
}

.coin-radar::after {
  transform: rotate(90deg);
}

.coin-podium {
  position: absolute;
  bottom: clamp(46px, 6vw, 82px);
  width: clamp(118px, 10vw, 182px);
  border: 1px solid rgba(255, 233, 105, 0.72);
  border-radius: 7px 7px 2px 2px;
  background:
    repeating-linear-gradient(0deg, rgba(56, 35, 0, 0.2) 0 7px, rgba(255, 247, 156, 0.48) 7px 12px),
    linear-gradient(90deg, #b77808, #ffe56b 48%, #b97007);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.46), 0 0 30px rgba(66, 255, 136, 0.18);
}

.coin-podium-left {
  left: 5%;
  height: 150px;
}

.coin-podium-mid {
  right: 26%;
  height: 270px;
}

.coin-podium-right {
  right: 2%;
  height: 168px;
}

.coin-podium-front {
  left: 20%;
  height: 98px;
}

.coin-disc {
  position: absolute;
  display: grid;
  width: clamp(126px, 10.5vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  color: #ffe76e;
  border: 6px solid #ffe76e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 208, 0.65), transparent 12%),
    radial-gradient(circle, #7b590b 0 54%, #2f2408 55% 64%, #e4b92a 65% 100%);
  box-shadow: inset 0 0 0 8px rgba(46, 34, 5, 0.74), 0 20px 44px rgba(0, 0, 0, 0.52), 0 0 28px rgba(66, 255, 136, 0.2);
}

.coin-disc span {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(48, 35, 0, 0.85), 0 0 16px rgba(255, 239, 103, 0.65);
}

.coin-disc-main {
  left: 23%;
  bottom: clamp(230px, 23vw, 332px);
}

.coin-disc-side {
  right: 12%;
  bottom: clamp(62px, 7vw, 98px);
  width: clamp(110px, 9vw, 160px);
}

.coin-bag {
  position: absolute;
  left: 36%;
  bottom: clamp(42px, 5.6vw, 78px);
  display: grid;
  width: clamp(170px, 16vw, 260px);
  aspect-ratio: 0.86;
  place-items: center;
  color: #ffe46b;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 226, 75, 0.12), transparent 26%),
    linear-gradient(120deg, #040806, #162116 42%, #050806);
  border: 1px solid rgba(255, 224, 82, 0.22);
  border-radius: 50% 50% 34% 34% / 38% 38% 48% 48%;
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.58), inset 0 0 32px rgba(255, 218, 64, 0.12);
}

.coin-bag::before {
  position: absolute;
  top: 10%;
  left: 21%;
  width: 58%;
  height: 18%;
  background: linear-gradient(90deg, #050806, #d8ad23 46%, #050806);
  border-radius: 50%;
  content: "";
}

.coin-bag span {
  display: grid;
  width: 44%;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 222, 83, 0.78);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 950;
  text-shadow: 0 0 14px rgba(255, 227, 84, 0.48);
}

.coin-total {
  position: absolute;
  right: 0;
  bottom: clamp(66px, 8vw, 118px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  padding: 16px 24px;
  color: #22f4ad;
  background: rgba(3, 13, 10, 0.8);
  border: 1px solid rgba(66, 255, 136, 0.48);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(66, 255, 136, 0.14);
}

.coin-total-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: #ffe15f;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.coin-total strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.profit-track-panel {
  --story-accent: #25f5bd;
  --story-accent-soft: rgba(37, 245, 189, 0.14);
  --story-accent-line: rgba(37, 245, 189, 0.28);
  min-height: clamp(620px, 82vh, 780px);
  grid-template-columns: minmax(500px, 0.96fr) minmax(430px, 1.04fr);
  gap: clamp(44px, 6vw, 110px);
  padding:
    clamp(70px, 7vw, 118px)
    max(30px, calc((100vw - 1420px) / 2));
  background:
    radial-gradient(circle at 24% 84%, rgba(0, 255, 151, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(2, 5, 6, 0.92) 0%, rgba(2, 9, 8, 0.98) 45%, rgba(3, 5, 6, 0.96) 100%),
    #030506;
  border-top-color: rgba(37, 245, 189, 0.22);
  border-bottom-color: rgba(37, 245, 189, 0.16);
}

.profit-track-panel::before {
  background:
    linear-gradient(90deg, rgba(37, 245, 189, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 245, 189, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 30% 88%, rgba(37, 245, 189, 0.48) 0 1px, transparent 2px);
  background-size: 104px 104px, 104px 104px, 13px 13px;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, #000 0%, #000 80%, transparent 100%);
}

.profit-track-panel::after {
  top: -18px;
  right: max(34px, calc((100vw - 1600px) / 2));
  color: rgba(243, 255, 248, 0.045);
  font-size: clamp(12rem, 20vw, 23rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.82;
  content: "22";
}

.profit-track-visual,
.profit-track-copy {
  position: relative;
  z-index: 1;
}

.profit-track-visual {
  display: grid;
  min-height: clamp(430px, 43vw, 620px);
  align-items: end;
}

.profit-track-visual::before {
  position: absolute;
  right: 2%;
  bottom: 0;
  left: -8%;
  height: 36%;
  pointer-events: none;
  content: "";
  background:
    repeating-radial-gradient(ellipse at center, rgba(37, 245, 189, 0.3) 0 1px, transparent 1px 30px),
    radial-gradient(ellipse at center, rgba(37, 245, 189, 0.2), transparent 66%);
  filter: blur(0.2px);
  opacity: 0.75;
  transform: perspective(800px) rotateX(68deg);
  transform-origin: center bottom;
}

.profit-track-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 690px);
  max-height: clamp(430px, 47vw, 690px);
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.68)) drop-shadow(0 0 42px rgba(37, 245, 189, 0.16));
}

.profit-track-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.profit-track-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #f6fffb;
  font-size: clamp(2.01rem, 3.35vw, 4.25rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(243, 255, 248, 0.26), 0 10px 30px rgba(0, 0, 0, 0.72);
}

.profit-track-copy h2 span,
.profit-track-copy h2 strong {
  display: block;
}

.profit-track-copy h2 strong {
  margin-top: 18px;
  color: transparent;
  background: linear-gradient(135deg, #18f2bf, #42ffd0 48%, #36d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

html[data-locale="de"] .profit-track-copy h2 strong,
html[lang="de"] .profit-track-copy h2 strong {
  margin-top: 0;
}

.profit-track-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(243, 255, 248, 0.78);
  font-size: clamp(1.05rem, 1.45vw, 1.38rem);
  line-height: 1.7;
}

.story-cta {
  width: fit-content;
  margin-top: 26px;
}

.community-cta {
  color: #071006;
  background: linear-gradient(135deg, #ffd35a 0%, #42ff88 100%);
  border: 1px solid rgba(255, 240, 160, 0.72);
  box-shadow: 0 18px 42px rgba(255, 211, 90, 0.16), 0 0 26px rgba(66, 255, 136, 0.12);
}

.community-panel {
  --story-accent: #ffd35a;
  --story-accent-soft: rgba(255, 211, 90, 0.14);
  --story-accent-line: rgba(255, 211, 90, 0.26);
  min-height: clamp(620px, 78vh, 760px);
  grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(38px, 6vw, 96px);
  padding:
    clamp(60px, 5.95vw, 95px)
    max(28px, calc((100vw - 1420px) / 2));
  background:
    radial-gradient(circle at 76% 52%, rgba(255, 211, 90, 0.14), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(66, 255, 136, 0.09), transparent 30%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012) 46%, rgba(0, 0, 0, 0.18)),
    #070b07;
  border-top-color: rgba(255, 211, 90, 0.22);
  border-bottom-color: rgba(255, 211, 90, 0.14);
}

.community-panel::before {
  background:
    linear-gradient(90deg, rgba(255, 211, 90, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(66, 255, 136, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 211, 90, 0.28) 0 1px, transparent 2px);
  background-size: 96px 96px, 96px 96px, 18px 18px;
  opacity: 0.16;
}

.community-panel::after {
  top: 18px;
  right: max(30px, calc((100vw - 1420px) / 2));
  color: rgba(255, 211, 90, 0.045);
  font-size: clamp(9rem, 17vw, 17rem);
  font-style: italic;
  content: "FI";
}

.community-copy,
.community-visual {
  position: relative;
  z-index: 1;
}

.community-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.community-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.84rem, 3.12vw, 3.75rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.community-copy h2 span {
  display: block;
  color: #ffd35a;
}

html[data-locale="de"] .community-copy h2 span,
html[lang="de"] .community-copy h2 span {
  display: inline;
}

.community-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(243, 255, 248, 0.76);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.76;
}

.community-visual {
  display: grid;
  min-height: clamp(390px, 40vw, 600px);
  place-items: center;
}

.community-visual img {
  width: min(100%, 748px);
  max-height: clamp(429px, 47.3vw, 704px);
  object-fit: contain;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 38px rgba(255, 211, 90, 0.1));
}

.story-copy,
.story-visual {
  position: relative;
  z-index: 1;
}

.story-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.4vw, 5.65rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-copy h2 span {
  color: var(--story-accent);
}

.story-panel-track .story-copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.25vw, 4.85rem);
  line-height: 1.02;
}

.story-panel-track .story-copy h2 span {
  color: transparent;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.story-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(243, 255, 248, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.78;
}

.story-visual {
  min-height: 360px;
}

.story-coins-visual {
  display: grid;
  min-height: 410px;
  place-items: end center;
}

.story-coins-visual img {
  position: absolute;
  right: clamp(140px, 18vw, 240px);
  bottom: 28px;
  width: min(24vw, 220px);
  max-width: 230px;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.45));
  transform: rotate(-6deg);
}

.coin-stack {
  position: absolute;
  bottom: 36px;
  width: clamp(82px, 9vw, 132px);
  background:
    repeating-linear-gradient(0deg, rgba(255, 241, 161, 0.46) 0 4px, transparent 4px 10px),
    linear-gradient(90deg, #f8b414, #ffd35a);
  border: 1px solid rgba(255, 240, 150, 0.72);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 20px 42px rgba(255, 193, 33, 0.15);
}

.coin-stack-a {
  right: clamp(20px, 6vw, 92px);
  height: 150px;
}

.coin-stack-b {
  right: clamp(178px, 22vw, 312px);
  height: 214px;
}

.coin-stack-c {
  right: clamp(338px, 36vw, 488px);
  height: 112px;
}

.story-profit-token {
  position: absolute;
  top: 36px;
  right: clamp(62px, 10vw, 138px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: #06110d;
  font-weight: 950;
  background: linear-gradient(135deg, var(--story-accent), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(66, 255, 136, 0.18);
}

.story-discord-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
}

.discord-mockup {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  min-height: 330px;
  grid-template-columns: 74px minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(66, 255, 136, 0.08), rgba(57, 216, 255, 0.1)),
    #070b10;
  border: 1px solid rgba(88, 101, 242, 0.45);
  border-radius: 14px;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42), 0 0 44px rgba(57, 216, 255, 0.1);
  transform: rotate(-3deg);
}

.discord-mockup::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%);
  opacity: 0.32;
}

.discord-sidebar {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 18px 0;
  background: rgba(3, 5, 8, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-sidebar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.48));
}

.discord-sidebar span {
  width: 38px;
  height: 38px;
  background:
    linear-gradient(135deg, rgba(66, 255, 136, 0.22), rgba(57, 216, 255, 0.1)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(66, 255, 136, 0.22);
  border-radius: 12px;
}

.discord-window {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.discord-window-head {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-window-head span {
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.discord-window-head small {
  color: rgba(243, 255, 248, 0.52);
  font-size: 0.72rem;
  font-weight: 850;
}

.discord-notification {
  position: relative;
  padding: 13px 14px 13px 38px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
}

.discord-notification::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(66, 255, 136, 0.62);
}

.discord-notification strong,
.discord-notification p,
.discord-notification em {
  display: block;
  margin: 0;
}

.discord-notification strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
}

.discord-notification p {
  margin-top: 4px;
  color: rgba(243, 255, 248, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
}

.discord-notification em {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 8px;
  color: #06110d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 6px;
}

.story-team-visual {
  min-height: 430px;
}

.story-card {
  position: absolute;
  bottom: 34px;
  width: min(23vw, 220px);
  max-width: 230px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}

.story-card-back {
  right: clamp(220px, 30vw, 380px);
  transform: rotate(-10deg) scale(0.88);
  opacity: 0.9;
}

.story-card-mid {
  right: clamp(112px, 18vw, 228px);
  transform: rotate(6deg) scale(0.96);
}

.story-card-front {
  right: clamp(0px, 5vw, 76px);
  transform: rotate(-1deg);
}

.faq-section {
  background:
    linear-gradient(180deg, #050908, #020303),
    var(--bg);
}

html[data-locale="de"] .faq-section .section-heading h2,
html[lang="de"] .faq-section .section-heading h2 {
  line-height: 1.08;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(66, 255, 136, 0.08), transparent 68%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(66, 255, 136, 0.18);
  border-radius: 8px;
}

.faq-question {
  position: relative;
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  color: #fff;
  font: inherit;
  font-weight: 950;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, opacity 260ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(243, 255, 248, 0.72);
  line-height: 1.65;
}

.discord-section {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(66, 255, 136, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(57, 216, 255, 0.14), transparent 40%),
    #050908;
}

.discord-layout {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.discord-copy {
  min-width: 0;
}

.discord-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.discord-icon-link {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(88, 101, 242, 0.42);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.discord-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(88, 101, 242, 0.38));
}

.discord-icon-link:hover,
.discord-icon-link:focus-visible {
  border-color: rgba(88, 101, 242, 0.78);
  box-shadow: 0 0 26px rgba(88, 101, 242, 0.22);
  transform: translateY(-2px);
}

.discord-layout h2 {
  max-width: 780px;
}

.site-footer {
  padding: 26px 0;
  color: rgba(243, 255, 248, 0.58);
  background: #020303;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.register-page {
  min-height: 100vh;
}

.legal-page {
  display: grid;
  min-height: 100vh;
  grid-template-rows: minmax(0, 1fr) auto;
}

.legal-empty-main {
  min-height: calc(100svh - var(--header-height));
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 216, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #030506, #06100d 58%, #030506);
}

.legal-content-main {
  padding-bottom: 86px;
}

.legal-hero {
  padding: clamp(58px, 8vw, 94px) 0 0;
}

.legal-layout {
  display: grid;
  gap: 34px;
}

.legal-heading {
  max-width: 880px;
}

.legal-heading h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
  line-height: 0.96;
}

.legal-heading p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(243, 255, 248, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.legal-heading small {
  display: block;
  margin-top: 18px;
  color: rgba(243, 255, 248, 0.56);
  font-size: 0.86rem;
  font-weight: 850;
}

.legal-card {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: clamp(22px, 4vw, 42px);
  color: rgba(243, 255, 248, 0.8);
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.92), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 1px solid rgba(119, 255, 180, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}

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

.legal-card p,
.legal-card li,
.legal-card address {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.legal-card li {
  position: relative;
  padding-left: 20px;
}

.legal-card li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(66, 255, 136, 0.42);
}

.legal-card address {
  display: block;
  padding: 16px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(119, 255, 180, 0.18);
  border-radius: var(--radius);
}

.legal-card strong {
  color: #fff;
}

.register-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 92px) 0 86px;
  overflow: hidden;
  isolation: isolate;
}

.download-page .register-hero {
  min-height: auto;
  padding: calc(var(--header-height) + 32px) 0 34px;
}

.download-page .register-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 475px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.download-page .register-copy h1 {
  font-size: clamp(2.55rem, 4.45vw, 4.35rem);
  white-space: nowrap;
}

.download-page .download-lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(0.94rem, 1.3vw, 1.06rem);
  line-height: 1.58;
}

.download-page .register-copy .download-copy-button {
  width: 100%;
  max-width: 560px;
  margin-top: 20px;
}

.download-page .site-footer {
  padding: 16px 0;
}

.auth-page .site-footer {
  padding: 16px 0;
}

.download-page .footer-layout small {
  display: none;
}

.auth-page .footer-layout small {
  display: none;
}

.download-page .footer-layout p {
  font-size: 0.78rem;
}

.auth-page .footer-layout p {
  font-size: 0.78rem;
}

.register-art {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.register-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.5;
  transform: scale(1.02);
}

.register-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.register-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 6.2vw, 5.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.register-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(243, 255, 248, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.register-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.95), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 0 44px rgba(29, 255, 48, 0.16),
    var(--shadow);
}

.register-panel::before {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(66, 255, 136, 0.22), transparent 68%);
}

.register-panel .preview-brand {
  position: relative;
  z-index: 1;
}

.register-panel h2 {
  margin: 0;
  color: #eaffef;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 950;
  line-height: 0.98;
  text-shadow: 0 0 18px rgba(66, 255, 136, 0.42);
}

.register-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.register-form[data-register-form] {
  gap: 8px;
}

.register-form[data-register-form] .register-field {
  gap: 5px;
}

.register-form[data-register-form] .register-field input {
  min-height: 44px;
}

.register-form[data-register-form] .captcha-field {
  gap: 4px;
}

.register-form[data-register-form] .register-error {
  min-height: 8px;
}

.register-form[data-register-form] .register-submit {
  margin-top: 0;
}

.download-page .register-form {
  gap: 9px;
}

.download-page .register-field {
  gap: 6px;
}

.download-page .register-field input {
  min-height: 38px;
}

.download-page .register-submit {
  margin-top: 0;
}

.download-page .redeem-form {
  gap: 8px;
  margin-top: 2px;
}

.download-page .register-error {
  min-height: 8px;
  font-size: 0.72rem;
}

.download-page .register-panel {
  gap: 14px;
  padding: 18px;
}

.download-page .register-panel h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
}

.register-field {
  display: grid;
  gap: 8px;
}

.register-field label {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 950;
}

.register-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: #fff;
  font: inherit;
  font-size: 0.96rem;
  background: rgba(5, 7, 6, 0.9);
  border: 1px solid #1fff28;
  border-radius: 8px;
  outline: none;
}

.register-field input:focus {
  border-color: #8dff98;
  box-shadow: 0 0 16px rgba(31, 255, 40, 0.22);
}

.register-field input[aria-invalid="true"] {
  border-color: #ff6b5f;
  box-shadow: 0 0 14px rgba(255, 77, 61, 0.18);
}

.captcha-field {
  display: grid;
  min-width: 0;
  gap: 6px;
  overflow: hidden;
}

.captcha-field iframe {
  max-width: 100%;
}

.register-error {
  min-height: 18px;
  margin: 0;
  color: #ff9a90;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.register-status {
  padding: 12px 13px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.register-status.is-success {
  color: #dfffe8;
  background: rgba(66, 255, 136, 0.1);
  border-color: rgba(66, 255, 136, 0.34);
}

.register-status.is-error {
  color: #ffe2df;
  background: rgba(255, 77, 61, 0.09);
  border-color: rgba(255, 107, 95, 0.34);
}

.download-page .register-status.is-screen-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  width: min(430px, calc(100vw - 36px));
  margin: 0;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5), 0 0 24px rgba(66, 255, 136, 0.12);
}

.register-submit {
  width: 100%;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.resend-confirmation-button {
  min-height: 44px;
  margin-top: -4px;
}

.auth-form-link {
  margin: 0;
  color: rgba(243, 255, 248, 0.68);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
}

.auth-form-link a {
  color: var(--green);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.auth-form-link a:hover,
.auth-form-link a:focus-visible {
  color: #fff;
  text-shadow: 0 0 16px rgba(66, 255, 136, 0.5);
}

.auth-form-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
  font-size: 0.84rem;
  font-weight: 850;
}

.auth-form-row a {
  color: var(--green);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.auth-form-row a:hover,
.auth-form-row a:focus-visible {
  color: #fff;
  text-shadow: 0 0 16px rgba(66, 255, 136, 0.5);
}

.license-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.download-page .license-summary {
  gap: 8px;
}

.license-summary.is-license-only {
  grid-template-columns: 1fr;
}

.license-summary div {
  min-height: 116px;
  padding: 14px;
  background: rgba(5, 7, 6, 0.9);
  border: 1px solid rgba(66, 255, 136, 0.28);
  border-radius: 8px;
}

.download-page .license-summary div {
  min-height: 86px;
  padding: 11px;
}

.license-summary div.is-inactive {
  border-color: rgba(255, 77, 61, 0.42);
  box-shadow: 0 0 18px rgba(255, 77, 61, 0.08);
}

.license-summary div.is-active {
  border-color: rgba(66, 255, 136, 0.42);
}

.license-summary span,
.license-summary small {
  display: block;
  color: rgba(243, 255, 248, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
}

.license-summary strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.download-page .license-summary strong {
  margin: 6px 0;
  font-size: 1.25rem;
}

.download-page .license-summary span,
.download-page .license-summary small {
  font-size: 0.72rem;
}

.license-summary strong.is-inactive {
  color: #ff5f55;
  text-shadow: 0 0 16px rgba(255, 77, 61, 0.28);
}

.license-summary strong.is-active {
  color: var(--green);
  text-shadow: 0 0 16px rgba(66, 255, 136, 0.28);
}

.license-summary strong.is-loading {
  color: var(--gold);
  text-shadow: none;
}

.premium-feature-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.premium-feature-summary > div {
  min-width: 0;
  padding: 10px 11px;
  background: rgba(5, 7, 6, 0.78);
  border: 1px solid rgba(255, 77, 61, 0.3);
  border-radius: 8px;
}

.premium-feature-summary > div.is-active {
  border-color: rgba(66, 255, 136, 0.34);
}

.premium-feature-summary span,
.premium-feature-summary small {
  display: block;
  color: rgba(243, 255, 248, 0.64);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.35;
}

.premium-feature-summary strong {
  display: block;
  margin: 4px 0;
  color: #ff6b5f;
  font-size: 0.98rem;
  line-height: 1.1;
}

.premium-feature-summary strong.is-active {
  color: var(--green);
}

.premium-feature-summary .premium-investing-included-access {
  display: grid;
  gap: 4px;
  margin-top: 7px;
  padding: 7px;
  background: rgba(255, 214, 107, 0.065);
  border: 1px solid rgba(255, 214, 107, 0.3);
  border-left: 2px solid rgba(255, 214, 107, 0.78);
  border-radius: 5px;
  box-shadow: 0 0 16px rgba(255, 214, 107, 0.06);
}

.premium-feature-summary .premium-investing-included-access[hidden] {
  display: none;
}

.premium-feature-summary .premium-investing-included-access small {
  color: rgba(243, 255, 248, 0.76);
  font-size: 0.6rem;
  font-weight: 760;
  line-height: 1.48;
}

.premium-feature-summary .premium-investing-included-access small:first-child {
  color: var(--gold);
  font-weight: 900;
}

.premium-feature-summary .premium-investing-included-access [data-premium-investing-deferred-charge] {
  color: rgba(243, 255, 248, 0.58);
}

.premium-feature-summary .premium-investing-cancellation-warning {
  margin-top: 6px;
  padding: 5px 7px;
  color: #ff8b82;
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.4;
  background: rgba(255, 77, 61, 0.075);
  border-left: 2px solid rgba(255, 95, 85, 0.72);
  border-radius: 4px;
}

.premium-feature-summary.is-notifications-only {
  grid-template-columns: 1fr;
}

.premium-feature-summary .notifications-season-checkout-button,
.premium-feature-summary .premium-investing-subscription-button {
  width: 100%;
  min-height: 32px;
  margin-top: 8px;
  padding: 5px 7px;
  font-family: inherit;
  font-size: 0.67rem;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  white-space: normal;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(66, 255, 136, 0.14);
}

.premium-feature-summary .notifications-season-checkout-button span,
.premium-feature-summary .premium-investing-subscription-button span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.premium-feature-summary .notifications-trial-info {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 6px 7px;
  background: rgba(255, 214, 107, 0.06);
  border: 1px solid rgba(255, 214, 107, 0.22);
  border-radius: 6px;
}

.premium-feature-summary .notifications-trial-info > small {
  color: rgba(255, 226, 143, 0.88);
  font-size: 0.61rem;
  line-height: 1.4;
}

.premium-investing-management {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}

.premium-feature-summary .premium-investing-manage-button {
  flex: 1;
  min-width: 0;
  min-height: 32px;
  padding: 5px 7px;
  font-family: inherit;
  font-size: 0.6rem;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  white-space: normal;
  border-radius: 6px;
}

.premium-feature-summary .premium-investing-manage-button span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.premium-feature-summary .premium-investing-tooltip {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.premium-investing-tooltip-trigger {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(243, 255, 248, 0.82);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.premium-investing-tooltip-trigger:hover,
.premium-investing-tooltip-trigger:focus-visible {
  color: var(--green);
  border-color: rgba(66, 255, 136, 0.48);
  outline: none;
}

.premium-feature-summary .premium-investing-tooltip-text {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 12;
  display: block;
  width: min(230px, calc(100vw - 48px));
  padding: 8px 9px;
  color: rgba(243, 255, 248, 0.9);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.45;
  pointer-events: none;
  visibility: hidden;
  background: rgba(3, 8, 6, 0.98);
  border: 1px solid rgba(66, 255, 136, 0.32);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.premium-investing-tooltip:hover .premium-investing-tooltip-text,
.premium-investing-tooltip:focus-within .premium-investing-tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.discord-id-panel {
  display: grid;
  gap: 9px;
  padding: 11px;
  background: rgba(255, 214, 107, 0.055);
  border: 1px solid rgba(255, 214, 107, 0.34);
  border-radius: 8px;
}

.discord-id-panel.is-connected {
  background: rgba(66, 255, 136, 0.055);
  border-color: rgba(66, 255, 136, 0.3);
}

.discord-id-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: start;
}

.discord-id-warning[hidden] + div {
  grid-column: 1 / 3;
}

.discord-id-warning {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #090703;
  font-size: 0.9rem;
  font-weight: 950;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 214, 107, 0.26);
}

.discord-id-header strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.3;
}

.discord-id-header p {
  margin: 2px 0 0;
  color: rgba(243, 255, 248, 0.66);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.4;
}

.discord-id-change,
.discord-id-back {
  padding: 2px 0;
  color: var(--green);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.discord-id-change:hover,
.discord-id-change:focus-visible,
.discord-id-back:hover,
.discord-id-back:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
}

.discord-id-back {
  grid-column: 3;
}

.discord-id-current {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: flex-start;
  padding-left: 0;
}

.discord-id-current span {
  color: rgba(243, 255, 248, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
}

.discord-id-current strong {
  color: var(--green);
  font-size: 0.82rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.discord-id-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 8px;
  align-items: start;
}

.download-page .discord-id-form .register-field {
  grid-row: 1;
  grid-column: 1;
  gap: 3px;
}

.discord-id-field-heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.download-page .discord-id-form .register-field label {
  font-size: 0.7rem;
}

.discord-id-help-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: var(--green);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 850;
  cursor: pointer;
  background: transparent;
  border: 0;
  white-space: nowrap;
}

.discord-id-help-trigger span {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  flex: 0 0 15px;
  color: #031108;
  font-size: 0.62rem;
  font-weight: 950;
  background: var(--green);
  border-radius: 50%;
}

.discord-id-help-trigger:hover,
.discord-id-help-trigger:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
}

.download-page .discord-id-form .register-field input {
  min-height: 36px;
}

.download-page .discord-id-form .register-submit {
  grid-row: 1;
  grid-column: 2;
  height: 36px;
  min-height: 36px;
  align-self: start;
  margin-top: 17px;
  padding: 0 10px;
  font-size: 0.7rem;
  text-transform: none;
  white-space: nowrap;
}

.discord-id-change-captcha {
  grid-row: 2;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.redeem-form {
  display: grid;
  gap: 14px;
}

.trial-start-button {
  min-height: 62px;
  font-size: 1rem;
  box-shadow: 0 18px 52px rgba(66, 255, 136, 0.24);
}

.download-page .trial-start-button {
  min-height: 50px;
}

.download-secondary-button {
  min-height: 44px;
  color: rgba(243, 255, 248, 0.82);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.download-page .download-secondary-button {
  min-height: 40px;
}

.download-primary-button {
  min-height: 62px;
  font-size: 1rem;
  box-shadow: 0 18px 52px rgba(66, 255, 136, 0.24);
}

.download-page .download-primary-button {
  min-height: 50px;
  font-size: 0.88rem;
}

.trial-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: 20px;
  place-items: center;
}

.trial-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 3, 0.76);
  backdrop-filter: blur(8px);
}

.trial-confirm-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 440px);
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.97), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 30px 80px rgba(0, 0, 0, 0.54);
}

.trial-confirm-panel h2 {
  margin: 0;
  color: #eaffef;
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1;
}

.trial-confirm-panel p {
  margin: 0;
  color: rgba(243, 255, 248, 0.76);
  font-size: 0.96rem;
  line-height: 1.55;
}

.trial-confirm-panel strong {
  color: #fff;
  font-weight: 950;
}

.discord-id-help-panel {
  width: min(100%, 560px);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
}

.discord-id-help-steps {
  display: grid;
  gap: 10px;
  padding-left: 24px;
  color: rgba(243, 255, 248, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.48;
  list-style: decimal;
}

.discord-id-help-steps li {
  padding-left: 4px;
}

.discord-id-help-steps a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.discord-id-help-steps a:hover,
.discord-id-help-steps a:focus-visible {
  color: #fff;
}

.trial-confirm-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.discord-id-help-actions {
  grid-template-columns: 1fr;
}

.payment-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: 20px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(66, 255, 136, 0.18), transparent 34%),
    rgba(1, 3, 3, 0.88);
  backdrop-filter: blur(12px);
}

.payment-loader[hidden] {
  display: none;
}

.payment-loader-panel {
  display: grid;
  width: min(100%, 360px);
  gap: 12px;
  justify-items: center;
  padding: 30px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(9, 18, 14, 0.96), rgba(1, 3, 3, 0.98)),
    #050706;
  border: 2px solid #16ff2a;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(66, 255, 136, 0.24) inset,
    0 0 58px rgba(29, 255, 48, 0.16),
    var(--shadow);
}

.payment-loader-spinner {
  width: 58px;
  height: 58px;
  border: 4px solid rgba(66, 255, 136, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(66, 255, 136, 0.22);
  animation: paymentLoaderSpin 760ms linear infinite;
}

.payment-loader strong {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.payment-loader small {
  color: rgba(243, 255, 248, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

body.is-payment-loading {
  overflow: hidden;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 860px);
  margin-top: 34px;
}

.download-page .purchase-options {
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(100%, 900px);
  margin-top: 34px;
}

.purchase-option {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(57, 216, 255, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(66, 255, 136, 0.12), transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 6, 0.92);
  border: 1px solid rgba(66, 255, 136, 0.36);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 0 24px rgba(66, 255, 136, 0.08);
}

.purchase-option-allegro {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 90, 0, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(255, 90, 0, 0.14), transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025)),
    rgba(8, 6, 4, 0.94);
  border-color: rgba(255, 90, 0, 0.6);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(255, 90, 0, 0.12);
}

.purchase-option-allegro::before {
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.86), transparent);
}

.download-page .purchase-option {
  display: grid;
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 0.28fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 8px 18px;
  align-items: start;
  padding: 18px 14px 22px 18px;
}

.purchase-option em {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  color: #06110d;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(66, 255, 136, 0.22);
}

.download-page .purchase-option em {
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
}

.purchase-option-allegro em {
  color: #fff;
  background: #ff5a00;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.22);
}

.purchase-option::before {
  position: absolute;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(66, 255, 136, 0.78), transparent);
}

.purchase-option span {
  display: block;
  width: fit-content;
  padding: 7px 10px;
  color: #06110d;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.4;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: 8px;
}

.download-page .purchase-option span {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  padding: 6px 9px;
  font-size: 0.7rem;
}

.purchase-option strong {
  display: block;
  margin: 22px 0 10px;
  color: #fff;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.download-page .purchase-option strong {
  margin: 16px 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.purchase-price {
  margin: 18px 0 18px;
  color: var(--green);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 950;
  line-height: 1;
}

.purchase-payment-note {
  margin: -8px 0 18px;
  font-size: 0.76rem;
}

.download-page .purchase-price {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  justify-self: stretch;
  margin: 0 0 6px;
  text-align: center;
  font-size: 28px;
}

.download-page .purchase-option-allegro .allegro-logo {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  justify-self: stretch;
  margin: 0;
  text-align: center;
  font-size: 34px;
}

.download-page .purchase-option-allegro .allegro-discount {
  grid-row: 3;
  grid-column: 2;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 19px;
}

.download-page .purchase-payment-note {
  grid-row: 4;
  grid-column: 2;
  justify-self: stretch;
  margin: -5px 0 0;
  font-size: 0.48rem;
  line-height: 1;
  text-align: center;
}

.download-page .purchase-option-allegro .purchase-payment-note {
  grid-row: 5;
  color: rgba(243, 255, 248, 0.78);
}

.purchase-option ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(243, 255, 248, 0.72);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.download-page .purchase-option ul {
  grid-row: 2 / span 3;
  grid-column: 1;
  align-self: center;
  gap: 7px;
  margin: 0 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.28;
}

.download-page .purchase-option-allegro ul {
  grid-row: 2 / span 4;
}

.purchase-option li {
  position: relative;
  padding-left: 19px;
}

.purchase-option li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(66, 255, 136, 0.58);
}

.purchase-buy {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: #021009;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(66, 255, 136, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-page .purchase-buy {
  grid-row: 3;
  grid-column: 2;
  width: 100%;
  min-height: 42px;
  margin-top: 0;
  font-size: 0.78rem;
}

.download-page .purchase-option-allegro .purchase-buy {
  grid-row: 4;
  grid-column: 2;
}

.purchase-allegro-inline {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  min-height: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.purchase-allegro-inline:hover,
.purchase-allegro-inline:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.purchase-allegro-inline:hover span,
.purchase-allegro-inline:focus-visible span {
  background: #ff6a12;
  box-shadow: 0 18px 40px rgba(255, 90, 0, 0.28);
}

.download-page .purchase-allegro-inline strong {
  margin: 0;
  color: #fff;
  font-size: 1.36rem;
  line-height: 1;
}

.download-page .purchase-allegro-inline small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.52rem;
  font-weight: 950;
  line-height: 1;
}

.download-page .purchase-allegro-inline span {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  grid-column: auto;
  grid-row: auto;
  line-height: 1;
  order: 0;
  text-align: center;
  background: #ff5a00;
  border: 1px solid rgba(255, 178, 111, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(255, 90, 0, 0.2);
}

.download-page .purchase-allegro-inline {
  grid-row: 5;
  grid-column: 2;
  align-self: start;
  margin-top: 4px;
}

html[data-currency="pln"] .download-page .purchase-option-season > em {
  display: none;
}

.purchase-buy:hover,
.purchase-buy:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(66, 255, 136, 0.24);
}

.purchase-buy[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.68;
  transform: none;
}

.purchase-buy.is-loading {
  color: rgba(2, 16, 9, 0.78);
}

.footer-layout {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-layout p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-layout small {
  display: block;
  max-width: 760px;
  margin-top: 8px;
  color: rgba(243, 255, 248, 0.46);
  font-size: 0.72rem;
  line-height: 1.45;
}

.footer-layout div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-layout > div:first-child {
  display: block;
}

.footer-layout a {
  font-size: 0.82rem;
  transition: color 180ms ease;
}

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

.country-control {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(243, 255, 248, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.country-label {
  color: rgba(243, 255, 248, 0.5);
}

.country-label::after {
  content: ":";
}

.country-name {
  color: rgba(243, 255, 248, 0.86);
  font-weight: 900;
}

.footer-language-control {
  gap: 7px;
  color: rgba(243, 255, 248, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.footer-language-control::after {
  display: none;
}

.footer-language-label {
  color: rgba(243, 255, 248, 0.5);
}

.footer-language-label::after {
  content: ":";
}

.footer-language-control .language-trigger {
  min-width: 64px;
  height: 28px;
  min-height: 28px;
  gap: 7px;
  padding: 0 8px;
  font-size: 0.72rem;
  border-radius: 6px;
}

.footer-language-control .language-menu {
  top: auto;
  bottom: calc(100% + 6px);
  min-width: 118px;
  transform: translateY(6px);
}

.footer-language-control:not(.is-hover-suppressed):hover .language-menu,
.footer-language-control:not(.is-hover-suppressed):focus-within .language-menu,
.footer-language-control.is-open .language-menu {
  transform: translateY(0);
}

.currency-control {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(243, 255, 248, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.currency-label {
  color: rgba(243, 255, 248, 0.5);
}

.currency-trigger {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  cursor: pointer;
  color: rgba(243, 255, 248, 0.86);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(119, 255, 180, 0.22);
  border-radius: 6px;
}

.currency-trigger::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.currency-trigger:hover,
.currency-trigger:focus-visible,
.currency-trigger[aria-expanded="true"] {
  color: #fff;
  border-color: rgba(66, 255, 136, 0.54);
  outline: none;
}

.currency-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  z-index: 60;
  display: grid;
  min-width: 68px;
  gap: 2px;
  padding: 4px;
  background: #020303;
  border: 1px solid rgba(119, 255, 180, 0.28);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.44);
}

.currency-menu[hidden] {
  display: none;
}

.currency-menu button {
  min-height: 24px;
  padding: 0 8px;
  color: rgba(243, 255, 248, 0.78);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 4px;
  text-align: left;
}

.currency-menu button:hover,
.currency-menu button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.currency-menu button[aria-selected="true"] {
  color: #021009;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

@media (min-width: 921px) {
  .auth-page,
  .download-page {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .auth-page main,
  .download-page main {
    min-height: 0;
  }

  .auth-page .register-hero,
  .download-page .register-hero {
    height: 100%;
    min-height: 0;
    padding: calc(var(--header-height) + 16px) 0 16px;
  }

  .auth-page .register-layout,
  .download-page .register-layout {
    height: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 550px);
    gap: clamp(20px, 3vw, 42px);
    align-items: center;
  }

  .auth-page .register-copy h1 {
    font-size: clamp(2.9rem, 5.2vw, 4.65rem);
  }

  .download-page .register-copy h1 {
    font-size: clamp(2.25rem, 3.45vw, 3.35rem);
    white-space: nowrap;
  }

  .auth-page .register-copy p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .download-page .download-lead {
    max-width: 560px;
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .auth-page .register-panel,
  .download-page .register-panel {
    max-height: 100%;
    gap: 14px;
    padding: 22px;
  }

  .auth-page .register-panel .preview-brand,
  .download-page .register-panel .preview-brand {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .auth-page .register-panel .preview-logo,
  .download-page .register-panel .preview-logo {
    width: 54px;
    height: 54px;
    font-size: 0.78rem;
  }

  .auth-page .register-panel h2,
  .download-page .register-panel h2 {
    font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  }

  .auth-page .register-form,
  .download-page .register-form {
    gap: 12px;
  }

  .auth-page .register-status,
  .download-page .register-status {
    padding: 12px 13px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .download-page .license-summary div {
    min-height: 104px;
    padding: 14px;
  }

  .download-page .license-summary strong {
    margin: 7px 0;
    font-size: 1.45rem;
  }

  .download-page .license-summary span,
  .download-page .license-summary small {
    font-size: 0.76rem;
  }

  .download-page .discord-id-panel {
    padding: 12px;
  }

  .download-page .trial-start-button {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .download-page .download-secondary-button {
    min-height: 44px;
    font-size: 0.82rem;
  }

  .auth-page .register-form[data-register-form],
  .auth-page .register-form[data-sign-in-form],
  .auth-page .register-form[data-forgot-password-form],
  .auth-page .register-form[data-reset-password-form] {
    gap: 8px;
  }

  .auth-page .register-form[data-register-form] .register-field {
    gap: 5px;
  }

  .auth-page .register-form[data-register-form] .register-field input {
    min-height: 34px;
  }

  .auth-page .register-form[data-register-form] .register-error {
    min-height: 0;
  }

  .auth-page .register-form[data-register-form] .register-submit {
    margin-top: 0;
  }

  .auth-page .captcha-field {
    gap: 4px;
  }

  .auth-page .auth-form-row {
    margin-top: -2px;
    font-size: 0.78rem;
  }

  .auth-page .auth-form-link {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .download-page .redeem-form {
    gap: 6px;
  }

  .auth-page .register-field,
  .download-page .register-field {
    gap: 5px;
  }

  .auth-page .register-field label,
  .download-page .register-field label {
    font-size: 0.78rem;
  }

  .auth-page .register-field input,
  .download-page .register-field input {
    min-height: 34px;
  }

  .auth-page .register-submit,
  .download-page .register-submit {
    min-height: 44px;
    font-size: 0.84rem;
  }

  .download-page .download-primary-button {
    min-height: 54px;
    font-size: 0.86rem;
  }

  .auth-page .register-error,
  .download-page .register-error {
    min-height: 0;
  }

  .download-page .purchase-options {
    gap: 14px;
    width: min(100%, 900px);
    margin-top: 30px;
  }

  .download-page .purchase-option {
    min-height: 188px;
    grid-template-columns: minmax(0, 1fr) minmax(126px, 0.27fr);
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 7px 16px;
    padding: 18px 14px 22px 18px;
  }

  .download-page .purchase-option em {
    top: 10px;
    right: 10px;
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .download-page .purchase-option span {
    grid-row: 1;
    grid-column: 1;
    padding: 5px 8px;
    font-size: 0.64rem;
  }

  .download-page .purchase-option strong {
    margin: 12px 0 6px;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
  }

  .download-page .purchase-price {
    grid-row: 2;
    grid-column: 2;
    align-self: end;
    justify-self: stretch;
    margin: 0 0 6px;
    text-align: center;
    font-size: 28px;
  }

  .download-page .purchase-payment-note {
    grid-row: 4;
    grid-column: 2;
    justify-self: stretch;
    margin: -4px 0 0;
    font-size: 0.46rem;
    line-height: 1;
    text-align: center;
  }

  .download-page .purchase-option ul {
    grid-row: 2 / span 3;
    grid-column: 1;
    align-self: center;
    gap: 5px;
    margin: 0 0 0 14px;
    font-size: 0.8rem;
    line-height: 1.24;
  }

  .download-page .purchase-buy {
    grid-row: 3;
    grid-column: 2;
    width: 100%;
    min-height: 38px;
    font-size: 0.7rem;
  }

  .auth-page .site-footer,
  .download-page .site-footer {
    padding: 16px 0;
  }

  .auth-page .footer-layout,
  .download-page .footer-layout {
    gap: 14px;
  }

  .auth-page .footer-layout p,
  .auth-page .footer-layout a,
  .auth-page .country-control,
  .auth-page .footer-language-control,
  .auth-page .footer-language-control .language-trigger,
  .auth-page .footer-language-control .language-menu button,
  .auth-page .currency-control,
  .auth-page .currency-trigger,
  .auth-page .currency-menu button,
  .download-page .footer-layout p,
  .download-page .footer-layout a,
  .download-page .country-control,
  .download-page .footer-language-control,
  .download-page .footer-language-control .language-trigger,
  .download-page .footer-language-control .language-menu button,
  .download-page .currency-control,
  .download-page .currency-trigger,
  .download-page .currency-menu button {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes fi-countdown-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fi-countdown-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes paymentLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanSweep {
  from {
    background-position: -120px 0, 0 0;
  }

  to {
    background-position: 420px 0, 0 0;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-lockup {
    min-width: 160px;
  }

  .brand-image {
    width: min(220px, 26vw);
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav > a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-header-language {
    z-index: 42;
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-header-language .language-trigger {
    width: auto;
    min-width: 68px;
    padding: 0 10px;
    gap: 6px;
  }

  .mobile-header-language .language-trigger [data-language-current] {
    position: static;
    order: -1;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    color: rgba(243, 255, 248, 0.9);
    font-size: 0.68rem;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    border: 0;
    clip: auto;
  }

  .mobile-header-language .language-trigger [data-language-current-flag] {
    display: inline-flex;
  }

  .mobile-header-language .language-trigger .language-country-flag {
    width: 20px;
    height: 20px;
  }

  .mobile-header-language .language-trigger .language-country-flag svg {
    width: 20px;
    height: 20px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px;
    background: rgba(5, 9, 8, 0.96);
    border: 1px solid rgba(119, 255, 180, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
    transform: translateY(-8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    grid-column: 1 / -1;
    padding: 14px;
  }

  .site-nav.has-account {
    grid-template-columns: 1fr;
  }

  .auth-account {
    justify-self: stretch;
  }

  .site-nav.has-account .auth-account {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav.has-account .account-trigger,
  .site-nav.has-account .auth-account::after {
    display: none;
  }

  .site-nav.is-open.has-account .account-menu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 2px;
    padding: 0;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-nav.has-account .account-menu a,
  .site-nav.has-account .account-menu button {
    min-height: 0;
    padding: 14px;
    color: rgba(243, 255, 248, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
    border-radius: 0;
  }

  .site-nav.has-account .account-menu a::after {
    display: block;
  }

  .site-nav.has-account .account-menu a:hover,
  .site-nav.has-account .account-menu a:focus-visible,
  .site-nav.has-account .account-menu button:hover,
  .site-nav.has-account .account-menu button:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .account-language-action {
    display: none !important;
  }

  .language-control {
    display: grid;
    justify-self: stretch;
  }

  .language-trigger {
    width: 100%;
    justify-content: center;
    padding: 0 14px;
  }

  .language-trigger [data-language-current-flag] {
    display: none;
  }

  .language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: max-content;
    min-width: 118px;
    margin-top: 0;
  }

  .site-nav.has-account .language-control {
    grid-column: 3;
    grid-row: 5;
    justify-self: end;
  }

  .site-nav.has-account .language-trigger {
    width: auto;
    min-width: 82px;
  }

  .site-nav.has-account .language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: max-content;
    min-width: 118px;
    margin-top: 0;
  }

  .site-nav > .language-control,
  .site-nav.has-account > .language-control {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-panel-preview {
    max-width: 620px;
    justify-self: stretch;
  }

  .hero-snipe-showcase {
    max-width: 680px;
    justify-self: stretch;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.94), rgba(3, 5, 6, 0.58)),
      linear-gradient(180deg, rgba(3, 5, 6, 0.22), var(--bg) 98%);
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-metrics div:nth-child(5) {
    grid-column: auto;
  }

  .bot-layout,
  .section-grid,
  .bot-ui-layout,
  .about-bot-layout,
  .about-layout,
  .register-layout {
    grid-template-columns: 1fr;
  }

  .download-page .register-layout {
    align-items: start;
  }

  .download-page .register-copy {
    display: contents;
    order: 2;
  }

  .download-page .register-copy > .eyebrow,
  .download-page .register-copy h1 {
    display: none;
  }

  .download-page .download-lead {
    display: none;
  }

  .download-page .register-panel {
    order: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .download-page .purchase-options {
    order: 2;
    margin-top: 24px;
  }

  .download-page .purchase-option:nth-child(1) {
    order: 2;
  }

  .download-page .purchase-option:nth-child(2) {
    order: 1;
  }

  .bot-ui-copy h2,
  .bot-ui-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  .bot-ui-mockup {
    max-width: 860px;
  }

  .bot-ui-mockup img {
    width: 100%;
  }

  .about-bot-chart {
    max-width: 620px;
  }

  .register-panel {
    max-width: 560px;
  }

  .bot-preview {
    position: relative;
    top: auto;
    max-width: 540px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  html[data-currency="pln"] .offer-grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .purchase-guide-layout {
    grid-template-columns: 1fr;
  }

  .purchase-guide-video {
    width: 100%;
    max-width: 760px;
  }

  .story-panel,
  .story-panel-track,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .coin-hero-panel {
    min-height: auto;
    gap: 22px;
    padding:
      clamp(64px, 10vw, 94px)
      max(22px, calc((100vw - 760px) / 2))
      clamp(54px, 8vw, 82px);
  }

  .coin-hero-copy {
    min-height: auto;
  }

  .coin-hero-copy h2 {
    max-width: 760px;
  }

  .coin-hero-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  .coin-hero-foot {
    margin-top: 34px;
  }

  .coin-hero-visual {
    min-height: clamp(360px, 58vw, 500px);
  }

  .coin-radar {
    top: 2%;
    right: 18%;
  }

  .profit-track-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding:
      clamp(62px, 9vw, 92px)
      max(22px, calc((100vw - 760px) / 2))
      clamp(56px, 8vw, 84px);
  }

  .profit-track-panel::after {
    right: 18px;
    font-size: clamp(9rem, 30vw, 16rem);
  }

  .profit-track-visual {
    min-height: clamp(360px, 64vw, 560px);
    order: 2;
  }

  .profit-track-visual img {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .profit-track-copy {
    min-height: auto;
    order: 1;
  }

  .profit-track-copy h2,
  .profit-track-copy p {
    max-width: 760px;
  }

  .community-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding:
      clamp(53px, 7.65vw, 78px)
      max(22px, calc((100vw - 760px) / 2))
      clamp(48px, 6.8vw, 71px);
  }

  .community-panel::after {
    right: 18px;
    font-size: clamp(7rem, 24vw, 13rem);
  }

  .community-copy {
    min-height: auto;
  }

  .community-visual {
    min-height: clamp(340px, 56vw, 520px);
  }

  .community-visual img {
    width: min(100%, 682px);
    margin: 0 auto;
  }

  .story-panel-track .story-visual {
    order: 2;
  }

  .story-panel-track .story-copy {
    order: 1;
  }

  .story-visual {
    min-height: 260px;
  }

  .discord-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .discord-actions {
    justify-content: flex-start;
  }

  .footer-layout div {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .download-page .register-status.is-screen-toast.is-mobile-hidden-toast {
    display: none !important;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-lockup {
    min-width: 150px;
  }

  .brand-image {
    width: min(220px, 58vw);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 66px;
  }

  .hero-content {
    gap: 22px;
  }

  .hero-intro {
    display: contents;
  }

  .hero h1 {
    order: 2;
    max-width: 100%;
    font-size: clamp(1.58rem, 10.72vw, 2.68rem);
    white-space: normal;
  }

  .hero-snipe-showcase {
    order: 1;
  }

  .snipe-stage {
    height: auto;
    min-height: 500px;
  }

  .snipe-countdown,
  .snipe-result {
    padding: 22px;
  }

  .snipe-orbit {
    width: min(220px, 68vw);
    height: min(220px, 68vw);
  }

  .snipe-result {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .snipe-card {
    min-height: 260px;
  }

  .snipe-card img {
    width: min(100%, 210px);
    max-height: 275px;
  }

  .snipe-profit dd {
    font-size: 1.45rem;
  }

  .hero-lead {
    order: 3;
    margin-top: 0;
    font-size: 0.98rem;
  }

  .hero-actions {
    order: 4;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
  }

  .hero-actions .button-primary {
    order: 1;
  }

  .hero-actions small {
    order: 2;
  }

  .hero-actions .button-secondary {
    order: 3;
  }

  .hero-metrics {
    order: 5;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .about-numbers {
    grid-template-columns: 1fr;
  }

  .hero-metrics div:nth-child(5) {
    grid-column: auto;
  }

  .hero-metrics div,
  .about-numbers div {
    min-height: 94px;
  }

  .section {
    padding: 52px 0;
  }

  .bot-ui-section {
    padding-top: 54px;
  }

  .bot-ui-copy h2 {
    font-size: clamp(2rem, 10.4vw, 3.55rem);
  }

  .bot-ui-copy p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .bot-ui-copy .button {
    width: 100%;
    margin-top: 26px;
  }

  .bot-ui-mockup::before {
    inset: 12% 0 2%;
  }

  .story-section {
    padding-top: 18px;
  }

  .story-panel {
    min-height: auto;
    padding: 24px;
  }

  .coin-hero-panel {
    padding: 42px 18px 36px;
  }

  .coin-hero-panel::after {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .coin-hero-copy h2 {
    font-size: clamp(1.57rem, 8.38vw, 2.68rem);
  }

  .coin-hero-copy h2 strong {
    margin-top: 10px;
  }

  .coin-hero-copy p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .coin-hero-foot {
    gap: 10px;
    margin-top: 28px;
    font-size: 0.72rem;
  }

  .coin-hero-foot i {
    width: 24px;
    height: 6px;
  }

  .coin-hero-visual {
    min-height: 345px;
    overflow: hidden;
  }

  .coin-radar {
    top: 4px;
    right: -18px;
    width: 210px;
  }

  .coin-podium {
    bottom: 28px;
    width: 82px;
  }

  .coin-podium-left {
    left: 4%;
    height: 102px;
  }

  .coin-podium-mid {
    right: 25%;
    height: 172px;
  }

  .coin-podium-right {
    right: 0;
    height: 112px;
  }

  .coin-podium-front {
    left: 24%;
    height: 70px;
  }

  .coin-disc-main {
    left: 10%;
    bottom: 188px;
    width: 112px;
  }

  .coin-disc-side {
    right: 10%;
    bottom: 40px;
    width: 92px;
  }

  .coin-bag {
    left: 34%;
    bottom: 26px;
    width: 138px;
  }

  .coin-total {
    right: 0;
    bottom: 8px;
    min-width: 176px;
    gap: 10px;
    padding: 10px 12px;
  }

  .coin-total-mark {
    width: 26px;
    font-size: 0.68rem;
  }

  .coin-total strong {
    font-size: 1.08rem;
  }

  .profit-track-panel {
    gap: 18px;
    padding: 42px 18px 42px;
  }

  .profit-track-panel::after {
    top: 6px;
    right: 10px;
    font-size: 8.5rem;
  }

  .profit-track-visual {
    min-height: 330px;
  }

  .profit-track-visual::before {
    right: -12%;
    left: -18%;
    height: 32%;
  }

  .profit-track-visual img {
    width: min(112%, 430px);
    max-height: 360px;
    margin-left: -4%;
  }

  .profit-track-copy h2 {
    font-size: clamp(1.44rem, 7.71vw, 2.51rem);
    line-height: 1;
  }

  .profit-track-copy h2 strong {
    margin-top: 10px;
  }

  .profit-track-copy p {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .community-panel {
    gap: 22px;
    padding: 36px 18px 36px;
  }

  .community-panel::after {
    top: 18px;
    right: 12px;
    font-size: 6.5rem;
  }

  .community-copy h2 {
    font-size: clamp(1.34rem, 7.04vw, 2.31rem);
    line-height: 1.02;
  }

  .community-copy p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .community-visual {
    min-height: 300px;
  }

  .community-visual img {
    width: min(118.8%, 462px);
    max-height: 363px;
  }

  .story-panel::after {
    font-size: 5rem;
  }

  .story-copy h2 {
    font-size: clamp(1.95rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .story-copy p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .story-coins-visual,
  .story-discord-visual,
  .story-team-visual {
    min-height: 250px;
  }

  .story-coins-visual img {
    right: 35%;
    width: min(38vw, 140px);
  }

  .coin-stack-a {
    right: 3%;
    height: 104px;
  }

  .coin-stack-b {
    right: 28%;
    height: 138px;
  }

  .coin-stack-c {
    right: 58%;
    height: 78px;
  }

  .story-profit-token {
    top: 12px;
    right: 8px;
  }

  .story-panel-track .story-copy h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.9rem);
  }

  .discord-mockup {
    min-height: 270px;
    grid-template-columns: 54px minmax(0, 1fr);
    transform: rotate(-1.5deg);
  }

  .discord-sidebar {
    gap: 10px;
    padding-top: 14px;
  }

  .discord-sidebar img {
    width: 34px;
    height: 34px;
  }

  .discord-sidebar span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .discord-window {
    gap: 9px;
    padding: 16px;
  }

  .discord-window-head {
    display: grid;
    gap: 4px;
    padding-bottom: 10px;
  }

  .discord-notification {
    padding: 11px 11px 11px 32px;
  }

  .discord-notification p {
    font-size: 0.74rem;
  }

  .story-card {
    width: min(38vw, 132px);
  }

  .story-card-back {
    right: 54%;
  }

  .story-card-mid {
    right: 28%;
  }

  .story-card-front {
    right: 3%;
  }

  .faq-question {
    min-height: 54px;
    padding: 16px 48px 16px 16px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }

  .feature-stack article {
    padding-left: 72px;
  }

  .about-bot-layout {
    gap: 34px;
  }

  .about-bot-copy h2 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .about-bot-chart {
    min-height: auto;
    gap: 8px;
  }

  .about-bot-tile {
    min-height: 158px;
    padding: 18px;
  }

  .about-bot-tile strong {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .about-bot-tile span {
    font-size: 0.82rem;
  }

  .about-bot-logo {
    width: 76px;
    padding: 10px;
    box-shadow: 0 0 0 6px rgba(3, 5, 6, 0.78), 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 30px rgba(66, 255, 136, 0.12);
  }

  .about-bot-logo img {
    width: 44px;
    height: 44px;
  }

  .preview-shell {
    gap: 12px;
    padding: 14px;
  }

  .preview-brand {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .preview-logo {
    width: 44px;
    height: 44px;
    font-size: 0.66rem;
  }

  .preview-brand strong {
    font-size: clamp(1.65rem, 11vw, 2.45rem);
  }

  .preview-coins {
    grid-template-columns: 1fr;
  }

  .preview-inputs {
    gap: 8px;
  }

  .preview-select strong {
    font-size: 0.88rem;
  }

  .preview-console {
    min-height: 142px;
  }

  .offer-card {
    padding: 22px;
  }

  .purchase-guide-section {
    padding-top: 52px;
  }

  .purchase-guide-copy h2 {
    font-size: clamp(1.95rem, 9.4vw, 3.05rem);
  }

  .purchase-guide-copy p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .purchase-guide-copy .button {
    margin-top: 24px;
  }

  .discord-section {
    padding: 52px 0;
  }

  .license-summary {
    grid-template-columns: 1fr;
  }

  .premium-feature-summary {
    grid-template-columns: 1fr;
  }

  .discord-id-form {
    grid-template-columns: 1fr;
  }

  .download-page .discord-id-form .register-field,
  .discord-id-change-captcha,
  .download-page .discord-id-form .register-submit {
    grid-row: auto;
    grid-column: 1;
  }

  .download-page .discord-id-form .register-submit {
    margin-top: 0;
  }

  .discord-id-help-actions {
    grid-template-columns: 1fr;
  }

  .purchase-options {
    grid-template-columns: 1fr;
  }

  .download-page .register-copy h1 {
    white-space: normal;
  }

  .download-page .purchase-option {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .download-page .purchase-option-allegro {
    order: 3;
  }

  .download-page .purchase-option span {
    order: 1;
  }

  .download-page .purchase-price,
  .download-page .purchase-payment-note,
  .download-page .purchase-option ul,
  .download-page .purchase-buy,
  .download-page .purchase-allegro-inline,
  .download-page .purchase-option-allegro .allegro-logo,
  .download-page .purchase-option-allegro .allegro-discount {
    grid-row: auto;
    grid-column: auto;
  }

  .download-page .purchase-option ul {
    order: 2;
  }

  .download-page .purchase-option-allegro .allegro-logo {
    order: 2;
    text-align: left;
  }

  .download-page .purchase-price {
    order: 3;
  }

  .download-page .purchase-option-allegro .allegro-discount {
    order: 3;
    text-align: left;
  }

  .download-page .purchase-option-allegro ul {
    order: 4;
  }

  .download-page .purchase-buy {
    order: 4;
  }

  .download-page .purchase-option-allegro .purchase-buy {
    order: 5;
  }

  .download-page .purchase-payment-note {
    order: 5;
  }

  .download-page .purchase-option-allegro .purchase-payment-note {
    order: 6;
    text-align: left;
  }

  .download-page .purchase-allegro-inline {
    order: 6;
    margin-top: 2px;
  }

  .download-page .purchase-option ul {
    margin: 0 0 16px;
  }

  .register-hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .register-panel {
    padding: 18px;
  }

  .discord-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .discord-actions .button {
    flex: 1 1 220px;
  }

  .discord-icon-link {
    width: 58px;
    height: 58px;
  }

  .discord-icon {
    width: 42px;
    height: 42px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.download-page .purchase-options .purchase-option .purchase-price {
  font-size: 28px !important;
}

@media (max-width: 1310px) {
  .download-page.download-license-only-view,
  .download-page.download-purchase-view {
    grid-template-rows: auto auto;
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .download-page.download-license-only-view main,
  .download-page.download-purchase-view main {
    min-height: auto;
  }

  .download-page.download-license-only-view .register-hero,
  .download-page.download-purchase-view .register-hero {
    height: auto;
    min-height: auto;
  }

  .download-page.download-license-only-view .register-layout,
  .download-page.download-purchase-view .register-layout {
    height: auto;
  }

  .download-page.download-license-only-view .register-panel,
  .download-page.download-purchase-view .register-panel {
    max-height: none;
  }

  .download-page.download-license-only-view .register-hero {
    min-height: auto;
  }

  .download-page.download-license-only-view .register-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .download-page.download-license-only-view .register-copy {
    display: block;
    order: 1;
    width: min(100%, 680px);
  }

  .download-page.download-license-only-view .register-copy > .eyebrow,
  .download-page.download-license-only-view .register-copy h1,
  .download-page.download-license-only-view .download-lead {
    display: block;
  }

  .download-page.download-license-only-view .register-copy h1 {
    white-space: normal;
  }

  .download-page.download-license-only-view .download-lead {
    max-width: 620px;
  }

  .download-page.download-license-only-view .register-panel {
    order: 2;
    width: min(100%, 726px);
    max-width: 726px;
    justify-self: start;
  }

  .download-page.download-purchase-view .register-hero {
    min-height: auto;
  }

  .download-page.download-purchase-view .register-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .download-page.download-purchase-view .register-copy {
    display: contents;
  }

  .download-page.download-purchase-view .register-copy > .eyebrow,
  .download-page.download-purchase-view .register-copy h1,
  .download-page.download-purchase-view .download-lead {
    display: none;
  }

  .download-page.download-purchase-view .register-panel {
    order: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .download-page.download-purchase-view .purchase-options {
    order: 2;
    width: 100%;
    margin-top: 0;
  }

  .download-page.download-purchase-view .download-copy-button {
    order: 2;
  }

  .download-page.download-purchase-view .purchase-option:nth-child(1) {
    order: 2;
  }

  .download-page.download-purchase-view .purchase-option:nth-child(2) {
    order: 1;
  }

  .download-page.download-purchase-view .purchase-option-allegro {
    order: 3;
  }
}

@media (max-width: 920px) {
  .download-page .register-layout > .download-copy-button {
    order: 3;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .download-page.download-license-only-view .register-layout {
    gap: 24px;
  }

  .download-page.download-license-only-view .register-copy {
    display: block;
    width: 100%;
  }

  .download-page.download-license-only-view .register-copy > .eyebrow,
  .download-page.download-license-only-view .register-copy h1,
  .download-page.download-license-only-view .download-lead {
    display: block;
  }

  .download-page.download-license-only-view .register-copy h1 {
    font-size: clamp(2.35rem, 9vw, 3.4rem);
    white-space: normal;
  }

  .download-page.download-license-only-view .register-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@media (min-width: 921px) and (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 64px;
  }

  .hero-content {
    width: min(1040px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 0;
    align-self: center;
    padding-top: 0;
  }

  .hero-intro {
    display: contents;
  }

  .hero h1 {
    order: 1;
    max-width: 760px;
    font-size: clamp(2.9rem, 5.25vw, 3.8rem);
    white-space: normal;
  }

  .hero-lead {
    order: 2;
    max-width: 650px;
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-snipe-showcase {
    order: 3;
    width: min(100%, 500px);
    max-width: 500px;
    margin-top: 24px;
    justify-self: start;
    transform: none;
  }

  .snipe-stage {
    height: clamp(292px, 34vw, 360px);
  }

  .snipe-result {
    grid-template-columns: minmax(140px, 0.64fr) minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .snipe-card {
    min-height: 248px;
  }

  .snipe-card img {
    width: min(100%, 196px);
    max-height: 258px;
  }

  .snipe-profit {
    gap: 9px;
  }

  .snipe-profit dl {
    gap: 7px;
  }

  .snipe-profit dl div {
    padding: 9px 10px;
  }

  .snipe-profit dd {
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  }

  .hero-actions {
    order: 4;
    margin-top: 24px;
  }

  .hero-metrics {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin: 44px 0 0;
  }

  .hero-metrics div {
    min-height: 96px;
    padding: 16px;
  }
}

@media (min-width: 921px) {
  .auth-page .footer-layout,
  .download-page .footer-layout {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  .auth-page .footer-layout > div,
  .download-page .footer-layout > div {
    display: inline-flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .auth-page .footer-layout > div:first-child,
  .download-page .footer-layout > div:first-child {
    display: inline-flex;
  }

  .auth-page .footer-layout p,
  .auth-page .footer-layout a,
  .auth-page .country-control,
  .auth-page .footer-language-control,
  .auth-page .currency-control,
  .download-page .footer-layout p,
  .download-page .footer-layout a,
  .download-page .country-control,
  .download-page .footer-language-control,
  .download-page .currency-control {
    white-space: nowrap;
  }
}

html[data-currency="pln"] .download-page .purchase-option-season {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(116px, 0.23fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 3px 18px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

html[data-currency="pln"] .download-page .purchase-option-season ul {
  grid-row: 2 / span 4;
  align-self: center;
  gap: 5px;
  font-size: 0.9rem;
  line-height: 1.28;
}

html[data-currency="pln"] .download-page .purchase-option-season li {
  padding-left: 18px;
}

html[data-currency="pln"] .download-page .purchase-option-season li::before {
  top: 50%;
  transform: translateY(-50%);
}

html[data-currency="pln"] .download-page .purchase-option-season > span {
  padding: 5px 8px;
  font-size: 0.66rem;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-price {
  align-self: start;
  margin: 0;
  font-size: 28px;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-buy {
  min-height: 34px;
  font-size: 0.68rem;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-payment-note {
  margin: -1px 0 0;
  font-size: 0.42rem;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline {
  display: grid;
  width: 100%;
  gap: 2px;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline strong {
  grid-row: 1;
  order: 1;
  color: rgba(243, 255, 248, 0.72);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline span {
  grid-row: 2;
  order: 2;
  min-height: 32px;
  font-size: 0.68rem;
}

html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline small {
  grid-row: 3;
  order: 3;
  color: rgba(243, 255, 248, 0.74);
  font-size: 0.42rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .offer-card-allegro .allegro-badge {
    display: none;
  }

  html[data-currency="pln"] .download-page .purchase-option-season {
    min-height: auto;
  }

  .download-page .purchase-allegro-inline {
    min-height: 0;
  }

  html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline {
    justify-items: stretch;
    text-align: left;
  }

  html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline strong {
    justify-self: start;
  }

  html[data-currency="pln"] .download-page .purchase-option-season .purchase-allegro-inline small {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}

/* FIFA / EA FC tax calculator */
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(66, 255, 136, 0.065);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tax-calculator-page {
  min-height: 100vh;
}

.tax-main {
  overflow: hidden;
}

.tax-calculator-page .container,
.tax-hero-layout,
.tax-guide-layout,
.tax-info-grid,
.tax-example-panel,
.tax-table-section,
.tax-bot-promo,
.tax-faq,
.tax-faq .faq-list {
  min-width: 0;
}

.tax-hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + clamp(66px, 7vw, 104px)) 0 clamp(84px, 9vw, 126px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(3, 5, 6, 0.98) 0%, rgba(5, 14, 11, 0.92) 54%, rgba(3, 7, 7, 0.98) 100%),
    var(--bg);
}

.tax-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 190px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, transparent, #040807);
}

.tax-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(119, 255, 180, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 255, 180, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 66% 42%, #000 0, rgba(0, 0, 0, 0.82) 30%, transparent 72%);
}

.tax-hero-orb {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.72;
  animation: taxOrbFloat 9s ease-in-out infinite alternate;
}

.tax-hero-orb-one {
  top: 8%;
  right: 5%;
  width: min(460px, 44vw);
  height: min(460px, 44vw);
  background: radial-gradient(circle, rgba(66, 255, 136, 0.15), transparent 68%);
}

.tax-hero-orb-two {
  bottom: -14%;
  left: 18%;
  width: min(390px, 38vw);
  height: min(390px, 38vw);
  background: radial-gradient(circle, rgba(57, 216, 255, 0.11), transparent 70%);
  animation-delay: -4s;
}

.tax-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.tax-hero-copy {
  min-width: 0;
}

.tax-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.25rem, 6.35vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

html[lang="pl"] .tax-hero-copy h1 {
  max-width: 700px;
  font-size: clamp(2.95rem, 5.55vw, 5.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.tax-hero-lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(243, 255, 248, 0.9);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  font-weight: 850;
  line-height: 1.45;
}

.tax-hero-description {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(243, 255, 248, 0.68);
  font-size: 1rem;
  line-height: 1.72;
}

.tax-rate-display {
  display: flex;
  width: fit-content;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(119, 255, 180, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.tax-rate-ring {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  place-items: center;
  color: #06110d;
  background: conic-gradient(var(--gold) 0 5%, var(--green) 5% 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(66, 255, 136, 0.24);
  animation: taxRatePulse 3.2s ease-in-out infinite;
}

.tax-rate-ring::before {
  position: absolute;
  inset: 5px;
  content: "";
  background: #07100d;
  border-radius: inherit;
}

.tax-rate-ring span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
}

.tax-rate-display > div:last-child {
  display: grid;
  gap: 3px;
}

.tax-rate-display > div:last-child span {
  color: rgba(243, 255, 248, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-rate-display > div:last-child strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 950;
}

.tax-calculator-card {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3.2vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(14, 29, 24, 0.95), rgba(3, 7, 6, 0.985) 58%),
    var(--panel-solid);
  border: 1px solid rgba(119, 255, 180, 0.32);
  border-radius: 14px;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.52),
    0 0 54px rgba(66, 255, 136, 0.075),
    inset 0 1px rgba(255, 255, 255, 0.045);
}

.tax-calculator-card::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(66, 255, 136, 0.72);
}

.tax-calculator-card::after {
  position: absolute;
  top: -70%;
  left: -35%;
  width: 38%;
  height: 230%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  transform: rotate(18deg) translateX(-220%);
}

.tax-calculator-card.is-updated::after {
  animation: taxCardSweep 760ms ease-out;
}

.tax-card-heading,
.tax-results-heading,
.tax-table-heading,
.tax-bot-promo {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.tax-card-heading .eyebrow,
.tax-example-copy .eyebrow,
.tax-table-heading .eyebrow,
.tax-bot-promo .eyebrow {
  margin-bottom: 8px;
}

.tax-card-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.tax-live-badge {
  display: inline-flex;
  min-height: 32px;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  padding: 0 11px;
  color: rgba(243, 255, 248, 0.8);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(66, 255, 136, 0.07);
  border: 1px solid rgba(66, 255, 136, 0.24);
  border-radius: 999px;
}

.tax-live-badge i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(66, 255, 136, 0.86);
  animation: taxLivePulse 1.7s ease-in-out infinite;
}

.tax-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.tax-form > label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tax-field-help {
  color: rgba(243, 255, 248, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

.tax-input-shell {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(119, 255, 180, 0.22);
  border-radius: 9px;
  box-shadow: inset 0 1px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tax-input-shell:focus-within {
  background: rgba(0, 0, 0, 0.44);
  border-color: rgba(66, 255, 136, 0.72);
  box-shadow: 0 0 0 3px rgba(66, 255, 136, 0.1), inset 0 1px 15px rgba(0, 0, 0, 0.2);
}

.tax-calculator-card.has-error .tax-input-shell {
  border-color: rgba(255, 103, 103, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 103, 103, 0.08);
}

.tax-coin-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 214, 107, 0.07);
  border: 1px solid rgba(255, 214, 107, 0.2);
  border-radius: 50%;
}

.tax-coin-icon svg {
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: rgba(255, 214, 107, 0.08);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.tax-input-shell input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  color: #fff;
  font: inherit;
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  background: transparent;
  border: 0;
  outline: 0;
}

.tax-input-shell input::placeholder {
  color: rgba(243, 255, 248, 0.22);
}

.tax-input-unit {
  color: rgba(243, 255, 248, 0.5);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tax-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 2px;
}

.tax-examples > span {
  margin-right: 2px;
  color: rgba(243, 255, 248, 0.46);
  font-size: 0.7rem;
  font-weight: 850;
}

.tax-examples button {
  min-width: 48px;
  min-height: 30px;
  padding: 0 9px;
  color: rgba(243, 255, 248, 0.72);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tax-examples button:hover,
.tax-examples button:focus-visible {
  color: #fff;
  background: rgba(66, 255, 136, 0.08);
  border-color: rgba(66, 255, 136, 0.42);
  transform: translateY(-1px);
}

.tax-error {
  margin: 1px 0 0;
  color: #ff9b9b;
  font-size: 0.76rem;
  font-weight: 850;
}

.tax-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border: 0;
}

.tax-results {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.tax-results-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.tax-results-heading > span {
  color: rgba(243, 255, 248, 0.46);
  font-size: 0.66rem;
  font-weight: 850;
}

.tax-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.tax-result-item {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.tax-result-item > span {
  display: block;
  min-height: 2.25em;
  color: rgba(243, 255, 248, 0.47);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.tax-result-item strong {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1rem, 2.3vw, 1.28rem);
  font-weight: 950;
  letter-spacing: -0.025em;
}

.tax-result-item output {
  overflow-wrap: anywhere;
}

.tax-result-coin-icon {
  position: relative;
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(145deg, #ffe68a 0%, #ffd66b 35%, #c9871c 72%, #8e5b0d 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 -2px 2px rgba(75, 39, 0, 0.32),
    0 0 11px rgba(255, 214, 107, 0.36);
  transform: translateY(0.02em);
}

.tax-result-coin-icon::before {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid rgba(92, 54, 0, 0.34);
  border-radius: inherit;
}

.tax-result-coin-icon::after {
  position: absolute;
  top: 26%;
  left: 46%;
  width: 12%;
  height: 48%;
  content: "";
  background: rgba(92, 54, 0, 0.35);
  border-radius: 999px;
}

.tax-result-item small {
  color: rgba(243, 255, 248, 0.36);
  font-size: 0.54rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-result-fee strong {
  color: var(--gold);
}

.tax-result-net {
  background: rgba(66, 255, 136, 0.055);
  border-color: rgba(66, 255, 136, 0.18);
}

.tax-result-net strong {
  color: var(--green);
}

.tax-calculator-card.is-updated .tax-result-net {
  animation: taxResultGlow 720ms ease-out;
}

.tax-split {
  margin-top: 18px;
}

.tax-split-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: rgba(243, 255, 248, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-split-labels span:last-child {
  color: rgba(255, 214, 107, 0.72);
}

.tax-split-track {
  display: flex;
  height: 7px;
  gap: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.tax-split-track span {
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 650ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.tax-split-keep {
  width: 95%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.tax-split-fee {
  width: 5%;
  min-width: 10px;
  background: var(--gold);
  transition-delay: 180ms !important;
}

.tax-calculator-card.has-result .tax-split-track span {
  transform: scaleX(1);
}

.tax-formula,
.tax-rounding-note {
  margin: 13px 0 0;
  color: rgba(243, 255, 248, 0.46);
  font-size: 0.68rem;
  line-height: 1.45;
}

.tax-formula span {
  color: rgba(243, 255, 248, 0.76);
  font-weight: 950;
}

.tax-rounding-note {
  margin-top: 4px;
}

.tax-screen-reader-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.tax-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.tax-guide {
  position: relative;
  padding: clamp(84px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(66, 255, 136, 0.075), transparent 28rem),
    radial-gradient(circle at 90% 76%, rgba(57, 216, 255, 0.06), transparent 30rem),
    linear-gradient(180deg, #040807, #020404);
}

.tax-guide-layout {
  display: grid;
  gap: clamp(56px, 8vw, 92px);
}

.tax-guide-heading {
  max-width: 880px;
}

.tax-guide-heading h2,
.tax-example-copy h2,
.tax-table-heading h2,
.tax-bot-promo h2,
.tax-faq-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.tax-guide-heading > p:last-child {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(243, 255, 248, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
}

.tax-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tax-info-card {
  position: relative;
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(12, 24, 20, 0.84), rgba(4, 8, 7, 0.94)),
    var(--panel);
  border: 1px solid rgba(119, 255, 180, 0.15);
  border-radius: 10px;
  box-shadow: 0 25px 66px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tax-info-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(66, 255, 136, 0.08), transparent 68%);
  border-radius: 50%;
}

.tax-info-card:hover {
  border-color: rgba(119, 255, 180, 0.3);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.32), 0 0 34px rgba(66, 255, 136, 0.045);
  transform: translateY(-4px);
}

.tax-info-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(66, 255, 136, 0.07);
  border: 1px solid rgba(66, 255, 136, 0.18);
  border-radius: 50%;
}

.tax-info-card h3 {
  max-width: 470px;
  margin: 32px 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.17;
}

.tax-info-card p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(243, 255, 248, 0.64);
  font-size: 0.94rem;
  line-height: 1.72;
}

.tax-example-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(460px, 1.24fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 54px);
  background:
    linear-gradient(120deg, rgba(66, 255, 136, 0.09), transparent 42%),
    rgba(7, 14, 12, 0.88);
  border: 1px solid rgba(119, 255, 180, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tax-example-copy h2,
.tax-table-heading h2,
.tax-bot-promo h2,
.tax-faq-heading h2 {
  font-size: clamp(1.8rem, 3.55vw, 3.2rem);
  line-height: 1.02;
}

.tax-example-copy > p:last-child,
.tax-table-heading > p,
.tax-bot-promo-copy > p,
.tax-faq-heading > p:last-child {
  margin: 18px 0 0;
  color: rgba(243, 255, 248, 0.66);
  line-height: 1.7;
}

.tax-example-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.85fr) auto minmax(0, 1.15fr);
  gap: clamp(8px, 1.3vw, 16px);
  align-items: center;
}

.tax-example-equation > span {
  display: grid;
  min-width: 0;
  min-height: 104px;
  align-content: center;
  padding: 16px;
  color: #fff;
  font-size: clamp(1.08rem, 2.1vw, 1.52rem);
  font-weight: 950;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
}

.tax-example-equation > span small {
  margin-bottom: 8px;
  color: rgba(243, 255, 248, 0.44);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-example-equation > .is-fee {
  color: var(--gold);
  border-color: rgba(255, 214, 107, 0.16);
}

.tax-example-equation > .is-net {
  color: var(--green);
  background: rgba(66, 255, 136, 0.055);
  border-color: rgba(66, 255, 136, 0.2);
}

.tax-example-equation > b {
  color: rgba(243, 255, 248, 0.35);
  font-size: 1.45rem;
}

.tax-table-section {
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.024);
  border: 1px solid rgba(119, 255, 180, 0.14);
  border-radius: 10px;
}

.tax-table-heading {
  align-items: end;
}

.tax-table-heading > p {
  max-width: 430px;
  margin: 0;
}

.tax-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
}

.tax-table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: rgba(243, 255, 248, 0.76);
  font-variant-numeric: tabular-nums;
}

.tax-table-wrap th,
.tax-table-wrap td {
  padding: 16px 20px;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.tax-table-wrap th:first-child,
.tax-table-wrap td:first-child {
  text-align: left;
}

.tax-table-wrap th {
  color: rgba(243, 255, 248, 0.48);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.2);
}

.tax-table-wrap td {
  font-size: 0.9rem;
  font-weight: 850;
}

.tax-table-wrap td:nth-child(2) {
  color: var(--gold);
}

.tax-table-wrap td:last-child {
  color: var(--green);
}

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

.tax-bot-promo {
  position: relative;
  align-items: flex-start;
  padding: clamp(28px, 4.2vw, 50px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(66, 255, 136, 0.12), transparent 38%),
    radial-gradient(circle at 88% 20%, rgba(57, 216, 255, 0.12), transparent 26rem),
    rgba(7, 13, 12, 0.9);
  border: 1px solid rgba(119, 255, 180, 0.24);
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26), 0 0 38px rgba(66, 255, 136, 0.055);
}

.tax-bot-promo::after {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: -46px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.86) 0 8%, transparent 9%),
    linear-gradient(145deg, rgba(255, 230, 138, 0.78), rgba(255, 214, 107, 0.34) 44%, rgba(142, 91, 13, 0.18));
  border: 1px solid rgba(255, 214, 107, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 -14px 24px rgba(74, 42, 0, 0.18), 0 0 34px rgba(255, 214, 107, 0.13);
  opacity: 0.42;
}

.tax-bot-promo > div:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}

.tax-bot-promo-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 490px;
}

.tax-bot-promo-copy > p {
  margin: 0;
  overflow-wrap: anywhere;
}

.tax-bot-promo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tax-bot-promo-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: rgba(243, 255, 248, 0.78);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(66, 255, 136, 0.075);
  border: 1px solid rgba(66, 255, 136, 0.22);
  border-radius: 999px;
}

.tax-bot-promo-action {
  max-width: 100%;
  min-height: 46px;
  margin-top: 22px;
  padding-inline: 22px;
  white-space: normal;
  text-align: center;
}

.tax-faq {
  align-items: start;
}

.tax-faq-heading h2 {
  max-width: 430px;
}

.tax-faq-heading > p:last-child {
  max-width: 360px;
}

.tax-calculator-page .site-footer {
  position: relative;
  z-index: 2;
}

@keyframes taxOrbFloat {
  from {
    transform: translate3d(-2%, -2%, 0) scale(0.96);
  }

  to {
    transform: translate3d(3%, 4%, 0) scale(1.06);
  }
}

@keyframes taxRatePulse {
  0%,
  100% {
    box-shadow: 0 0 26px rgba(66, 255, 136, 0.18);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 42px rgba(66, 255, 136, 0.32);
    transform: scale(1.035);
  }
}

@keyframes taxLivePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes taxCardSweep {
  from {
    transform: rotate(18deg) translateX(-220%);
  }

  to {
    transform: rotate(18deg) translateX(520%);
  }
}

@keyframes taxResultGlow {
  0% {
    box-shadow: 0 0 0 rgba(66, 255, 136, 0);
    transform: translateY(0);
  }

  45% {
    box-shadow: 0 0 28px rgba(66, 255, 136, 0.15);
    transform: translateY(-2px);
  }

  100% {
    box-shadow: 0 0 0 rgba(66, 255, 136, 0);
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .tax-hero-layout {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
  }

  .tax-hero-copy h1 {
    font-size: clamp(3rem, 6.8vw, 5.5rem);
  }

  html[lang="pl"] .tax-hero-copy h1 {
    font-size: clamp(2.75rem, 6vw, 4.8rem);
    line-height: 1.04;
  }

  .tax-result-item {
    padding-right: 9px;
    padding-left: 9px;
  }
}

@media (max-width: 920px) {
  .tax-hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 60px;
  }

  .tax-hero-layout,
  .tax-example-panel {
    grid-template-columns: 1fr;
  }

  .tax-hero-layout {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .tax-hero-copy {
    max-width: 720px;
  }

  .tax-hero-copy h1 {
    max-width: 760px;
  }

  .tax-hero-description {
    max-width: 690px;
  }

  .tax-calculator-card {
    width: 100%;
    max-width: 760px;
  }

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

  .tax-example-equation {
    max-width: 720px;
  }

  .tax-bot-promo,
  .tax-table-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tax-table-heading > p,
  .tax-bot-promo-copy {
    max-width: 760px;
  }

  .tax-table-wrap table {
    min-width: 0;
    table-layout: fixed;
  }

  .tax-table-wrap th,
  .tax-table-wrap td {
    padding: 14px 12px;
  }

  .tax-guide {
    padding: 68px 0;
  }

  .tax-guide-layout {
    gap: 46px;
  }
}

@media (max-width: 720px) {
  .tax-calculator-page .container {
    width: min(100% - 28px, 1180px);
  }

  .tax-guide-heading h2,
  .tax-example-copy h2,
  .tax-table-heading h2,
  .tax-bot-promo h2,
  .tax-faq-heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .tax-hero-layout {
    gap: 28px;
  }

  .tax-hero-lead {
    margin-top: 16px;
  }

  .tax-hero-description {
    margin-top: 10px;
  }

  .tax-rate-display {
    margin-top: 22px;
  }

  .tax-form {
    gap: 8px;
    margin-top: 22px;
  }

  .tax-results {
    margin-top: 22px;
    padding-top: 18px;
  }

  .tax-result-grid {
    margin-top: 11px;
  }

  .tax-split {
    margin-top: 14px;
  }

  .tax-guide {
    padding: 56px 0;
  }

  .tax-guide-layout {
    gap: 34px;
  }

  .tax-guide-heading > p:last-child,
  .tax-example-copy > p:last-child,
  .tax-table-heading > p,
  .tax-bot-promo-copy > p,
  .tax-faq-heading > p:last-child {
    margin-top: 12px;
    line-height: 1.62;
  }

  .tax-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tax-info-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .tax-info-card h3 {
    margin-top: 22px;
  }

  .tax-info-card p {
    margin-top: 10px;
    line-height: 1.62;
  }

  .tax-example-equation {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tax-example-equation > span {
    min-height: 86px;
  }

  .tax-example-equation > b {
    line-height: 0.7;
    text-align: center;
  }

  .tax-table-section {
    overflow: hidden;
    padding: 22px 18px;
  }

  .tax-table-wrap {
    margin-top: 20px;
  }

  .tax-example-panel {
    gap: 22px;
    padding: 22px 18px;
  }

  .tax-table-wrap {
    overflow-x: visible;
  }

  .tax-table-wrap table {
    width: 100%;
    min-width: 0;
  }

  .tax-table-wrap th,
  .tax-table-wrap td {
    padding: 12px 9px;
    font-size: 0.78rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .tax-table-wrap th {
    font-size: 0.56rem;
  }

  .tax-bot-promo {
    gap: 18px;
    padding: 22px 18px;
  }

  .tax-bot-promo::after {
    right: -34px;
    bottom: -58px;
    width: 116px;
    height: 116px;
    opacity: 0.24;
  }

  .tax-bot-promo-action {
    width: 100%;
    margin-top: 16px;
  }

  .tax-bot-promo-badges {
    margin-top: 12px;
  }

  .tax-faq {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .tax-hero {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 46px;
  }

  .tax-hero-layout {
    gap: 24px;
  }

  .tax-hero-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  html[lang="pl"] .tax-hero-copy h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
    line-height: 1.08;
  }

  .tax-hero-lead {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .tax-rate-display {
    width: 100%;
    gap: 12px;
    border-radius: 10px;
  }

  .tax-rate-ring {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .tax-calculator-card {
    padding: 18px 14px;
    border-radius: 10px;
  }

  .tax-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .tax-live-badge {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.58rem;
  }

  .tax-input-shell {
    min-height: 68px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 0 12px;
  }

  .tax-input-unit {
    display: none;
  }

  .tax-coin-icon {
    width: 34px;
    height: 34px;
  }

  .tax-input-shell input {
    font-size: clamp(1.45rem, 9vw, 2rem);
  }

  .tax-result-grid {
    grid-template-columns: 1fr;
  }

  .tax-result-item {
    display: grid;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
  }

  .tax-result-item > span {
    min-height: 0;
  }

  .tax-result-item strong {
    justify-content: flex-end;
    margin-top: 0;
    text-align: right;
  }

  .tax-results-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .tax-guide {
    padding: 46px 0;
  }

  .tax-guide-layout {
    gap: 28px;
  }

  .tax-info-card,
  .tax-example-panel,
  .tax-table-section,
  .tax-bot-promo {
    padding: 18px 14px;
  }

  .tax-info-card h3 {
    margin-top: 18px;
  }

  .tax-table-wrap {
    margin-top: 16px;
  }

  .tax-table-wrap th,
  .tax-table-wrap td {
    padding: 11px 7px;
    font-size: 0.74rem;
  }

  .tax-table-wrap th {
    font-size: 0.52rem;
  }

  .tax-bot-promo-badges span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.58rem;
  }

  .tax-faq {
    gap: 16px;
  }

  .tax-faq .faq-list {
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .tax-calculator-page .container {
    width: min(100% - 24px, 1180px);
  }

  .tax-hero-copy h1,
  html[lang="pl"] .tax-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
    line-height: 1.08;
  }

  .tax-rate-display {
    align-items: flex-start;
    margin-top: 18px;
    padding: 10px 12px 10px 10px;
  }

  .tax-rate-ring {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .tax-input-shell {
    min-height: 62px;
  }

  .tax-input-shell input {
    font-size: clamp(1.32rem, 8.5vw, 1.75rem);
  }

  .tax-result-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tax-result-item strong {
    justify-content: flex-start;
    text-align: left;
  }

  .tax-table-heading h2,
  .tax-bot-promo h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.2rem);
  }

  .tax-table-wrap th,
  .tax-table-wrap td {
    padding: 10px 5px;
    font-size: 0.68rem;
  }

  .tax-table-wrap th {
    font-size: 0.48rem;
  }

  .tax-bot-promo {
    gap: 14px;
    padding: 16px 13px;
  }

  .tax-bot-promo-action {
    min-height: 44px;
    margin-top: 14px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .tax-guide {
    padding: 38px 0;
  }

  .tax-guide-layout {
    gap: 24px;
  }

  .tax-example-panel,
  .tax-table-section {
    padding: 16px 13px;
  }

  .tax-example-equation > span {
    min-height: 72px;
  }
}
