:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --text: #ffffff;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.1);
  --green: #00e676;
  --green-soft: rgba(0, 230, 118, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --container: min(1200px, calc(100% - 3rem));
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

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

.section-tag {
  margin: 0 0 1.4rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1.6rem;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy__body,
.contact-intro,
.buy-card p,
.step-card p,
.site-footer p,
.site-footer a,
.site-nav a,
.mobile-menu a,
.form-note,
.form-status,
.contact-detail p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand__badge {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.95), rgba(9, 9, 9, 0.95)),
    radial-gradient(circle at 50% 30%, rgba(0, 230, 118, 0.14), transparent 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.brand__text,
.site-footer__brand-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.brand__text span,
.site-footer__brand-title span {
  color: var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.8vw, 1.65rem);
  min-width: 0;
}

.site-nav a,
.mobile-menu a,
.site-footer__links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: var(--green);
  color: #0a0a0a;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #16eb81;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.button--large {
  min-height: 3.5rem;
  padding-inline: 1.8rem;
  font-size: 1rem;
}

.button--block {
  width: 100%;
}

.header-call {
  white-space: nowrap;
  justify-self: end;
}

.mobile-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.26rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.95);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__nav {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 0 1.5rem;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background: rgba(0, 0, 0, 0.65);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__lead {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 52rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  min-height: 4.05rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(12, 12, 12, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #e8f6ec;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.hero__points span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
  box-shadow: 0 0 0 0.35rem rgba(0, 230, 118, 0.08);
}

.hero__logo-panel {
  position: absolute;
  right: max(1.5rem, calc((100vw - min(1200px, calc(100% - 3rem))) / 2));
  bottom: 3.5rem;
  z-index: 1;
  width: min(18.5rem, 26vw);
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero__logo-panel img {
  width: 100%;
  height: auto;
}

.hero__logo-panel p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.section-copy__body {
  display: grid;
  gap: 1rem;
  font-size: 1.03rem;
}

.section-copy__body p {
  margin: 0;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.buy-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(11, 11, 11, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.buy-card:hover {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(12, 12, 12, 0.99));
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.buy-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0c0c0c;
}

.buy-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.06) 40%, rgba(10, 10, 10, 0.18) 100%);
  pointer-events: none;
}

.buy-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 450ms ease;
}

.buy-card__image--laptops img {
  object-position: center 62%;
}

.buy-card__image--tablets img {
  object-position: center center;
}

.buy-card__image--gaming img {
  object-position: center center;
}

.buy-card:hover .buy-card__image img {
  transform: scale(1.05);
}

.buy-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.45rem 1.45rem 1.55rem;
}

.buy-card__heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.buy-card__heading svg {
  color: var(--green);
  flex: 0 0 auto;
  font-size: 1.08rem;
}

.buy-card h3,
.step-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.buy-card p {
  margin: 0;
  font-size: 0.96rem;
}

.buy-card--feature {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(0, 230, 118, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(9, 9, 9, 0.98));
}

.buy-card--wide {
  grid-column: span 2;
}

.buy-card--feature::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -4rem;
  bottom: -5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18), transparent 72%);
  pointer-events: none;
}

.buy-card--feature .buy-card__body {
  position: relative;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.7rem 1.7rem 1.8rem;
}

.condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.condition-tags span {
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.condition-tags span:hover {
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--text);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.step-card {
  position: relative;
}

.step-card__number {
  position: absolute;
  top: -1.25rem;
  left: -0.2rem;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Outfit", sans-serif;
  font-size: clamp(4.4rem, 8vw, 5.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
}

.step-card__inner {
  position: relative;
  padding-top: 2.8rem;
}

.step-card__icon,
.contact-detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.8rem;
  background: var(--green-soft);
  color: var(--green);
}

.step-card__icon {
  margin-bottom: 1.2rem;
}

.step-card p {
  margin: 0.7rem 0 0;
}

.section-note {
  margin-top: 3.5rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--bg-alt);
}

.section-note p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.section-note span {
  color: var(--green);
  font-weight: 600;
}

.contact-grid {
  align-items: start;
}

.contact-intro {
  margin: 0 0 2.2rem;
  font-size: 1rem;
}

.contact-details {
  display: grid;
  gap: 1.3rem;
  margin-bottom: 2.1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail--link strong {
  transition: color 180ms ease;
}

.contact-detail--link:hover strong {
  color: var(--green);
}

.contact-detail p,
.site-footer__label,
.site-footer__contact p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-detail strong,
.site-footer__contact a {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.check-list svg {
  color: var(--green);
  font-size: 1rem;
  flex: 0 0 auto;
}

.contact-form-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.contact-form {
  display: grid;
  gap: 1.3rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field select {
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 230, 118, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.12);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--green);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #050505;
}

.site-footer__ghost {
  margin-bottom: 3rem;
  overflow: hidden;
}

.site-footer__ghost h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 2.2rem;
  margin-bottom: 3rem;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__links a {
  margin: 0;
}

.site-footer__label {
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.5rem;
}

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .hero__logo-panel {
    display: none;
  }

  .two-column,
  .contact-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-call {
    display: none;
  }

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

  .mobile-toggle {
    display: inline-block;
    justify-self: end;
  }

  .two-column,
  .contact-grid,
  .site-footer__grid,
  .steps-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .hero__points {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .buy-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.5rem, 1200px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 86vh;
    padding: 6.5rem 0 4rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand__badge {
    width: 3.45rem;
    height: 3.45rem;
    padding: 0.35rem;
    border-radius: 0.9rem;
  }

  .brand__text {
    font-size: 1.45rem;
  }

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

  .button--large {
    width: 100%;
  }

  .contact-form-card {
    padding: 1.4rem;
  }

  .buy-card__body {
    padding: 1.35rem;
  }

  .buy-card--feature .buy-card__body {
    padding: 1.45rem;
  }
}

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

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