:root {
  --ink: #1f2026;
  --panel: #282931;
  --paper: #f6f5f8;
  --white: #ffffff;
  --muted: #a8a7b0;
  --purple: #7c3aed;
  --purple-light: #b9a0f5;
  --green: #57cc83;
  --line: rgba(255, 255, 255, 0.1);
  --sans: "Trebuchet MS", Arial, Helvetica, sans-serif;
  --mono: "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #18191e;
  font-family: var(--sans);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }

.site-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 13px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(31, 32, 38, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: linear-gradient(145deg, #925cf6, var(--purple));
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}
.brand-mark svg {
  width: 28px;
  height: 28px;
  overflow: visible;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
}
.brand-mark .chip-core {
  fill: #d8c9ff;
  stroke: none;
}
.brand strong, .brand small { display: block; }
.brand strong {
  font: 750 14px/1.1 var(--mono);
  letter-spacing: 0.12em;
}
.brand small {
  margin-top: 5px;
  color: #c9c7d1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.availability {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  color: #c9c7d1;
  font: 650 11px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.availability i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(87, 204, 131, 0.7);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.site-nav a,
.site-nav span {
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #aaa8b3;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(185, 160, 245, 0.38);
  color: var(--white);
  background: rgba(124, 58, 237, 0.15);
}
.site-nav span[aria-disabled="true"] {
  opacity: 0.55;
}

main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(490px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 4.5vw, 76px);
  padding: clamp(38px, 4.5vh, 58px) clamp(24px, 5vw, 82px);
}
.background-grid {
  position: absolute;
  inset: -48px;
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0.45), transparent);
  animation: grid-pan 12s linear infinite;
  will-change: transform;
}
.background-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
  background:
    linear-gradient(rgba(145, 91, 246, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 91, 246, 0.48) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 20%,
    #000 48%,
    #000 52%,
    rgba(0, 0, 0, 0.12) 80%,
    transparent 100%
  );
  -webkit-mask-size: 42% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 20%,
    #000 48%,
    #000 52%,
    rgba(0, 0, 0, 0.12) 80%,
    transparent 100%
  );
  mask-size: 42% 100%;
  mask-repeat: no-repeat;
  animation: purple-grid-scan 4s ease-in-out infinite alternate;
  will-change: mask-position, -webkit-mask-position;
}
.purple-glow {
  position: absolute;
  right: 12%;
  top: 15%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  filter: blur(120px);
  animation: glow-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes grid-pan {
  from { transform: translate3d(-48px, -48px, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes purple-grid-scan {
  from {
    -webkit-mask-position: -72% 0;
    mask-position: -72% 0;
  }
  to {
    -webkit-mask-position: 172% 0;
    mask-position: 172% 0;
  }
}

@keyframes glow-drift {
  from { transform: translate3d(-2%, -2%, 0) scale(0.96); }
  to { transform: translate3d(8%, 5%, 0) scale(1.06); }
}

.intro, .order-panel { position: relative; z-index: 2; }
.intro { max-width: 820px; }
.eyebrow {
  display: flex;
  align-items: center;
  color: var(--purple-light);
  font: 800 14px/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 19px 0 19px;
  font-family: "Arial Black", "Segoe UI Black", "Franklin Gothic Heavy", var(--sans);
  font-size: clamp(47px, 4.75vw, 74px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 em {
  display: block;
  color: var(--purple-light);
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 0 26px rgba(124, 58, 237, 0.2);
}
.lead {
  max-width: 690px;
  margin: 0;
  color: #c4c2cb;
  font-size: 17px;
  line-height: 1.55;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}
.service-chip {
  padding: 10px 14px;
  color: #c9c7d1;
  border: 1px solid rgba(185, 160, 245, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font: 700 11px/1 var(--mono);
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease,
    box-shadow 150ms ease, transform 150ms ease;
}
.service-chip:hover {
  color: #fff;
  border-color: rgba(185, 160, 245, 0.55);
  transform: translateY(-2px);
}
.service-chip.active {
  color: #fff;
  border-color: var(--purple-light);
  background: rgba(124, 58, 237, 0.28);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1), 0 0 20px rgba(124, 58, 237, 0.2);
}

.configurator-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 12px;
}
.configurator-heading > span {
  color: var(--purple-light);
  font: 800 14px/1 var(--mono);
  letter-spacing: 0.12em;
}
.configurator-heading small {
  color: #9798a2;
  font-size: 12px;
}
.package-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.package {
  position: relative;
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 90px;
  padding: 15px 16px;
  color: #b9b8c0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.package:hover, .package:has(input:checked) {
  border-color: rgba(185, 160, 245, 0.65);
  background: rgba(124, 58, 237, 0.11);
  transform: translateY(-3px);
}
.package.recurring {
  grid-column: 1 / -1;
}
.package input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.check-box {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: transparent;
  border: 1px solid #64656f;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}
.package input:checked + .check-box {
  color: white;
  border-color: var(--purple);
  background: var(--purple);
}
.package-copy {
  min-width: 0;
}
.package-copy small,
.package-copy > span {
  display: block;
}
.package-copy small {
  color: #f2f1f5;
  font-size: 14px;
  font-weight: 750;
}
.package-copy > span {
  margin-top: 5px;
  color: #9b9ba5;
  font-size: 11px;
  line-height: 1.45;
}
.package > strong {
  justify-self: end;
  min-width: 78px;
  color: var(--purple-light);
  font: 800 15px/1 var(--mono);
  text-align: right;
  white-space: nowrap;
}
.package > strong small {
  display: block;
  margin: 3px 0;
  color: #777984;
  font-size: 10px;
}
.disclaimer {
  max-width: 730px;
  margin: 18px 0 0;
  color: #92939d;
  font-size: 10.5px;
  line-height: 1.58;
}

.order-panel {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: clamp(26px, 2.7vw, 36px);
  border: 1px solid rgba(185, 160, 245, 0.27);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(48, 48, 59, 0.97), rgba(37, 38, 46, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35), 0 0 0 7px rgba(255, 255, 255, 0.014);
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.panel-top > div:first-child > span {
  color: var(--purple-light);
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.12em;
}
.panel-top h2 {
  margin: 9px 0 0;
  font-size: 32px;
  letter-spacing: -0.035em;
}
.no-payment {
  padding: 8px 11px;
  color: var(--green);
  border-radius: 999px;
  background: rgba(24, 122, 63, 0.18);
  font: 700 10px/1 var(--mono);
  white-space: nowrap;
}
.panel-copy {
  margin: 13px 0 21px;
  color: #aaa9b2;
  font-size: 14px;
  line-height: 1.58;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.order-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 160, 245, 0.22);
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.08);
}
.order-summary.full { grid-column: 1 / -1; }
.order-summary > div:first-child span,
.totals > span {
  display: block;
  color: #898994;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.1em;
}
.order-summary > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}
.order-summary > div:first-child span {
  white-space: nowrap;
}
.selected-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: #d6d4dc;
  font-size: 10px;
  line-height: 1.35;
}
.selected-services-list li {
  position: relative;
  padding-left: 10px;
}
.selected-services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple-light);
}
.selected-services-list.empty {
  grid-template-columns: 1fr;
  color: #94939d;
}
.totals {
  flex: 0 0 auto;
  text-align: right;
}
.totals strong {
  display: block;
  margin-top: 4px;
  color: white;
  font: 750 25px/1 var(--mono);
}
.totals small {
  display: block;
  min-height: 10px;
  margin-top: 4px;
  color: var(--purple-light);
  font-size: 11px;
}
#bundle-discount { color: var(--green); }
.field { display: grid; gap: 5px; }
.field.full { grid-column: 1 / -1; }
label {
  color: #c9c7d1;
  font-size: 12px;
  font-weight: 700;
}
label span { color: #73747d; font-weight: 500; }
input, select, textarea {
  width: 100%;
  color: #f3f2f5;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  outline: 0;
  background: rgba(14, 15, 19, 0.48);
  font-size: 14px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
input, select { height: 48px; padding: 0 13px; }
textarea { min-height: 80px; padding: 12px 13px; resize: vertical; }
select { color-scheme: dark; }
input:focus, select:focus, textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
textarea::placeholder { color: #666771; }
.bot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.submit-button {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  margin-top: 2px;
  padding: 0 12px 0 19px;
  color: #fff;
  border: 1px solid rgba(201, 181, 255, 0.42);
  border-radius: 10px;
  background: linear-gradient(120deg, #6425d0 0%, #7c3aed 46%, #9457f5 100%);
  box-shadow:
    0 13px 30px rgba(92, 35, 190, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(43, 13, 91, 0.38);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.16) 48%, transparent 70%);
  transform: translateX(-115%);
  transition: transform 520ms ease;
}
.submit-button span,
.submit-button b {
  position: relative;
  z-index: 1;
}
.submit-button:hover {
  border-color: rgba(222, 210, 255, 0.68);
  box-shadow:
    0 16px 38px rgba(104, 45, 215, 0.4),
    0 0 24px rgba(124, 58, 237, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.submit-button:hover::before {
  transform: translateX(115%);
}
.submit-button:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(92, 35, 190, 0.28),
    inset 0 2px 5px rgba(31, 9, 70, 0.25);
}
.submit-button:focus-visible {
  outline: 3px solid rgba(185, 160, 245, 0.3);
  outline-offset: 3px;
}
.submit-button:disabled { opacity: 0.65; cursor: wait; transform: none; }
.submit-button b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 20px;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}
.submit-button:hover b {
  background: rgba(255, 255, 255, 0.19);
  transform: translateX(2px);
}
.conversion-note {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: -2px 0 0;
  color: #bdbbc5;
  font: 800 12px/1.35 var(--mono);
  letter-spacing: 0.025em;
  text-align: center;
}
.guarantee-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: var(--green);
  filter: drop-shadow(0 0 5px rgba(87, 204, 131, 0.38));
}
.guarantee-check {
  fill: none;
  stroke: #18281f;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 13px;
  color: #aaa9b2;
  font-size: 11px;
  line-height: 1.4;
}
.form-status.success {
  padding: 11px 14px;
  color: #75e49c;
  border: 1px solid rgba(87, 204, 131, 0.3);
  border-radius: 7px;
  background: rgba(31, 126, 69, 0.12);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.form-status.error { color: #ff9494; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 15px clamp(22px, 4vw, 68px);
  color: #90919b;
  border-top: 1px solid var(--line);
  background: #18191e;
  font: 600 11px/1.3 var(--mono);
  letter-spacing: 0.04em;
}
footer a {
  justify-self: center;
  color: var(--purple-light);
}
footer > :last-child { justify-self: end; }

.cursor-aura {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(185, 160, 245, 0.18) 0%,
    rgba(124, 58, 237, 0.09) 24%,
    rgba(124, 58, 237, 0.035) 46%,
    rgba(124, 58, 237, 0.01) 62%,
    transparent 74%
  );
  filter: blur(10px);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(-200px, -200px, 0);
  transition: opacity 160ms ease;
  will-change: transform, opacity;
}
body.cursor-aura-visible .cursor-aura { opacity: 0.62; }

@media (pointer: fine) {
  html, body, body * {
    cursor: url("cursor.svg") 3 2, default !important;
  }
}

@media (pointer: coarse) {
  .cursor-aura { display: none; }
}

@media (max-width: 1040px) {
  .site-shell { overflow: visible; }
  main {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .intro { max-width: 820px; }
  .order-panel { max-width: 820px; justify-self: start; }
}

@media (max-width: 680px) {
  header { grid-template-columns: 1fr auto; padding: 11px 17px; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; }
  .site-nav a, .site-nav span { padding: 9px 10px; font-size: 9px; }
  .brand small { display: none; }
  .brand strong { font-size: 10px; }
  .availability { font-size: 9px; }
  main { padding: 48px 17px; }
  h1 { font-size: 48px; }
  .package-list { grid-template-columns: 1fr; }
  .package { min-height: 66px; }
  .package.recurring { grid-column: 1; }
  form { grid-template-columns: 1fr; }
  .field, .field.full, .order-summary.full, .submit-button, .conversion-note, .form-status { grid-column: 1; }
  .order-summary { flex-direction: column; width: 100%; }
  .totals { text-align: left; }
  .panel-top { flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 8px; }
  footer a, footer > :last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .background-grid, .background-grid::after, .purple-glow { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
