:root {
  color-scheme: dark;
  --ink: #f8f7ff;
  --muted: #b8b4cc;
  --soft: #7f7896;
  --paper: #05020d;
  --surface: #0d0717;
  --surface-2: #13091f;
  --line: rgba(255, 255, 255, 0.14);
  --pink: #ff0a8b;
  --pink-2: #ff4bb2;
  --blue: #315dff;
  --blue-2: #7a8cff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 10, 139, 0.18), transparent 24%),
    linear-gradient(225deg, rgba(49, 93, 255, 0.2), transparent 26%),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(5, 2, 13, 0.84);
  border-bottom: 1px solid rgba(255, 10, 139, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-emblem {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 10, 139, 0.72);
  object-fit: contain;
  box-shadow: 0 0 26px rgba(255, 10, 139, 0.46);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--pink-2);
}

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 10vw, 128px) clamp(20px, 6vw, 80px);
  overflow: hidden;
  background: #05020d;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.3) contrast(1.14) brightness(0.72);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 2, 13, 0.94), rgba(5, 2, 13, 0.68) 47%, rgba(5, 2, 13, 0.34)),
    linear-gradient(180deg, rgba(5, 2, 13, 0.22), rgba(5, 2, 13, 0.86)),
    linear-gradient(115deg, rgba(255, 10, 139, 0.3), transparent 32%),
    linear-gradient(245deg, rgba(49, 93, 255, 0.34), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  right: clamp(20px, 6vw, 80px);
  bottom: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent 42%, var(--blue));
  box-shadow: 0 0 24px rgba(255, 10, 139, 0.8), 0 0 28px rgba(49, 93, 255, 0.72);
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 790px;
  min-width: 0;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(38vw, 430px);
  min-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 10, 139, 0.55)) drop-shadow(0 0 46px rgba(49, 93, 255, 0.38));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  text-shadow: 0 0 34px rgba(255, 10, 139, 0.38);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 1.1rem;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), #a80cff);
  box-shadow: 0 0 24px rgba(255, 10, 139, 0.42);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.intro,
.section,
.feature-band {
  padding: clamp(62px, 9vw, 116px) clamp(20px, 6vw, 80px);
}

.intro {
  max-width: 1080px;
}

.intro p,
.copy p,
.feature-band p,
.purchase p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
}

.feature-band article {
  min-width: 0;
  min-height: 224px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 10, 139, 0.12), transparent 44%),
    linear-gradient(225deg, rgba(49, 93, 255, 0.12), transparent 42%),
    var(--surface);
}

.feature-band span {
  display: block;
  margin-bottom: 24px;
  color: var(--pink-2);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(255, 10, 139, 0.62);
}

.split,
.purchase,
.seo-copy,
.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.seo-copy {
  border-top: 1px solid rgba(255, 10, 139, 0.18);
  background:
    linear-gradient(110deg, rgba(255, 10, 139, 0.1), transparent 34%),
    linear-gradient(250deg, rgba(49, 93, 255, 0.1), transparent 38%),
    #070310;
}

.split {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(49, 93, 255, 0.16), transparent 44%),
    #080411;
}

.purchase {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 10, 139, 0.24);
  background: var(--surface-2);
}

.purchase::after {
  content: "";
  position: absolute;
  inset: auto -10% -64% auto;
  width: min(54vw, 620px);
  aspect-ratio: 1;
  background: url("/assets/xgps-style-logo.webp") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.purchase .copy {
  position: relative;
  z-index: 1;
}

.purchase .copy p {
  color: rgba(255, 255, 255, 0.74);
}

.faq {
  background:
    linear-gradient(145deg, rgba(255, 10, 139, 0.08), transparent 36%),
    #05020d;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  margin: clamp(46px, 7vw, 88px) clamp(20px, 6vw, 80px);
  padding: clamp(34px, 6vw, 62px);
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(255, 10, 139, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 10, 139, 0.28), transparent 36%),
    linear-gradient(240deg, rgba(49, 93, 255, 0.28), transparent 38%),
    #0a0414;
  box-shadow: 0 0 44px rgba(255, 10, 139, 0.14);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: auto auto -38% -10%;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  background: url("/assets/xgps-style-logo.webp") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-links {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.contact-link {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.contact-link:hover {
  border-color: rgba(255, 10, 139, 0.7);
  box-shadow: 0 0 22px rgba(255, 10, 139, 0.18);
}

.contact-link span {
  color: rgba(255, 255, 255, 0.66);
}

.contact-link strong {
  text-align: right;
}

.contact-link.whatsapp {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), #7c2cff);
  box-shadow: 0 0 26px rgba(255, 10, 139, 0.28);
}

.contact-link.whatsapp span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 2, 13, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 10, 139, 0.06);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 10, 139, 0.58);
  border-color: transparent;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255, 10, 139, 0.3);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 80px);
  color: var(--soft);
  border-top: 1px solid var(--line);
  background: rgba(5, 2, 13, 0.94);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo {
    justify-content: flex-start;
  }

  .hero-logo img {
    width: min(74vw, 340px);
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.5rem);
  }

  .lead {
    max-width: 31ch;
    font-size: 1rem;
    overflow-wrap: normal;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 2, 13, 0.88), rgba(5, 2, 13, 0.72)),
      linear-gradient(145deg, rgba(255, 10, 139, 0.26), transparent 40%),
      linear-gradient(225deg, rgba(49, 93, 255, 0.26), transparent 42%);
  }

  .feature-band,
  .split,
  .purchase,
  .seo-copy,
  .faq,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-link strong {
    text-align: left;
  }
}
