:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0d151f;
  --surface: #111b27;
  --surface-soft: rgba(255, 255, 255, 0.06);
  --ink: #f7fbff;
  --muted: #9daabb;
  --muted-strong: #d8e4ef;
  --line: rgba(201, 219, 239, 0.16);
  --line-strong: rgba(54, 201, 255, 0.34);
  --blue: #2586f7;
  --blue-bright: #36c9ff;
  --mint: #2ed7a1;
  --yellow: #f3ba2f;
  --red: #ff5964;
  --black: #04070f;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #070b12 0, #0d151f 45%, #070b12 100%),
    var(--bg);
  color: var(--ink);
  font-family:
    "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

body::after {
  display: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

main,
section {
  max-width: 100vw;
  overflow-x: clip;
}

section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(5, 9, 22, 0.78);
  border-bottom: 1px solid rgba(181, 206, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 22, 0.94);
  border-color: rgba(25, 212, 255, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  border: 0;
  appearance: none;
  background: linear-gradient(90deg, var(--blue-bright), var(--mint), var(--yellow));
  box-shadow: 0 0 22px rgba(25, 212, 255, 0.72);
}

.scroll-progress::-webkit-progress-bar {
  background: transparent;
}

.scroll-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--blue-bright), var(--mint), var(--yellow));
}

.scroll-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--blue-bright), var(--mint), var(--yellow));
}

.site-header > *,
.hero-grid > *,
.split-heading > *,
.contact-section > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 212, 255, 0.28);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 18px rgba(25, 212, 255, 0.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 12px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(25, 212, 255, 0.1);
  border-color: rgba(25, 212, 255, 0.18);
  color: var(--ink);
  outline: none;
}

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

.icon-link,
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.icon-link svg,
.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link:hover,
.icon-button:hover,
.icon-link:focus-visible,
.icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  background: rgba(25, 212, 255, 0.12);
  color: var(--blue-bright);
  outline: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  overflow: hidden;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button::after {
  display: none;
}

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

.button:focus-visible {
  outline: 3px solid rgba(25, 212, 255, 0.24);
  outline-offset: 2px;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.button-primary {
  background: linear-gradient(135deg, #1683ff, #19d4ff 58%, #2ce29b);
  color: #031021;
  box-shadow: 0 14px 38px rgba(25, 212, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(25, 212, 255, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.button-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.button[disabled],
.button.is-disabled {
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.09);
  color: #6f7b93;
  box-shadow: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - var(--header-height) - 56px));
  display: grid;
  align-content: center;
  padding: 70px max(20px, calc((100vw - 1180px) / 2)) 42px;
  background:
    linear-gradient(180deg, rgba(13, 21, 31, 0.98), rgba(7, 11, 18, 0.98)),
    var(--bg);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(54, 201, 255, 0.12), transparent 18% 82%, rgba(46, 215, 161, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.section-heading,
.order-copy {
  max-width: 100%;
}

.hero-kicker,
.eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(25, 212, 255, 0.22);
  border-radius: 999px;
  background: rgba(25, 212, 255, 0.08);
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 11px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 9px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: 3.25rem;
  font-weight: 700;
}

.hero-title {
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  margin-right: 0.2em;
}

.hero-word:last-child {
  margin-right: 0;
}

h2 {
  font-size: 2.05rem;
  font-weight: 700;
}

h3 {
  font-size: 1.13rem;
  font-weight: 700;
}

.hero-lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

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

.hero-visual {
  display: grid;
  justify-items: stretch;
  gap: 14px;
}

.logo-stage {
  width: min(100%, 430px);
  justify-self: center;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 100%;
  height: auto;
  border: 1px solid rgba(54, 201, 255, 0.26);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.hero-status {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--yellow);
  padding: 12px 0 12px 14px;
}

.hero-status span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-status strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.quick-products {
  position: relative;
  max-width: 560px;
  margin-top: 20px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.quick-track {
  display: flex;
  width: max-content;
  gap: 8px;
  padding-left: 10px;
  animation: quickMarquee 34s linear infinite;
}

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

.is-enhanced:not(.intro-done) .hero-kicker,
.is-enhanced:not(.intro-done) .hero-lead,
.is-enhanced:not(.intro-done) .hero-actions,
.is-enhanced:not(.intro-done) .quick-products {
  opacity: 0;
  transform: translateY(16px);
  animation: introRise 560ms ease forwards;
}

.is-enhanced:not(.intro-done) .hero-kicker {
  animation-delay: 40ms;
}

.is-enhanced:not(.intro-done) .hero-lead {
  animation-delay: 620ms;
}

.is-enhanced:not(.intro-done) .quick-products {
  animation-delay: 860ms;
}

.is-enhanced:not(.intro-done) .hero-actions {
  animation-delay: 730ms;
}

.is-enhanced:not(.intro-done) .hero-word {
  opacity: 0;
  transform: translateY(26px);
  animation: wordIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(1) {
  animation-delay: 140ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(2) {
  animation-delay: 260ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(3) {
  animation-delay: 380ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(4) {
  animation-delay: 500ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(5) {
  animation-delay: 620ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(6) {
  animation-delay: 740ms;
}

.is-enhanced:not(.intro-done) .hero-word:nth-child(n + 7) {
  animation-delay: 860ms;
}

.is-enhanced:not(.intro-done) .hero-visual {
  opacity: 0;
  transform: translateX(28px);
  animation: introVisual 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 420ms;
}

.quick-card,
.product-card,
.premium-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--surface);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quick-card:hover,
.product-card:hover,
.premium-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(25, 212, 255, 0.1);
}

.quick-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 236px;
  min-height: 58px;
  padding: 9px 10px;
  box-shadow: none;
}

.quick-card-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(54, 201, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.quick-card-icon img {
  width: 24px;
  height: 24px;
}

.quick-card-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.quick-card .tag,
.status-pill {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(44, 226, 155, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(44, 226, 155, 0.1);
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 700;
}

.quick-card p,
.product-card p,
.premium-card p {
  margin: 0;
  color: var(--muted);
}

.quick-price {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.quick-title {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-summary {
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(181, 206, 255, 0.16);
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 18px;
  background: rgba(7, 16, 37, 0.96);
  color: #fff;
}

.trust-row p {
  margin: 0;
  font-weight: 820;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(247, 196, 60, 0.5);
  border-radius: var(--radius);
  background: rgba(247, 196, 60, 0.12);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.78rem;
}

.content-section,
.site-footer,
.order-section {
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
}

.content-section {
  padding-top: 74px;
  padding-bottom: 76px;
}

.alt-band {
  background:
    linear-gradient(180deg, rgba(15, 29, 56, 0.75), rgba(8, 18, 37, 0.9)),
    var(--bg-soft);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.split-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.catalog-controls {
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
}

.search-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: #70819f;
}

textarea {
  min-height: 112px;
  padding-top: 11px;
  padding-bottom: 11px;
  resize: vertical;
}

select {
  cursor: pointer;
}

select option {
  background: #081225;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-bright);
  outline: 3px solid rgba(25, 212, 255, 0.18);
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.filter-tab {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-tab.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #061025;
}

.product-grid,
.premium-grid {
  display: grid;
  align-items: start;
  gap: 12px;
}

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

.product-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.premium-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card,
.premium-card {
  min-width: 0;
  overflow: hidden;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: auto;
  padding: 20px;
}

.product-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--mint), var(--yellow));
  opacity: 0.78;
}

.premium-card {
  display: grid;
  gap: 12px;
  min-height: auto;
  padding: 14px;
}

.product-grid.compact .product-card {
  grid-template-rows: auto auto auto;
  gap: 12px;
  padding: 16px;
}

.product-grid.compact .feature-list {
  gap: 5px;
}

.product-grid.compact .feature-list li {
  font-size: 0.88rem;
}

.product-grid.compact .card-actions {
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-icon,
.premium-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(25, 212, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.product-icon img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
}

.premium-icon {
  background: linear-gradient(135deg, rgba(37, 134, 247, 0.9), rgba(46, 215, 161, 0.82));
}

.premium-icon.has-logo {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: #fff;
}

.premium-icon.has-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.premium-icon.has-logo .logo-fallback {
  position: absolute;
  inset: auto;
  opacity: 0;
  pointer-events: none;
}

.status-pill.is-muted {
  border-color: rgba(170, 183, 207, 0.2);
  background: rgba(170, 183, 207, 0.1);
  color: var(--muted);
}

.status-pill.is-soldout {
  border-color: rgba(255, 89, 100, 0.26);
  background: rgba(255, 89, 100, 0.11);
  color: var(--red);
}

.status-pill.is-starting {
  border-color: rgba(247, 196, 60, 0.3);
  background: rgba(247, 196, 60, 0.12);
  color: var(--yellow);
}

.price-block {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(181, 206, 255, 0.12);
}

.price-line:last-child {
  border-bottom: 0;
}

.price-line span:first-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-line strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(44, 226, 155, 0.65);
}

.card-actions,
.variant-list {
  display: grid;
  gap: 8px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(181, 206, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

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

.variant-copy strong {
  display: block;
  overflow-wrap: anywhere;
}

.variant-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.variant-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 34px;
  border: 1px solid rgba(44, 226, 155, 0.22);
  border-radius: 6px;
  background: rgba(44, 226, 155, 0.12);
  color: var(--mint);
  font-weight: 820;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.variant-price:hover {
  transform: translateY(-1px);
  border-color: rgba(44, 226, 155, 0.5);
  background: rgba(44, 226, 155, 0.18);
}

.variant-price.is-soldout {
  border-color: rgba(255, 89, 100, 0.2);
  background: rgba(255, 89, 100, 0.11);
  color: var(--red);
  cursor: not-allowed;
}

.premium-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.premium-title {
  min-width: 0;
}

.premium-title h3 {
  overflow-wrap: anywhere;
}

.premium-title p {
  font-size: 0.9rem;
}

.premium-card .card-actions {
  align-self: end;
}

.premium-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.premium-price-label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.premium-options {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    transform 320ms ease;
}

.premium-card.is-expanded .premium-options {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.button-compact {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  text-align: center;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 70px;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(7, 16, 37, 0.95), rgba(12, 30, 61, 0.9)),
    var(--bg-soft);
}

.order-form,
.order-checker {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04)),
    var(--surface);
  box-shadow: var(--shadow);
}

.order-form {
  max-width: 980px;
  padding: 22px;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.order-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

.order-checker {
  padding: 22px;
}

.order-checker label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.order-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 780;
}

.order-result {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 14px;
  border: 1px solid rgba(44, 226, 155, 0.22);
  border-radius: var(--radius);
  background: rgba(44, 226, 155, 0.08);
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(181, 206, 255, 0.12);
  padding-bottom: 7px;
}

.result-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.result-row span:first-child {
  color: var(--muted);
}

.result-row strong {
  text-align: right;
}

.payment-panel {
  display: grid;
  gap: 12px;
  margin: 2px 0 4px;
  padding: 14px;
  border: 1px solid rgba(62, 157, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(6, 16, 37, 0.72);
}

.payment-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.payment-rows {
  display: grid;
  gap: 8px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-row strong {
  max-width: 58%;
  color: var(--ink);
  overflow-wrap: anywhere;
  text-align: right;
}

.payment-qr {
  width: min(220px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 8px;
  background: white;
  object-fit: contain;
  padding: 8px;
}

.payment-instructions {
  max-height: 220px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  white-space: pre-line;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.faq-grid summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-grid details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.contact-section p:not(.eyebrow) {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 30px;
  background: #030611;
  border-top: 1px solid rgba(181, 206, 255, 0.12);
  color: #fff;
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.summary-line span:first-child {
  color: var(--muted);
}

.summary-line strong {
  text-align: right;
}

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

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.full-field {
  grid-column: 1 / -1;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 210ms;
}

.reveal-delay-4 {
  transition-delay: 280ms;
}

.reveal-delay-5 {
  transition-delay: 350ms;
}

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

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

@keyframes introVisual {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes quickMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 2.9rem;
  }

  .hero-grid,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
  }

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

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    min-width: max-content;
  }

  .header-actions .button {
    display: none;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .trust-row,
  .product-grid,
  .product-grid.compact,
  .premium-grid,
  .split-heading,
  .faq-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 4px 0 8px;
  }

  .logo-stage {
    width: min(100%, 390px);
  }

  .product-card,
  .premium-card {
    min-height: auto;
  }

  .catalog-controls {
    width: 100%;
  }

  .order-input-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }
}

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

  .header-actions {
    display: none;
  }

  .site-header,
  .hero-section,
  .content-section,
  .order-section,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand span {
    max-width: 132px;
    line-height: 1.08;
  }

  .nav-links {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    justify-content: space-between;
    gap: 2px;
    font-size: 0.78rem;
    overflow: visible;
  }

  .nav-links a {
    min-width: 0;
    padding: 8px 5px;
    text-align: center;
    white-space: normal;
  }

  h1 {
    max-width: 360px;
    font-size: 2rem;
  }

  .hero-grid,
  .hero-copy,
  .hero-lead,
  .hero-actions,
  .quick-products {
    width: 100%;
    max-width: 360px;
  }

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

  .quick-card {
    width: 230px;
  }

  .button {
    width: 100%;
  }

  .logo-stage {
    width: min(100%, 320px);
  }

  .hero-logo {
    border-radius: 16px;
  }

  .quick-card {
    min-height: auto;
  }

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

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

  .variant-price {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
