:root {
  --bg: #000000;
  --bg2: #0a0a0a;
  --card: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #888888;
  --label: #666666;
  --accent: #5b4fe8;
  --radius: 16px;
  --pill: 100px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  overflow-x: hidden;
}

/* Custom cursor control (enabled by JS on desktop) */
.cursor-hide * {
  cursor: none !important;
}

a {
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
  position: relative;
  background: transparent;
}

/* Glow blobs */
.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(91, 79, 232, 0.55),
    rgba(91, 79, 232, 0) 65%
  );
  filter: blur(120px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.blob.right {
  right: -220px;
  top: -120px;
}
.blob.center {
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  opacity: 0.75;
}
.blob.booking {
  right: -220px;
  top: 10%;
  opacity: 0.85;
}

/* Page overlay for load fade */
#page-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  user-select: none;
}
.logo {
  border-radius: 6px;
}

.brand .text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.92;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex: 1;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: var(--pill);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn.primary {
  background: var(--accent);
  border-color: rgba(91, 79, 232, 0.65);
  box-shadow: 0 16px 50px rgba(91, 79, 232, 0.22);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}
.hamburger i {
  font-size: 18px;
}

/* Mobile overlay menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.mobile-menu {
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
}
.mobile-menu a:first-child {
  border-top: none;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 110px 0 70px;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.35),
    rgba(0, 0, 0, 0.9)
  );
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  margin-left: -8px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}
.avatar.purple {
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(91, 79, 232, 0.85), rgba(91, 79, 232, 0.2));
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.h1 {
  font-family: Syne, Inter, sans-serif;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  max-width: 980px;
}
.h1 .thin {
  font-weight: 300;
  color: var(--muted);
}
.h1 .bold {
  font-weight: 800;
  color: #fff;
  display: block;
}
.hero p {
  max-width: 760px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-size: 16px;
}

.video-block {
  width: min(980px, 100%);
  aspect-ratio: 16/9;
  border-radius: 22px;
  background:
    radial-gradient(
      1200px 600px at 20% 20%,
      rgba(91, 79, 232, 0.18),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.72);
  position: relative;
  overflow: hidden;
  margin-top: 34px;
}
.video-block .play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.play .play-btn {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.62);
}
.play .logo-text {
  font-family: Syne, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* Section label + heading pattern */
.section-label {
  font-size: 12px;
  color: var(--label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-block;
}
.h2 {
  font-family: Syne, Inter, sans-serif;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}
.h2 .thin {
  font-weight: 400;
  color: var(--muted);
}
.h2 .bold {
  font-weight: 800;
  color: #fff;
  display: block;
}

/* Stats / Pain */
.pain {
  background: #000;
  position: relative;
  overflow: hidden;
}
.pain h3 {
  font-family: Syne, Inter, sans-serif;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 auto;
  text-align: center;
  max-width: 980px;
}
.float-tags {
  position: relative;
  height: 150px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(91, 79, 232, 0.12);
  border: 1px solid rgba(91, 79, 232, 0.35);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 18px 70px rgba(91, 79, 232, 0.1);
  user-select: none;
  white-space: nowrap;
}
.float-tag.tl {
  left: 3%;
  top: 10%;
}
.float-tag.bl {
  left: 6%;
  bottom: 10%;
}
.float-tag.tr {
  right: 5%;
  top: 8%;
}
.float-tag.br {
  right: 8%;
  bottom: 10%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat .num {
  font-family: Syne, Inter, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat .mid {
  margin-top: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}
.stat .desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* Portfolio */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.tab {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tab.active {
  background: var(--accent);
  border-color: rgba(91, 79, 232, 0.65);
  box-shadow: 0 16px 55px rgba(91, 79, 232, 0.18);
  color: #fff;
}

.work-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.work-thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 550px at 25% 30%,
      rgba(91, 79, 232, 0.18),
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 80% 55%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
}
.work-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 18px;
}
.work-card .play-mini {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card .meta {
  font-family: Syne, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}
.work-card .submeta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.hidden {
  display: none !important;
}

/* ✅ Embed wrapper for real YouTube videos */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #0a0a0a;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.85),
    rgba(10, 10, 10, 0.55)
  );
  position: relative;
  overflow: hidden;
}
.test-wrap {
  margin-top: 22px;
  display: grid;
  justify-items: center;
  gap: 16px;
}
.phone {
  width: min(360px, 100%);
  aspect-ratio: 9/16;
  border-radius: 38px;
  background:
    radial-gradient(
      900px 650px at 30% 25%,
      rgba(91, 79, 232, 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.72);
  position: relative;
  overflow: hidden;
}
.phone .thumb {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.phone .cap {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
.nav-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}
.quote {
  max-width: 900px;
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  margin: 6px 0 0;
  color: #fff;
}
.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.client-ava {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(91, 79, 232, 0.85),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(91, 79, 232, 0.12);
}
.client-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.client-name {
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.verified {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #2f7dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.verified i {
  font-size: 10px;
}
.client-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

/* Comparison */
.compare {
  position: relative;
  overflow: hidden;
}
.compare-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.compare-card.light {
  background: #141414;
}
.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(91, 79, 232, 1),
    rgba(91, 79, 232, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mini-text {
  font-family: Syne, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.92;
}
.chip {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(91, 79, 232, 0.3);
  background: rgba(91, 79, 232, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  white-space: nowrap;
}
.chip.red {
  border-color: rgba(255, 70, 70, 0.35);
  background: rgba(255, 70, 70, 0.1);
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}
.li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  flex: 0 0 auto;
  margin-top: 1px;
}
.ok .icon {
  border-color: rgba(91, 79, 232, 0.35);
  background: rgba(91, 79, 232, 0.12);
}
.ok .icon i {
  color: var(--accent);
}
.no .icon {
  border-color: rgba(255, 70, 70, 0.35);
  background: rgba(255, 70, 70, 0.1);
}
.no .icon i {
  color: rgba(255, 70, 70, 1);
}

.bonus {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}
.bonus-title {
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}
.center-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Booking */
.booking {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55),
    rgba(0, 0, 0, 0.92)
  );
  position: relative;
  overflow: hidden;
}
.cal-card {
  margin-top: 22px;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 26px 95px rgba(0, 0, 0, 0.75);
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* FAQ */
.faq-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.faq-q {
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  user-select: none;
}
.faq-a {
  height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-a-inner {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 36px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.95);
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 14px;
}
.foot-center {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.foot-center a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
}
.foot-center a:hover {
  color: #fff;
}
.social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.divider {
  margin: 18px 0 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .h1 {
    font-size: 46px;
  }
  .h2 {
    font-size: 36px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 92px 0 56px;
  }
  .h1 {
    font-size: 38px;
  }
  .float-tags {
    height: 180px;
  }
  .float-tag.tr {
    right: 2%;
  }
  .float-tag.br {
    right: 2%;
  }
}

/* Custom cursor elements */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: none;
}
#cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(91, 79, 232, 0.85);
  box-shadow: 0 0 30px rgba(91, 79, 232, 0.35);
}
@media (hover: none), (pointer: coarse) {
  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}
