@font-face {
  font-family: "NovaFX Display";
  src: url("assets/fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #02060a;
  --bg-2: #06131d;
  --surface: rgba(6, 18, 28, 0.82);
  --surface-solid: #071722;
  --surface-soft: rgba(11, 32, 46, 0.74);
  --ink: #f4fbff;
  --muted: #9cb5c5;
  --muted-2: #6f8798;
  --line: rgba(142, 220, 255, 0.18);
  --line-strong: rgba(142, 220, 255, 0.36);
  --accent: #32b7ff;
  --accent-2: #8beaff;
  --accent-3: #b7ff6d;
  --danger: #ff4c6a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 34px rgba(50, 183, 255, 0.34);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(4, 14, 21, 0.8), rgba(2, 6, 10, 1) 38%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(142, 220, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 220, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 76%);
  animation: gridDrift 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12% -30% -12%;
  z-index: -1;
  height: 52vh;
  background:
    radial-gradient(circle at 20% 42%, rgba(50, 183, 255, 0.22), transparent 34%),
    radial-gradient(circle at 72% 46%, rgba(183, 255, 109, 0.13), transparent 30%);
  filter: blur(24px);
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 0;
  animation: riseIn 700ms var(--ease) both;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -12px;
  z-index: -1;
  border: 1px solid rgba(142, 220, 255, 0.12);
  border-radius: 8px;
  background: rgba(1, 7, 12, 0.68);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"]::before {
  border-color: rgba(142, 220, 255, 0.22);
  background: rgba(1, 7, 12, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: Orbitron, "NovaFX Display", Inter, sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(50, 183, 255, 0.72));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  min-width: 0;
}

.account-button,
.text-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(6, 18, 28, 0.72);
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}

.account-button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
  text-transform: uppercase;
}

.text-button {
  min-height: 42px;
  padding: 0;
  border: 0;
  color: var(--accent-2);
  background: transparent;
}

.account-button:hover,
.account-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  border-color: rgba(139, 234, 255, 0.48);
  color: var(--ink);
  background: rgba(18, 52, 75, 0.78);
}

.account-button:active,
.text-button:active {
  transform: translateY(1px);
}

.language-picker {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.72);
}

.language-picker label,
.language-label {
  padding-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-options {
  display: grid;
  grid-template-columns: repeat(3, 38px);
  gap: 4px;
  align-items: center;
}

.market-option {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(142, 220, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 30, 45, 0.58);
  box-shadow: inset 0 0 0 1px rgba(142, 220, 255, 0.08);
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}

.market-option:hover,
.market-option:focus-visible {
  border-color: rgba(139, 234, 255, 0.5);
  background: rgba(18, 52, 75, 0.88);
}

.market-option:focus-visible {
  outline: 2px solid rgba(139, 234, 255, 0.48);
  outline-offset: 2px;
}

.market-option.active {
  border-color: rgba(139, 234, 255, 0.72);
  background: linear-gradient(135deg, rgba(50, 183, 255, 0.28), rgba(139, 234, 255, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(244, 251, 255, 0.1),
    0 0 0 1px rgba(139, 234, 255, 0.12),
    0 10px 22px rgba(50, 183, 255, 0.16);
}

.market-option:active {
  transform: translateY(1px);
}

.flag {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(244, 251, 255, 0.32);
}

.flag::before,
.flag::after {
  content: "";
  position: absolute;
}

.flag-br {
  background: #229e45;
}

.flag-br::before {
  inset: 3px 6px;
  background: #f7df29;
  transform: rotate(45deg);
}

.flag-br::after {
  top: 4px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1b3f8b;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.23px,
    #fff 1.23px 2.46px
  );
}

.flag-us::before {
  top: 0;
  left: 0;
  width: 11px;
  height: 8.6px;
  background: #3c3b6e;
}

.flag-uk {
  background:
    linear-gradient(90deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 37%, #fff 37% 63%, transparent 63%),
    linear-gradient(90deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(33deg, transparent 43%, #fff 43% 49%, #c8102e 49% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(-33deg, transparent 43%, #fff 43% 49%, #c8102e 49% 53%, #fff 53% 59%, transparent 59%),
    #012169;
}

.hero {
  position: relative;
  min-height: 86svh;
  margin-top: -74px;
  padding: 126px 16px 42px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(2, 6, 10, 0.98), rgba(3, 20, 31, 0.9) 48%, rgba(4, 28, 30, 0.78)),
    linear-gradient(90deg, rgba(50, 183, 255, 0.12), transparent 34%, rgba(183, 255, 109, 0.08));
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto 44%;
  height: 60%;
  border: 1px solid rgba(142, 220, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(142, 220, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 220, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: skewX(-9deg);
  animation: heroBreath 16s var(--ease) infinite alternate;
}

.hero-backdrop::after {
  content: "NovaFX";
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: 7%;
  color: rgba(244, 251, 255, 0.035);
  font-family: Orbitron, "NovaFX Display", Inter, sans-serif;
  font-size: clamp(76px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
  animation: heroBreath 16s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.96), rgba(3, 12, 19, 0.78) 42%, rgba(3, 12, 19, 0.45)),
    linear-gradient(180deg, rgba(2, 6, 10, 0.18), rgba(2, 6, 10, 0.96));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  width: min(var(--max), 100%);
  min-height: calc(86svh - 186px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 660px;
}

.hero-copy > * {
  animation: riseIn 760ms var(--ease) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 320ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent-2);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

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

h1 {
  margin-bottom: 18px;
  font-family: Orbitron, "NovaFX Display", Inter, sans-serif;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  text-shadow: 0 0 44px rgba(50, 183, 255, 0.42);
}

h2 {
  margin-bottom: 16px;
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 9px;
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.hero-subtitle,
.section-heading p,
.pricing-copy > p,
.faq-grid p,
.steps p,
.feature-card p,
.benefit-large p,
.offer-points p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 28px;
  color: #d7edf8;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #021019;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), #d5fbff);
  box-shadow: 0 0 24px rgba(50, 183, 255, 0.36), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.button.ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(6, 18, 28, 0.58);
}

.button.wide {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-offer {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-offer > * {
  animation: riseIn 820ms var(--ease) both;
}

.hero-offer > *:nth-child(2) {
  animation-delay: 120ms;
}

.offer-card-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  min-height: 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(126, 75, 255, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(126, 75, 255, 0.12), transparent 48%),
    radial-gradient(circle at 12px 12px, rgba(244, 251, 255, 0.12) 1px, transparent 1.2px) 0 0 / 22px 22px,
    linear-gradient(135deg, rgba(16, 8, 36, 0.96), rgba(4, 12, 22, 0.98) 54%, rgba(8, 26, 33, 0.94)),
    var(--surface-solid);
  box-shadow: var(--shadow), 0 0 70px rgba(126, 75, 255, 0.2);
}

.offer-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(244, 251, 255, 0.08) 58.4%, transparent 64%),
    linear-gradient(165deg, transparent 0 74%, rgba(126, 75, 255, 0.24) 74.5%, transparent 80%);
  pointer-events: none;
}

.offer-card-copy {
  position: relative;
  z-index: 1;
}

.offer-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 197, 61, 0.48);
  border-radius: 8px;
  color: #071019;
  background: linear-gradient(135deg, #ffd54d, #ffad32);
  box-shadow: 0 10px 24px rgba(255, 173, 50, 0.2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-product-title {
  display: block;
  margin-bottom: 14px;
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.9;
}

.offer-card-main p {
  max-width: 480px;
  margin-bottom: 20px;
  color: rgba(215, 237, 248, 0.78);
  font-size: 17px;
  line-height: 1.58;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.offer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(170, 112, 255, 0.48);
  border-radius: 999px;
  color: #d9c8ff;
  background: rgba(126, 75, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-price-block {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.offer-price-row {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.offer-old-price {
  color: rgba(215, 237, 248, 0.52);
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
}

.offer-discount {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(54, 238, 172, 0.3);
  border-radius: 8px;
  color: #4bffc8;
  background: rgba(54, 238, 172, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-price-prefix {
  color: rgba(215, 237, 248, 0.66);
  font-size: 15px;
  font-weight: 800;
}

.offer-price {
  color: #b783ff;
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: 0.9;
  text-shadow: 0 0 24px rgba(126, 75, 255, 0.28);
}

.offer-buy {
  width: min(100%, 278px);
  min-height: 58px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #7e4bff, #a230ff);
  box-shadow: 0 18px 42px rgba(126, 75, 255, 0.32);
}

.offer-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-points article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  min-height: 174px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-points img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(50, 183, 255, 0.36));
}

.offer-points h3 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.08;
}

.offer-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.36;
}

.hero-product {
  position: relative;
  display: grid;
  justify-items: end;
  min-width: 0;
}

.product-window {
  position: relative;
  width: min(100%, 420px);
  overflow: hidden;
  border: 1px solid rgba(142, 220, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 12, 18, 0.88);
  box-shadow: var(--shadow), 0 0 70px rgba(50, 183, 255, 0.22);
  animation: panelFloat 5s var(--ease) infinite;
}

.product-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 26%, transparent 72%, rgba(139, 234, 255, 0.1));
  pointer-events: none;
}

.window-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 7px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 13, 0.96);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.window-bar span:nth-child(2) {
  background: var(--accent-2);
}

.window-bar span:nth-child(3) {
  background: var(--accent-3);
}

.window-bar strong {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

.product-window img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.hero-panel-preview {
  display: grid;
  gap: 10px;
  padding: 14px;
  min-height: 390px;
  background:
    radial-gradient(circle at 18% 8%, rgba(50, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(5, 17, 27, 0.98), rgba(2, 7, 12, 0.98));
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--ink);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
}

.preview-brand img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(50, 183, 255, 0.52));
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.78);
}

.preview-tabs span {
  height: 34px;
  border-radius: 8px;
  background: rgba(244, 251, 255, 0.08);
}

.preview-tabs span.active {
  background: linear-gradient(135deg, rgba(50, 183, 255, 0.58), rgba(139, 234, 255, 0.16));
  box-shadow: var(--glow);
}

.preview-screen {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.8);
}

.preview-screen.compact {
  grid-template-columns: 1fr 92px;
  align-items: center;
}

.preview-screen-title {
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: 22px;
}

.preview-ai-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
}

.preview-box {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.7);
}

.preview-box span,
.preview-tool-row span {
  color: var(--muted);
  font-size: 11px;
}

.preview-box b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.preview-box b::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  border: 2px solid var(--accent);
  border-radius: 5px;
  vertical-align: -3px;
  box-shadow: 0 0 12px rgba(50, 183, 255, 0.3);
}

.preview-box.accent b {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #021019;
}

.preview-box.accent b::before {
  display: none;
}

.preview-slider {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 251, 255, 0.18);
}

.preview-slider i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: sliderPulse 2.4s var(--ease) infinite alternate;
}

.preview-curve {
  height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(142, 220, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 220, 255, 0.08) 1px, transparent 1px),
    rgba(2, 8, 13, 0.72);
  background-size: 26px 26px;
}

.preview-curve svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 5;
}

.preview-curve circle {
  fill: var(--accent);
  stroke: #021019;
  stroke-width: 3;
}

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

.preview-actions span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.preview-tool-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.preview-tool-row span {
  display: block;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.64);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-price {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px;
  border: 1px solid rgba(183, 255, 109, 0.34);
  border-radius: 8px;
  background: rgba(3, 11, 16, 0.9);
  box-shadow: 0 0 34px rgba(183, 255, 109, 0.18);
}

.floating-price span,
.price-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-price strong,
.price-card strong {
  color: var(--ink);
  font-family: Orbitron, "NovaFX Display", Inter, sans-serif;
}

.floating-price strong {
  font-size: 30px;
  line-height: 1;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(142, 220, 255, 0.16);
  background: #031019;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: rgba(244, 251, 255, 0.72);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  animation: tickerMove 34s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 820px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 31, 45, 0.82), rgba(4, 14, 21, 0.94)),
    var(--surface-solid);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(142, 220, 255, 0.44);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 34px rgba(50, 183, 255, 0.12);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(50, 183, 255, 0.48));
}

.benefits {
  width: 100%;
  padding-inline: 16px;
  background:
    linear-gradient(180deg, rgba(3, 13, 20, 0), rgba(6, 22, 32, 0.82) 16%, rgba(6, 22, 32, 0.82) 84%, rgba(3, 13, 20, 0));
}

.benefits > .section-heading,
.benefits-layout {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 14px;
  align-items: stretch;
}

.benefit-large {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 31, 45, 0.86), rgba(4, 14, 21, 0.96)),
    var(--surface-solid);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
}

.benefit-large.primary {
  border-color: rgba(142, 220, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(14, 44, 62, 0.98), rgba(4, 14, 21, 0.96)),
    var(--surface-solid);
}

.benefit-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-3);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.benefit-large h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 0.95;
}

.benefit-large p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.benefit-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.benefit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(142, 220, 255, 0.2);
  border-radius: 8px;
  color: #d7edf8;
  background: rgba(6, 18, 28, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase {
  width: 100%;
  padding-inline: 16px;
  background:
    linear-gradient(180deg, rgba(3, 13, 20, 0), rgba(6, 22, 32, 0.78) 18%, rgba(6, 22, 32, 0.78) 82%, rgba(3, 13, 20, 0));
}

.showcase > .section-heading,
.showcase-layout {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.showcase-media {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(2, 7, 12, 0.92);
  box-shadow: var(--shadow), 0 0 58px rgba(50, 183, 255, 0.18);
}

.interface-frame {
  min-height: min(76vh, 760px);
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 18% 0%, rgba(50, 183, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(6, 18, 28, 0.98), rgba(2, 7, 12, 0.98));
}

.interface-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 7px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.72);
}

.interface-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.interface-bar span:nth-child(2) {
  background: var(--accent-2);
}

.interface-bar span:nth-child(3) {
  background: var(--accent-3);
}

.interface-bar strong {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

.interface-screen {
  display: none;
  min-height: 480px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 31, 45, 0.74), rgba(3, 12, 19, 0.92)),
    var(--surface-solid);
}

.showcase-media[data-active="ai"] .mock-ai,
.showcase-media[data-active="bounce"] .mock-bounce,
.showcase-media[data-active="graphics"] .mock-graphics,
.showcase-media[data-active="square"] .mock-square,
.showcase-media[data-active="tools"] .mock-tools {
  display: grid;
  animation: screenIn 360ms var(--ease) both;
}

.mock-grid.two {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.mock-card {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.62);
}

.mock-card label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mock-card label i {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  box-shadow: inset 0 0 0 5px rgba(2, 8, 13, 0.9), 0 0 18px rgba(50, 183, 255, 0.28);
}

.mock-card.primary span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 8px;
  color: #021019;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.mock-card small {
  color: var(--muted);
}

.mock-controls {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.mock-controls span {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 251, 255, 0.16);
}

.mock-controls i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: sliderPulse 2.2s var(--ease) infinite alternate;
}

.bounce-knobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  min-height: 340px;
}

.bounce-knobs span {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    conic-gradient(var(--accent) var(--value), rgba(244, 251, 255, 0.1) 0),
    rgba(2, 8, 13, 0.74);
  box-shadow: inset 0 0 0 18px rgba(2, 8, 13, 0.94), 0 0 30px rgba(50, 183, 255, 0.16);
}

.bounce-knobs b {
  color: var(--ink);
  font-size: 13px;
}

.mock-graph {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
}

.mock-graph svg {
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.58);
  fill: none;
}

.mock-graph .grid-line {
  stroke: rgba(142, 220, 255, 0.12);
  stroke-width: 1;
}

.mock-graph .curve-line {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 6;
  filter: drop-shadow(0 0 8px rgba(50, 183, 255, 0.72));
  stroke-dasharray: 390;
  animation: drawCurve 1.5s var(--ease) both;
}

.mock-graph circle {
  fill: var(--accent);
  stroke: #021019;
  stroke-width: 4;
}

.mock-graph-actions,
.tool-demo-row {
  display: grid;
  gap: 10px;
}

.mock-graph-actions span,
.tool-demo-row span {
  display: grid;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(6, 18, 28, 0.74);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-presets {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.mock-presets i {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(142, 220, 255, 0.6) 43%, transparent 48%),
    rgba(2, 8, 13, 0.64);
}

.square-demo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  min-height: 300px;
  align-content: center;
}

.square-demo i {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  animation: squarePop 1.8s var(--ease) infinite alternate;
}

.square-demo i:nth-child(2n) {
  animation-delay: 160ms;
}

.square-demo i:nth-child(3n) {
  animation-delay: 320ms;
}

.tool-demo-row {
  align-content: center;
  min-height: 340px;
}

.tool-demo-row span {
  grid-template-columns: 34px 1fr auto auto;
  gap: 10px;
  color: var(--ink);
  text-transform: none;
}

.tool-demo-row i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(50, 183, 255, 0.42), rgba(139, 234, 255, 0.16));
  box-shadow: 0 0 16px rgba(50, 183, 255, 0.16);
}

.tool-demo-row b {
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
}

.showcase-controls {
  display: grid;
  gap: 10px;
  align-content: start;
}

.showcase-tab {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(6, 18, 28, 0.72);
  text-align: left;
  cursor: pointer;
}

.showcase-tab img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.showcase-tab span {
  font-weight: 900;
}

.showcase-tab.active {
  border-color: rgba(142, 220, 255, 0.44);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(50, 183, 255, 0.24), rgba(139, 234, 255, 0.08));
  box-shadow: var(--glow);
}

.workflow {
  padding-bottom: clamp(54px, 8vw, 96px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.7);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--bg);
  background: var(--accent-3);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.pricing {
  width: 100%;
  padding-inline: 16px;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  gap: 24px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(142, 220, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 22%, rgba(50, 183, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 25, 37, 0.96), rgba(2, 8, 13, 0.98));
  box-shadow: var(--shadow), 0 0 70px rgba(50, 183, 255, 0.12);
}

.pricing-copy {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: #dff5ff;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--accent-3), var(--accent-2));
  box-shadow: 0 0 18px rgba(183, 255, 109, 0.24);
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(183, 255, 109, 0.32);
  border-radius: 8px;
  background: rgba(1, 7, 12, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 44px rgba(183, 255, 109, 0.12);
}

.price-card strong {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.95;
}

.price-card p,
.price-card small {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-card small {
  font-size: 12px;
}

.checkout-section[hidden] {
  display: none;
}

.checkout-section {
  position: fixed;
  inset: 0;
  z-index: 86;
  display: block;
  overflow: auto;
  padding: 24px 16px;
  background: rgba(2, 6, 10, 0.78);
  backdrop-filter: blur(16px);
}

.checkout-shell {
  position: relative;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding-top: 54px;
}

.checkout-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(139, 234, 255, 0.32);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(6, 18, 28, 0.88);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.checkout-close:hover,
.checkout-close:focus-visible {
  border-color: rgba(139, 234, 255, 0.64);
  background: rgba(18, 52, 75, 0.9);
}

.checkout-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.checkout-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: rgba(215, 237, 248, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.checkout-breadcrumb a:hover,
.checkout-breadcrumb a:focus-visible {
  color: var(--ink);
}

.checkout-breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(170, 112, 255, 0.72);
}

.checkout-topbar h2 {
  margin-bottom: 8px;
  color: #f8f2ff;
  font-size: clamp(34px, 5vw, 52px);
  text-shadow: 0 0 34px rgba(162, 48, 255, 0.26);
}

.checkout-topbar p {
  max-width: 640px;
  margin: 0;
  color: rgba(215, 237, 248, 0.68);
  line-height: 1.5;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(170, 112, 255, 0.4);
  border-radius: 8px;
  background: rgba(18, 8, 36, 0.78);
  list-style: none;
}

.checkout-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-height: 32px;
  color: rgba(215, 237, 248, 0.52);
  font-size: 11px;
  font-weight: 900;
}

.checkout-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 18px;
  height: 1px;
  background: rgba(170, 112, 255, 0.34);
}

.checkout-progress span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(170, 112, 255, 0.42);
  border-radius: 999px;
  color: rgba(215, 237, 248, 0.66);
  background: rgba(2, 8, 13, 0.72);
}

.checkout-progress strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-progress .is-done span,
.checkout-progress .is-current span {
  border-color: rgba(188, 112, 255, 0.72);
  color: #fff;
  background: linear-gradient(135deg, #7e4bff, #b138ff);
  box-shadow: 0 0 20px rgba(162, 48, 255, 0.24);
}

.checkout-progress .is-done,
.checkout-progress .is-current {
  color: #f8f2ff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(318px, 360px);
  gap: 24px;
  align-items: start;
}

.checkout-main,
.checkout-sidebar {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout-sidebar {
  position: sticky;
  top: 96px;
}

.checkout-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(149, 68, 255, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(162, 48, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(16, 6, 32, 0.94), rgba(5, 9, 20, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 46px rgba(0, 0, 0, 0.24);
}

.checkout-panel-title,
.checkout-account-head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.checkout-panel-title h3,
.checkout-account-head h3,
.summary-head h3,
.delivery-card h3 {
  margin: 0 0 4px;
  color: #fbf7ff;
  font-size: 18px;
  line-height: 1.12;
}

.checkout-panel-title p,
.checkout-account-head p,
.delivery-card p {
  margin: 0;
  color: rgba(215, 237, 248, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-step {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(188, 112, 255, 0.64);
  border-radius: 8px;
  color: #d7b8ff;
  background: rgba(126, 75, 255, 0.18);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.payment-methods {
  display: grid;
  gap: 10px;
}

.payment-method {
  position: relative;
  display: grid;
  grid-template-columns: 22px 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(149, 68, 255, 0.34);
  border-radius: 8px;
  color: rgba(244, 251, 255, 0.76);
  background: rgba(4, 8, 18, 0.72);
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), opacity 160ms var(--ease);
}

.payment-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method.is-active {
  border-color: rgba(188, 112, 255, 0.9);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(126, 75, 255, 0.24), rgba(162, 48, 255, 0.08)),
    rgba(8, 8, 22, 0.92);
  box-shadow: 0 0 0 1px rgba(188, 112, 255, 0.1), 0 0 28px rgba(126, 75, 255, 0.14);
}

.payment-method.is-disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.payment-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(215, 237, 248, 0.36);
  border-radius: 999px;
}

.payment-method.is-active .payment-dot {
  border-color: #bd80ff;
}

.payment-method.is-active .payment-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: #bd80ff;
}

.payment-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(188, 112, 255, 0.32);
  border-radius: 8px;
  background: rgba(126, 75, 255, 0.18);
}

.pix-mark::before,
.pix-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: linear-gradient(135deg, #8f61ff, #c448ff);
  transform: rotate(45deg);
}

.pix-mark::after {
  width: 7px;
  height: 7px;
  background: rgba(244, 251, 255, 0.92);
}

.card-mark::before,
.card-mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 15px;
  border: 1px solid rgba(244, 251, 255, 0.7);
  border-radius: 4px;
}

.card-mark::after {
  top: 14px;
  width: 16px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 251, 255, 0.7);
}

.payment-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.payment-copy strong {
  font-size: 14px;
  font-weight: 900;
}

.payment-copy small {
  min-width: 0;
  color: rgba(215, 237, 248, 0.56);
  font-size: 11px;
  line-height: 1.25;
}

.method-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(54, 238, 172, 0.34);
  border-radius: 999px;
  color: #54f6c1;
  background: rgba(54, 238, 172, 0.1);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.method-badge.muted {
  border-color: rgba(215, 237, 248, 0.18);
  color: rgba(215, 237, 248, 0.58);
  background: rgba(215, 237, 248, 0.06);
}

.checkout-account-card {
  border-color: rgba(126, 75, 255, 0.36);
  background:
    radial-gradient(circle at 12% 16%, rgba(126, 75, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(13, 5, 29, 0.96), rgba(4, 8, 18, 0.98));
}

.checkout-account-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(188, 112, 255, 0.46);
  border-radius: 8px;
  background: rgba(126, 75, 255, 0.18);
}

.checkout-account-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #d7b8ff;
  border-bottom-color: transparent;
  border-radius: 999px 999px 4px 4px;
}

.checkout-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-left: 46px;
}

.checkout-account-actions small {
  color: rgba(215, 237, 248, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

#checkoutUserEmail {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 9px 12px;
  border: 1px solid rgba(54, 238, 172, 0.32);
  border-radius: 8px;
  color: #54f6c1;
  background: rgba(54, 238, 172, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.checkout-field-grid {
  display: grid;
  gap: 12px;
}

.checkout-field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: rgba(215, 237, 248, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.checkout-field input,
.discount-field input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(149, 68, 255, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(4, 8, 18, 0.78);
  font: inherit;
}

.checkout-field input:focus,
.discount-field input:focus {
  outline: 2px solid rgba(188, 112, 255, 0.38);
  outline-offset: 2px;
}

.checkout-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 42px;
  margin: 2px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(188, 112, 255, 0.28);
  border-radius: 8px;
  color: rgba(215, 237, 248, 0.72);
  background: rgba(126, 75, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.checkout-note span:first-child {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(188, 112, 255, 0.56);
  border-radius: 999px;
}

.checkout-note span:first-child::before {
  content: "";
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #bd80ff;
}

.checkout-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-assurance p {
  display: grid;
  gap: 6px;
  min-height: 118px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 197, 61, 0.3);
  border-radius: 8px;
  color: rgba(255, 230, 165, 0.72);
  background: rgba(55, 31, 8, 0.26);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-assurance p:nth-child(2) {
  border-color: rgba(54, 238, 172, 0.3);
  color: rgba(165, 255, 224, 0.74);
  background: rgba(5, 45, 39, 0.24);
}

.checkout-assurance strong {
  color: currentColor;
}

.button.primary.checkout-pay-button {
  width: 100%;
  min-height: 58px;
  color: #fff;
  background: linear-gradient(135deg, #7e4bff, #a230ff, #c448ff);
  box-shadow: 0 18px 38px rgba(126, 75, 255, 0.26);
}

.checkout-pay-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.checkout-trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  color: rgba(215, 237, 248, 0.48);
  font-size: 10px;
  font-weight: 900;
  list-style: none;
  text-align: center;
}

.checkout-trust-list li {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-summary {
  border-color: rgba(188, 112, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 44px rgba(126, 75, 255, 0.16);
}

.summary-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.summary-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(54, 238, 172, 0.28);
  border-radius: 999px;
  color: #54f6c1;
  background: rgba(54, 238, 172, 0.08);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.summary-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid rgba(149, 68, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 8, 18, 0.62);
}

.summary-product img {
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 40% 35%, rgba(50, 183, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(126, 75, 255, 0.58), rgba(4, 8, 18, 0.92));
  object-fit: contain;
}

.summary-product div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.summary-product strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fbf7ff;
  font-size: 13px;
}

.summary-product span {
  color: #c448ff;
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: 18px;
}

.summary-product small {
  justify-self: start;
  padding: 3px 7px;
  border: 1px solid rgba(188, 112, 255, 0.28);
  border-radius: 6px;
  color: #d7b8ff;
  background: rgba(126, 75, 255, 0.14);
  font-size: 10px;
  font-weight: 900;
}

.summary-row,
.summary-line {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(215, 237, 248, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 28px 26px 28px;
  gap: 6px;
  align-items: center;
}

.quantity-stepper button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(188, 112, 255, 0.38);
  border-radius: 8px;
  color: #d7b8ff;
  background: rgba(126, 75, 255, 0.12);
}

.quantity-stepper strong {
  text-align: center;
  color: #fff;
}

.discount-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 16px;
}

.discount-field input {
  min-height: 44px;
  border-style: dashed;
}

.discount-field button {
  min-width: 86px;
  min-height: 44px;
  border: 1px solid rgba(188, 112, 255, 0.34);
  border-radius: 8px;
  color: rgba(215, 237, 248, 0.58);
  background: rgba(126, 75, 255, 0.12);
  font-weight: 900;
}

.summary-line strong {
  color: #fbf7ff;
}

.summary-total {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(188, 112, 255, 0.3);
  border-radius: 8px;
  background: rgba(126, 75, 255, 0.14);
}

.summary-total > span {
  color: #fbf7ff;
  font-weight: 900;
}

.summary-total div {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 0;
}

.summary-total strong {
  color: #fbf7ff;
  font-size: 24px;
  line-height: 1;
}

.summary-total small {
  color: #54f6c1;
  font-size: 10px;
  font-weight: 900;
}

.delivery-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.delivery-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(54, 238, 172, 0.24), rgba(50, 183, 255, 0.14));
}

.delivery-icon::before {
  content: "";
  width: 11px;
  height: 18px;
  border-radius: 999px 999px 3px 3px;
  background: #54f6c1;
  transform: rotate(34deg);
}

.checkout-support-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 2px;
  color: rgba(215, 237, 248, 0.56);
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.checkout-support-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.checkout-support-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(50, 183, 255, 0.56);
  border-radius: 999px;
}

.checkout-section .checkout-breadcrumb span::before {
  color: rgba(139, 234, 255, 0.72);
}

.checkout-section .checkout-topbar h2 {
  color: #f4fbff;
  text-shadow: 0 0 34px rgba(50, 183, 255, 0.28);
}

.checkout-section .checkout-progress {
  border-color: rgba(50, 183, 255, 0.42);
  background: rgba(4, 18, 30, 0.86);
}

.checkout-section .checkout-progress li:not(:last-child)::after {
  background: rgba(139, 234, 255, 0.32);
}

.checkout-section .checkout-progress span {
  border-color: rgba(139, 234, 255, 0.36);
}

.checkout-section .checkout-progress .is-done span,
.checkout-section .checkout-progress .is-current span {
  border-color: rgba(139, 234, 255, 0.78);
  color: #021019;
  background: linear-gradient(135deg, #8beaff, #32b7ff);
  box-shadow: 0 0 20px rgba(50, 183, 255, 0.26);
}

.checkout-section .checkout-progress .is-done,
.checkout-section .checkout-progress .is-current {
  color: #f4fbff;
}

.checkout-section .checkout-panel {
  border-color: rgba(50, 183, 255, 0.42);
  background:
    radial-gradient(circle at 10% 0%, rgba(50, 183, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(5, 21, 34, 0.96), rgba(3, 8, 18, 0.98));
}

.checkout-section .checkout-step,
.checkout-section .payment-icon {
  border-color: rgba(139, 234, 255, 0.48);
  color: #8beaff;
  background: rgba(50, 183, 255, 0.12);
}

.checkout-section .payment-method {
  border-color: rgba(50, 183, 255, 0.28);
}

.checkout-section .payment-method.is-active {
  border-color: rgba(139, 234, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(50, 183, 255, 0.22), rgba(139, 234, 255, 0.06)),
    rgba(3, 11, 22, 0.94);
  box-shadow: 0 0 0 1px rgba(139, 234, 255, 0.1), 0 0 28px rgba(50, 183, 255, 0.14);
}

.checkout-section .payment-method.is-active .payment-dot {
  border-color: #8beaff;
}

.checkout-section .payment-method.is-active .payment-dot::after {
  background: #8beaff;
}

.checkout-section .pix-mark::before,
.checkout-section .pix-mark::after {
  background: linear-gradient(135deg, #8beaff, #32b7ff);
}

.checkout-section .pix-mark::after {
  background: rgba(244, 251, 255, 0.94);
}

.checkout-section .checkout-field input,
.checkout-section .discount-field input {
  border-color: rgba(50, 183, 255, 0.3);
}

.checkout-section .checkout-field input:focus,
.checkout-section .discount-field input:focus {
  outline-color: rgba(139, 234, 255, 0.42);
}

.checkout-section .checkout-note,
.checkout-section .summary-total {
  border-color: rgba(139, 234, 255, 0.28);
  background: rgba(50, 183, 255, 0.09);
}

.checkout-section .checkout-note span:first-child {
  border-color: rgba(139, 234, 255, 0.56);
}

.checkout-section .checkout-note span:first-child::before {
  background: #8beaff;
}

.checkout-section .method-badge,
.checkout-section .summary-head span,
.checkout-section .summary-total small {
  border-color: rgba(139, 234, 255, 0.34);
  color: #8beaff;
  background: rgba(50, 183, 255, 0.1);
}

.checkout-section .checkout-assurance p:nth-child(2) {
  border-color: rgba(139, 234, 255, 0.3);
  color: rgba(190, 247, 255, 0.78);
  background: rgba(5, 34, 48, 0.3);
}

.checkout-section .button.primary.checkout-pay-button {
  color: #021019;
  background: linear-gradient(135deg, #8beaff, #32b7ff, #d5fbff);
  box-shadow: 0 18px 38px rgba(50, 183, 255, 0.24);
}

.checkout-section .order-summary {
  border-color: rgba(139, 234, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 44px rgba(50, 183, 255, 0.14);
}

.checkout-section .summary-product,
.checkout-section .discount-field button {
  border-color: rgba(50, 183, 255, 0.28);
}

.checkout-section .summary-product img {
  background:
    radial-gradient(circle at 40% 35%, rgba(139, 234, 255, 0.32), transparent 38%),
    linear-gradient(135deg, rgba(50, 183, 255, 0.54), rgba(4, 8, 18, 0.92));
}

.checkout-section .summary-product span {
  color: #8beaff;
}

.checkout-section .summary-product small,
.checkout-section .quantity-stepper button {
  border-color: rgba(139, 234, 255, 0.32);
  color: #8beaff;
  background: rgba(50, 183, 255, 0.1);
}

.checkout-section .delivery-icon {
  background: linear-gradient(135deg, rgba(139, 234, 255, 0.24), rgba(50, 183, 255, 0.14));
}

.checkout-section .delivery-icon::before {
  background: #8beaff;
}

.faq {
  padding-top: clamp(42px, 7vw, 84px);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.72);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-family: "NovaFX Display", Inter, sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.checkout-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(183, 255, 109, 0.34);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.94);
  box-shadow: var(--shadow), 0 0 26px rgba(183, 255, 109, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.checkout-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.checkout-toast strong {
  color: var(--ink);
}

.checkout-toast span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 6, 10, 0.76);
  backdrop-filter: blur(16px);
}

.modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(50, 183, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 31, 45, 0.96), rgba(2, 8, 13, 0.98));
  box-shadow: var(--shadow), 0 0 44px rgba(50, 183, 255, 0.14);
}

.profile-dialog {
  width: min(760px, 100%);
  padding-top: clamp(58px, 5vw, 68px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(6, 18, 28, 0.72);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

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

.auth-form h2,
.profile-head h2 {
  margin-bottom: 4px;
  padding-right: 42px;
}

.auth-form > p,
.profile-lead,
#profileEmail {
  color: var(--muted);
  line-height: 1.5;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #d7edf8;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(2, 8, 13, 0.76);
  font: inherit;
}

.auth-form input:focus {
  outline: 2px solid rgba(139, 234, 255, 0.45);
  outline-offset: 2px;
}

.google-button {
  gap: 10px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(244, 251, 255, 0.1), rgba(139, 234, 255, 0.04)),
    rgba(2, 8, 13, 0.82);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.google-button::before {
  content: "G";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #071019;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.auth-dialog[data-mode="login"] .auth-name-field {
  display: none;
}

.form-error {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 76, 106, 0.34);
  border-radius: 8px;
  color: #ffd7df;
  background: rgba(255, 76, 106, 0.1);
  font-size: 13px;
}

.profile-head {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
  padding-right: 52px;
}

.profile-head .account-button {
  flex: 0 0 auto;
}

.license-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.license-card,
.empty-license-state {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.72);
}

.license-card header {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
}

.license-card h3,
.empty-license-state h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.license-card p,
.empty-license-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.license-key-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.license-key {
  min-width: 0;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid rgba(142, 220, 255, 0.2);
  border-radius: 8px;
  color: var(--accent-3);
  background: rgba(2, 8, 13, 0.76);
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  white-space: nowrap;
}

.license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.license-actions .button,
.license-actions .account-button {
  min-height: 42px;
}

.device-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(183, 255, 109, 0.24);
  border-radius: 999px;
  color: var(--accent-3);
  background: rgba(183, 255, 109, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pix-dialog {
  width: min(640px, 100%);
}

.pix-checkout {
  display: grid;
  gap: 16px;
}

.pix-head {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.pix-head h2 {
  margin-bottom: 6px;
  padding-right: 42px;
}

.pix-head p,
.pix-expiration,
.pix-copy-field {
  color: var(--muted);
  line-height: 1.45;
}

.pix-amount {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 1px solid rgba(183, 255, 109, 0.32);
  border-radius: 8px;
  color: var(--accent-3);
  background: rgba(183, 255, 109, 0.08);
  font-weight: 900;
}

.pix-status {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d7edf8;
  background: rgba(2, 8, 13, 0.62);
  font-weight: 800;
}

.pix-status[data-state="paid"] {
  border-color: rgba(183, 255, 109, 0.36);
  color: var(--accent-3);
}

.pix-status[data-state="expired"],
.pix-status[data-state="error"] {
  border-color: rgba(255, 76, 106, 0.34);
  color: #ffd7df;
}

.pix-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(139, 234, 255, 0.22);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: spin 760ms linear infinite;
}

.pix-status[data-state="paid"] .pix-spinner,
.pix-status[data-state="expired"] .pix-spinner,
.pix-status[data-state="error"] .pix-spinner {
  animation: none;
  border-color: currentColor;
}

.pix-qr {
  width: min(280px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.pix-copy-field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pix-copy-field textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(2, 8, 13, 0.76);
  font: 13px/1.45 Consolas, "Courier New", monospace;
  text-transform: none;
}

.pix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pix-actions .button {
  min-width: 180px;
}

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

.section-heading,
.feature-card,
.benefit-large,
.showcase-layout,
.steps li,
.pricing-panel,
.faq-grid details {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.section-heading.is-visible,
.feature-card.is-visible,
.benefit-large.is-visible,
.showcase-layout.is-visible,
.steps li.is-visible,
.pricing-panel.is-visible,
.faq-grid details.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes gridDrift {
  to {
    background-position: 52px 52px;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sliderPulse {
  from {
    filter: saturate(1);
  }
  to {
    filter: saturate(1.45) brightness(1.12);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drawCurve {
  from {
    stroke-dashoffset: 390;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes squarePop {
  from {
    opacity: 0.52;
    transform: translateY(8px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .checkout-topbar,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
  }

  .checkout-progress {
    width: min(100%, 420px);
  }
}

@media (max-width: 720px) {
  .checkout-section {
    padding-inline: 12px;
  }

  .checkout-topbar {
    gap: 16px;
  }

  .checkout-progress {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .checkout-progress li:not(:last-child)::after {
    display: none;
  }

  .checkout-panel {
    padding: 16px;
  }

  .payment-method {
    grid-template-columns: 22px 40px minmax(0, 1fr);
  }

  .payment-method .method-badge {
    grid-column: 3;
    justify-self: start;
  }

  .checkout-account-actions {
    padding-left: 0;
  }

  .checkout-field-grid.two,
  .checkout-assurance {
    grid-template-columns: 1fr;
  }

  .checkout-assurance p {
    min-height: 0;
  }

  .checkout-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-head,
  .summary-total {
    align-items: flex-start;
  }

  .profile-head {
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .checkout-topbar h2 {
    font-size: 34px;
  }

  .checkout-panel-title,
  .checkout-account-head,
  .delivery-card {
    grid-template-columns: 1fr;
  }

  .discount-field {
    grid-template-columns: 1fr;
  }

  .discount-field button {
    width: 100%;
  }

  .summary-product {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .summary-product img {
    width: 50px;
    height: 50px;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .hero-product,
  .hero-offer {
    justify-items: start;
  }

  .product-window {
    width: min(100%, 560px);
  }

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

  .benefits-layout,
  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-controls {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .showcase-tab {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 86px;
    text-align: center;
  }

  .showcase-tab span {
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .site-header::before {
    inset-inline: -6px;
  }

  .language-picker {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .header-actions {
    gap: 6px;
  }

  .account-button {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .language-picker label,
  .language-label {
    display: none;
  }

  .market-options {
    grid-template-columns: repeat(3, 34px);
  }

  .market-option {
    width: 34px;
    height: 32px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-height: auto;
  }

  .hero-copy,
  .hero-subtitle,
  .hero-metrics,
  .hero-actions,
  .hero-offer,
  .offer-card-main,
  .product-window {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

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

  .offer-card-main {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .offer-buy {
    width: 100%;
  }

  .offer-points {
    grid-template-columns: 1fr;
  }

  .offer-points article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 112px;
    padding: 16px;
  }

  .offer-points img {
    width: 44px;
    height: 44px;
  }

  .offer-points h3 {
    font-size: 20px;
  }

  .offer-points p {
    font-size: 14px;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(44px, 15vw, 62px);
    line-height: 0.95;
  }

  .hero-metrics,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle,
  .section-heading p,
  .pricing-copy > p,
  .faq-grid p,
  .steps p,
  .feature-card p,
  .site-footer p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .floating-price {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .preview-ai-grid,
  .preview-screen.compact,
  .mock-grid.two,
  .mock-graph,
  .bounce-knobs {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 24px);
  }

  .benefits,
  .showcase {
    padding-inline: 12px;
  }

  .interface-frame {
    min-height: auto;
  }

  .interface-screen {
    min-height: 420px;
  }

  .mock-graph svg {
    min-height: 230px;
  }

  .tool-demo-row span {
    grid-template-columns: 34px 1fr;
  }

  .tool-demo-row b {
    min-width: 0;
  }

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

  .showcase-tab:last-child {
    grid-column: 1 / -1;
  }

  .pricing {
    padding-inline: 12px;
  }

  .pricing-panel {
    padding: 22px;
  }

  .profile-head,
  .license-card header {
    display: grid;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 16px;
  }

  .language-picker {
    padding: 5px;
  }

  .language-picker label,
  .language-label {
    display: none;
  }

  .market-options {
    grid-template-columns: repeat(3, 31px);
    gap: 3px;
  }

  .market-option {
    width: 31px;
    height: 30px;
  }

  .flag {
    width: 21px;
    height: 14px;
  }

  .hero {
    padding-inline: 12px;
  }

  .offer-card-main {
    padding: 20px;
  }

  .offer-product-title {
    font-size: 42px;
  }

  .offer-price {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .showcase-controls {
    grid-template-columns: 1fr;
  }

  .showcase-tab:last-child {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(calc(100vw - 8px), 382px);
    margin-left: 4px;
    margin-right: 0;
  }

  .market-options {
    grid-template-columns: repeat(3, 29px);
    gap: 3px;
  }

  .market-option {
    width: 29px;
    height: 30px;
  }

  .hero-grid,
  .hero-copy,
  .hero-subtitle,
  .hero-metrics,
  .hero-actions,
  .hero-offer,
  .offer-card-main,
  .product-window {
    width: min(calc(100vw - 32px), 358px);
    max-width: min(calc(100vw - 32px), 358px);
  }

  .hero-grid {
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .section-heading,
  .feature-card,
  .benefit-large,
  .showcase-layout,
  .steps li,
  .pricing-panel,
  .faq-grid details {
    opacity: 1;
    transform: none;
  }
}
