:root {
  --bg: #06070c;
  --bg-deep: #030409;
  --surface: #0d1018;
  --surface-2: #121722;
  --surface-3: #181d29;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --text-soft: #a7afc0;
  --text-muted: #6f788b;
  --cyan: #67e8f9;
  --cyan-strong: #22d3ee;
  --violet: #8b5cf6;
  --green: #55e6a5;
  --warning: #f9c74f;
  --danger: #fb7185;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1240px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 86, 150, 0.1), transparent 28rem),
    var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.025;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  color: #041016;
  background: var(--cyan);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg-deep);
  border-radius: 999px;
  background: #343d4e;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: #071016;
  background: var(--cyan);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.announcement {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(103, 232, 249, 0.14);
  color: #b9c3d4;
  background: #080b12;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.announcement-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-weight: 600;
}

.announcement a svg {
  width: 13px;
  height: 13px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(85, 230, 165, 0.1), 0 0 12px rgba(85, 230, 165, 0.55);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 12, 0.78);
  backdrop-filter: blur(20px);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 12, 0.94);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.32);
  border-radius: 14px;
  background: #f8f7f1;
  box-shadow: 0 8px 24px rgba(0, 98, 159, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.015em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 27px;
  color: #b1b9c9;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.35);
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.07);
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
}

.cart-button {
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 7px 0 16px;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 13px;
  color: var(--text);
  background: rgba(103, 232, 249, 0.06);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.5);
  background: rgba(103, 232, 249, 0.11);
}

.cart-button > svg {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}

.cart-label {
  font-size: 0.78rem;
  font-weight: 600;
}

.cart-count {
  display: grid;
  min-width: 31px;
  height: 31px;
  place-items: center;
  padding-inline: 7px;
  border-radius: 9px;
  color: #041014;
  background: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
}

.account-button {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.account-button:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.36);
  color: var(--text);
  background: rgba(103, 232, 249, 0.06);
}

.account-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.055);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.account-avatar.has-initials {
  color: #041014;
  background: var(--cyan);
}

.account-avatar svg {
  width: 15px;
  height: 15px;
}

.account-label {
  max-width: 95px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.admin-shortcut[hidden] {
  display: none;
}

.mobile-account-action {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 38px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #05070c;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 1) 0%, rgba(5, 7, 12, 0.96) 31%, rgba(5, 7, 12, 0.5) 58%, rgba(5, 7, 12, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 7, 12, 0.92) 0%, transparent 30%, rgba(5, 7, 12, 0.16) 100%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: -22%;
  width: 40%;
  height: 50%;
  content: "";
  border-radius: 50%;
  opacity: 0.23;
  background: var(--violet);
  filter: blur(110px);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.45) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: min(820px, calc(100vh - 38px));
  align-items: center;
  padding-block: 96px 118px;
}

.hero-copy {
  width: min(650px, 58%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow > span {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(103, 232, 249, 0.55);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.1vw, 6.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: transparent;
  background: linear-gradient(110deg, #fff 5%, var(--cyan) 62%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #aeb6c5;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.81rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: #031014;
  background: linear-gradient(135deg, #8cf3ff, #43d9ef);
  box-shadow: 0 10px 32px rgba(34, 211, 238, 0.17);
}

.button-primary:hover {
  box-shadow: 0 13px 38px rgba(34, 211, 238, 0.3);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(103, 232, 249, 0.36);
  background: rgba(103, 232, 249, 0.07);
}

.button-light {
  color: #080b11;
  background: #f6f8fb;
}

.button-full {
  width: 100%;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.69rem;
  line-height: 1.25;
}

.hero-trust svg {
  width: 19px;
  height: 19px;
  color: var(--cyan);
}

.hero-trust span {
  display: grid;
  gap: 2px;
}

.hero-trust strong {
  color: #ccd2dd;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-spec-card {
  position: absolute;
  right: 24px;
  bottom: 73px;
  width: 308px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(7, 10, 17, 0.69);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.spec-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.live-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.hero-spec-card > div:nth-child(2) p {
  margin-bottom: 6px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-spec-card > div:nth-child(2) strong {
  display: block;
  margin-bottom: 17px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.spec-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.spec-card-stats span {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 9px;
  color: #d4d9e2;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.61rem;
  font-weight: 600;
}

.spec-card-stats small {
  color: var(--text-muted);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-cue svg {
  width: 14px;
  animation: scroll-bob 1.7s ease-in-out infinite;
}

@keyframes scroll-bob {
  50% { transform: translateY(5px); }
}

.metrics {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: #080a10;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid > div {
  display: grid;
  min-height: 116px;
  align-content: center;
  justify-content: center;
  gap: 5px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.metrics-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.metrics strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.metrics span {
  color: var(--text-muted);
  font-size: 0.66rem;
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-heading h2,
.process-intro h2,
.performance-copy h2,
.faq-intro h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.catalog-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 8%, rgba(54, 106, 185, 0.09), transparent 26rem),
    linear-gradient(180deg, #080a10, var(--bg));
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 18px;
  margin-bottom: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-list {
  display: flex;
  align-items: center;
  gap: 7px;
}

.filter-chip {
  min-height: 39px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-chip:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.filter-chip.is-active {
  border-color: rgba(103, 232, 249, 0.26);
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.075);
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 9px;
}

.search-box,
.sort-box {
  position: relative;
  display: flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.search-box {
  width: 218px;
}

.search-box svg {
  position: absolute;
  left: 12px;
  width: 15px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input,
.sort-box select {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 0.7rem;
}

.search-box input {
  padding: 0 12px 0 36px;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.sort-box {
  width: 137px;
}

.sort-box select {
  padding: 0 32px 0 12px;
  appearance: none;
  cursor: pointer;
}

.sort-box select option {
  background: var(--surface-2);
}

.sort-box svg {
  position: absolute;
  right: 10px;
  width: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.results-count {
  min-height: 19px;
  margin: 20px 0 18px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 23, 34, 0.94), rgba(10, 13, 20, 0.96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.product-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 15%;
  left: 15%;
  height: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--product-accent, var(--cyan)), transparent);
  transition: opacity 240ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--product-accent, var(--cyan)) 38%, transparent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px color-mix(in srgb, var(--product-accent, var(--cyan)) 8%, transparent);
}

.product-card:hover::before {
  opacity: 1;
}

.product-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  border-bottom: 1px solid var(--line);
  background: #080b12;
}

.product-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 9, 15, 0.42), transparent 45%);
  pointer-events: none;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(5, 9, 15, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-index {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-category {
  color: var(--product-accent, var(--cyan));
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.54rem;
  font-weight: 600;
}

.product-stock i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.product-title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.product-description {
  min-height: 42px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.product-specs span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #aeb5c3;
  background: rgba(9, 12, 19, 0.94);
  font-size: 0.61rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-specs svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--product-accent, var(--cyan));
}

.product-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.old-price {
  display: block;
  min-height: 14px;
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 0.57rem;
  text-decoration: line-through;
}

.product-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.installments {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.56rem;
}

.product-actions {
  display: flex;
  gap: 7px;
}

.details-button,
.add-button {
  display: grid;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.details-button {
  width: 44px;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  background: transparent;
}

.add-button {
  width: 52px;
  border: 1px solid transparent;
  color: #041014;
  background: var(--product-accent, var(--cyan));
}

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

.details-button:hover {
  border-color: var(--product-accent, var(--cyan));
  color: var(--product-accent, var(--cyan));
}

.details-button svg,
.add-button svg {
  width: 17px;
}

.empty-results {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  padding: 40px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.empty-results[hidden] {
  display: none;
}

.empty-results > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.empty-results h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.empty-results p {
  max-width: 380px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.process-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080a10;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.process-intro h2 {
  margin-bottom: 26px;
}

.process-intro > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
}

.text-link svg {
  width: 15px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 0 0 42px;
}

.process-list li:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}

.process-list li > span {
  padding-top: 6px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.process-list li > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 17px;
}

.process-list svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.055);
}

.process-list h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.performance-section {
  background:
    radial-gradient(circle at 75% 50%, rgba(75, 50, 160, 0.1), transparent 30rem),
    var(--bg);
}

.performance-card {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #090c13;
  box-shadow: var(--shadow);
}

.performance-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.performance-visual {
  align-self: stretch;
  overflow: hidden;
}

.performance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance-copy {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 82px);
}

.performance-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.performance-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 0.83rem;
  line-height: 1.75;
}

.performance-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 33px;
}

.performance-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #b9c1ce;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.58rem;
}

.performance-points svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
}

.payment-section {
  border-top: 1px solid var(--line);
  background: #080a10;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20, 24, 34, 0.9), rgba(11, 14, 21, 0.95));
}

.payment-card.is-featured {
  border-color: rgba(103, 232, 249, 0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(103, 232, 249, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(17, 28, 36, 0.95), rgba(9, 14, 20, 0.98));
}

.payment-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.35rem;
  font-weight: 800;
}

.pix-logo {
  color: #46e6ca !important;
}

.paypal-logo {
  color: #68a9ff !important;
  font-family: Arial, sans-serif;
  font-style: italic;
}

.gpay-logo {
  color: #f5f7fb !important;
  font-family: Arial, sans-serif;
}

.payment-tag {
  position: absolute;
  top: 31px;
  right: 27px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.08);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.payment-tag.neutral {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.payment-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.payment-card p {
  margin-bottom: 25px;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.payment-card p strong {
  color: #dce2ec;
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aeb7c6;
  font-size: 0.6rem;
}

.payment-status svg {
  width: 14px;
  color: var(--cyan);
}

.fine-print {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.6rem;
}

.faq-section {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 25px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #d9dee7;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--text-muted);
  transition: transform 200ms ease, color 200ms ease;
}

.accordion details[open] summary {
  color: var(--cyan);
}

.accordion details[open] summary svg {
  transform: rotate(45deg);
  color: var(--cyan);
}

.accordion details p {
  max-width: 650px;
  padding: 0 48px 27px 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.cta-section {
  padding-bottom: clamp(88px, 10vw, 145px);
}

.cta-card {
  display: flex;
  min-height: 245px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(6, 14, 22, 0.25), rgba(6, 8, 13, 0.8)),
    radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.22), transparent 20rem),
    linear-gradient(135deg, #0c3743, #0a111d 58%);
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  margin-bottom: 13px;
}

.cta-card h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.cta-card .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 75px;
  border-top: 1px solid var(--line);
  background: #05060a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-brand > p {
  max-width: 310px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text-muted);
  transition: color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: rgba(103, 232, 249, 0.35);
  color: var(--cyan);
}

.social-links svg {
  width: 15px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-grid h3 {
  margin-bottom: 8px;
  color: #dbe0e8;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.68rem;
  transition: color 180ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--cyan);
}

.footer-contact small {
  max-width: 230px;
  margin-top: 7px;
  color: #525a69;
  font-size: 0.58rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #565e6d;
  font-size: 0.59rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--text-soft);
}

.drawer-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  z-index: 510;
  top: 0;
  right: 0;
  display: flex;
  width: min(470px, 100%);
  height: 100dvh;
  flex-direction: column;
  transform: translateX(100%);
  border-left: 1px solid var(--line-strong);
  background: #0a0d14;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
  visibility: hidden;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 300ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 7px;
  font-size: 0.53rem;
}

.drawer-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.drawer-header h2 small {
  margin-left: 6px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
}

.shipping-progress {
  padding: 15px 24px 17px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.shipping-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.57rem;
}

.shipping-progress strong {
  color: var(--cyan);
}

.progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-strong), var(--violet));
  box-shadow: 0 0 9px rgba(103, 232, 249, 0.5);
  transition: width 300ms ease;
}

.cart-items {
  min-height: 0;
  overflow-y: auto;
  padding: 0 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  width: 92px;
  height: 78px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-main h3 {
  margin: 2px 0 5px;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.cart-item-main > p {
  margin-bottom: 11px;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.55rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 30px 31px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quantity-control button,
.quantity-control span {
  display: grid;
  height: 29px;
  place-items: center;
  border: 0;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.65rem;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:hover {
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.06);
}

.quantity-control button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.quantity-control svg {
  width: 12px;
}

.cart-item-side {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-side strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
  white-space: nowrap;
}

.remove-item {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
}

.remove-item:hover {
  color: var(--danger);
}

.remove-item svg {
  width: 14px;
}

.cart-empty {
  display: grid;
  flex: 1;
  place-items: center;
  align-content: center;
  padding: 42px;
  text-align: center;
}

.cart-empty[hidden] {
  display: none;
}

.empty-orbit {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.045);
}

.empty-orbit::after {
  position: absolute;
  inset: -9px;
  content: "";
  border: 1px dashed rgba(139, 92, 246, 0.25);
  border-radius: 50%;
}

.empty-orbit svg {
  width: 25px;
}

.cart-empty h3 {
  max-width: 300px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
}

.cart-empty p {
  max-width: 320px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.cart-footer {
  padding: 20px 24px 22px;
  border-top: 1px solid var(--line-strong);
  background: #0d1018;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.22);
}

.cart-footer[hidden] {
  display: none;
}

.cart-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.cart-totals span {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.cart-totals strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.cart-footer > p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.57rem;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
  color: var(--text-muted);
  font-size: 0.52rem;
}

.secure-note svg {
  width: 12px;
}

.modal {
  width: min(1040px, calc(100% - 32px));
  max-height: min(860px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  color: var(--text);
  background: #0b0e15;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.modal[open] {
  animation: modal-in 230ms ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
}

.modal-close {
  position: sticky;
  z-index: 15;
  top: 16px;
  float: right;
  margin: 16px 16px -60px 0;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(12px);
}

.product-modal-layout {
  display: grid;
  min-height: 630px;
  grid-template-columns: 1.03fr 0.97fr;
}

.product-modal-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #070a10;
}

.product-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-number {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--text-soft);
  background: rgba(3, 5, 9, 0.72);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.product-modal-info {
  padding: clamp(34px, 5vw, 62px);
}

.modal-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--modal-accent, var(--cyan));
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.modal-category::before {
  width: 19px;
  height: 1px;
  content: "";
  background: currentColor;
}

.product-modal-info h2 {
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.modal-description {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.7;
}

.modal-spec-list {
  padding: 0;
  margin: 0 0 25px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.modal-spec-list li {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
}

.modal-spec-list span {
  color: var(--text-muted);
}

.modal-spec-list strong {
  color: #d7dce5;
  font-weight: 600;
  text-align: right;
}

.modal-price-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
}

.modal-price-wrap .product-price {
  font-size: 1.85rem;
}

.modal-price-wrap .product-stock {
  padding-bottom: 5px;
}

.modal-add-button {
  --button-accent: var(--modal-accent, var(--cyan));
  color: #031014;
  background: var(--button-accent);
}

.modal-benefits {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.modal-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.53rem;
}

.modal-benefits svg {
  width: 13px;
  color: var(--modal-accent, var(--cyan));
}

.checkout-modal {
  width: min(1120px, calc(100% - 32px));
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
}

.checkout-main {
  padding: clamp(32px, 5vw, 58px);
}

.checkout-heading {
  margin-bottom: 25px;
}

.checkout-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 0.55rem;
}

.checkout-heading h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.checkout-heading > p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.demo-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(249, 199, 79, 0.18);
  border-radius: 10px;
  color: #c6b884;
  background: rgba(249, 199, 79, 0.055);
  font-size: 0.61rem;
  line-height: 1.5;
}

.demo-banner svg {
  width: 15px;
  flex: 0 0 auto;
  color: var(--warning);
}

.checkout-main fieldset {
  padding: 0;
  margin: 0 0 28px;
  border: 0;
}

.checkout-main legend {
  width: 100%;
  padding: 0 0 13px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #d8dde6;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 600;
}

.checkout-main legend span {
  margin-right: 9px;
  color: var(--cyan);
  font-size: 0.55rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--text-soft);
  font-size: 0.61rem;
  font-weight: 600;
}

.form-field small {
  color: var(--text-muted);
  font-weight: 400;
}

.form-field input {
  width: 100%;
  height: 43px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: #555e6e;
}

.form-field input:focus {
  border-color: rgba(103, 232, 249, 0.45);
  background: rgba(103, 232, 249, 0.025);
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.055);
}

.form-field input.is-invalid {
  border-color: rgba(251, 113, 133, 0.65);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.06);
}

.address-grid {
  grid-template-columns: 0.65fr 1fr 0.42fr;
}

.city-field {
  grid-column: span 1;
}

.street-field {
  grid-column: span 2;
}

.number-field {
  grid-column: span 1;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.payment-option {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.payment-option:hover {
  border-color: var(--line-strong);
}

.payment-option.is-selected {
  border-color: rgba(103, 232, 249, 0.42);
  background: rgba(103, 232, 249, 0.055);
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.option-symbol {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.payment-option > span:nth-of-type(2) {
  display: grid;
  gap: 4px;
}

.payment-option strong {
  font-size: 0.66rem;
}

.payment-option small {
  color: var(--text-muted);
  font-size: 0.5rem;
}

.payment-option > svg {
  position: absolute;
  top: 7px;
  right: 7px;
  display: none;
  width: 12px;
  color: var(--cyan);
}

.payment-option.is-selected > svg {
  display: block;
}

.payment-method-note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.55rem;
  line-height: 1.5;
}

.checkout-submit {
  min-height: 52px;
}

.checkout-summary {
  padding: 58px 30px 35px;
  border-left: 1px solid var(--line);
  background: #080a10;
}

.checkout-summary > p:first-child {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
  max-height: 270px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 22px;
}

.summary-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 10px;
}

.summary-item img {
  width: 56px;
  height: 47px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.summary-item div {
  min-width: 0;
}

.summary-item strong {
  display: block;
  overflow: hidden;
  margin-bottom: 3px;
  font-size: 0.59rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.summary-item small {
  color: var(--text-muted);
  font-size: 0.5rem;
}

.summary-item > span {
  font-family: var(--font-display);
  font-size: 0.57rem;
  white-space: nowrap;
}

.summary-lines {
  display: grid;
  gap: 10px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-lines > div,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.61rem;
}

#discountLine span:last-child {
  color: var(--green);
}

.summary-total {
  align-items: end;
  padding-block: 18px;
  color: var(--text-soft);
}

.summary-total strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.33rem;
}

.summary-security {
  display: flex;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.52rem;
  line-height: 1.5;
}

.summary-security svg {
  width: 14px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.checkout-result {
  min-height: 600px;
  padding: clamp(40px, 7vw, 80px);
}

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

.auth-modal {
  width: min(980px, calc(100% - 32px));
}

.auth-layout {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(430px, 1.18fr);
}

.auth-brand-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(6, 10, 17, 0.2), rgba(6, 10, 17, 0.93)),
    radial-gradient(circle at 60% 20%, rgba(103, 232, 249, 0.19), transparent 16rem),
    linear-gradient(145deg, #0b2532, #090d16 62%);
}

.auth-brand-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.45) 1px, transparent 1px);
  background-size: 44px 44px;
}

.auth-brand-panel > * {
  position: relative;
  z-index: 1;
}

.auth-brand-panel > img {
  width: 92px;
  height: 92px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.auth-brand-panel .eyebrow {
  margin-bottom: 13px;
}

.auth-brand-panel h2 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.auth-brand-panel ul {
  display: grid;
  gap: 13px;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.auth-brand-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 0.65rem;
}

.auth-brand-panel li svg {
  width: 15px;
  color: var(--cyan);
}

.auth-content {
  padding: clamp(42px, 6vw, 72px);
}

.auth-heading {
  margin-bottom: 24px;
}

.auth-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 0.55rem;
}

.auth-heading h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.auth-heading > p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.auth-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
}

.auth-tabs button.is-active {
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.08);
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.12);
}

.auth-alert {
  padding: 12px 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(251, 113, 133, 0.2);
  border-radius: 9px;
  color: #ffc0cb;
  background: rgba(251, 113, 133, 0.06);
  font-size: 0.62rem;
  line-height: 1.5;
}

.auth-alert[data-type="warning"] {
  border-color: rgba(249, 199, 79, 0.2);
  color: #d4c487;
  background: rgba(249, 199, 79, 0.055);
}

.auth-alert[hidden],
.auth-form[hidden] {
  display: none;
}

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

.auth-form .form-grid {
  gap: 13px;
}

.auth-form .form-field input {
  height: 46px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 46px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 5px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
}

.password-field button:hover {
  color: var(--cyan);
}

.password-field svg {
  width: 15px;
}

.auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.57rem;
  line-height: 1.5;
  cursor: pointer;
}

.auth-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--cyan-strong);
}

.auth-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.52rem;
  text-align: center;
}

.auth-security svg {
  width: 12px;
}

.button-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(4, 16, 20, 0.25);
  border-top-color: #041014;
  border-radius: 50%;
  animation: spinner 700ms linear infinite;
}

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

.account-modal {
  width: min(1080px, calc(100% - 32px));
}

.account-shell {
  display: grid;
  min-height: 650px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.account-sidebar {
  display: flex;
  flex-direction: column;
  padding: 38px 24px 24px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 10%, rgba(103, 232, 249, 0.09), transparent 15rem),
    #080a10;
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.account-profile-avatar {
  display: grid;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  place-items: center;
  border-radius: 15px;
  color: #041014;
  background: linear-gradient(135deg, #8cf3ff, #43d9ef);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
}

.account-profile > div {
  min-width: 0;
}

.account-profile p {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.account-profile h2 {
  overflow: hidden;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.account-profile div > span {
  display: block;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.52rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.account-sidebar nav {
  display: grid;
  gap: 6px;
}

.account-sidebar nav button,
.account-sidebar nav a,
.account-logout {
  display: flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.account-sidebar nav button.is-active,
.account-sidebar nav a:hover {
  border-color: rgba(103, 232, 249, 0.13);
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.055);
}

.account-sidebar nav svg,
.account-logout svg {
  width: 15px;
}

.account-logout {
  margin-top: auto;
  border-color: var(--line);
}

.account-logout:hover {
  border-color: rgba(251, 113, 133, 0.25);
  color: var(--danger);
  background: rgba(251, 113, 133, 0.045);
}

.account-content {
  min-width: 0;
  padding: clamp(38px, 5vw, 60px);
}

.account-content-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.account-content-heading .eyebrow {
  margin-bottom: 7px;
  font-size: 0.53rem;
}

.account-content-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.orders-loading,
.orders-empty,
.orders-error {
  display: grid;
  min-height: 380px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.orders-loading[hidden],
.orders-empty[hidden] {
  display: none;
}

.orders-loading span {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border: 2px solid rgba(103, 232, 249, 0.15);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spinner 700ms linear infinite;
}

.orders-loading p,
.orders-empty p,
.orders-error p {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.orders-empty > svg,
.orders-error > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.orders-empty h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.orders-empty .button,
.orders-error .button {
  margin-top: 12px;
}

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

.order-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease;
}

.order-card:hover {
  border-color: rgba(103, 232, 249, 0.2);
  background: rgba(103, 232, 249, 0.025);
}

.order-card > header,
.order-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.order-card > header > div {
  display: grid;
  gap: 3px;
}

.order-card > header > div span,
.order-card > footer span {
  color: var(--text-muted);
  font-size: 0.52rem;
}

.order-card > header > div strong,
.order-card > footer strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.order-status {
  padding: 6px 8px;
  border: 1px solid rgba(249, 199, 79, 0.17);
  border-radius: 7px;
  color: #e5ce75;
  background: rgba(249, 199, 79, 0.05);
  font-size: 0.5rem;
  font-weight: 700;
}

.order-status.status-paid,
.order-status.status-completed {
  border-color: rgba(85, 230, 165, 0.18);
  color: var(--green);
  background: rgba(85, 230, 165, 0.05);
}

.order-status.status-cancelled,
.order-status.status-expired,
.order-status.status-refunded {
  border-color: rgba(251, 113, 133, 0.18);
  color: #ff9bac;
  background: rgba(251, 113, 133, 0.05);
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-block: 13px;
  margin-block: 13px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.53rem;
}

.order-meta svg {
  width: 12px;
  color: var(--cyan);
}

.order-items-preview {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.order-items-preview > span {
  position: relative;
  display: block;
  width: 48px;
  height: 41px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.order-items-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-items-preview small {
  position: absolute;
  right: 2px;
  bottom: 2px;
  padding: 2px 3px;
  border-radius: 3px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.42rem;
}

.order-items-preview > b {
  color: var(--text-muted);
  font-size: 0.55rem;
}

.order-no-image {
  display: grid !important;
  place-items: center;
  color: var(--text-muted);
}

.order-no-image svg {
  width: 15px;
}

.result-content {
  display: grid;
  max-width: 620px;
  min-height: 480px;
  align-content: center;
  justify-items: center;
  margin: auto;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.06);
}

.result-icon svg {
  width: 30px;
}

.result-content .eyebrow {
  margin-bottom: 10px;
}

.result-content h2 {
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.result-content > p {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.7;
}

.order-code {
  padding: 10px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.62rem;
}

.order-code strong {
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.pix-output {
  display: grid;
  width: min(100%, 500px);
  justify-items: center;
  padding: 20px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.pix-qr {
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 9px;
  background: #fff;
}

.pix-qr img,
.pix-qr canvas {
  width: 150px !important;
  height: 150px !important;
}

.pix-code-field {
  display: flex;
  width: 100%;
  gap: 7px;
}

.pix-code-field input {
  min-width: 0;
  flex: 1;
  height: 40px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  background: #07090e;
  font-size: 0.56rem;
}

.pix-code-field button {
  min-height: 40px;
  padding-inline: 13px;
}

.result-warning {
  max-width: 520px;
  padding: 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(249, 199, 79, 0.17);
  border-radius: 9px;
  color: #c6b884;
  background: rgba(249, 199, 79, 0.045);
  font-size: 0.59rem;
  line-height: 1.55;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.toast-region {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(370px, calc(100% - 40px));
  gap: 9px;
}

.toast {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 13px 13px 12px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: toast-in 220ms ease-out;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
}

.toast > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.07);
}

.toast > span:first-child svg {
  width: 16px;
}

.toast p {
  margin: 0;
  color: #d6dce6;
  font-size: 0.66rem;
  line-height: 1.45;
}

.toast button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
}

.toast button svg {
  width: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1100px) {
  .hero-spec-card {
    right: 0;
  }

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

  .process-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
  }

  .checkout-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7, 9, 14, 0.98);
    opacity: 0;
    transition: max-height 240ms ease, opacity 200ms ease, border-color 200ms ease;
  }

  .mobile-nav.is-open {
    max-height: 440px;
    border-color: var(--line);
    opacity: 1;
  }

  .mobile-nav a {
    display: flex;
    width: min(calc(100% - 48px), var(--container));
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.77rem;
  }

  .mobile-account-action {
    display: flex;
    width: min(calc(100% - 48px), var(--container));
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-inline: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    background: transparent;
    font-size: 0.77rem;
    cursor: pointer;
  }

  .mobile-account-action svg {
    width: 15px;
  }

  .mobile-nav a:last-child {
    border: 0;
  }

  .mobile-nav svg {
    width: 15px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    width: 67%;
  }

  .hero-spec-card {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-list {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .catalog-tools {
    align-self: flex-end;
  }

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-intro,
  .faq-intro {
    position: static;
  }

  .performance-card {
    grid-template-columns: 1fr;
  }

  .performance-visual {
    min-height: 410px;
  }

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

  .payment-card {
    min-height: 240px;
  }

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

  .footer-contact {
    grid-column: 2;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .auth-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .account-shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .checkout-summary {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-copy small,
  .cart-label,
  .account-label {
    display: none;
  }

  .account-button {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .cart-button {
    width: 49px;
    padding: 0;
    justify-content: center;
  }

  .cart-button > svg {
    margin-left: -5px;
  }

  .cart-count {
    position: absolute;
    top: 9px;
    right: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid #080a10;
    border-radius: 6px;
    font-size: 0.52rem;
  }

  .nav-actions {
    position: relative;
  }

  .mobile-nav a {
    width: calc(100% - 32px);
  }

  .mobile-account-action {
    width: calc(100% - 32px);
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(5, 7, 12, 0.76) 68%, rgba(5, 7, 12, 0.32) 100%),
      linear-gradient(0deg, rgba(5, 7, 12, 0.98) 0%, transparent 45%, rgba(5, 7, 12, 0.22) 100%);
  }

  .hero-media img {
    object-position: 63% center;
    opacity: 0.76;
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 125px 120px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3rem, 14.6vw, 5.2rem);
  }

  .hero-lead {
    max-width: 500px;
  }

  .hero-trust {
    gap: 18px;
  }

  .hero-trust li:last-child {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-grid > div {
    min-height: 100px;
    border-bottom: 1px solid var(--line);
    justify-content: start;
  }

  .metrics-grid > div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .section {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .catalog-tools {
    width: 100%;
  }

  .search-box {
    min-width: 0;
    flex: 1;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    aspect-ratio: 1.6 / 1;
  }

  .process-list li {
    grid-template-columns: 35px 1fr;
    gap: 14px;
  }

  .performance-card {
    border-radius: 20px;
  }

  .performance-visual {
    min-height: 330px;
  }

  .payment-card {
    min-height: 260px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .product-modal-layout {
    grid-template-columns: 1fr;
  }

  .product-modal-visual {
    min-height: 330px;
    max-height: 390px;
  }

  .product-modal-info {
    padding: 32px 24px;
  }

  .modal-benefits {
    flex-wrap: wrap;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .auth-layout,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    display: none;
  }

  .auth-content {
    min-height: 650px;
    padding: 54px 28px 35px;
  }

  .account-sidebar {
    padding: 28px 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .account-sidebar nav {
    grid-template-columns: 1fr auto;
  }

  .account-logout {
    margin-top: 16px;
  }

  .account-content {
    padding: 30px 24px 42px;
  }

  .payment-option {
    min-height: 64px;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 0.61rem;
  }

  .announcement p {
    text-align: center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust li {
    width: calc(50% - 9px);
  }

  .metrics-grid > div {
    padding: 18px 15px;
  }

  .metrics strong {
    font-size: 1.18rem;
  }

  .metrics span {
    font-size: 0.59rem;
  }

  .section-heading h2,
  .process-intro h2,
  .performance-copy h2,
  .faq-intro h2 {
    font-size: 2.15rem;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box,
  .sort-box {
    width: 100%;
  }

  .product-body {
    padding: 19px;
  }

  .product-price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions {
    width: 100%;
  }

  .details-button {
    flex: 1;
  }

  .add-button {
    flex: 2;
  }

  .process-list li > div {
    grid-template-columns: 38px 1fr;
  }

  .performance-visual {
    min-height: 260px;
  }

  .performance-copy {
    padding: 30px 22px 38px;
  }

  .performance-points {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-card {
    padding: 25px;
  }

  .payment-tag {
    top: 26px;
    right: 22px;
  }

  .accordion summary {
    min-height: 78px;
    font-size: 0.8rem;
  }

  .cta-card {
    padding: 34px 25px;
  }

  .cta-card .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom > div {
    gap: 15px;
  }

  .cart-item {
    grid-template-columns: 76px 1fr auto;
    gap: 10px;
  }

  .cart-item-image {
    width: 76px;
    height: 70px;
  }

  .cart-items,
  .drawer-header,
  .shipping-progress,
  .cart-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .modal {
    width: 100%;
    max-height: 100dvh;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .modal-close {
    top: 10px;
    margin: 10px 10px -54px 0;
  }

  .product-modal-visual {
    min-height: 280px;
  }

  .modal-price-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-main {
    padding: 32px 18px;
  }

  .form-grid,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .city-field,
  .state-field,
  .street-field,
  .number-field,
  .form-field.wide {
    grid-column: auto;
  }

  .checkout-summary {
    padding: 32px 18px;
  }

  .checkout-result {
    padding: 35px 18px;
  }

  .auth-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .auth-form .form-grid {
    grid-template-columns: 1fr;
  }

  .auth-form .form-field,
  .auth-form .form-field.wide {
    grid-column: auto;
  }

  .account-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .order-card > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pix-code-field {
    flex-direction: column;
  }

  .toast-region {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
