:root {
  --bg: #050608;
  --bg-2: #090b0f;
  --panel: rgba(13, 15, 20, 0.78);
  --panel-strong: rgba(18, 20, 26, 0.9);
  --text: #f8f8f8;
  --muted: #b7bbc3;
  --muted-2: #7f858f;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --orange: #f26100;
  --orange-2: #ff7a13;
  --green: #1ecb62;
  --blue: #148bff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.62);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body:not(.is-ready) {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

::selection {
  color: #fff;
  background: rgba(242, 97, 0, 0.75);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(242, 97, 0, 0.16), transparent 30rem),
    linear-gradient(135deg, #020304 0%, #0a0b0f 52%, #020203 100%);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease), transform 0.8s var(--ease);
}

body.is-ready .preloader {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  pointer-events: none;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader::before {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0, transparent 70%);
}

.preloader::after {
  background: linear-gradient(108deg, transparent 0 38%, rgba(242, 97, 0, 0.16) 48%, transparent 60% 100%);
  animation: sweep 2.35s linear infinite;
}

.preloader__core {
  position: relative;
  z-index: 1;
  width: min(570px, 82vw);
  min-height: 156px;
  display: grid;
  place-items: center;
}

.preloader__gear {
  position: absolute;
  width: 150px;
  height: 150px;
  fill: rgba(242, 97, 0, 0.85);
  filter: drop-shadow(0 0 34px rgba(242, 97, 0, 0.32));
  animation: spin 2.8s linear infinite;
}

.preloader__logo {
  position: relative;
  z-index: 1;
  width: min(520px, 78vw);
  max-height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.65));
  animation: loaderLogo 1.15s var(--ease) both;
}

.preloader__copy {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preloader__copy strong {
  color: #fff;
  font-size: 13px;
}

.preloader__bar {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 48px));
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preloader__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #9b3100, var(--orange), #ff9d2f);
  box-shadow: 0 0 26px rgba(242, 97, 0, 0.72);
  transition: width 0.25s ease;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.085), transparent 20rem),
    radial-gradient(circle at 50% 56%, rgba(242, 97, 0, 0.075), transparent 32rem),
    linear-gradient(140deg, #0c0f14 0%, #050608 45%, #010203 100%);
}

.bg,
.bg__glow,
.bg__noise,
.bg-gear {
  position: absolute;
  pointer-events: none;
}

.bg {
  inset: 0;
  z-index: -1;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.08) 34%, rgba(0,0,0,0.3)),
    radial-gradient(ellipse at 50% 50%, transparent 0 38%, rgba(0,0,0,0.44) 100%);
}

.bg__glow--top {
  width: 70vw;
  height: 36vh;
  left: 15vw;
  top: -12vh;
  background: radial-gradient(ellipse at center, rgba(120, 126, 138, 0.24), transparent 70%);
  filter: blur(24px);
}

.bg__glow--bottom {
  width: 76vw;
  height: 52vh;
  left: 12vw;
  bottom: -28vh;
  background: radial-gradient(ellipse at center, rgba(242, 97, 0, 0.14), transparent 72%);
  filter: blur(28px);
}

.bg__noise {
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.bg-gear {
  fill: rgba(23, 24, 27, 0.82);
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
  opacity: 0.58;
  transform-origin: 50% 50%;
  will-change: transform;
}

.bg-gear--left {
  width: clamp(360px, 42vw, 650px);
  left: max(-265px, -15vw);
  top: 28%;
  animation: rotateSlow 64s linear infinite;
}

.bg-gear--right {
  width: clamp(390px, 43vw, 660px);
  right: max(-265px, -14vw);
  bottom: -12%;
  opacity: 0.52;
  animation: rotateSlowReverse 72s linear infinite;
}

.gear-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 16;
}

.gear-ring--inner {
  stroke-width: 2;
  stroke: rgba(242, 97, 0, 0.17);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3.5vh, 44px) 24px 18px;
}

.hero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.logo-block {
  position: relative;
  width: min(635px, 78vw);
  margin: 0 auto;
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.76));
}

.logo-block::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 3%;
  bottom: 1%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 97, 0, 0.85), transparent);
  filter: blur(0.2px);
}

.logo-block__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.divider {
  width: min(540px, 82vw);
  margin: clamp(18px, 3vh, 30px) auto clamp(16px, 2.4vh, 24px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--orange);
}

.divider span {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
}

.divider span:last-child {
  transform: scaleX(-1);
}

.divider__icon {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(242, 97, 0, 0.32));
}

.divider__icon path {
  fill: rgba(242, 97, 0, 0.05);
  stroke: currentColor;
  stroke-linejoin: round;
}

.hero-title {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-title span,
.hero-title strong {
  display: block;
  font-weight: 1000;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 2px 0 rgba(0,0,0,0.5),
    0 14px 28px rgba(0,0,0,0.7);
}

.hero-title span {
  font-size: clamp(2.45rem, 4.25vw, 4.05rem);
  color: #f5f6f8;
}

.hero-title strong {
  margin-top: 0.18em;
  font-size: clamp(2.55rem, 4.35vw, 4.1rem);
  color: var(--orange-2);
  letter-spacing: -0.055em;
  filter: drop-shadow(0 0 20px rgba(242, 97, 0, 0.18));
}

.hero-text {
  margin: clamp(15px, 2.1vh, 21px) auto 0;
  max-width: 710px;
  color: rgba(244, 246, 250, 0.74);
  font-size: clamp(1.02rem, 1.35vw, 1.26rem);
  line-height: 1.4;
  font-weight: 520;
  text-shadow: 0 10px 26px rgba(0,0,0,0.7);
}

.hero-text em {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,0.82);
  font-style: normal;
}

.cta-grid {
  width: min(1040px, 100%);
  margin: clamp(23px, 3.2vh, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cta-card {
  --accent: var(--orange);
  position: relative;
  min-height: 105px;
  display: grid;
  grid-template-columns: 114px 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 18px 23px 18px 21px;
  overflow: hidden;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--accent) 78%, transparent);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(7, 8, 11, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 52px rgba(0,0,0,0.44),
    0 0 28px color-mix(in srgb, var(--accent) 16%, transparent);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(112deg, transparent 0 34%, color-mix(in srgb, var(--accent) 16%, transparent) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.cta-card::after {
  content: "";
  position: absolute;
  left: 126px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.36), transparent);
}

.cta-card:hover,
.cta-card:focus-visible {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 95%, #fff 5%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 26px 64px rgba(0,0,0,0.56),
    0 0 42px color-mix(in srgb, var(--accent) 28%, transparent);
  outline: none;
}

.cta-card:hover::before,
.cta-card:focus-visible::before {
  transform: translateX(120%);
}

.cta-card__icon,
.cta-card__text,
.cta-card__arrow {
  position: relative;
  z-index: 1;
}

.cta-card__icon {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 82px;
  min-width: 82px;
}

.cta-card__icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--accent) 22%, transparent));
}

.cta-card__text {
  color: #fff;
  font-size: clamp(1rem, 1.23vw, 1.2rem);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-card__arrow {
  width: 28px;
  height: 28px;
  justify-self: end;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.42s var(--ease);
}

.cta-card:hover .cta-card__arrow,
.cta-card:focus-visible .cta-card__arrow {
  transform: translateX(5px);
}

.cta-card--ebay {
  --accent: var(--orange);
}

.cta-card--whatsapp {
  --accent: var(--green);
  color: var(--green);
}

.cta-card--email {
  --accent: var(--blue);
  color: var(--blue);
}

.ebay-logo {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-size: 37px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.12em;
  font-family: Arial, Helvetica, sans-serif;
  transform: translateY(2px);
}

.ebay-logo .e { color: #e53238; }
.ebay-logo .b { color: #0064d2; }
.ebay-logo .a { color: #f5af02; }
.ebay-logo .y { color: #86b817; }

.features {
  width: min(840px, 100%);
  margin: clamp(22px, 3vh, 30px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.025), transparent);
}

.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  padding: 17px 24px;
  text-align: left;
}

.feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.22), transparent);
}

.feature-item svg {
  width: 37px;
  height: 37px;
  fill: var(--orange);
  filter: drop-shadow(0 0 14px rgba(242,97,0,0.23));
}

.feature-item strong,
.feature-item span {
  display: block;
}

.feature-item strong {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.feature-item span {
  margin-top: 4px;
  color: rgba(225,228,234,0.64);
  font-size: 0.93rem;
  line-height: 1.25;
}

.footer {
  margin-top: clamp(18px, 2.6vh, 26px);
  color: rgba(255,255,255,0.56);
  font-size: 0.98rem;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.045);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  color: #fff;
  background: rgba(242,97,0,0.2);
  transform: translateY(-3px);
  outline: none;
}

.socials a.is-disabled {
  cursor: default;
}

.socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: var(--orange-2);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(8px);
}

body.is-ready .reveal {
  animation: reveal 0.95s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(440px, calc(100vw - 36px));
  padding: 15px 18px;
  border: 1px solid rgba(242,97,0,0.34);
  border-radius: 14px;
  color: #fff;
  background: rgba(12, 13, 16, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px);
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

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

@keyframes rotateSlow {
  from { transform: rotate(-22deg); }
  to { transform: rotate(338deg); }
}

@keyframes rotateSlowReverse {
  from { transform: rotate(18deg); }
  to { transform: rotate(-342deg); }
}

@keyframes sweep {
  from { transform: translateX(-90%); }
  to { transform: translateX(90%); }
}

@keyframes loaderLogo {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(12px) drop-shadow(0 24px 50px rgba(0, 0, 0, 0.65));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 24px 50px rgba(0, 0, 0, 0.65));
  }
}

@media (max-width: 1050px) {
  .cta-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    gap: 16px;
  }

  .cta-card {
    grid-template-columns: 92px 1fr 30px;
    min-height: 96px;
  }

  .cta-card::after {
    left: 105px;
  }

  .features {
    width: min(620px, 100%);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 34px 18px 22px;
    align-items: start;
  }

  .hero__inner {
    padding-top: max(16px, env(safe-area-inset-top));
  }

  .logo-block {
    width: min(380px, 90vw);
  }

  .divider {
    margin: 26px auto 24px;
    gap: 17px;
  }

  .divider__icon {
    width: 48px;
    height: 48px;
  }

  .hero-title span {
    font-size: clamp(2.2rem, 10vw, 3.7rem);
    line-height: 1.04;
  }

  .hero-title strong {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-text em {
    margin-top: 12px;
  }

  .cta-grid {
    margin-top: 28px;
  }

  .features {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .feature-item {
    padding: 18px 12px;
  }

  .feature-item + .feature-item::before {
    inset: 0 34px auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  }

  .bg-gear--left {
    width: 370px;
    left: -235px;
    top: 19%;
  }

  .bg-gear--right {
    width: 390px;
    right: -250px;
    bottom: 6%;
  }
}

@media (max-width: 480px) {
  .preloader__copy {
    display: grid;
    justify-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .divider {
    width: 100%;
    gap: 12px;
  }

  .hero-title {
    letter-spacing: -0.05em;
  }

  .hero-text br {
    display: none;
  }

  .cta-card {
    min-height: 88px;
    grid-template-columns: 78px 1fr 24px;
    gap: 13px;
    padding: 16px 17px 16px 15px;
  }

  .cta-card::after {
    left: 91px;
    top: 18px;
    bottom: 18px;
  }

  .cta-card__icon {
    width: 62px;
    min-width: 62px;
  }

  .cta-card__icon svg {
    width: 48px;
    height: 48px;
  }

  .ebay-logo {
    font-size: 31px;
  }

  .cta-card__text {
    font-size: 0.98rem;
  }

  .features {
    margin-top: 22px;
  }

  .feature-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .feature-item svg {
    width: 32px;
    height: 32px;
  }

  .feature-item strong {
    font-size: 0.88rem;
  }

  .feature-item span {
    font-size: 0.86rem;
  }

  .footer {
    font-size: 0.88rem;
  }
}

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

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