:root {
  --bg: #050008;
  --panel: rgba(17, 5, 24, 0.78);
  --panel-strong: #100014;
  --text: #ffffff;
  --muted: #d8c9eb;
  --purple: #8d16ff;
  --purple-deep: #4d006f;
  --purple-soft: #c06cff;
  --line: rgba(157, 34, 255, 0.36);
  --shadow: 0 0 36px rgba(141, 22, 255, 0.24);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(141, 22, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 85% 25%, rgba(88, 0, 128, 0.28), transparent 26rem),
    linear-gradient(135deg, #020003 0%, #09000f 42%, #030005 100%);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.18));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(192, 108, 255, 0.6);
}

.brand img {
  image-rendering: pixelated;
  border: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.4rem);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

nav a:hover { color: #fff; }
.nav-cta {
  color: #fff;
  border: 1px solid var(--purple);
  padding: 0.55rem 0.8rem;
  box-shadow: var(--shadow);
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 84px);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--purple-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}
h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 8.2vw, 6.6rem);
  text-transform: uppercase;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5.4vw, 4.4rem);
  text-transform: uppercase;
}
h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--purple);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(141, 22, 255, 0.36);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.button.secondary {
  color: var(--purple-soft);
  background: rgba(141, 22, 255, 0.08);
}

.hero-avatar {
  position: relative;
  justify-self: center;
  width: min(520px, 100%);
  border: 2px solid var(--line);
  background: #79a3ec;
  box-shadow: 0 0 0 8px rgba(141, 22, 255, 0.06), var(--shadow);
}

.hero-avatar::before,
.hero-avatar::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 8px solid var(--purple);
  pointer-events: none;
}
.hero-avatar::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.hero-avatar::after { right: -12px; bottom: -12px; border-left: 0; border-top: 0; }

.hero-avatar img { image-rendering: pixelated; width: 100%; }

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading p:not(.eyebrow), .split-copy p, .booking p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 255px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(141, 22, 255, 0.14), rgba(17, 5, 24, 0.78)),
    var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.service-card p { color: var(--muted); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.3rem;
  border: 2px solid var(--purple);
  color: var(--purple-soft);
  font-size: 1.5rem;
  box-shadow: inset 0 0 20px rgba(141, 22, 255, 0.16);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.avatar-wrap {
  border: 2px solid var(--line);
  background: #79a3ec;
  box-shadow: var(--shadow);
  max-width: 430px;
}
.avatar-wrap img {
  width: 100%;
  image-rendering: pixelated;
}

.checklist {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 1.8rem;
  color: #f4eafa;
}
.checklist li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--purple-soft);
}

.booking {
  margin-bottom: 42px;
  padding-inline: clamp(1rem, 5vw, 3rem);
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(141, 22, 255, 0.22), rgba(0, 0, 0, 0.72)),
    var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.email-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--purple-soft);
  font-size: clamp(1.2rem, 3.6vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  overflow-wrap: anywhere;
  text-shadow: 0 0 20px rgba(192, 108, 255, 0.55);
}
.email-link:hover { color: #fff; }

footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-booking {
  color: #f2e7ff;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 18px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  background: rgba(141, 22, 255, 0.08);
  color: var(--purple-soft);
  text-decoration: none;
  box-shadow: inset 0 0 18px rgba(141, 22, 255, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 108, 255, 0.7);
  box-shadow: 0 0 22px rgba(141, 22, 255, 0.2);
  color: #fff;
}
footer p { margin: 0; }
footer a { color: var(--purple-soft); text-decoration: none; }
.powered {
  margin-top: 16px;
  color: var(--purple-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avatar-wrap { max-width: 360px; }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  nav { width: 100%; justify-content: space-between; }
  .section-pad { width: min(100% - 24px, var(--max)); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-socials { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
